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

svn commit: r662995 [8/8] - in /xmlgraphics/site/deploy/fop: ./ 0.94/ 0.95/ dev/ dev/design/ dev/fo/ dev/svg/ fo/ skin/ trunk/

Modified: xmlgraphics/site/deploy/fop/trunk/fonts.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/fonts.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/fonts.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/fonts.xml Tue Jun  3 23:17:16 2008
@@ -17,7 +17,7 @@
 <document>
   <header>
     <title>Apache FOP: Fonts</title>
-    <version>$Revision: 638048 $</version>
+    <version>$Revision: 661310 $</version>
     <authors>
       <person name="Jeremias Märki" email=""/>
       <person name="Tore Engvig" email=""/>
@@ -93,14 +93,14 @@
           <td colspan="1" rowspan="1">yes (used for layout but not for output)</td>
           <td colspan="1" rowspan="1">no</td>
         </tr>
-        <!--tr> NOT AVAILABLE
+<!--tr> NOT AVAILABLE
           <td>MIF</td>
           <td>n/a (font metrics not needed)</td>
           <td>n/a</td>
           <td>n/a</td>
           <td>n/a</td>
         </tr-->
-        <!--tr> NOT AVAILABLE
+<!--tr> NOT AVAILABLE
           <td>SVG</td>
           <td>if available from OS</td>
           <td>yes</td>
@@ -160,7 +160,6 @@
         PDF or PostScript.
       </p>
     </section>
-    
     <section id="custom">
       <title>Custom Fonts</title>
       <p>
@@ -174,20 +173,21 @@
         if you wanted to add a custom font. This unconvenient step has been removed and in
         addition to that, FOP supports auto-registration of fonts, i.e. FOP can find fonts
         installed in your operating system or can scan user-specified directories for fonts.
-        Font registration via XML font metrics file is still supported and is still necessary
-        if you want to use a TrueType Collection (*.ttc). Direct support for TrueType
-        collections may be added later. Furthermore, the XML font metrics files are still
-        required if you don't want to embed, but only reference a font.
+        Font registration via XML font metrics file is still supported and may still be necessary
+        for some very special cases as fallback variant while we stabilize font auto-detection.
       </p>
       <p>
         Basic information about fonts can be found at:
       </p>
       <ul>
-        <li><link href="http://partners.adobe.com/asn/developer/type/ftypes.html">Adobe font types</link></li>
-        <li><link href="http://partners.adobe.com/asn/developer/technotes/fonts.html">Adobe Font Technote</link></li>
+        <li>
+          <link href="http://partners.adobe.com/asn/developer/type/ftypes.html">Adobe font types</link>
+        </li>
+        <li>
+          <link href="http://partners.adobe.com/asn/developer/technotes/fonts.html">Adobe Font Technote</link>
+        </li>
       </ul>
     </section>
-    
     <section id="basics">
       <title>Basic font configuration</title>
       <p>
@@ -198,17 +198,20 @@
         support fonts. These fonts will then automatically be registered.
       </p>
       <source xml:space="preserve"><![CDATA[
-<fonts>
-  <!-- register all the fonts found in a directory -->
-  <directory>C:\MyFonts1</directory>
+<renderers>
+   <renderer mime="application/pdf">
+      <fonts>
+         <!-- register all the fonts found in a directory -->
+         <directory>C:\MyFonts1</directory>
   
-  <!-- register all the fonts found in a directory
-       and all of its sub directories (use with care) -->
-  <directory recursive="true">C:\MyFonts2</directory>
+         <!-- register all the fonts found in a directory and all of its sub directories (use with care) -->
+         <directory recursive="true">C:\MyFonts2</directory>
 
-  <!-- automatically detect operating system installed fonts -->
-  <auto-detect/>  
-</fonts>]]></source>
+         <!-- automatically detect operating system installed fonts -->
+         <auto-detect/>  
+      </fonts>
+   </renderer>
+</renderers>]]></source>
       <note>
         Review the documentation for <link href="configuration.html">FOP Configuration</link>
         for instructions on making the FOP configuration available to FOP when it runs.
@@ -216,7 +219,6 @@
         not possible to easily configure fonts from Java code.
       </note>
     </section>
-    
     <section id="advanced">
       <title>Advanced font configuration</title>
       <p>
@@ -305,28 +307,35 @@
         <source xml:space="preserve"><![CDATA[java -cp build\fop.jar;lib\avalon-framework.jar;lib\commons-logging.jar;lib\commons-io.jar
           org.apache.fop.fonts.apps.TTFReader -ttcname "MS Mincho"
           msmincho.ttc msminch.xml]]></source>
