You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by bu...@apache.org on 2012/10/24 06:04:05 UTC

svn commit: r835960 [10/18] - in /websites/staging/xmlgraphics/trunk/content: ./ batik/ batik/dev/ batik/tools/ batik/using/ batik/using/scripting/ commons/ fop/ fop/0.95/ fop/1.0/ fop/1.1/ fop/dev/ fop/dev/design/ fop/trunk/

Modified: websites/staging/xmlgraphics/trunk/content/fop/1.1/output.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/1.1/output.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/1.1/output.html Wed Oct 24 04:04:00 2012
@@ -330,10 +330,11 @@ $(document).ready(function () {
       
       <div id="content" class="grid_16">
       	<!-- <div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/1.1/">1.1</a></div> -->
-      	<div class="section-content"><p><version>$Revision$</version><authors><person email="keiron@aftexsw.com" name="Keiron Liddle"></person><person email="" name="Art Welch"></person></authors></p>
+      	<div class="section-content"><h1 id="apachetm-fop-output-formats">Apache(tm) FOP Output Formats</h1>
+<p><version>$Revision$</version><authors><person email="keiron@aftexsw.com" name="Keiron Liddle"></person><person email="" name="Art Welch"></person></authors></p>
 <p>Apache&trade; FOP supports multiple output formats by using a different renderer for each format. The renderers do not all have the same set of capabilities, sometimes because of the output format itself, sometimes because some renderers get more development attention than others.</p>
-<h1 id="general-information-wzxhzdk37wzxhzdk38">General Information  <a id="general"></a></h1>
-<h2 id="fonts-wzxhzdk39wzxhzdk40">Fonts # <a id="general-fonts"></a></h2>
+<h2 id="general-information-wzxhzdk37wzxhzdk38">General Information  <a id="general"></a></h2>
+<h3 id="fonts-wzxhzdk39wzxhzdk40">Fonts # <a id="general-fonts"></a></h3>
 <p>Most FOP renderers use a FOP-specific system for font registration. However, the Java2D/AWT and print renderers use the Java AWT package, which gets its font information from the operating system registration. This can result in several differences, including actually using different fonts, and having different font metrics for the same font. The net effect is that the layout of a given FO document can be quite different between renderers that do not use the same font information.</p>
 <p>Theoretically, there's some potential to make the output of the PDF/PS renderers match the output of the Java2D-based renderers. If FOP used the font metrics from its own font subsystem but still used Java2D for text painting in the Java2D-based renderers, this could probably be achieved. However, this approach hasn't been implemented, yet.</p>
 <p>With a work-around, it is possible to match the PDF/PS output in a Java2D-based renderer pretty closely. The clue is to use the <a href="intermediate.html">intermediate format</a> . The trick is to layout the document using FOP's own font subsystem but then render the document using Java2D. Here are the necessary steps (using the command-line):</p>
@@ -357,7 +358,7 @@ $(document).ready(function () {
 <p><code>fop -atin myfile.at.xml -tiff myfile.tiff</code> </p>
 </li>
 </ol>
-<h2 id="output-to-a-printer-or-other-device-wzxhzdk41wzxhzdk42">Output to a Printer or Other Device # <a id="general-direct-output"></a></h2>
+<h3 id="output-to-a-printer-or-other-device-wzxhzdk41wzxhzdk42">Output to a Printer or Other Device # <a id="general-direct-output"></a></h3>
 <p>The most obvious way to print your document is to use the FOP <a href="#print">print renderer</a> , which uses the Java2D API (AWT). However, you can also send output from the Postscript renderer directly to a Postscript device, or output from the PCL renderer directly to a PCL device.</p>
 <p>Here are Windows command-line examples for Postscript and PCL:
 fop ... -ps \computername\printerfop ... -pcl \computername\printer
@@ -365,12 +366,12 @@ Here is some Java code to accomplish the
 proc = Runtime.getRuntime().exec("lp -d" + print_queue + " -o -dp -");
 out = proc.getOutputStream();
 Set the output MIME type to "application/x-pcl" (MimeConstants.MIME_PCL) and it happily sends the PCL to the UNIX printer queue.</p>
-<h1 id="pdf-wzxhzdk43wzxhzdk44">PDF  <a id="pdf"></a></h1>
+<h2 id="pdf-wzxhzdk43wzxhzdk44">PDF  <a id="pdf"></a></h2>
 <p>PDF is the best supported output format. It is also the most accurate with text and layout. This creates a PDF document that is streamed out as each page is rendered. This means that the internal page index information is stored near the end of the document. The PDF version supported is 1.4. PDF versions are forwards/backwards compatible.</p>
 <p>Note that FOP does not currently support PDF/A-1a. Support for <a href="accessibility.html">Tagged PDF</a> , <a href="pdfa.html">PDF/A-1b</a> and <a href="pdfx.html">PDF/X</a> has recently been added, however.</p>
-<h2 id="fonts-wzxhzdk45wzxhzdk46">Fonts # <a id="pdf-fonts"></a></h2>
+<h3 id="fonts-wzxhzdk45wzxhzdk46">Fonts # <a id="pdf-fonts"></a></h3>
 <p>PDF has a set of fonts that are always available to all PDF viewers; to quote from the PDF Specification: <em>"PDF prescribes a set of 14 standard fonts that can be used without prior definition. These include four faces each of three Latin text typefaces (Courier, Helvetica, and Times), as well as two symbolic fonts (Symbol and ITC Zapf Dingbats). These fonts, or suitable substitute fonts with the same metrics, are guaranteed to be available in all PDF viewer applications."</em> </p>
-<h2 id="post-processing-wzxhzdk47wzxhzdk48">Post-processing # <a id="pdf-postprocess"></a></h2>
+<h3 id="post-processing-wzxhzdk47wzxhzdk48">Post-processing # <a id="pdf-postprocess"></a></h3>
 <p>FOP does not currently support several desirable PDF features: watermarks and signatures. One workaround is to use Adobe Acrobat (the full version, not the Reader) to process the file manually or with scripting that it supports.</p>
 <p>Another popular post-processing tool is <a href="http://www.lowagie.com/iText">iText</a> , which has tools for adding security features, document properties, watermarks, and many other features to PDF files.
 <warning>Caveat: iText may swallow PDF bookmarks. But <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=37589">Jens Stavnstrup tells us</a> that this doesn't happen if you use iText's PDFStamper.</warning>
@@ -419,7 +420,7 @@ public static void main(String args[]) {
   }
 }
 Check the iText tutorial and documentation for setting access flags, password, encryption strength and other parameters.</p>
-<h2 id="watermarks-wzxhzdk51wzxhzdk52">Watermarks # <a id="pdf-watermark"></a></h2>
+<h3 id="watermarks-wzxhzdk51wzxhzdk52">Watermarks # <a id="pdf-watermark"></a></h3>
 <p>In addition to the <a href="#pdf-postprocess">PDF Post-processing</a> options, consider the following workarounds:</p>
 <ul>
 <li>
@@ -429,7 +430,7 @@ Check the iText tutorial and documentati
 <p>(submitted by Trevor Campbell) Place an image in a region that overlaps the flowing text. For example, make region-before large enough to contain your image. Then include a block (if necessary, use an absolutely positioned block-container) containing the watermark image in the static-content for the region-before. Note that the image will be drawn on top of the normal content.</p>
 </li>
 </ul>
-<h2 id="extensions-wzxhzdk53wzxhzdk54">Extensions # <a id="pdf-extensions"></a></h2>
+<h3 id="extensions-wzxhzdk53wzxhzdk54">Extensions # <a id="pdf-extensions"></a></h3>
 <p>The PDF Renderer supports some PDF specific extensions which can be embedded into the input FO document. To use the extensions the appropriate namespace must be declared in the fo:root element like this:</p>
 <p><fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
          xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf"></p>
@@ -443,9 +444,9 @@ Check the iText tutorial and documentati
 <p>It is also possible to reference an embedded file from an <code>fo:basic-link</code> . Use the special "embedded-file:" URI scheme with the filename as single argument after the URI scheme. Example:</p>
 <p><fo:basic-link external-destination="url(embedded-file:image.jpg)">Attached Image</fo:basic-link></p>
 <p>Note: Not all PDF Viewers (including some Acrobat Versions) will open the embedded file when clicking on the link. In that case, the user will have to open he attachment via the separate list of file attachments.</p>
-<h1 id="postscript-wzxhzdk64wzxhzdk65">PostScript  <a id="ps"></a></h1>
+<h2 id="postscript-wzxhzdk64wzxhzdk65">PostScript  <a id="ps"></a></h2>
 <p>The PostScript renderer has been brought up to a similar quality as the PDF renderer, but may still be missing certain features. It provides good support for most text and layout. Images and SVG are not fully supported, yet. Currently, the PostScript renderer generates PostScript Level 3 with most DSC comments. Actually, the only Level 3 features used are the FlateDecode and DCTDecode filter (the latter is used for 1:1 embedding of JPEG images), everything else is Level 2.</p>
-<h2 id="configuration-wzxhzdk66wzxhzdk67">Configuration # <a id="ps-configuration"></a></h2>
+<h3 id="configuration-wzxhzdk66wzxhzdk67">Configuration # <a id="ps-configuration"></a></h3>
 <p>The PostScript renderer configuration currently allows the following settings:
 <renderer mime="application/postscript">
   <auto-rotate-landscape>false</auto-rotate-landscape>
@@ -461,7 +462,7 @@ The default value for the "auto-rotate-l
 <p>The default value for the "safe-set-page-device" setting is "false". Setting it to "true" will cause the renderer to invoke a postscript macro which guards against the possibility of invalid/unsupported postscript key/values being issued to the implementing postscript page device.</p>
 <p>The default value for the "dsc-compliant" setting is "true". Setting it to "false" will break DSC compliance by minimizing the number of setpagedevice calls in the postscript document output. This feature may be useful when unwanted blank pages are experienced in your postscript output. This problem is caused by the particular postscript implementation issuing unwanted postscript subsystem initgraphics/erasepage calls on each setpagedevice call.</p>
 <p>The default value for the "rendering" setting is "quality". Setting it to "size" optimizes rendering for smaller file sizes which can involve minor compromises in rendering quality. For example, solid borders are then painted as plain rectangles instead of the elaborate painting instructions required for mixed-color borders.</p>
-<h2 id="limitations-wzxhzdk82wzxhzdk83">Limitations # <a id="ps-limitations"></a></h2>
+<h3 id="limitations-wzxhzdk82wzxhzdk83">Limitations # <a id="ps-limitations"></a></h3>
 <ul>
 <li>
 <p>Images and SVG may not be displayed correctly. SVG support is far from being complete. No image transparency is available.</p>
@@ -476,10 +477,10 @@ The default value for the "auto-rotate-l
 <p>PPD support is still missing.</p>
 </li>
 </ul>
-<h1 id="pcl-wzxhzdk84wzxhzdk85">PCL  <a id="pcl"></a></h1>
+<h2 id="pcl-wzxhzdk84wzxhzdk85">PCL  <a id="pcl"></a></h2>
 <p>This format is for the Hewlett-Packard PCL printers and other printers supporting PCL. It should produce output as close to identical as possible to the printed output of the PDFRenderer within the limitations of the renderer, and output device.</p>
 <p>The output created by the PCLRenderer is generic PCL 5, HP GL/2 and PJL. This should allow any device fully supporting PCL 5 to be able to print the output generated by the PCLRenderer. PJL is used to control the print job and switch to the PCL language. PCL 5 is used for text, raster graphics and rectangular fill graphics. HP GL/2 is used for more complex painting operations. Certain painting operations are done off-screen and rendered to PCL as bitmaps because of limitations in PCL 5.</p>
-<h2 id="references-wzxhzdk86wzxhzdk87">References # <a id="pcl-references"></a></h2>
+<h3 id="references-wzxhzdk86wzxhzdk87">References # <a id="pcl-references"></a></h3>
 <ul>
 <li>
 <p><a href="http://en.wikipedia.org/wiki/Printer_Control_Language">WikiPedia entry on PCL</a> </p>
@@ -488,7 +489,7 @@ The default value for the "auto-rotate-l
 <p><a href="http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=bpl04568">Technical reference documents on PCL from Hewlett-Packard</a> </p>
 </li>
 </ul>
-<h2 id="limitations-wzxhzdk88wzxhzdk89">Limitations # <a id="pcl-limitations"></a></h2>
+<h3 id="limitations-wzxhzdk88wzxhzdk89">Limitations # <a id="pcl-limitations"></a></h3>
 <ul>
 <li>
 <p>Text or graphics outside the left or top of the printable area are not rendered properly. This is a limitation of PCL, not FOP. In general, things that should print to the left of the printable area are shifted to the right so that they start at the left edge of the printable area.</p>
@@ -515,7 +516,7 @@ The default value for the "auto-rotate-l
 <p>Currently, there's no support for clipping and image transparency, largely because PCL 5 has certain limitations.</p>
 </li>
 </ul>
-<h2 id="configuration-wzxhzdk90wzxhzdk91">Configuration # <a id="pcl-configuration"></a></h2>
+<h3 id="configuration-wzxhzdk90wzxhzdk91">Configuration # <a id="pcl-configuration"></a></h3>
 <p>The PCL renderer configuration currently allows the following settings:
 <renderer mime="application/x-pcl">
   <rendering>quality</rendering>
@@ -526,14 +527,14 @@ The default value for the "rendering" se
 <p>The default value for the "text-rendering" setting is "auto" which paints the base fonts using PCL fonts. Non-base fonts are painted as bitmaps through Java2D. If the mix of painting methods results in unwelcome output, you can set this to "bitmap" which causes all text to be rendered as bitmaps.</p>
 <p>The default value for the "disable-pjl" setting is "false". This means that the PCL renderer usually generates PJL commands before and after the document in order to switch a printer into PCL language. PJL commands can be disabled if you set this value to "true".</p>
 <p>You can control the output resolution for the PCL using the "target resolution" setting on the FOUserAgent. The actual value will be rounded up to the next supported PCL resolution. Currently, only 300 and 600 dpi are supported which should be enough for most use cases. Note that this setting directly affects the size of the output file and the print quality.</p>
-<h2 id="extensions-wzxhzdk100wzxhzdk101">Extensions # <a id="pcl-extensions"></a></h2>
+<h3 id="extensions-wzxhzdk100wzxhzdk101">Extensions # <a id="pcl-extensions"></a></h3>
 <p>The PCL Renderer supports some PCL specific extensions which can be embedded into the input FO document. To use the extensions the appropriate namespace must be declared in the fo:root element like this:</p>
 <div class="codehilite"><pre>  <span class="o">&lt;</span><span class="n">fo:root</span> <span class="n">xmlns:fo</span><span class="o">=</span><span class="s">&quot;http://www.w3.org/1999/XSL/Format&quot;</span>
            <span class="n">xmlns:pcl</span><span class="o">=</span><span class="s">&quot;http://xmlgraphics.apache.org/fop/extensions/pcl&quot;</span><span class="o">&gt;</span>
 </pre></div>
 
 
-<h3 id="page-source-tray-selection-wzxhzdk102wzxhzdk103">Page Source (Tray selection) ## <a id="pcl-page-source"></a></h3>
+<h4 id="page-source-tray-selection-wzxhzdk102wzxhzdk103">Page Source (Tray selection) ## <a id="pcl-page-source"></a></h4>
 <p>The page-source extension attribute on fo:simple-page-master allows to select the paper tray the sheet for a particular simple-page-master is to be taken from. Example:</p>
 <div class="codehilite"><pre>  <span class="nt">&lt;fo:layout-master-set&gt;</span>
     <span class="nt">&lt;fo:simple-page-master</span> <span class="na">master-name=</span><span class="s">&quot;simple&quot;</span> <span class="na">pcl:paper-source=</span><span class="s">&quot;2&quot;</span><span class="nt">&gt;</span>
@@ -544,7 +545,7 @@ The default value for the "rendering" se
 
 
 <p>Note: the tray number is a positive integer and the value depends on the target printer. Not all PCL printers support the same paper trays. Usually, "1" is the default tray, "2" is the manual paper feed, "3" is the manual envelope feed, "4" is the "lower" tray and "7" is "auto-select". Consult the technical reference for your printer for all available values.</p>
-<h3 id="output-bin-wzxhzdk104wzxhzdk105">Output Bin ## <a id="pcl-output-bin"></a></h3>
+<h4 id="output-bin-wzxhzdk104wzxhzdk105">Output Bin ## <a id="pcl-output-bin"></a></h4>
 <p>The <code>output-bin</code> extension attribute on fo:simple-page-master allows to select the output bin into which the printed output should be fed. Example:</p>
 <div class="codehilite"><pre>  <span class="nt">&lt;fo:layout-master-set&gt;</span>
     <span class="nt">&lt;fo:simple-page-master</span> <span class="na">master-name=</span><span class="s">&quot;simple&quot;</span> <span class="na">pcl:output-bin=</span><span class="s">&quot;2&quot;</span><span class="nt">&gt;</span>
@@ -555,7 +556,7 @@ The default value for the "rendering" se
 
 
 <p>Note: the output bin number is a positive integer and the value depends on the target printer. Not all PCL printers support the same output bins. Usually, "1" is the upper output bin, "2" is the lower (rear) output bin. Consult the technical reference for your printer for all available values.</p>
-<h3 id="page-duplex-mode-wzxhzdk106wzxhzdk107">Page Duplex Mode ## <a id="pcl-duplex-mode"></a></h3>
+<h4 id="page-duplex-mode-wzxhzdk106wzxhzdk107">Page Duplex Mode ## <a id="pcl-duplex-mode"></a></h4>
 <p>The duplex-mode extension attribute on fo:simple-page-master allows to select the duplex mode to be used for a particular simple-page-master. Example:</p>
 <div class="codehilite"><pre>  <span class="nt">&lt;fo:layout-master-set&gt;</span>
     <span class="nt">&lt;fo:simple-page-master</span> <span class="na">master-name=</span><span class="s">&quot;simple&quot;</span> <span class="na">pcl:duplex-mode=</span><span class="s">&quot;0&quot;</span><span class="nt">&gt;</span>
@@ -566,7 +567,7 @@ The default value for the "rendering" se
 
 
 <p>Note: the duplex is a positive integer and the value depends on the target printer. Not all PCL printers support duplexing. Usually, "0" is simplex, "1" is duplex (long-edge binding), "2" is duplex (short-edge binding). Consult the technical reference for your printer for all available values.</p>
-<h1 id="afp-wzxhzdk108wzxhzdk109">AFP  <a id="afp"></a></h1>
+<h2 id="afp-wzxhzdk108wzxhzdk109">AFP  <a id="afp"></a></h2>
 <p>The FOP AFP Renderer deals with creating documents conforming to the IBM AFP document architecture also refered to as MO:DCA (Mixed Object Document Content Architecture).</p>
 <p>The mapping of XSL-FO elements to the major MO:DCA structures is as follows:</p>
 <table>
@@ -592,7 +593,7 @@ The default value for the "rendering" se
 </tbody>
 </table>
 <p>FOP creates exactly one Document per Printfile with an optional Resource Group at the beginning. FOP does not create document indices.</p>
-<h2 id="references-wzxhzdk110wzxhzdk111">References # <a id="afp-references"></a></h2>
+<h3 id="references-wzxhzdk110wzxhzdk111">References # <a id="afp-references"></a></h3>
 <ul>
 <li>
 <p><a href="http://en.wikipedia.org/wiki/Advanced_Function_Presentation">AFP (Advanced Function Presentation)</a> </p>
@@ -604,7 +605,7 @@ The default value for the "rendering" se
 <p><a href="http://wiki.apache.org/xmlgraphics-fop/AFPOutput">Technical notes on AFP output in FOP</a> </p>
 </li>
 </ul>
-<h2 id="limitations-wzxhzdk112wzxhzdk113">Limitations # <a id="afp-limitations"></a></h2>
+<h3 id="limitations-wzxhzdk112wzxhzdk113">Limitations # <a id="afp-limitations"></a></h3>
 <p>This list is most likely badly incomplete.</p>
 <ul>
 <li>
@@ -614,10 +615,10 @@ The default value for the "rendering" se
 <p>Only IBM outline and raster fonts and to a limited extend the original fonts built into FOP are supported. Support for TrueType fonts may be added later.</p>
 </li>
 </ul>
-<h2 id="deployment-in-older-environments-wzxhzdk114wzxhzdk115">Deployment in older environments # <a id="afp-compatibility"></a></h2>
+<h3 id="deployment-in-older-environments-wzxhzdk114wzxhzdk115">Deployment in older environments # <a id="afp-compatibility"></a></h3>
 <p>There are still a big number of older (or limited) MO:DCA/IPDS environments in production out there. AFP has grown in functionality over time and not every environment supports the latest features. We're trying to make AFP output work in as many environments as possible. However, to make AFP output work on older environments it is recommended to set to configuration to 1 bit per pixel (see below on how to do this). In this case, all images are converted to bi-level images using IOCA function set 10 (FS10) and are enclosed in page-segments since some implementation cannot deal with IOCA objects directly. If a higher number of bits per pixel is configured, FOP has to switch to at least FS11 which may not work everywhere.</p>
-<h2 id="configuration-wzxhzdk116wzxhzdk117">Configuration # <a id="afp-configuration"></a></h2>
-<h3 id="fonts-wzxhzdk118wzxhzdk119">Fonts ## <a id="afp-font-config"></a></h3>
+<h3 id="configuration-wzxhzdk116wzxhzdk117">Configuration # <a id="afp-configuration"></a></h3>
+<h4 id="fonts-wzxhzdk118wzxhzdk119">Fonts ## <a id="afp-font-config"></a></h4>
 <p>The AFP Renderer requires special configuration particularly related to fonts. AFP Render configuration is done through the normal FOP configuration file. The MIME type for the AFP Renderer is application/x-afp which means the AFP Renderer section in the FOP configuration file looks like:
 <renderer mime="application/x-afp">
   <!-- AFP Renderer -->
@@ -830,13 +831,13 @@ A CID-keyed font (Type 0, double-byte ou
 
 
 <p>If you disable GOCA or let text render as shapes, the size of the generated AFP usually increases considerably.</p>
-<h3 id="shading-wzxhzdk194wzxhzdk195">Shading ## <a id="afp-shading-config"></a></h3>
+<h4 id="shading-wzxhzdk194wzxhzdk195">Shading ## <a id="afp-shading-config"></a></h4>
 <p>By default, filled rectangles are painted using their given color using a PTOCA I-axis rule (DIR). But not all environments handle these colors correctly. That's why a setting is supported that paints the rectangles using an ordered dither pattern (bi-level) with an inline IOCA FS10 image that is used together with the "replicate and trim" mapping. The optional "shading" element can be used to control the shading mode. Its default value is "color". To enable the dithered mode, use "dithered". Example:</p>
 <div class="codehilite"><pre>  <span class="nt">&lt;shading&gt;</span>dithered<span class="nt">&lt;/shading&gt;</span>
 </pre></div>
 
 
-<h3 id="resource-group-file-wzxhzdk196wzxhzdk197">Resource Group File ## <a id="afp-resource-group-file"></a></h3>
+<h4 id="resource-group-file-wzxhzdk196wzxhzdk197">Resource Group File ## <a id="afp-resource-group-file"></a></h4>
 <p>By default the AFP Renderer will place all data resource objects such as images within the document of the main output datastream. An external resource group file where document resources may be specified with the <resource-group-file/> configuration element. Example:</p>
 <div class="codehilite"><pre>  <span class="nt">&lt;resource-group-file&gt;</span>external_resources.afp<span class="nt">&lt;/resource-group-file&gt;</span>
 </pre></div>
@@ -848,14 +849,14 @@ A CID-keyed font (Type 0, double-byte ou
 <p>It is possible to override these defaults, either per image (see the <a href="#afp-foreign-attributes-resource">afp:resource-level</a> extension attribute below) or by specifying different defaults in the configuration:</p>
 <p><default-resource-levels goca="print-file" bitmap="inline"/>
 "goca" refers to GOCA graphics and "bitmap" refers to IOCA images. The possible values for the attributes are "inline" and "print-file". In the future, additional possibilities may be added.</p>
-<h2 id="extensions-wzxhzdk202wzxhzdk203">Extensions # <a id="afp-extensions"></a></h2>
+<h3 id="extensions-wzxhzdk202wzxhzdk203">Extensions # <a id="afp-extensions"></a></h3>
 <p>The AFP Renderer supports some AFP specific extensions which can be embedded into the input fo document. To use the extensions the appropriate namespace must be declared in the fo:root element like this:</p>
 <div class="codehilite"><pre>  <span class="o">&lt;</span><span class="n">fo:root</span> <span class="n">xmlns:fo</span><span class="o">=</span><span class="s">&quot;http://www.w3.org/1999/XSL/Format&quot;</span>
            <span class="n">xmlns:afp</span><span class="o">=</span><span class="s">&quot;http://xmlgraphics.apache.org/fop/extensions/afp&quot;</span><span class="o">&gt;</span>
 </pre></div>
 
 
-<h3 id="page-overlay-ipo-extension-wzxhzdk204wzxhzdk205">Page Overlay (IPO) Extension ## <a id="afp-page-overlay"></a></h3>
+<h4 id="page-overlay-ipo-extension-wzxhzdk204wzxhzdk205">Page Overlay (IPO) Extension ## <a id="afp-page-overlay"></a></h4>
 <p>The include-page-overlay extension element allows to define on a per simple-page-master basis a page overlay resource. Example:</p>
 <div class="codehilite"><pre>  <span class="nt">&lt;fo:layout-master-set&gt;</span>
     <span class="nt">&lt;fo:simple-page-master</span> <span class="na">master-name=</span><span class="s">&quot;simple&quot;</span><span class="nt">&gt;</span>
@@ -867,7 +868,7 @@ A CID-keyed font (Type 0, double-byte ou
 
 
 <p>The mandatory name attribute must refer to an 8 character (space padded) resource name that must be known in the AFP processing environment. Optional x and y attributes can be specified to place the Overlay at an offset from the top left of the page.</p>
-<h3 id="page-segment-ips-extension-wzxhzdk206wzxhzdk207">Page Segment (IPS) Extension ## <a id="afp-page-segment"></a></h3>
+<h4 id="page-segment-ips-extension-wzxhzdk206wzxhzdk207">Page Segment (IPS) Extension ## <a id="afp-page-segment"></a></h4>
 <p>The include-page-segment extension element allows to define resource substitution for fo:external-graphics elements. Example:</p>
 <div class="codehilite"><pre><span class="nt">&lt;fo:root</span> <span class="na">xmlns:fo=</span><span class="s">&quot;http://www.w3.org/1999/XSL/Format&quot;</span>
  <span class="na">xmlns:afp=</span><span class="s">&quot;http://xmlgraphics.apache.org/fop/extensions/afp&quot;</span><span class="nt">&gt;</span>
@@ -883,7 +884,7 @@ A CID-keyed font (Type 0, double-byte ou
 <p>The include-page-segment extension element can only occur within a simple-page-master. Multiple include-page-segment extension elements within a simple-page-master are allowed. The mandatory name attribute must refer to an 8 character (space padded) resource name that must be known in the AFP processing environment. The value of the mandatory src attribute is compared against the value of the src attribute in fo:external-graphic elements and if it is identical (string matching is used) in the generated AFP the external graphic is replaced by a reference to the given resource.</p>
 <p>The effect here is that whenever FOP encounters the URI specified in the extension, it will effectively generate code to include the page segment with the given name instead of embedding the image referenced by the URI. The URI is still required as the underlying image serves as a provider for the intrinsic size of the image (At the moment, FOP is unable to extract the intrinsic size of the page segment from an AFP resource file). For the image to appear in an AFP viewer or to be printed, the AFP resource must be available on the target device. FOP does not embed the page segment in the generated file. Please also note that page segments cannot be scaled. They are always rendered in their intrinsic size.</p>
 <p>The include-page-segment extension element has the optional attribute <em>resource-file</em> . The value of this is a URI to a resource containing a page segment with the declared name. In this case FOP embeds the page segment into the generated document so that the external resource does not have to be supplied in the print job.</p>
-<h3 id="tag-logical-element-tle-extension-wzxhzdk208wzxhzdk209">Tag Logical Element (TLE) Extension ## <a id="afp-tag-logical-element"></a></h3>
+<h4 id="tag-logical-element-tle-extension-wzxhzdk208wzxhzdk209">Tag Logical Element (TLE) Extension ## <a id="afp-tag-logical-element"></a></h4>
 <p>The tag-logical-element extension element allows to injects TLEs into the AFP output stream. Example:</p>
 <div class="codehilite"><pre><span class="nt">&lt;fo:root</span> <span class="na">xmlns:fo=</span><span class="s">&quot;http://www.w3.org/1999/XSL/Format&quot;</span>
  <span class="na">xmlns:afp=</span><span class="s">&quot;http://xmlgraphics.apache.org/fop/extensions/afp&quot;</span><span class="nt">&gt;</span>
@@ -902,7 +903,7 @@ A CID-keyed font (Type 0, double-byte ou
 
 
 <p>The tag-logical-element extension element can appear within a simple-page-master (page level) or it can appear as child of page-sequence (page group level). Multiple tag-logical-element extension elements within a simple-page-master or page-sequence are allowed. The name and value attributes are mandatory.</p>
-<h3 id="no-operation-nop-extension-wzxhzdk210wzxhzdk211">No Operation (NOP) Extension ## <a id="afp-no-operation"></a></h3>
+<h4 id="no-operation-nop-extension-wzxhzdk210wzxhzdk211">No Operation (NOP) Extension ## <a id="afp-no-operation"></a></h4>
 <p>The no-operation extension provides the ability to carry up to 32K of comments or any other type of unarchitected data into the AFP output stream. Example:</p>
 <div class="codehilite"><pre><span class="nt">&lt;fo:root</span> <span class="na">xmlns:fo=</span><span class="s">&quot;http://www.w3.org/1999/XSL/Format&quot;</span>
  <span class="na">xmlns:afp=</span><span class="s">&quot;http://xmlgraphics.apache.org/fop/extensions/afp&quot;</span><span class="nt">&gt;</span>
@@ -915,7 +916,7 @@ A CID-keyed font (Type 0, double-byte ou
 
 
 <p>The no-operation extension element can appear as child of <code>simple-page-master</code> (appears after "Begin Page" BPG), <code>page-sequence</code> (appears after "Begin Named Page Group" BNG and <code>declarations</code> (appears after "Begin Document" BDT). Multiple no-operation extension elements inside the same formatting object are allowed. Each NOP will appear right after the respective "Begin" field indicated above even if it is specified as the last child under its parent. The order inside the parent will be maintained. The "placement" attribute can be used to have the NOP appear before the "End" field of the object rather than after the "Begin" field. Specify <code>placement="before-end"</code> to do that. Please note that, at the moment, this only has an effect for NOPs that are children of the <code>page-sequence</code> formatting object. The "name" attribute is mandatory but will not appear inside the AFP stream.</p>
-<h3 id="invoke-medium-map-imm-extension-wzxhzdk212wzxhzdk213">Invoke Medium Map (IMM) Extension ## <a id="afp-invoke-medium-map"></a></h3>
+<h4 id="invoke-medium-map-imm-extension-wzxhzdk212wzxhzdk213">Invoke Medium Map (IMM) Extension ## <a id="afp-invoke-medium-map"></a></h4>
 <p>The invoke-medium-map extension allows to generate IMM fields (Invoke Medium Map) in the generated AFP output. Example:</p>
 <div class="codehilite"><pre><span class="o">&lt;</span><span class="n">fo:root</span> <span class="n">xmlns:fo</span><span class="o">=</span><span class="s">&quot;http://www.w3.org/1999/XSL/Format&quot;</span>
  <span class="n">xmlns:afp</span><span class="o">=</span><span class="s">&quot;http://xmlgraphics.apache.org/fop/extensions/afp&quot;</span><span class="o">&gt;</span>
@@ -928,14 +929,14 @@ A CID-keyed font (Type 0, double-byte ou
 
 
 <p>The invoke-medium-map element is allowed as child of fo:page-sequence (page group level) or fo:simple-page-master. It is NOT supported on document level (fo:root), yet. FOP also doesn't support specifying medium maps inside XML (using BMM/EMM). It can only reference an existing medium map by name. The medium map has to be constructed through different means and available on the target platform.</p>
-<h3 id="form-mapsdefs-wzxhzdk214wzxhzdk215">Form Maps/Defs ## <a id="afp-form-maps"></a></h3>
+<h4 id="form-mapsdefs-wzxhzdk214wzxhzdk215">Form Maps/Defs ## <a id="afp-form-maps"></a></h4>
 <p>Apache FOP supports embedding an external form map resource in the generated AFP output. This is done using the <code>afp:include-form-map</code> extension. An example:</p>
 <p class="."><fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
      xmlns:afp="http://xmlgraphics.apache.org/fop/extensions/afp"></p>
 <p>The <code>afp:include-form-map</code> is to be placed as a direct child of <code>fo:declarations</code> . The <code>name</code> is an AFP resource name (max. 8 characters) and the <code>src</code> attribute is the URI identifying the external form map resource. When such a form map is embedded, you can use the <code>afp:invoke-medium-map</code> extension (described above) to invoke any medium map included in the form map.
 Apache FOP doesn't support a way to define a form map or medium map using XML means inside an XSL-FO document. You will have to build the form map with some third-party tool.</p>
 <h2 id="foreign-attributes-wzxhzdk217wzxhzdk218">Foreign Attributes # <a id="afp-foreign-attributes"></a></h2>
-<h3 id="resource-wzxhzdk219wzxhzdk220">Resource ## <a id="afp-foreign-attributes-resource"></a></h3>
+<h4 id="resource-wzxhzdk219wzxhzdk220">Resource ## <a id="afp-foreign-attributes-resource"></a></h4>
 <p>The resource foreign attributes provides the ability to name and control where data object resources (e.g. images/scalable vector graphics) will reside in the AFP output. The afp foreign attributes are only used in conjuntion with <fo:external-graphic/> and <instream-foreign-object/>. Example:</p>
 <div class="codehilite"><pre><span class="nt">&lt;fo:root</span> <span class="na">xmlns:fo=</span><span class="s">&quot;http://www.w3.org/1999/XSL/Format&quot;</span>
  <span class="na">xmlns:afp=</span><span class="s">&quot;http://xmlgraphics.apache.org/fop/extensions/afp&quot;</span><span class="nt">&gt;</span>
@@ -961,7 +962,7 @@ Apache FOP doesn't support a way to defi
 
 
 <p>The resource-level attribute where the resource object will reside in the AFP output datastream. The possible values for this are "inline", "print-file" and "external". When "external" is used a resource-group-file attribute must also be specified. Please refer to the <a href="#afp-resource-level-defaults">Resource Level Defaults</a> above to see what is used if the resource-level attribute is not specified.</p>
-<h1 id="rtf-wzxhzdk223wzxhzdk224">RTF  <a id="rtf"></a></h1>
+<h2 id="rtf-wzxhzdk223wzxhzdk224">RTF  <a id="rtf"></a></h2>
 <p>JFOR, an open source XSL-FO to RTF converter has been integrated into Apache FOP. This will create an RTF (rich text format) document that will attempt to contain as much information from the XSL-FO document as possible. It should be noted that is not possible (due to RTF's limitations) to map all XSL-FO features to RTF. For complex documents, the RTF output will never reach the feature level from PDF, for example. Thus, using RTF output is only recommended for simple documents such as letters.</p>
 <p>The RTF output follows Microsoft's RTF specifications and produces best results on Microsoft Word.
 RTF output is currently unmaintained and lacks many features compared to other output formats. Using other editable formats like Open Document Format, instead of producing XSL-FO then RTF through FOP, might give better results.
@@ -997,21 +998,21 @@ These are some known restrictions compar
 <p>percentages are not supported everywhere</p>
 </li>
 </ul>
-<h1 id="xml-area-tree-xml-wzxhzdk225wzxhzdk226">XML (Area Tree XML)  <a id="xml"></a></h1>
+<h2 id="xml-area-tree-xml-wzxhzdk225wzxhzdk226">XML (Area Tree XML)  <a id="xml"></a></h2>
 <p>This is primarily for testing and verification. The XML created is simply a representation of the internal area tree put into XML. We use that to verify the functionality of FOP's layout engine.</p>
 <p>The other use case of the Area Tree XML is as FOP's "intermediate format". More information on that can be found on the page dedicated to the <a href="intermediate.html">Intermediate Format</a> .</p>
-<h1 id="java2dawt-wzxhzdk227wzxhzdk228">Java2D/AWT  <a id="awt"></a></h1>
+<h2 id="java2dawt-wzxhzdk227wzxhzdk228">Java2D/AWT  <a id="awt"></a></h2>
 <p>The Java2DRenderer provides the basic functionality for all Java2D-based output formats (AWT viewer, direct print, PNG, TIFF).</p>
 <p>The AWT viewer shows a window with the pages displayed inside a Java graphic. It displays one page at a time. The fonts used for the formatting and viewing depend on the fonts available to your JRE.</p>
-<h1 id="print-wzxhzdk229wzxhzdk230">Print  <a id="print"></a></h1>
+<h2 id="print-wzxhzdk229wzxhzdk230">Print  <a id="print"></a></h2>
 <p>It is possible to directly print the document from the command line. This is done with the same code that renders to the Java2D/AWT renderer.</p>
-<h2 id="known-issues-wzxhzdk231wzxhzdk232">Known issues # <a id="print-issues"></a></h2>
+<h3 id="known-issues-wzxhzdk231wzxhzdk232">Known issues # <a id="print-issues"></a></h3>
 <p>If you run into the problem that the printed output is incomplete on Windows: this often happens to users printing to a PCL printer. There seems to be an incompatibility between Java and certain PCL printer drivers on Windows. Since most network-enabled laser printers support PostScript, try switching to the PostScript printer driver for that printer model.</p>
-<h1 id="bitmap-tiffpng-wzxhzdk233wzxhzdk234">Bitmap (TIFF/PNG)  <a id="bitmap"></a></h1>
+<h2 id="bitmap-tiffpng-wzxhzdk233wzxhzdk234">Bitmap (TIFF/PNG)  <a id="bitmap"></a></h2>
 <p>It is possible to directly create bitmap images from the individual pages generated by the layout engine. This is done with the same code that renders to the Java2D/AWT renderer.</p>
 <p>Currently, two output formats are supported: PNG and TIFF. TIFF produces one file with multiple pages, while PNG output produces one file per page. Note: FOP can only produce multiple files (with PNG output) if you can set a <code>java.io.File</code> indicating the primary PNG file using the <code>FOUserAgent.setOutputFile(File)</code> method.</p>
 <p>The quality of the bitmap depends on the target resolution setting on the FOUserAgent and on further settings described below.</p>
-<h2 id="configuration-wzxhzdk235wzxhzdk236">Configuration # <a id="bitmap-configuration"></a></h2>
+<h3 id="configuration-wzxhzdk235wzxhzdk236">Configuration # <a id="bitmap-configuration"></a></h3>
 <p>The TIFF and PNG renderer configuration currently allows the following settings:
 <renderer mime="image/png">
   <color-mode>rgba</color-mode>
@@ -1041,7 +1042,7 @@ The default value for the <code>"color-m
 <p>The default value for the <code>"background-color"</code> setting is <code>"white"</code> . The color specifies in which color the page background is painted. It will only be painted if <code>"transparent-page-background"</code> is not set to <code>"true"</code> . All XSL-FO colors (including color functions) can be used.</p>
 <p>The default value for the <code>"anti-aliasing"</code> setting is <code>"true"</code> . You can set this value to <code>"false"</code> to disable anti-aliasing and thus improve rendering speeds a bit at the loss of some image quality.</p>
 <p>The default value for the <code>"rendering"</code> setting is <code>"true"</code> . You can set this value to <code>"false"</code> to improve rendering speeds a bit at the loss of some image quality. If this setting has an actual effect depends on the JVM's Java2D backend.</p>
-<h2 id="tiff-specific-configuration-wzxhzdk252wzxhzdk253">TIFF-specific Configuration # <a id="tiff-configuration"></a></h2>
+<h3 id="tiff-specific-configuration-wzxhzdk252wzxhzdk253">TIFF-specific Configuration # <a id="tiff-configuration"></a></h3>
 <p>In addition to the above values the TIFF renderer configuration allows some additional settings:
 <renderer mime="image/tiff">
   <transparent-page-background>true</transparent-page-background>
@@ -1095,15 +1096,15 @@ userAgent.getRenderingOptions().put(
 <p>line-height="10pt"</p>
 </li>
 </ul>
-<h1 id="output-formats-in-the-sandbox-wzxhzdk267wzxhzdk268">Output Formats in the Sandbox  <a id="sandbox"></a></h1>
+<h2 id="output-formats-in-the-sandbox-wzxhzdk267wzxhzdk268">Output Formats in the Sandbox  <a id="sandbox"></a></h2>
 <p>Due to the state of certain renderers we moved some of them to a "sandbox" area until they are ready for more serious use. The renderers and FOEventHandlers in the sandbox can be found under src/sandbox and are compiled into build/fop-sandbox.jar during the main build. The output formats in the sandbox are marked as such below.</p>
-<h2 id="mif-wzxhzdk269wzxhzdk270">MIF # <a id="mif"></a></h2>
+<h3 id="mif-wzxhzdk269wzxhzdk270">MIF # <a id="mif"></a></h3>
 <p><warning>The MIF handler is in the sandbox and not yet functional in FOP Trunk!!! Please help us ressurrect this feature.</warning>
 This format is the Maker Interchange Format which is used by Adobe Framemaker.</p>
-<h2 id="svg-wzxhzdk273wzxhzdk274">SVG # <a id="svg"></a></h2>
+<h3 id="svg-wzxhzdk273wzxhzdk274">SVG # <a id="svg"></a></h3>
 <p><warning>The SVG renderer is in the sandbox and may not work as expected in FOP Trunk!!! Please help us improve this feature.</warning>
 This format creates an SVG document that has links between the pages. This is primarily for slides and creating svg images of pages. Large documents will create SVG files that are far too large for an SVG viewer to handle. Since FO documents usually have text the SVG document will have a large number of text elements. The font information for the text is obtained from the JVM in the same way as for the AWT viewer. If the SVG is viewed on a system where the fonts are different, such as another platform, then the page may look wrong.</p>
-<h1 id="wish-list-wzxhzdk277wzxhzdk278">Wish list  <a id="wishlist"></a></h1>
+<h2 id="wish-list-wzxhzdk277wzxhzdk278">Wish list  <a id="wishlist"></a></h2>
 <p>Apache FOP is easily extensible and allows you to add new output formats to enhance FOP's functionality. There's a number of output formats which are on our wish list. We're looking for volunteers to help us implement them.</p>
 <ul>
 <li><a href="http://en.wikipedia.org/wiki/OpenDocument">ODF (Open Document Format)</a> : The standardized successor to OpenOffice's file format.</li>

Modified: websites/staging/xmlgraphics/trunk/content/fop/1.1/pdfa.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/1.1/pdfa.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/1.1/pdfa.html Wed Oct 24 04:04:00 2012
@@ -330,24 +330,25 @@ $(document).ready(function () {
       
       <div id="content" class="grid_16">
       	<!-- <div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/1.1/">1.1</a></div> -->
-      	<div class="section-content"><p><version>$Revision$</version><authors><person email="jeremias@apache.org" name="Jeremias Märki"></person></authors></p>
-<h1 id="overview-wzxhzdk6wzxhzdk7">Overview  <a id="overview"></a></h1>
+      	<div class="section-content"><h1 id="apachetm-fop-pdfa-iso-19005">Apache(tm) FOP: PDF/A (ISO 19005)</h1>
+<p><version>$Revision$</version><authors><person email="jeremias@apache.org" name="Jeremias Märki"></person></authors></p>
+<h2 id="overview-wzxhzdk6wzxhzdk7">Overview  <a id="overview"></a></h2>
 <p>PDF/A is a standard which turns PDF into an "electronic document file format for long-term preservation". PDF/A-1 is the first part of the standard and is documented in <a href="http://www.iso.org/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=38920&amp;ICS1=37&amp;ICS2=100&amp;ICS3=99">ISO 19005-1:2005(E)</a> . Work on PDF/A-2 is in progress at <a href="http://www.aiim.org/standards.asp?ID=25013">AIIM</a> .</p>
 <p>Design documentation on PDF/A can be found on FOP's Wiki on the <a href="http://wiki.apache.org/xmlgraphics-fop/PDFA1ConformanceNotes">PDFA1ConformanceNotes</a> page.</p>
-<h1 id="implementation-status-wzxhzdk8wzxhzdk9">Implementation Status  <a id="status"></a></h1>
+<h2 id="implementation-status-wzxhzdk8wzxhzdk9">Implementation Status  <a id="status"></a></h2>
 <p><strong>PDF/A-1b</strong> is implemented to the degree that FOP supports the creation of the elements described in ISO 19005-1.</p>
 <p>Tests have been performed against jHove and Adobe Acrobat 7.0.7 (Preflight function). FOP does not validate completely against Apago's PDF Appraiser. Reasons unknown due to lack of a full license to get a detailed error protocol.</p>
 <p><strong>PDF/A-1a</strong> is based on PDF-A-1b and adds accessibility features (such as Tagged PDF). This format is available within the limitation described on the <a href="accessibility.html">Accessibility page</a> .</p>
-<h1 id="usage-command-line-wzxhzdk10wzxhzdk11">Usage (command line)  <a id="command-line"></a></h1>
+<h2 id="usage-command-line-wzxhzdk10wzxhzdk11">Usage (command line)  <a id="command-line"></a></h2>
 <p>To activate PDF/A-1b from the command-line, specify "-pdfprofile PDF/A-1b" as a parameter. If there is a violation of one of the validation rules for PDF/A, an error message is presented and the processing stops.</p>
 <p>PDF/A-1a is enabled by specifying "-pdfprofile PDF/A-1a".</p>
-<h1 id="usage-embedded-wzxhzdk12wzxhzdk13">Usage (embedded)  <a id="embedded"></a></h1>
+<h2 id="usage-embedded-wzxhzdk12wzxhzdk13">Usage (embedded)  <a id="embedded"></a></h2>
 <p>When FOP is embedded in another Java application you can set a special option on the renderer options in the user agent to activate the PDF/A-1b profile. Here's an example:</p>
 <p class=".">userAgent.getRendererOptions().put("pdf-a-mode", "PDF/A-1b");
 Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF, userAgent);
 </p>
 <p>For PDF/A-1a, just use the string "PDF/A-1a" instead of "PDF/A-1b".</p>
-<h1 id="pdfa-in-action-wzxhzdk14wzxhzdk15">PDF/A in Action  <a id="rules"></a></h1>
+<h2 id="pdfa-in-action-wzxhzdk14wzxhzdk15">PDF/A in Action  <a id="rules"></a></h2>
 <p>There are a number of things that must be looked after if you activate a PDF/A profile. If you receive a PDFConformanceException, have a look at the following list (not necessarily comprehensive):</p>
 <ul>
 <li>
@@ -375,7 +376,7 @@ There are additional requirements if you
 </ul>
 <h1 id="pdf-profile-compatibility-wzxhzdk16wzxhzdk17">PDF profile compatibility  <a id="profile-compatibility"></a></h1>
 <p>The PDF profiles "PDF/X-3:2003" and "PDF/A-1b" (or "PDF/A-1a") are compatible and can both be activated at the same time.</p>
-<h1 id="interoperability-wzxhzdk18wzxhzdk19">Interoperability  <a id="interoperability"></a></h1>
+<h2 id="interoperability-wzxhzdk18wzxhzdk19">Interoperability  <a id="interoperability"></a></h2>
 <p>There has been some confusion about the namespace for the PDF/A indicator in the XMP metadata. At least three variants have been seen in the wild:</p>
 <table>
 <thead>

Modified: websites/staging/xmlgraphics/trunk/content/fop/1.1/pdfencryption.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/1.1/pdfencryption.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/1.1/pdfencryption.html Wed Oct 24 04:04:00 2012
@@ -330,11 +330,12 @@ $(document).ready(function () {
       
       <div id="content" class="grid_16">
       	<!-- <div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/1.1/">1.1</a></div> -->
-      	<div class="section-content"><p><version>$Revision$</version><authors><person email="pietsch@apache.org" name="J.Pietschmann"></person><person email="jeremias@apache.org" name="Jeremias Märki"></person></authors></p>
-<h1 id="overview-wzxhzdk8wzxhzdk9">Overview  <a id="Overview"></a></h1>
+      	<div class="section-content"><h1 id="apachetm-fop-pdf-encryption">Apache(tm) FOP: PDF encryption.</h1>
+<p><version>$Revision$</version><authors><person email="pietsch@apache.org" name="J.Pietschmann"></person><person email="jeremias@apache.org" name="Jeremias Märki"></person></authors></p>
+<h2 id="overview-wzxhzdk8wzxhzdk9">Overview  <a id="Overview"></a></h2>
 <p>Apache&trade; FOP supports encryption of PDF output, thanks to Patrick C. Lankswert. This feature is commonly used to prevent unauthorized viewing, printing, editing, copying text from the document and doing annotations. It is also possible to ask the user for a password in order to view the contents. Note that there already exist third party applications which can decrypt an encrypted PDF without effort and allow the aforementioned operations, therefore the degree of protection is limited.</p>
 <p>For further information about features and restrictions regarding PDF encryption, look at the documentation coming with Adobe Acrobat or the technical documentation on the Adobe web site.</p>
-<h1 id="usage-command-line-wzxhzdk11wzxhzdk12">Usage (command line)  <a id="Usage+%28command+line%29"></a></h1>
+<h2 id="usage-command-line-wzxhzdk11wzxhzdk12">Usage (command line)  <a id="Usage+%28command+line%29"></a></h2>
 <p>Encryption is enabled by supplying any of the encryption related options.</p>
 <p>An owner password is set with the <code>-o</code> option. This password is actually used as encryption key. Many tools for PDF processing ask for this password to disregard any restriction imposed on the PDF document.</p>
 <p>If no owner password has been supplied but FOP was asked to apply some restrictions, a random password is used. In this case it is obviously impossiible to disregard restrictions in PDF processing tools.</p>
@@ -350,7 +351,7 @@ $(document).ready(function () {
 |  <code>-noaccesscontent</code>  | disable text and graphics extraction for accessibility purposes |
 |  <code>-noassembledoc</code>  | disable assembling documents |
 |  <code>-noprinthq</code>  | disable high quality printing |</p>
-<h1 id="usage-embedded-wzxhzdk13wzxhzdk14">Usage (embedded)  <a id="Usage+%28embedded%29"></a></h1>
+<h2 id="usage-embedded-wzxhzdk13wzxhzdk14">Usage (embedded)  <a id="Usage+%28embedded%29"></a></h2>
 <p>When FOP is embedded in another Java application you need to set an options map on the renderer. These are the supported options:</p>
 <table>
 <thead>
@@ -514,13 +515,13 @@ Fop fop = fopFactory.newFop(MimeConstant
 <p>noprinthq: Boolean or "true"/"false"</p>
 </li>
 </ol>
-<h1 id="environment-wzxhzdk15wzxhzdk16">Environment  <a id="Environment"></a></h1>
+<h2 id="environment-wzxhzdk15wzxhzdk16">Environment  <a id="Environment"></a></h2>
 <p>In order to use PDF encryption, FOP has to be compiled with cryptography support. Currently, only <a href="http://java.sun.com/j2se/1.4/docs/guide/security/jce/JCERefGuide.html">JCE</a> is supported. JCE is part of JDK 1.4. For earlier JDKs, it can be installed separately. The build process automatically detects JCE presence and installs PDF encryption support if possible, otherwise a stub is compiled in.</p>
 <p>Cryptography support must also be present at run time. In particular, a provider for the RC4 cipher is needed. Unfortunately, the sample JCE provider in Sun's JDK 1.4 does <strong>not</strong> provide RC4. If you get a message saying
 "Cannot find any provider supporting RC4"
 then you don't have the needed infrastructure.</p>
 <p>There are several commercial and a few Open Source packages which provide RC4. A pure Java implementation is produced by <a href="http://www.bouncycastle.org/">The Legion of the Bouncy Castle</a> . <a href="http://www.mozilla.org/projects/security/pki/jss/">Mozilla JSS</a> is an interface to a native implementation.</p>
-<h1 id="installing-a-crypto-provider-wzxhzdk17wzxhzdk18">Installing a crypto provider  <a id="install_crypto"></a></h1>
+<h2 id="installing-a-crypto-provider-wzxhzdk17wzxhzdk18">Installing a crypto provider  <a id="install_crypto"></a></h2>
 <p>The pure Java implementation from <a href="http://www.bouncycastle.org/">Bouncy Castle</a> is easy to install.</p>
 <ol>
 <li>

Modified: websites/staging/xmlgraphics/trunk/content/fop/1.1/pdfx.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/1.1/pdfx.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/1.1/pdfx.html Wed Oct 24 04:04:00 2012
@@ -330,23 +330,24 @@ $(document).ready(function () {
       
       <div id="content" class="grid_16">
       	<!-- <div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/1.1/">1.1</a></div> -->
-      	<div class="section-content"><p><version>$Revision$</version><authors><person email="jeremias@apache.org" name="Jeremias Märki"></person></authors></p>
-<h1 id="overview-wzxhzdk6wzxhzdk7">Overview  <a id="overview"></a></h1>
+      	<div class="section-content"><h1 id="apachetm-fop-pdfx-iso-15930">Apache(tm) FOP: PDF/X (ISO 15930)</h1>
+<p><version>$Revision$</version><authors><person email="jeremias@apache.org" name="Jeremias Märki"></person></authors></p>
+<h2 id="overview-wzxhzdk6wzxhzdk7">Overview  <a id="overview"></a></h2>
 <p><warning>Support for PDF/X is available beginning with version 0.93. This feature is new and may not be 100% complete, yet. Feedback is welcome.</warning>
 PDF/X is a standard which faciliates prepress digital data exchange using PDF. Currently, only PDF/X-3:2003 is implemented out of the many different flavours of PDF/X profiles. PDF/X-3:2003 is documented in <a href="http://www.iso.org/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=39940&amp;ICS1=37&amp;ICS2=100&amp;ICS3=99">ISO 15930-6:2003(E)</a> . More info on PDF/X can be found on the <a href="http://www.pdfx.info/">PDF/X info site</a> .</p>
-<h1 id="implementation-status-wzxhzdk10wzxhzdk11">Implementation Status  <a id="status"></a></h1>
+<h2 id="implementation-status-wzxhzdk10wzxhzdk11">Implementation Status  <a id="status"></a></h2>
 <p><strong>PDF/X-3:2003</strong> is implemented to the degree that FOP supports the creation of the elements described in ISO 15930-6.</p>
 <p>An important restriction of the current implementation is that all normal RGB colors specified in XSL-FO and SVG are left unchanged in the sRGB color space (XSL-FO and SVG both use sRGB as their default color space). There's no conversion to a CMYK color space. Although sRGB is a calibrated color space, its color space has a different size than a CMYK color space which makes the conversion a lossy conversion and can lead to unwanted results. Although the use of the calibrated sRGB has been promoted for years, print shops usually prefer to convert an sRGB PDF to CMYK prior to production. Until there's full CMYK support in FOP you will have to work closely with your print service provider to make sure you get the intended result.</p>
 <p>Tests have been performed against Adobe Acrobat 7.0.7 (Preflight function). Note that there are bugs in Adobe Acrobat which cause false alarms if both PDF/A-1b and PDF/X-3:2003 are activated at the same time.</p>
-<h1 id="usage-command-line-wzxhzdk12wzxhzdk13">Usage (command line)  <a id="command-line"></a></h1>
+<h2 id="usage-command-line-wzxhzdk12wzxhzdk13">Usage (command line)  <a id="command-line"></a></h2>
 <p>To activate PDF/X-3:2003 from the command-line, specify "-pdfprofile PDF/X-3:2003" as a parameter. If there is a violation of one of the validation rules for PDF/X, an error message is presented and the processing stops.</p>
-<h1 id="usage-embedded-wzxhzdk14wzxhzdk15">Usage (embedded)  <a id="embedded"></a></h1>
+<h2 id="usage-embedded-wzxhzdk14wzxhzdk15">Usage (embedded)  <a id="embedded"></a></h2>
 <p>When FOP is embedded in another Java application you can set a special option on the renderer options in the user agent to activate the PDF/A-1b profile. Here's an example:</p>
 <p class=".">FOUserAgent userAgent = fopFactory.newFOUserAgent();
 userAgent.getRendererOptions().put("pdf-x-mode", "PDF/X-3:2003");
 Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF, userAgent);
 </p>
-<h1 id="pdfx-in-action-wzxhzdk16wzxhzdk17">PDF/X in Action  <a id="rules"></a></h1>
+<h2 id="pdfx-in-action-wzxhzdk16wzxhzdk17">PDF/X in Action  <a id="rules"></a></h2>
 <p>There are a number of things that must be looked after if you activate a PDF/X profile. If you receive a PDFConformanceException, have a look at the following list (not necessarily comprehensive):</p>
 <ul>
 <li>
@@ -368,7 +369,7 @@ Fop fop = fopFactory.newFop(MimeConstant
 <p>PDF is forced to version 1.4 if PDF/X-3:2003 is activated.</p>
 </li>
 </ul>
-<h1 id="pdf-profile-compatibility-wzxhzdk18wzxhzdk19">PDF profile compatibility  <a id="profile-compatibility"></a></h1>
+<h2 id="pdf-profile-compatibility-wzxhzdk18wzxhzdk19">PDF profile compatibility  <a id="profile-compatibility"></a></h2>
 <p>The PDF profiles "PDF/X-3:2003" and "PDF/A-1b" are compatible and can both be activated at the same time.</p></div>
       </div>
       

Modified: websites/staging/xmlgraphics/trunk/content/fop/1.1/releaseNotes_1.1.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/1.1/releaseNotes_1.1.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/1.1/releaseNotes_1.1.html Wed Oct 24 04:04:00 2012
@@ -330,7 +330,8 @@ $(document).ready(function () {
       
       <div id="content" class="grid_16">
       	<!-- <div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/1.1/">1.1</a></div> -->
-      	<div class="section-content"><h1 id="major-changes-in-version-11-wzxhzdk0wzxhzdk1">Major Changes in Version 1.1  <a id="version_1.1"></a></h1>
+      	<div class="section-content"><h1 id="release-notes-for-apache-fop-11">Release Notes for Apache FOP 1.1</h1>
+<h2 id="major-changes-in-version-11-wzxhzdk0wzxhzdk1">Major Changes in Version 1.1  <a id="version_1.1"></a></h2>
 <p>This is not a complete list of changes, just some of the more important ones. A full list of changes in this release <a href="changes_1.1.html">is available</a> .</p>
 <h2 id="changes-to-the-code-base-wzxhzdk2wzxhzdk3">Changes to the Code Base # <a id="Changes+to+the+Code+Base"></a></h2>
 <ul>
@@ -374,11 +375,11 @@ $(document).ready(function () {
 <p><icon alt="add" src="../images/add.jpg"></icon>Added support for resolution of relative URIs against a specified xml:base during property refinement. Committed by AD. See Issue <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=48334">48334</a> .</p>
 </li>
 </ul>
-<h2 id="changes-to-the-user-configuration-wzxhzdk4wzxhzdk5">Changes to the User Configuration # <a id="Changes+to+the+User+Configuration"></a></h2>
+<h3 id="changes-to-the-user-configuration-wzxhzdk4wzxhzdk5">Changes to the User Configuration # <a id="Changes+to+the+User+Configuration"></a></h3>
 <ul>
 <li><icon alt="add" src="../images/add.jpg"></icon>Added configuration option to set the version of the output PDF document. Committed by VH. Thanks to Mehdi Houshmand. See Issue <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=51385">51385</a> .</li>
 </ul>
-<h2 id="changes-to-the-font-subsystem-wzxhzdk6wzxhzdk7">Changes to the Font Subsystem # <a id="Changes+to+the+Font+Subsystem"></a></h2>
+<h3 id="changes-to-the-font-subsystem-wzxhzdk6wzxhzdk7">Changes to the Font Subsystem # <a id="Changes+to+the+Font+Subsystem"></a></h3>
 <ul>
 <li>
 <p><icon alt="add" src="../images/add.jpg"></icon>Add support for OpenType advanced typographic tables (GDEF, GSUB, GPOS). Committed by GA.</p>
@@ -396,11 +397,11 @@ $(document).ready(function () {
 <p><icon alt="add" src="../images/add.jpg"></icon>Added convenience support for the flushing of the Fop font cache file from the command line. Committed by AC.</p>
 </li>
 </ul>
-<h2 id="changes-to-the-image-support-wzxhzdk8wzxhzdk9">Changes to the Image Support # <a id="Changes+to+the+Image+Support"></a></h2>
+<h3 id="changes-to-the-image-support-wzxhzdk8wzxhzdk9">Changes to the Image Support # <a id="Changes+to+the+Image+Support"></a></h3>
 <ul>
 <li><icon alt="fix" src="../images/fix.jpg"></icon>Support use of ImageLoaderRawPNG decoder in order to prevent re-encoding of PNG images (and unnecssary output file bloat). Committed by GA. Thanks to Luis Bernardo, Matthias Reischenbacher. See Issue <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=40676">40676</a> .</li>
 </ul>
-<h2 id="changes-to-the-layout-engine-wzxhzdk10wzxhzdk11">Changes to the Layout Engine # <a id="Changes+to+the+Layout+Engine"></a></h2>
+<h3 id="changes-to-the-layout-engine-wzxhzdk10wzxhzdk11">Changes to the Layout Engine # <a id="Changes+to+the+Layout+Engine"></a></h3>
 <ul>
 <li>
 <p><icon alt="fix" src="../images/fix.jpg"></icon>Fix for break before (break-before) not respected on blocks nested in inlines. Committed by GA. Thanks to Luis Bernardo. See Issue <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=45715">45715</a> .</p>
@@ -427,7 +428,7 @@ $(document).ready(function () {
 <p><icon alt="fix" src="../images/fix.jpg"></icon>Fix for correct behavior of keep-together.within-line in case there are nested inlines Committed by AD. See Issue <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=49848">49848</a> .</p>
 </li>
 </ul>
-<h2 id="changes-to-renderers-output-formats-wzxhzdk12wzxhzdk13">Changes to Renderers (Output Formats) # <a id="Changes+to+Renderers+%28Output+Formats%29"></a></h2>
+<h3 id="changes-to-renderers-output-formats-wzxhzdk12wzxhzdk13">Changes to Renderers (Output Formats) # <a id="Changes+to+Renderers+%28Output+Formats%29"></a></h3>
 <ul>
 <li>
 <p><icon alt="add" src="../images/add.jpg"></icon>Added possibility to embed TrueType fonts in PostScript. Committed by VH. See Issue <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=52338">52338</a> .</p>

Modified: websites/staging/xmlgraphics/trunk/content/fop/1.1/running.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/1.1/running.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/1.1/running.html Wed Oct 24 04:04:00 2012
@@ -330,8 +330,9 @@ $(document).ready(function () {
       
       <div id="content" class="grid_16">
       	<!-- <div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/1.1/">1.1</a></div> -->
-      	<div class="section-content"><p><version>$Revision$</version></p>
-<h1 id="system-requirements-wzxhzdk2wzxhzdk3">System Requirements  <a id="require"></a></h1>
+      	<div class="section-content"><h1 id="running-apachewzxhzdk0-fop">Running Apache&trade; FOP</h1>
+<p><version>$Revision$</version></p>
+<h2 id="system-requirements-wzxhzdk3wzxhzdk4">System Requirements  <a id="require"></a></h2>
 <p>The following software must be installed:</p>
 <ul>
 <li>
@@ -374,13 +375,13 @@ $(document).ready(function () {
 <ul>
 <li>If you will be using FOP to process SVG, you must do so in a graphical environment. See <a href="graphics.html#batik">FOP: Graphics (Batik)</a> for details.</li>
 </ul>
-<h1 id="installation-wzxhzdk4wzxhzdk5">Installation  <a id="install"></a></h1>
-<h2 id="instructions-wzxhzdk6wzxhzdk7">Instructions # <a id="install-instruct"></a></h2>
+<h2 id="installation-wzxhzdk5wzxhzdk6">Installation  <a id="install"></a></h2>
+<h3 id="instructions-wzxhzdk7wzxhzdk8">Instructions # <a id="install-instruct"></a></h3>
 <p>Basic FOP installation consists of first unzipping the <code>.gz</code> file that is the distribution medium, then unarchiving the resulting <code>.tar</code> file in a directory/folder that is convenient on your system. Please consult your operating system documentation or Zip application software documentation for instructions specific to your site.</p>
-<h2 id="problems-wzxhzdk8wzxhzdk9">Problems # <a id="install-problems"></a></h2>
+<h3 id="problems-wzxhzdk9wzxhzdk10">Problems # <a id="install-problems"></a></h3>
 <p>Some Mac OSX users have experienced filename truncation problems using Stuffit to unzip and unarchive their distribution media. This is a legacy of older Mac operating systems, which had a 31-character pathname limit. Several Mac OSX users have recommended that Mac OSX users use the shell command <code>tar -xzf</code> instead.</p>
-<h1 id="starting-fop-as-a-standalone-application-wzxhzdk10wzxhzdk11">Starting FOP as a Standalone Application  <a id="standalone-start"></a></h1>
-<h2 id="using-the-fop-script-or-batch-file-wzxhzdk12wzxhzdk13">Using the fop script or batch file # <a id="fop-script"></a></h2>
+<h2 id="starting-fop-as-a-standalone-application-wzxhzdk11wzxhzdk12">Starting FOP as a Standalone Application  <a id="standalone-start"></a></h2>
+<h3 id="using-the-fop-script-or-batch-file-wzxhzdk13wzxhzdk14">Using the fop script or batch file # <a id="fop-script"></a></h3>
 <p>The usual and recommended practice for starting FOP from the command line is to run the batch file fop.bat (Windows) or the shell script fop (Unix/Linux). These scripts require that the environment variable JAVA_HOME be set to a path pointing to the appropriate Java installation on your system. Macintosh OSX includes a Java environment as part of its distribution. We are told by Mac OSX users that the path to use in this case is <code>/Library/Java/Home</code> . <strong>Caveat:</strong> We suspect that, as Apple releases new Java environments and as FOP upgrades the minimum Java requirements, the two will inevitably not match on some systems. Please see <a href="http://developer.apple.com/java/faq">Java on Mac OSX FAQ</a> for information as it becomes available.</p>
 <p>USAGE
 Fop [options] [-fo|-xml] infile [-xsl file] [-awt|-pdf|-mif|-rtf|-tiff|-png|-pcl|-ps|-txt|-at [mime]|-print] <outfile>
@@ -466,20 +467,20 @@ Fop [options] [-fo|-xml] infile [-xsl fi
   fop foo.fo -print
   fop foo.fo -awt
 PDF encryption is only available if FOP was compiled with encryption support <strong>and</strong> if compatible encryption support is available at run time. Currently, only the JCE is supported. Check the <a href="pdfencryption.html">Details</a> .</p>
-<h2 id="writing-your-own-script-wzxhzdk17wzxhzdk18">Writing your own script # <a id="your-own-script"></a></h2>
+<h3 id="writing-your-own-script-wzxhzdk18wzxhzdk19">Writing your own script # <a id="your-own-script"></a></h3>
 <p>FOP's entry point for your own scripts is the class <code>org.apache.fop.cli.Main</code> . The general pattern for the command line is: <code>java -classpath &lt;CLASSPATH&gt;
         org.apache.fop.cli.Main &lt;arguments&gt;</code> . The arguments consist of the options and infile and outfile specifications as shown above for the standard scripts. You may wish to review the standard scripts to make sure that you get your environment properly configured.</p>
-<h2 id="running-with-javas-jar-option-wzxhzdk19wzxhzdk20">Running with java's -jar option # <a id="jar-option"></a></h2>
+<h3 id="running-with-javas-jar-option-wzxhzdk20wzxhzdk21">Running with java's -jar option # <a id="jar-option"></a></h3>
 <p>As an alternative to the start scripts you can run <code>java
         -jar path/to/build/fop.jar &lt;arguments&gt;</code> , relying on FOP to build the classpath for running FOP dynamically, see <a href="#dynamical-classpath">below</a> . If you use hyphenation, you must put <code>fop-hyph.jar</code> in the <code>lib</code> directory.</p>
 <p>You can also run <code>java -jar path/to/fop.jar
       &lt;arguments&gt;</code> , relying on the <code>Class-Path</code> entry in the manifest file. This works if you put <code>fop.jar</code> and all jar files from the <code>lib</code> directory in a single directory. If you use hyphenation, you must also put <code>fop-hyph.jar</code> in that directory.</p>
 <p>In both cases the arguments consist of the options and infile and outfile specifications as shown above for the standard scripts.</p>
-<h2 id="fops-dynamical-classpath-construction-wzxhzdk21wzxhzdk22">FOP's dynamical classpath construction # <a id="dynamical-classpath"></a></h2>
+<h3 id="fops-dynamical-classpath-construction-wzxhzdk22wzxhzdk23">FOP's dynamical classpath construction # <a id="dynamical-classpath"></a></h3>
 <p>If FOP is started without a proper classpath, it tries to add its dependencies dynamically. If the system property <code>fop.home</code> contains the name of a directory, then FOP uses that directory as the base directory for its search. Otherwise the current working directory is the base directory. If the base directory is called <code>build</code> , then its parent directory becomes the base directory.</p>
 <p>FOP expects to find <code>fop.jar</code> in the <code>build</code> subdirectory of the base directory, and adds it to the classpath. Subsequently FOP adds all <code>jar</code> files in the lib directory to the classpath. The lib directory is either the <code>lib</code> subdirectory of the base directory, or, if that does not exist, the base directory itself.</p>
 <p>If the system property <code>fop.optional.lib</code> contains the name of a directory, then all <code>jar</code> files in that directory are also added to the classpath. See the methods <code>getJARList</code> and <code>checkDependencies</code> in <code>org.apache.fop.cli.Main</code> .</p>
-<h1 id="using-xalan-to-check-xsl-fo-input-wzxhzdk23wzxhzdk24">Using Xalan to Check XSL-FO Input  <a id="check-input"></a></h1>
+<h2 id="using-xalan-to-check-xsl-fo-input-wzxhzdk24wzxhzdk25">Using Xalan to Check XSL-FO Input  <a id="check-input"></a></h2>
 <p>FOP sessions that use -xml and -xsl input instead of -fo input are actually controlling two distinct conversions: Tranforming XML to XSL-FO, then formatting the XSL-FO to PDF (or another FOP output format). Although FOP controls both of these processes, the first is included merely as a convenience and for performance reasons. Only the second is part of FOP's core processing. If a user has a problem running FOP, it is important to determine which of these two processes is causing the problem. If the problem is in the first process, the user's stylesheet is likely the cause. The FOP development team does not have resources to help with stylesheet issues, although we have included links to some useful <a href="../resources.html#specs">Specifications</a> and <a href="../resources.html#articles">Books/Articles</a> . If the problem is in the second process, FOP may have a bug or an unimplemented feature that does require attention from the FOP development team.
 The user is always responsible to provide correct XSL-FO code to FOP.
 In the case of using -xml and -xsl input, although the user is responsible for the XSL-FO code that is FOP's input, it is not visible to the user. To make the intermediate FO file visible, the FOP distribution includes the "-foout" option which causes FOP to run only the first (transformation) step, and write the results to a file. (See also the Xalan command-line below)
@@ -487,7 +488,7 @@ When asking for help on the FOP mailing 
 The -foout option works the same way as if you would call the <a href="http://xml.apache.org/xalan-j/commandline.html">Xalan command-line</a> :</p>
 <p><code>java org.apache.xalan.xslt.Process -IN xmlfile -XSL file -OUT outfile</code> </p>
 <p>Note that there are some subtle differences between the FOP and Xalan command-lines.</p>
-<h1 id="memory-usage-wzxhzdk25wzxhzdk26">Memory Usage  <a id="memory"></a></h1>
+<h2 id="memory-usage-wzxhzdk26wzxhzdk27">Memory Usage  <a id="memory"></a></h2>
 <p>FOP can consume quite a bit of memory, even though this has been continually improved. This is partly inherent to the formatting process and partly caused by implementation choices. All FO processors currently on the market have memory problems with certain layouts.</p>
 <p>If you are running out of memory when using FOP, here are some ideas that may help:</p>
 <ul>
@@ -504,7 +505,7 @@ The -foout option works the same way as 
 <p>Use multiple page sequences. FOP starts rendering after the end of a page sequence is encountered. While the actual rendering is done page-by-page, some additional memory is freed after the page sequence has been rendered. This can be substantial if the page sequence contains lots of FO elements.</p>
 </li>
 </ul>
-<h1 id="problems-wzxhzdk27wzxhzdk28">Problems  <a id="problems"></a></h1>
+<h2 id="problems-wzxhzdk28wzxhzdk29">Problems  <a id="problems"></a></h2>
 <p>If you have problems running FOP, please see the <a href="../gethelp.html">"How to get Help" page</a> .</p></div>
       </div>
       

Modified: websites/staging/xmlgraphics/trunk/content/fop/1.1/servlets.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/1.1/servlets.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/1.1/servlets.html Wed Oct 24 04:04:00 2012
@@ -330,10 +330,11 @@ $(document).ready(function () {
       
       <div id="content" class="grid_16">
       	<!-- <div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/1.1/">1.1</a></div> -->
-      	<div class="section-content"><p><subtitle>How to use Apache&trade; FOP in a Servlet</subtitle><version>$Revision: 1298724 $</version></p>
-<h1 id="overview-wzxhzdk7wzxhzdk8">Overview  <a id="overview"></a></h1>
+      	<div class="section-content"><h1 id="apachetm-fop-servlets">Apache(tm) FOP: Servlets</h1>
+<p><subtitle>How to use Apache&trade; FOP in a Servlet</subtitle><version>$Revision: 1298724 $</version></p>
+<h2 id="overview-wzxhzdk7wzxhzdk8">Overview  <a id="overview"></a></h2>
 <p>This page discusses topic all around using Apache&trade; FOP in a servlet environment.</p>
-<h1 id="example-servlets-in-the-fop-distribution-wzxhzdk10wzxhzdk11">Example Servlets in the FOP distribution  <a id="example-servlets"></a></h1>
+<h2 id="example-servlets-in-the-fop-distribution-wzxhzdk10wzxhzdk11">Example Servlets in the FOP distribution  <a id="example-servlets"></a></h2>
 <p>In the directory {fop-dir}/src/java/org/apache/fop/servlet, you'll find a working example of a FOP-enabled servlet.</p>
 <p>The servlet is automatically built when you build Apache FOP using the supplied Ant script. After building the servlet, drop fop.war into the webapps directory of Apache Tomcat (or any other web container). Then, you can use URLs like the following to generate PDF files:</p>
 <ul>
@@ -405,9 +406,9 @@ private TransformerFactory tFactory = Tr
 <p>The <code>Source</code> instance used above is simply an example. If you have to read the XML from a string, supply a <code>new StreamSource(new
           StringReader(xmlstring))</code> . Constructing and reparsing an XML string is generally less desirable than using a SAXSource if you generate your XML. You can alternatively supply a DOMSource as well. You may also use dynamically generated XSL if you like.</p>
 <p>Because you have an explicit <code>Transformer</code> object, you can also use it to explicitely set parameters for the transformation run.</p>
-<h2 id="custom-configuration-wzxhzdk18wzxhzdk19">Custom configuration # <a id="cfg"></a></h2>
+<h3 id="custom-configuration-wzxhzdk18wzxhzdk19">Custom configuration # <a id="cfg"></a></h3>
 <p>You can easily set up your own FOUserAgent as demonstrated on the <a href="embedding.html">Embedding page</a> .</p>
-<h2 id="improving-performance-wzxhzdk20wzxhzdk21">Improving performance # <a id="performance"></a></h2>
+<h3 id="improving-performance-wzxhzdk20wzxhzdk21">Improving performance # <a id="performance"></a></h3>
 <p>There are several options to consider:</p>
 <ul>
 <li>
@@ -418,7 +419,7 @@ private TransformerFactory tFactory = Tr
 </li>
 </ul>
 <p>Of course, the <a href="embedding.html#performance">performance hints from the Embedding page</a> apply here, too.</p>
-<h2 id="accessing-resources-in-your-web-application-wzxhzdk22wzxhzdk23">Accessing resources in your web application # <a id="uriresolver"></a></h2>
+<h3 id="accessing-resources-in-your-web-application-wzxhzdk22wzxhzdk23">Accessing resources in your web application # <a id="uriresolver"></a></h3>
 <p>Often, you will want to use resources (stylesheets, images etc.) which are bundled with your web application. FOP provides a URIResolver implementation that lets you access files via the Servlet's ServletContext. The class is called <code>org.apache.fop.servlet.ServletContextURIResolver</code> .</p>
 <p>Here's how to set it up in your servlet. Instantiate a new instance in the servlet's init() method:</p>
 <div class="codehilite"><pre><span class="sr">/** URIResolver for use by this servlet */</span>
@@ -473,13 +474,13 @@ transformer.setURIResolver(this.uriResol
 <p>Cache in the server. It may help to include a parameter in the URL which has a timestamp as the value min order to decide whether a request is repeated. IEx is reported to retrieve a document up to three times, but never more often.</p>
 </li>
 </ul>
-<h1 id="servlet-engines-wzxhzdk26wzxhzdk27">Servlet Engines  <a id="servlet-engine"></a></h1>
+<h2 id="servlet-engines-wzxhzdk26wzxhzdk27">Servlet Engines  <a id="servlet-engine"></a></h2>
 <p>When using a servlet engine, there are potential CLASSPATH issues, and potential conflicts with existing XML/XSLT libraries. Servlet containers also often use their own classloaders for loading webapps, which can cause bugs and security problems.</p>
-<h2 id="tomcat-wzxhzdk28wzxhzdk29">Tomcat # <a id="tomcat"></a></h2>
+<h3 id="tomcat-wzxhzdk28wzxhzdk29">Tomcat # <a id="tomcat"></a></h3>
 <p>Check Tomcat's documentation for detailed instructions about installing FOP and Cocoon. There are known bugs that must be addressed, particularly for Tomcat 4.0.3.</p>
-<h2 id="websphere-35-wzxhzdk30wzxhzdk31">WebSphere 3.5 # <a id="websphere"></a></h2>
+<h3 id="websphere-35-wzxhzdk30wzxhzdk31">WebSphere 3.5 # <a id="websphere"></a></h3>
 <p>Put a copy of a working parser in some directory where WebSphere can access it. For example, if /usr/webapps/yourapp/servlets is the CLASSPATH for your servlets, copy the Xerces jar into it (any other directory would also be fine). Do not add the jar to the servlet CLASSPATH, but add it to the CLASSPATH of the application server which contains your web application. In the WebSphere administration console, click on the "environment" button in the "general" tab. In the "variable name" box, enter "CLASSPATH". In the "value" box, enter the correct path to the parser jar file (/usr/webapps/yourapp/servlets/Xerces.jar in our example here). Press "OK", then apply the change and restart the application server.</p>
-<h1 id="handling-complex-use-cases-wzxhzdk32wzxhzdk33">Handling complex use cases  <a id="complex-usecases"></a></h1>
+<h2 id="handling-complex-use-cases-wzxhzdk32wzxhzdk33">Handling complex use cases  <a id="complex-usecases"></a></h2>
 <p>Sometimes the requirements for a servlet get quite sophisticated: SQL data sources, multiple XSL transformations, merging of several datasources etc. In such a case consider using <a href="http://cocoon.apache.org/">Apache Cocoon</a> instead of a custom servlet to accomplish your goal.</p></div>
       </div>
       

Modified: websites/staging/xmlgraphics/trunk/content/fop/1.1/upgrading.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/1.1/upgrading.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/1.1/upgrading.html Wed Oct 24 04:04:00 2012
@@ -330,8 +330,9 @@ $(document).ready(function () {
       
       <div id="content" class="grid_16">
       	<!-- <div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a>&nbsp;&raquo&nbsp;<a href="/fop/1.1/">1.1</a></div> -->
-      	<div class="section-content"><p><version>$Revision$</version></p>
-<h1 id="upgrading-from-version-10-wzxhzdk2wzxhzdk3">Upgrading from Version 1.0  <a id="fop-1.0"></a></h1>
+      	<div class="section-content"><h1 id="upgrading-from-an-earlier-version-of-apachewzxhzdk0-fop">Upgrading from an Earlier Version of Apache&trade; FOP</h1>
+<p><version>$Revision$</version></p>
+<h2 id="upgrading-from-version-10-wzxhzdk3wzxhzdk4">Upgrading from Version 1.0  <a id="fop-1.0"></a></h2>
 <p>You should encounter very few issues in upgrading from FOP 1.0, except as noted in the following:</p>
 <ul>
 <li>
@@ -369,7 +370,7 @@ $(document).ready(function () {
 <p>Because complex script features are now enabled by default, it is possible that different font specific data will be used for kerning than was previously used. This may be the case if a font supports a traditional TrueType <code>kern</code> table and also supports the advanced typographic <code>kern</code> feature with a <code>GPOS</code> table. In FOP 1.0, the former is used for kerning, while in FOP 1.1 with complex script features enabled, the latter is used. If it is desired to explicitly use the <code>kern</code> table (rather than the <code>GPOS</code> table) in such a case, then the <code>-nocs</code> command line option may be used when invoking FOP in order to disable complex script features.</p>
 </li>
 </ul>
-<h1 id="upgrading-from-pre-10-versions-wzxhzdk4wzxhzdk5">Upgrading from Pre-1.0 Versions  <a id="pre-1.0"></a></h1>
+<h2 id="upgrading-from-pre-10-versions-wzxhzdk5wzxhzdk6">Upgrading from Pre-1.0 Versions  <a id="pre-1.0"></a></h2>
 <p>If you're planning to upgrade to the latest Apache&trade; FOP version from a pre-1.0 version, there are a few very important things to consider:</p>
 <ul>
 <li>

Modified: websites/staging/xmlgraphics/trunk/content/fop/bugs.html
==============================================================================
--- websites/staging/xmlgraphics/trunk/content/fop/bugs.html (original)
+++ websites/staging/xmlgraphics/trunk/content/fop/bugs.html Wed Oct 24 04:04:00 2012
@@ -330,9 +330,10 @@ $(document).ready(function () {
       
       <div id="content" class="grid_16">
       	<!-- <div id="breadcrumb"><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/fop/">Fop</a></div> -->
-      	<div class="section-content"><p><version>$Revision: 1298724 $</version></p>
+      	<div class="section-content"><h1 id="apachetm-fop-bugs-and-other-trackable-issues">Apache(tm) FOP: Bugs and Other Trackable Issues</h1>
+<p><version>$Revision: 1298724 $</version></p>
 <p>Information on this page applies to enhancement requests and other trackable issues as well as bugs.</p>
-<h1 id="reported-issues-wzxhzdk2wzxhzdk3">Reported Issues  <a id="issues_existing"></a></h1>
+<h2 id="reported-issues-wzxhzdk2wzxhzdk3">Reported Issues  <a id="issues_existing"></a></h2>
 <p>A list of unresolved reported bugs can be found at <a href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Fop&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">FOP Open Bugs (Bugzilla)</a> . If you have an interest in an issue already reported, please consider the following:</p>
 <ul>
 <li>
@@ -342,7 +343,7 @@ $(document).ready(function () {
 <p>If you would like to track the status of the issue, consider adding your email address to the list of "CC" recipients, so that you will receive an email as changes are made to the issue.</p>
 </li>
 </ul>
-<h1 id="unreported-issues-reporting-new-issues-wzxhzdk4wzxhzdk5">Unreported Issues (Reporting New Issues)  <a id="issues_new"></a></h1>
+<h2 id="unreported-issues-reporting-new-issues-wzxhzdk4wzxhzdk5">Unreported Issues (Reporting New Issues)  <a id="issues_new"></a></h2>
 <p>User reports of bugs and requests for enhancements are extremely important parts of FOP development, and we appreciate the time you take to help us track these issues down.</p>
 <ul>
 <li>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org