+        <p>
+          Alternatively, the individual sub-fonts of a TrueType Collections can be selected
+          using the "sub-font" attribute on the "font" element. That means that generating
+          an XML font metrics file for TrueType collections is not necessary anymore.
+        </p>
       </section>
       <section id="register">
         <title>Register Fonts with FOP</title>
         <p>You must tell FOP how to find and use the font metrics files by registering them in the <link href="configuration.html">FOP Configuration</link>. Add entries for your custom fonts, regardless of font type, to the configuration file in a manner similar to the following:</p>
         <source xml:space="preserve"><![CDATA[
-<fonts>
-  <!-- register a particular font -->
-  <font metrics-url="file:///C:/myfonts/FTL_____.xml" kerning="yes"
-      embed-url="file:///C:/myfonts/FTL_____.pfb">
-     <font-triplet name="FrutigerLight" style="normal" weight="normal"/>
-  </font>
+<renderers>
+   <renderer mime="application/pdf">
+      <fonts>
+         <!-- register a particular font -->
+         <font metrics-url="file:///C:/myfonts/FTL_____.xml" kerning="yes" embed-url="file:///C:/myfonts/FTL_____.pfb">
+            <font-triplet name="FrutigerLight" style="normal" weight="normal"/>
+         </font>
   
-  <!-- register all the fonts found in a directory -->
-  <directory>C:\MyFonts1</directory>
+         <!-- register all the fonts found in a directory -->
+         <directory>C:\MyFonts1</directory>
   
-  <!-- register all the fonts found in a directory
-       and all of its sub directories (use with care) -->
-  <directory recursive="true">C:\MyFonts2</directory>
+         <!-- register all the fonts found in a directory and all of its sub directories (use with care) -->
+         <directory recursive="true">C:\MyFonts2</directory>
 
-  <!-- automatically detect operating system installed fonts -->
-  <auto-detect/>  
-</fonts>]]></source>
+         <!-- automatically detect operating system installed fonts -->
+         <auto-detect/>  
+      </fonts>
+   </renderer>
+</renderers>]]></source>
         <ul>
           <li>
             URLs are used to access the font metric and font files.
@@ -348,10 +357,10 @@
             relative to the base directory.
           </li>
         </ul>
-        <!--note>Cocoon users will need to setup the config, see FOPSerializer for more information.</note-->
+<!--note>Cocoon users will need to setup the config, see FOPSerializer for more information.</note-->
       </section>
       <section id="autodetect">
-        <title>Auto-Detect and auto-embedd feature</title>
+        <title>Auto-Detect and auto-embed feature</title>
         <p>When the "auto-detect" flag is set in the configuration, FOP will automatically search for fonts in the default paths for your operating system.</p>
         <p>FOP will also auto-detect fonts which are available in the classpath, if they are described as "application/x-font" in the MANIFEST.MF file. For example, if your .jar file contains font/myfont.ttf:</p>
         <source xml:space="preserve"><![CDATA[Manifest-Version: 1.0
@@ -362,22 +371,82 @@
       </section>
       <section id="embedding">
         <title>Embedding</title>
-        <note>The PostScript renderer does not yet support TrueType fonts, but can embed Type 1 fonts.</note>
-        <note>The font is simply embedded into the PDF file, it is not converted.</note>
-        <p>Font embedding is enabled in the userconfig.xml file and controlled by the embed-url attribute.
-          If you don't specify the embed-url attribute the font will not be embedded, but will only be referenced.</p>
-        <warning>
-          Omitting the embed-url attribute for CID-encoded TrueType fonts will currently produce invalid 
-          PDF files! If you create the XML font metric file using the "-enc ansi" option, you can omit 
-          the embed-url attribute for TrueType fonts but you're restricted to the WinAnsi character set.
-        </warning>
-        <p>When FOP embeds a font, it adds a prefix to the fontname to ensure that the name will not match the fontname of an installed font.
-          This is helpful with older versions of Acrobat Reader that preferred installed fonts over embedded fonts.</p>
-        <p>When embedding PostScript fonts, the entire font is always embedded.</p>
-        <p>When embedding TrueType fonts (ttf) or TrueType Collections (ttc), a subset of the
-          original font, containing only the glyphs used, is embedded in the output document.</p>
+        <p>
+          By default, all fonts are embedded if an output format supports font embedding. In some
+          cases, however, it is preferred that some fonts are only referenced. When working
+          with referenced fonts it is important to be in control of the target environment where
+          the produced document is consumed, i.e. the necessary fonts have to be installed there.
+        </p>
+        <p>
+          There are two different ways how you can specify that a font should be referenced:
+        </p>
+        <ol>
+          <li>
+            When using the old-style "font" element to configure a single font, font referencing
+            is controlled by the embed-url attribute. If you don't specify the embed-url attribute
+            the font will not be embedded, but will only be referenced.
+          </li>
+          <li>
+            For automatically configured fonts there's a different mechanism to specify which
+            fonts should be referenced rather than embedded. This is done in the "referenced-fonts"
+            element in the configuration. Here's an example:
+          </li>
+        </ol>
+        <source xml:space="preserve"><![CDATA[
+<fop version="1.0">
+   <fonts>
+      <referenced-fonts>
+        <match font-family="Helvetica"/>
+        <match font-family="DejaVu.*"/>
+      </referenced-fonts>
+   </fonts>
+</fop>]]></source>
+        <p>
+          At the moment, you can only match fonts against their font-family. It is possible to use
+          regular expressions as is shown in the second example above ("DejaVu.*"). The syntax for
+          the regular expressions used here are the one used by the
+          <link href="http://java.sun.com/j2se/1.4/docs/api/java/util/regex/package-summary.html"><code>java.util.regex</code> package</link>.
+          So, in the above snippet "Helvetica" and all variants of the "DejaVu" font family are
+          referenced. If you want to reference all fonts, just specify <code>font-family=".*"</code>.
+        </p>
+        <p>
+          Various notes related to embedded fonts:
+        </p>
+        <ul>
+          <li>The PostScript renderer does not yet support TrueType fonts, but can embed Type 1 fonts.</li>
+          <li>The font is simply embedded into the PDF file, it is not converted.</li>
+          <li>When FOP embeds a font, it adds a prefix to the fontname to ensure that the name will not match the fontname of an installed font.
+            This is helpful with older versions of Acrobat Reader that preferred installed fonts over embedded fonts.</li>
+          <li>When embedding PostScript fonts, the entire font is always embedded.</li>
+          <li>When embedding TrueType fonts (ttf) or TrueType Collections (ttc), a subset of the
+          original font, containing only the glyphs used, is embedded in the output document.</li>
+        </ul>
       </section>
-      <!-- The following section should no longer be required
+      <section id="substitution">
+        <title>Substitution</title>
+        <p>When a &lt;substitutions/&gt; section is defined in the configuration, FOP will re-map any font-family references found in your FO input to a given substitution font.</p>
+        <ul>
+          <li>If a &lt;substitution/&gt; is declared, it is mandatory that both a &lt;from/&gt; and &lt;to/&gt; child element is declared with a font-family attribute.</li>
+          <li>Both font-weight and font-style are optional attributes, if they are provided then a value of 'normal' is assumed.</li>
+        </ul>
+        <p>For example you could make all FO font-family references to 'Arial' with weights between 700 and 900 reference the normal 'Arial Black' font.</p>
+        <source xml:space="preserve"><![CDATA[
+<fop version="1.0">
+   <fonts>
+      <substitutions>
+         <substitution>
+            <from font-family="Arial" font-weight="700..900"/>
+            <to font-family="Arial Black"/>
+         </substitution>
+         <substitution>
+            <from font-family="FrutigerLight"/>
+            <to font-family="Times" font-weight="bold" font-style="italic"/>
+         </substitution>
+      </substitutions>
+   </fonts>
+</fop>]]></source>
+      </section>
+<!-- The following section should no longer be required
       <section id="embedding-base14">
         <title>Explicitly embedding the base 14 fonts</title>
         <p>
@@ -403,5 +472,18 @@
   [..]]]></source>
       </section-->
     </section>
+    <section id="selection">
+      <title>Font Selection Strategies</title>
+      <p>
+          There are two font selection strategies: character-by-character or auto. The default is auto.</p>
+      <p>Auto selected the first font from the list which is able to display the most characters in a given word. This means (assume font A has characters for abclmn, font B for lnmxyz, fontlist is A,B):</p>
+      <ul>
+        <li>aaa lll xxx would be displayed in fonts A A B</li>
+        <li>aaaxx would be displayed in font A</li>
+        <li>aaaxxx would be displayed in font A</li>
+        <li>aaaxxxx would be displayed in font B</li>
+      </ul>
+      <p>Character-by-Character is NOT yet supported!</p>
+    </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/graphics.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/graphics.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/graphics.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/graphics.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+
@@ -218,6 +221,9 @@
 <li>
 <a href="#batik">Apache Batik</a>
 </li>
+<li>
+<a href="#imageio">Image I/O</a>
+</li>
 </ul>
 </li>
 <li>
@@ -672,24 +678,35 @@
           </li>
         
 </ul>
+<a name="N10385"></a><a name="imageio"></a>
+<h3 class="underlined_5">Image I/O</h3>
+<p>
+          The image loading framework in <a href="http://xmlgraphics.apache.org/commons/">XML Graphics Commons</a>
+          provides a wrapper to load images through the 
+          <a class="external" href="http://java.sun.com/j2se/1.4.2/docs/guide/imageio/index.html">JDK's Image I/O API</a> (JSR 015).
+          Image I/O allows to dynamically add additional image codecs. An example of such an
+          add-on library are the
+          <a class="external" href="http://java.sun.com/products/java-media/jai/">JAI Image I/O Tools</a>
+          available from Sun.
+        </p>
 </div>
     
-<a name="N10386"></a><a name="image-formats"></a>
+<a name="N1039E"></a><a name="image-formats"></a>
 <h2 class="underlined_10">Details on image formats</h2>
 <div class="section">
-<a name="N1038C"></a><a name="bmp"></a>
+<a name="N103A4"></a><a name="bmp"></a>
 <h3 class="underlined_5">BMP</h3>
 <p>
           BMP images are supported through an Image I/O codec. There may be limitations of the
           codec which are outside the control of Apache FOP.
         </p>
-<a name="N10396"></a><a name="emf"></a>
+<a name="N103AE"></a><a name="emf"></a>
 <h3 class="underlined_5">EMF</h3>
 <p>
           Windows Enhanced Metafiles (EMF) are only supported in RTF output where they are
           embedded without decoding.
         </p>
-<a name="N103A0"></a><a name="eps"></a>
+<a name="N103B8"></a><a name="eps"></a>
 <h3 class="underlined_5">EPS</h3>
 <p>Apache FOP allows to use EPS files when generating PostScript output only.</p>
 <p>
@@ -697,13 +714,13 @@
           FOP lacks a PostScript interpreter. Furthermore, FOP is currently not able
           to parse the preview bitmaps sometimes contained in EPS files.
         </p>
-<a name="N103AD"></a><a name="gif"></a>
+<a name="N103C5"></a><a name="gif"></a>
 <h3 class="underlined_5">GIF</h3>
 <p>
           GIF images are supported through an Image&nbsp;I/O codec. Transparency is supported but
           not guaranteed to work with every output format.
         </p>
-<a name="N103B7"></a><a name="jpeg"></a>
+<a name="N103CF"></a><a name="jpeg"></a>
 <h3 class="underlined_5">JPEG</h3>
 <p>
           FOP native support (i.e. the handling of undecoded images) of JPEG does not include all
@@ -717,15 +734,15 @@
           in some Image&nbsp;I/O codecs concerning images in the CMYK color space. Work-arounds are
           in place but may not always work as expected.
         </p>
-<a name="N103C1"></a><a name="png"></a>
+<a name="N103D9"></a><a name="png"></a>
 <h3 class="underlined_5">PNG</h3>
 <p>
           PNG images are supported through an Image&nbsp;I/O codec. Transparency is supported but
           not guaranteed to work with every output format.
         </p>
-<a name="N103CB"></a><a name="svg"></a>
+<a name="N103E3"></a><a name="svg"></a>
 <h3 class="underlined_5">SVG</h3>
-<a name="N103D1"></a><a name="svg-intro"></a>
+<a name="N103E9"></a><a name="svg-intro"></a>
 <h4>Introduction</h4>
 <p>FOP uses <a href="#batik"> Apache Batik</a> for SVG support.
             This format can be handled as an <span class="codefrag">fo:instream-foreign-object</span> or in a separate
@@ -739,7 +756,7 @@
             on the Batik site.
           </div>
 </div>
-<a name="N103EC"></a><a name="svg-pdf-graphics"></a>
+<a name="N10404"></a><a name="svg-pdf-graphics"></a>
 <h4>Placing SVG Graphics into PDF</h4>
 <p>
             The SVG is rendered into PDF by using PDF commands to draw and fill
@@ -759,7 +776,7 @@
             contain effects or graphics with transparent areas may not be displayed
             correctly.
           </p>
-<a name="N10400"></a><a name="svg-pdf-text"></a>
+<a name="N10418"></a><a name="svg-pdf-text"></a>
 <h4>Placing SVG Text into PDF and PostScript</h4>
 <p>If possible, Batik will use normal PDF or PostScript text when inserting text. It does
             this by checking if the text can be drawn normally and the font is
@@ -785,7 +802,7 @@
             to be displayed nicely on your screen (see Edit / Preferences / Display).
             This setting will not affect the printing of your document, which should be OK in 
             any case, but will only affect the quality of the screen display.</p>
-<a name="N10418"></a><a name="svg-scaling"></a>
+<a name="N10430"></a><a name="svg-scaling"></a>
 <h4>Scaling</h4>
 <p>
             Currently, SVG images are rendered with the dimensions specified <em>in the SVG 
@@ -800,7 +817,7 @@
             size of a pixel. The use of pixels to specify sizes is discouraged as they may
             be interpreted differently in different environments.
           </p>
-<a name="N1042C"></a><a name="svg-problems"></a>
+<a name="N10444"></a><a name="svg-problems"></a>
 <h4>Known Problems</h4>
 <ul>
             
@@ -826,7 +843,7 @@
             </li>
           
 </ul>
-<a name="N10443"></a><a name="tiff"></a>
+<a name="N1045B"></a><a name="tiff"></a>
 <h3 class="underlined_5">TIFF</h3>
 <p>
           FOP can embed TIFF images without decompression into PDF, PostScript and AFP if they
@@ -836,7 +853,7 @@
 <p>
           There may be some limitation concerning images in the CMYK color space.
         </p>
-<a name="N10450"></a><a name="wmf"></a>
+<a name="N10468"></a><a name="wmf"></a>
 <h3 class="underlined_5">WMF</h3>
 <p>
           Windows Metafiles (WMF) are supported through classes in 
@@ -845,7 +862,7 @@
         </p>
 </div>
     
-<a name="N1045F"></a><a name="resolution"></a>
+<a name="N10477"></a><a name="resolution"></a>
 <h2 class="underlined_10">Graphics Resolution</h2>
 <div class="section">
 <p>
@@ -870,7 +887,7 @@
       </p>
 </div>
     
-<a name="N10473"></a><a name="page-selection"></a>
+<a name="N1048B"></a><a name="page-selection"></a>
 <h2 class="underlined_10">Page selection for multi-page formats</h2>
 <div class="section">
 <p>
@@ -881,7 +898,7 @@
       </p>
 </div>
     
-<a name="N10480"></a><a name="caching"></a>
+<a name="N10498"></a><a name="caching"></a>
 <h2 class="underlined_10">Image caching</h2>
 <div class="section">
 <p>
@@ -899,7 +916,7 @@
 </div>
   
 <span class="version">
-          version 627324</span>
+          version 652581</span>
 </div>
 <!--+
     |end content

Modified: xmlgraphics/site/deploy/fop/trunk/graphics.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/graphics.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/graphics.pdf (original) and xmlgraphics/site/deploy/fop/trunk/graphics.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/graphics.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/graphics.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/graphics.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/graphics.xml Tue Jun  3 23:17:16 2008
@@ -17,7 +17,7 @@
 <document>
   <header>
     <title>Apache FOP: Graphics Formats</title>
-    <version>$Revision: 627324 $</version>
+    <version>$Revision: 652581 $</version>
   </header>
   <body>
     <section id="introduction">
@@ -321,6 +321,18 @@
           </li>
         </ul>
       </section>
+      <section id="imageio">
+        <title>Image I/O</title>
+        <p>
+          The image loading framework in <link href="ext:xmlgraphics.apache.org/commons">XML Graphics Commons</link>
+          provides a wrapper to load images through the 
+          <link class="fork" href="http://java.sun.com/j2se/1.4.2/docs/guide/imageio/index.html">JDK's Image I/O API</link> (JSR 015).
+          Image I/O allows to dynamically add additional image codecs. An example of such an
+          add-on library are the
+          <link class="fork" href="http://java.sun.com/products/java-media/jai/">JAI Image I/O Tools</link>
+          available from Sun.
+        </p>
+      </section>
     </section>
     <section id="image-formats">
       <title>Details on image formats</title>
@@ -545,4 +557,4 @@
       </p>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/hyphenation.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/hyphenation.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/hyphenation.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/hyphenation.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+

Modified: xmlgraphics/site/deploy/fop/trunk/hyphenation.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/hyphenation.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/hyphenation.pdf (original) and xmlgraphics/site/deploy/fop/trunk/hyphenation.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/hyphenation.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/hyphenation.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/hyphenation.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/hyphenation.xml Tue Jun  3 23:17:16 2008
@@ -231,4 +231,4 @@
      hyphenation.</p>
   </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/index.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/index.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/index.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/index.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit">
@@ -171,7 +174,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+

Modified: xmlgraphics/site/deploy/fop/trunk/index.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/index.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/index.pdf (original) and xmlgraphics/site/deploy/fop/trunk/index.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/index.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/index.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/index.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/index.xml Tue Jun  3 23:17:16 2008
@@ -43,4 +43,4 @@
       </p>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/intermediate.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/intermediate.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/intermediate.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/intermediate.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+

Modified: xmlgraphics/site/deploy/fop/trunk/intermediate.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/intermediate.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/intermediate.pdf (original) and xmlgraphics/site/deploy/fop/trunk/intermediate.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/intermediate.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/intermediate.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/intermediate.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/intermediate.xml Tue Jun  3 23:17:16 2008
@@ -140,4 +140,4 @@
       </section>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/output.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/output.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/output.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/output.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+
@@ -249,6 +252,9 @@
 <li>
 <a href="#pcl-page-source">Page Source (Tray selection)</a>
 </li>
+<li>
+<a href="#pcl-duplex-mode">Page Duplex Mode</a>
+</li>
 </ul>
 </li>
 </ul>
@@ -773,9 +779,33 @@
           "7" is "auto-select".
           Consult the technical reference for your printer for all available values.
         </p>
+<a name="N10195"></a><a name="pcl-duplex-mode"></a>
+<h4>Page Duplex Mode</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>
+<pre class="code">
+      &lt;fo:layout-master-set&gt;
+        &lt;fo:simple-page-master master-name="simple" pcl:duplex-mode="0"&gt;
+          ...
+        &lt;/fo:simple-page-master&gt;
+      &lt;/fo:layout-master-set&gt;
+</pre>
+<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>
 </div>
   
-<a name="N10197"></a><a name="afp"></a>
+<a name="N101A8"></a><a name="afp"></a>
 <h2 class="underlined_10">AFP</h2>
 <div class="section">
 <div class="warning">
@@ -786,7 +816,7 @@
       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>
-<a name="N101A3"></a><a name="afp-references"></a>
+<a name="N101B4"></a><a name="afp-references"></a>
 <h3 class="underlined_5">References</h3>
 <ul>
         
@@ -799,7 +829,7 @@
 </li>
       
 </ul>
-<a name="N101B7"></a><a name="afp-limitations"></a>
+<a name="N101C8"></a><a name="afp-limitations"></a>
 <h3 class="underlined_5">Limitations</h3>
 <p>This list is most likely badly incomplete.</p>
 <ul>
@@ -814,9 +844,9 @@
         </li>
       
 </ul>
-<a name="N101CA"></a><a name="afp-configuration"></a>
+<a name="N101DB"></a><a name="afp-configuration"></a>
 <h3 class="underlined_5">Configuration</h3>
-<a name="N101D0"></a><a name="afp-font-config"></a>
+<a name="N101E1"></a><a name="afp-font-config"></a>
 <h4>Fonts</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
@@ -946,13 +976,13 @@
         &lt;font-triplet name="monospace" style="normal" weight="bold"/&gt;
         &lt;font-triplet name="Courier" style="normal" weight="bold"/&gt;
       &lt;/font&gt;</pre>
-<a name="N10202"></a><a name="afp-renderer-resolution-config"></a>
+<a name="N10213"></a><a name="afp-renderer-resolution-config"></a>
 <h4>Output Resolution</h4>
 <p>By default the AFP Renderer creates output with a resolution of 240 dpi.
           This can be overridden by the &lt;renderer-resolution/&gt; configuration element. Example:</p>
 <pre class="code">
       &lt;renderer-resolution&gt;240&lt;/renderer-resolution&gt;</pre>
-<a name="N10210"></a><a name="afp-image-config"></a>
+<a name="N10221"></a><a name="afp-image-config"></a>
 <h4>Images</h4>
 <p>By default the AFP Renderer converts all images to 8 bit grey level.
         This can be overridden by the &lt;images&gt; configuration element. Example:</p>
@@ -965,7 +995,7 @@
 </pre>
 <p>Only the values "color" and "b+w" are allowed for the mode attribute. The bits-per-pixel
       attribute is ignored if mode is "color". For "b+w" mode is must be 1, 4, or 8.</p>
-<a name="N10229"></a><a name="afp-extensions"></a>
+<a name="N1023A"></a><a name="afp-extensions"></a>
 <h3 class="underlined_5">Extensions</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>
@@ -973,7 +1003,7 @@
       &lt;fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
                xmlns:afp="http://xmlgraphics.apache.org/fop/extensions/afp"&gt;
 </pre>
-<a name="N10236"></a><a name="afp-page-overlay"></a>
+<a name="N10247"></a><a name="afp-page-overlay"></a>
 <h4>Page Overlay Extension</h4>
 <p>The include-page-overlay extension element allows to define on a per simple-page-master basis a page overlay resource. Example:</p>
 <pre class="code">
@@ -986,7 +1016,7 @@
 </pre>
 <p>The mandatory name attribute must refer to an 8 character (space padded) resource name that
         must be known in the AFP processing environment.</p>
-<a name="N10247"></a><a name="afp-page-segment"></a>
+<a name="N10258"></a><a name="afp-page-segment"></a>
 <h4>Page Segment Extension</h4>
 <p>The include-page-segment extension element allows to define resource substitution for fo:external-graphics elements. 
           Example:</p>
@@ -1008,7 +1038,7 @@
         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>
-<a name="N10258"></a><a name="afp-tag-logical-element"></a>
+<a name="N10269"></a><a name="afp-tag-logical-element"></a>
 <h4>Tag Logical Element Extension</h4>
 <p>The tag-logical-element extension element allows to injects TLEs into the AFP output stream. Example:</p>
 <pre class="code">
@@ -1025,7 +1055,7 @@
         Multiple tag-logical-element extension elements within a simple-page-master are allowed.
         The name and value attributes are mandatory.
         </p>
-<a name="N10269"></a><a name="afp-no-operation"></a>
+<a name="N1027A"></a><a name="afp-no-operation"></a>
 <h4>No Operation Extension</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>
@@ -1044,7 +1074,7 @@
         </p>
 </div>
 
-<a name="N1027C"></a><a name="rtf"></a>
+<a name="N1028D"></a><a name="rtf"></a>
 <h2 class="underlined_10">RTF</h2>
 <div class="section">
 <p>
@@ -1068,7 +1098,7 @@
 </div>
 </div>
 
-<a name="N1028C"></a><a name="xml"></a>
+<a name="N1029D"></a><a name="xml"></a>
 <h2 class="underlined_10">XML (Area Tree XML)</h2>
 <div class="section">
 <p>
@@ -1082,7 +1112,7 @@
   </p>
 </div>
 
-<a name="N1029D"></a><a name="awt"></a>
+<a name="N102AE"></a><a name="awt"></a>
 <h2 class="underlined_10">Java2D/AWT</h2>
 <div class="section">
 <p>
@@ -1097,7 +1127,7 @@
     </p>
 </div>
 
-<a name="N102AA"></a><a name="print"></a>
+<a name="N102BB"></a><a name="print"></a>
 <h2 class="underlined_10">Print</h2>
 <div class="section">
 <p>
@@ -1106,7 +1136,7 @@
   </p>
 </div>
 
-<a name="N102B4"></a><a name="bitmap"></a>
+<a name="N102C5"></a><a name="bitmap"></a>
 <h2 class="underlined_10">Bitmap (TIFF/PNG)</h2>
 <div class="section">
 <p>
@@ -1120,7 +1150,7 @@
     page. The quality of the bitmap depends on the target resolution setting 
     on the FOUserAgent.
   </p>
-<a name="N102C0"></a><a name="bitmap-configuration"></a>
+<a name="N102D1"></a><a name="bitmap-configuration"></a>
 <h3 class="underlined_5">Configuration</h3>
 <p>
         The TIFF and PNG renderer configuration currently allows the following settings:
@@ -1135,7 +1165,7 @@
         no such background will be painted and you will get a transparent image if
         an alpha channel is available in the output format.
       </p>
-<a name="N102D1"></a><a name="tiff-configuration"></a>
+<a name="N102E2"></a><a name="tiff-configuration"></a>
 <h3 class="underlined_5">TIFF-specific Configuration</h3>
 <p>
         In addition to the above values the TIFF renderer configuration allows some additional
@@ -1186,7 +1216,7 @@
 </div>
 </div>
 
-<a name="N10305"></a><a name="txt"></a>
+<a name="N10316"></a><a name="txt"></a>
 <h2 class="underlined_10">TXT</h2>
 <div class="section">
 <p>
@@ -1224,7 +1254,7 @@
 </ul>
 </div>
 
-<a name="N10321"></a><a name="sandbox"></a>
+<a name="N10332"></a><a name="sandbox"></a>
 <h2 class="underlined_10">Output Formats in the Sandbox</h2>
 <div class="section">
 <p>
@@ -1233,7 +1263,7 @@
     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>
-<a name="N1032A"></a><a name="mif"></a>
+<a name="N1033B"></a><a name="mif"></a>
 <h3 class="underlined_5">MIF</h3>
 <div class="warning">
 <div class="label">Warning</div>
@@ -1243,7 +1273,7 @@
       This format is the Maker Interchange Format which is used by
       Adobe Framemaker.
     </p>
-<a name="N10337"></a><a name="svg"></a>
+<a name="N10348"></a><a name="svg"></a>
 <h3 class="underlined_5">SVG</h3>
 <div class="warning">
 <div class="label">Warning</div>
@@ -1262,7 +1292,7 @@
      </p>
 </div>
 
-<a name="N10345"></a><a name="wishlist"></a>
+<a name="N10356"></a><a name="wishlist"></a>
 <h2 class="underlined_10">Wish list</h2>
 <div class="section">
 <p>
@@ -1285,7 +1315,7 @@
 <font size="-2">by&nbsp;Keiron Liddle,&nbsp;Art Welch</font>
 </p>
 <span class="version">
-          version 634187</span>
+          version 662807</span>
 </div>
 <!--+
     |end content

Modified: xmlgraphics/site/deploy/fop/trunk/output.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/output.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/output.pdf (original) and xmlgraphics/site/deploy/fop/trunk/output.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/output.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/output.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/output.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/output.xml Tue Jun  3 23:17:16 2008
@@ -17,7 +17,7 @@
 <document>
   <header>
     <title>Apache FOP Output Formats</title>
-    <version>$Revision: 634187 $</version>
+    <version>$Revision: 662807 $</version>
     <authors>
       <person name="Keiron Liddle" email="keiron@aftexsw.com"/>
       <person name="Art Welch" email=""/>
@@ -417,6 +417,31 @@
           Consult the technical reference for your printer for all available values.
         </p>
       </section>
+      <section id="pcl-duplex-mode">
+        <title>Page Duplex Mode</title>
+        <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>
+      <source xml:space="preserve"><![CDATA[
+      <fo:layout-master-set>
+        <fo:simple-page-master master-name="simple" pcl:duplex-mode="0">
+          ...
+        </fo:simple-page-master>
+      </fo:layout-master-set>
+]]></source>
+        <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>
+      </section>
     </section>
   </section>
   <section id="afp">
@@ -878,4 +903,4 @@
 </section>
 
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/pdfa.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfa.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/pdfa.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/pdfa.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+

Modified: xmlgraphics/site/deploy/fop/trunk/pdfa.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfa.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/pdfa.pdf (original) and xmlgraphics/site/deploy/fop/trunk/pdfa.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/pdfa.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfa.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/pdfa.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/pdfa.xml Tue Jun  3 23:17:16 2008
@@ -153,4 +153,4 @@
       </p>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/pdfencryption.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfencryption.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/pdfencryption.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/pdfencryption.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+
@@ -465,7 +468,7 @@
 <font size="-2">by&nbsp;J.Pietschmann,&nbsp;Jeremias M&auml;rki</font>
 </p>
 <span class="version">
-          version 638048</span>
+          version 638396</span>
 </div>
 <!--+
     |end content

Modified: xmlgraphics/site/deploy/fop/trunk/pdfencryption.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfencryption.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/pdfencryption.pdf (original) and xmlgraphics/site/deploy/fop/trunk/pdfencryption.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/pdfencryption.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfencryption.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/pdfencryption.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/pdfencryption.xml Tue Jun  3 23:17:16 2008
@@ -17,7 +17,7 @@
 <document>
   <header>
     <title>PDF encryption.</title>
-    <version>$Revision: 638048 $</version>
+    <version>$Revision: 638396 $</version>
     <authors>
       <person name="J.Pietschmann" email="pietsch@apache.org"/>
       <person name="Jeremias Märki" email="jeremias@apache.org"/>
@@ -218,4 +218,4 @@
       </p>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/pdfx.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfx.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/pdfx.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/pdfx.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+

Modified: xmlgraphics/site/deploy/fop/trunk/pdfx.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfx.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/pdfx.pdf (original) and xmlgraphics/site/deploy/fop/trunk/pdfx.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/pdfx.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfx.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/pdfx.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/pdfx.xml Tue Jun  3 23:17:16 2008
@@ -130,4 +130,4 @@
       </p>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/running.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/running.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/running.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/running.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+
@@ -601,7 +604,7 @@
 </div>
   
 <span class="version">
-          version 638048</span>
+          version 638396</span>
 </div>
 <!--+
     |end content

Modified: xmlgraphics/site/deploy/fop/trunk/running.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/running.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/running.pdf (original) and xmlgraphics/site/deploy/fop/trunk/running.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/running.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/running.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/running.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/running.xml Tue Jun  3 23:17:16 2008
@@ -17,7 +17,7 @@
 <document>
   <header>
     <title>Running Apache FOP</title>
-    <version>$Revision: 638048 $</version>
+    <version>$Revision: 638396 $</version>
   </header>
 
   <body>
@@ -343,4 +343,4 @@
       <p>If you have problems running FOP, please see the <link href="../gethelp.html">"How to get Help" page</link>.</p>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/servlets.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/servlets.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/servlets.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/servlets.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+

Modified: xmlgraphics/site/deploy/fop/trunk/servlets.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/servlets.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/servlets.pdf (original) and xmlgraphics/site/deploy/fop/trunk/servlets.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/servlets.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/servlets.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/servlets.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/servlets.xml Tue Jun  3 23:17:16 2008
@@ -319,4 +319,4 @@
       </p>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>

Modified: xmlgraphics/site/deploy/fop/trunk/upgrading.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/upgrading.html?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/upgrading.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/upgrading.html Tue Jun  3 23:17:16 2008
@@ -159,6 +159,9 @@
 <div class="menuitem">
 <a href="../trunk/extensions.html">Extensions</a>
 </div>
+<div class="menuitem">
+<a href="../trunk/events.html">Events</a>
+</div>
 </div>
 </div>
 <div id="credit"></div>
@@ -168,7 +171,7 @@
   |alternative credits
   +-->
 <div id="credit2">
-<a href="http://eu.apachecon.com/"><img border="0" title="ApacheCon Europe 2008" alt="ApacheCon Europe 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-europe-125x125.png" style="width: 125px;height: 125px;"></a><a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
+<a href="http://us.apachecon.com/"><img border="0" title="ApacheCon US 2008" alt="ApacheCon US 2008 - logo" src="http://apache.org/ads/ApacheCon/2008-usa-125x125.png" style="width: 125px;height: 125px;"></a>
 </div>
 </div>
 <!--+
@@ -275,7 +278,7 @@
         
 <li>
           Extensions and Renderers written for version 0.20.5 will not work with the new code! The new FOP 
-          extension for <a class="external" href="http://barcode4j.krysalis.org">Barcode4J</a> is available since 
+          extension for <a class="external" href="http://barcode4j.sourceforge.net">Barcode4J</a> is available since 
           January 2007.
         </li>
         
@@ -339,7 +342,7 @@
 </div>
   
 <span class="version">
-          version 627324</span>
+          version 645104</span>
 </div>
 <!--+
     |end content

Modified: xmlgraphics/site/deploy/fop/trunk/upgrading.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/upgrading.pdf?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/upgrading.pdf (original) and xmlgraphics/site/deploy/fop/trunk/upgrading.pdf Tue Jun  3 23:17:16 2008 differ

Modified: xmlgraphics/site/deploy/fop/trunk/upgrading.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/upgrading.xml?rev=662995&r1=662994&r2=662995&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/upgrading.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/upgrading.xml Tue Jun  3 23:17:16 2008
@@ -17,7 +17,7 @@
 <document>
   <header>
     <title>Upgrading from an Earlier Version of Apache FOP</title>
-    <version>$Revision: 627324 $</version>
+    <version>$Revision: 645104 $</version>
   </header>
   <body>
     <section id="important">
@@ -76,7 +76,7 @@
         </li>
         <li>
           Extensions and Renderers written for version 0.20.5 will not work with the new code! The new FOP 
-          extension for <link href="http://barcode4j.krysalis.org">Barcode4J</link> is available since 
+          extension for <link href="http://barcode4j.sourceforge.net">Barcode4J</link> is available since 
           January 2007.
         </li>
         <li>
@@ -128,4 +128,4 @@
       </ul>
     </section>
   </body>
-</document>
\ No newline at end of file
+</document>



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