You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by sp...@apache.org on 2011/08/25 10:04:32 UTC

svn commit: r1161429 [11/12] - in /xmlgraphics/site/deploy/fop: ./ 0.95/ 1.0/ dev/ dev/design/ skin/ trunk/

Modified: xmlgraphics/site/deploy/fop/trunk/events.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/events.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/events.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/events.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Events/Processing Feedback</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Events/Processing Feedback</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -245,8 +246,9 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N10011"></a><a name="introduction"></a>
+<a name="introduction"></a>
 <h2 class="underlined_10">Introduction</h2>
 <div class="section">
 <p>
@@ -281,7 +283,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N10029"></a><a name="consumer"></a>
+<a name="consumer"></a>
 <h2 class="underlined_10">The consumer side</h2>
 <div class="section">
 <p>
@@ -311,7 +313,7 @@ document.write("Last Published: " + docu
         The example can also be accessed
         <a class="external" href="http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/examples/embedding/java/embedding/events/">via the web</a>.
       </p>
-<a name="N10060"></a><a name="write-listener"></a>
+<a name="write-listener"></a>
 <h3 class="underlined_5">Writing an EventListener</h3>
 <p>
           The following code sample shows a very simple EventListener. It basically just sends
@@ -361,7 +363,7 @@ public class SysOutEventListener impleme
           references to other objects. So holding on to these objects may mean that whole
           object trees cannot be released!
         </p>
-<a name="N10083"></a><a name="add-listener"></a>
+<a name="add-listener"></a>
 <h3 class="underlined_5">Adding an EventListener</h3>
 <p>
           To register the event listener with FOP, get the <span class="codefrag">EventBroadcaster</span> which
@@ -373,7 +375,7 @@ foUserAgent.getEventBroadcaster().addEve
           Please note that this is done separately for each processing run, i.e. for each
           new user agent.
         </p>
-<a name="N1009A"></a><a name="listener-example1"></a>
+<a name="listener-example1"></a>
 <h3 class="underlined_5">An additional listener example</h3>
 <p>
           Here's an additional example of an event listener:
@@ -427,7 +429,7 @@ foUserAgent.getEventBroadcaster().addEve
         </p>
 </div>
     
-<a name="N100BF"></a><a name="producer"></a>
+<a name="producer"></a>
 <h2 class="underlined_10">The producer side (for FOP developers)</h2>
 <div class="section">
 <p>
@@ -442,7 +444,7 @@ foUserAgent.getEventBroadcaster().addEve
         <a href="mailto:fop-dev.at.xmlgraphics.apache.org">us</a>.
       </div>
 </div>
-<a name="N100CF"></a><a name="basic-event-production"></a>
+<a name="basic-event-production"></a>
 <h3 class="underlined_5">Producing and sending an event</h3>
 <p>
           The basics are very simple. Just instantiate an <span class="codefrag">Event</span> object and fill
@@ -463,7 +465,7 @@ broadcaster.broadcastEvent(ev);
           to help with the build-up of the parameters. You could just as well instantiate a
           <span class="codefrag">Map</span> (<span class="codefrag">Map&lt;String, Object&gt;</span>) and fill it with values.
         </p>
-<a name="N100F3"></a><a name="event-producer"></a>
+<a name="event-producer"></a>
 <h3 class="underlined_5">The EventProducer interface</h3>
 <p>
           To simplify event production, the event subsystem provides the <span class="codefrag">EventProducer</span>
@@ -512,7 +514,7 @@ broadcaster.broadcastEvent(ev);
 <pre class="code">EventBroadcaster broadcaster = [get it from somewhere];
 TestEventProducer producer = TestEventProducer.Provider.get(broadcaster);
 producer.complain(this, "I'm tired", 23);</pre>
-<a name="N1011D"></a><a name="event-model"></a>
+<a name="event-model"></a>
 <h3 class="underlined_5">The event model</h3>
 <p>
           Inside an invocation handler for a dynamic proxy, there's no information about
@@ -559,7 +561,7 @@ producer.complain(this, "I'm tired", 23)
           and registered through the service provider mechanism
           (see the <a href="#plug-ins">plug-ins section</a> for details).
         </p>
-<a name="N1015C"></a><a name="event-severity"></a>
+<a name="event-severity"></a>
 <h3 class="underlined_5">Event severity</h3>
 <p>
           Four different levels of severity for events has been defined:
@@ -584,7 +586,7 @@ producer.complain(this, "I'm tired", 23)
           may appear that the event is duplicated. Of course, the same information is just
           published through two different channels.
         </p>
-<a name="N10178"></a><a name="plug-ins"></a>
+<a name="plug-ins"></a>
 <h3 class="underlined_5">Plug-ins to the event subsystem</h3>
 <p>
           The event subsystem is extensible. There are a number of extension points:
@@ -610,7 +612,7 @@ producer.complain(this, "I'm tired", 23)
           automatically detected. This is a mechanism defined by the
           <a class="external" href="http://java.sun.com/j2se/1.4.2/docs/guide/jar/jar.html#Service%20Provider">JAR file specification</a>.
         </p>
-<a name="N1019F"></a><a name="l10n"></a>
+<a name="l10n"></a>
 <h3 class="underlined_5">Localization (L10n)</h3>
 <p>
           One goal of the event subsystem was to have localized (translated) event messages.
@@ -703,7 +705,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/events.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/events.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Binary files - no diff available.

Modified: xmlgraphics/site/deploy/fop/trunk/events.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/events.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/events.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/events.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Events/Processing Feedback</title>
     <version>$Revision: 932497 $</version>

Modified: xmlgraphics/site/deploy/fop/trunk/extensions.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/extensions.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/extensions.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/extensions.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Standard FOP Extensions</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Standard FOP Extensions</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -267,6 +268,7 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
 <p>
       By "extension", we mean any data that can be placed in the input XML document that
@@ -286,7 +288,7 @@ document.write("Last Published: " + docu
 <div class="content">All extensions require the correct use of an appropriate namespace in your input document.</div>
 </div>
     
-<a name="N1001E"></a><a name="svg"></a>
+<a name="svg"></a>
 <h2 class="underlined_10">SVG</h2>
 <div class="section">
 <p>
@@ -294,10 +296,10 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N1002C"></a><a name="fo-extensions"></a>
+<a name="fo-extensions"></a>
 <h2 class="underlined_10">FO Extensions</h2>
 <div class="section">
-<a name="N10032"></a><a name="fox-namespace"></a>
+<a name="fox-namespace"></a>
 <h3 class="underlined_5">Namespace</h3>
 <p>
           By convention, FO extensions in FOP use the "fox" namespace prefix.
@@ -306,14 +308,14 @@ document.write("Last Published: " + docu
         </p>
 <pre class="code">&lt;fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
                xmlns:fox="http://xmlgraphics.apache.org/fop/extensions"&gt;</pre>
-<a name="N10043"></a><a name="bookmarks"></a>
+<a name="bookmarks"></a>
 <h3 class="underlined_5">PDF Bookmarks</h3>
 <p>
           In old versions of Apache FOP there was a <span class="codefrag">fox:outline</span> element
           which was used to create outlines in PDF files. The redesigned code makes use
           of the <a class="external" href="http://www.w3.org/TR/xsl11/#fo_bookmark-tree">bookmark feature defined in the W3C XSL 1.1 standard</a>.
         </p>
-<a name="N10054"></a><a name="named-destinations"></a>
+<a name="named-destinations"></a>
 <h3 class="underlined_5">Anchors or Named Destinations</h3>
 <p>Use the fox:destination element to define "named destinations" inside a PDF document.
 These are useful as fragment identifiers, e.g. "http://server/document.pdf#anchor-name".
@@ -332,10 +334,10 @@ PDF document. The fox:destination simply
 "id" attributes will generate named-destinations, which will eliminate the need for
 fox:destination.</div>
 </div>
-<a name="N10068"></a><a name="table-continue-label"></a>
+<a name="table-continue-label"></a>
 <h3 class="underlined_5">Table Continuation Label</h3>
 <p>This extension element hasn't been reimplemented for the redesigned code, yet.</p>
-<a name="N10074"></a><a name="widow-orphan-content-limit"></a>
+<a name="widow-orphan-content-limit"></a>
 <h3 class="underlined_5">fox:orphan-content-limit and fox:widow-content-limit</h3>
 <p>
           The two proprietary extension properties, fox:orphan-content-limit and
@@ -349,7 +351,7 @@ fox:destination.</div>
           the you'll have at least three lines (assuming line-height="1.2") together on a table
           or list-block.
         </p>
-<a name="N1007E"></a><a name="external-document"></a>
+<a name="external-document"></a>
 <h3 class="underlined_5">fox:external-document</h3>
 <div class="note">
 <div class="label">Note</div>
@@ -378,7 +380,7 @@ fox:destination.</div>
           </span>
         
 </p>
-<a name="N100A5"></a><a name="Specification"></a>
+<a name="Specification"></a>
 <h4>Specification</h4>
 <p>
             The <span class="codefrag">fox:external-document</span> extension formatting object is used to specify
@@ -448,7 +450,7 @@ fox:destination.</div>
             For this, XInclude is recommended.
           </div>
 </div>
-<a name="N10107"></a><a name="transform"></a>
+<a name="transform"></a>
 <h3 class="underlined_5">Free-form Transformation for fo:block-container</h3>
 <p>
           For <span class="codefrag">fo:block-container</span> elements whose <span class="codefrag">absolute-position</span> set to
@@ -473,14 +475,14 @@ fox:destination.</div>
           supported for PDF, PS and Java2D-based renderers.
         </div>
 </div>
-<a name="N1012D"></a><a name="color-functions"></a>
+<a name="color-functions"></a>
 <h3 class="underlined_5">Color functions</h3>
 <p>
           XSL-FO supports specifying color using the rgb(), rgb-icc() and system-color() functions.
           Apache FOP provides additional color functions for special use cases. Please note that
           using these functions compromises the interoperability of an FO document.
         </p>
-<a name="N10136"></a><a name="color-function-cmyk"></a>
+<a name="color-function-cmyk"></a>
 <h4>cmyk()</h4>
 <p>
 <span class="codefrag">color cmyk(numeric, numeric, numeric, numeric)</span>
@@ -490,7 +492,7 @@ fox:destination.</div>
             must be between 0.0 and 1.0. For output formats that don't support device-specific
             color space the CMYK value is converted to an sRGB value.
           </p>
-<a name="N10144"></a><a name="pseudo-color-profiles"></a>
+<a name="pseudo-color-profiles"></a>
 <h4>#CMYK pseudo-profile</h4>
 <p>
 <span class="codefrag">color rgb-icc(numeric, numeric, numeric, #CMYK, numeric, numeric, numeric, numeric)</span>
@@ -515,7 +517,7 @@ fox:destination.</div>
 </li>
           
 </ul>
-<a name="N10164"></a><a name="prepress"></a>
+<a name="prepress"></a>
 <h3 class="underlined_5">Prepress Support</h3>
 <p>
           This section defines a number of extensions related to
@@ -533,7 +535,7 @@ fox:destination.</div>
           Those extensions have been implemented in the PDF and Java2D renderers only.
         </div>
 </div>
-<a name="N10181"></a><a name="scale"></a>
+<a name="scale"></a>
 <h4>fox:scale</h4>
 <p>Value: &lt;number&gt;{1,2}</p>
 <p>Initial: 1</p>
@@ -543,7 +545,7 @@ fox:destination.</div>
             is provided it is used for both the x and y scales. A scale factor smaller than 1
             shrinks the page. A scale factor greater than 1 enlarges the page.
           </p>
-<a name="N10194"></a><a name="bleed"></a>
+<a name="bleed"></a>
 <h4>fox:bleed</h4>
 <p>
               Value: &lt;length&gt;{1,4}
@@ -565,7 +567,7 @@ fox:destination.</div>
               This extension indirectly defines the BleedBox and is calculated by expanding the TrimBox by
               the bleed widths. The lengths must be non-negative.
           </p>
-<a name="N101AE"></a><a name="cropOffset"></a>
+<a name="cropOffset"></a>
 <h4>fox:crop-offset</h4>
 <p>
             Value: &lt;length&gt;{1,4}
@@ -582,7 +584,7 @@ fox:destination.</div>
             This extension indirectly defines the MediaBox and is calculated by expanding
             the TrimBox by the crop offsets. The lengths must be non-negative.
           </p>
-<a name="N101C4"></a><a name="cropBox"></a>
+<a name="cropBox"></a>
 <h4>fox:crop-box</h4>
 <p>
             Value: [trim-box | bleed-box | media-box]
@@ -623,7 +625,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/extensions.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/extensions.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/extensions.pdf (original) and xmlgraphics/site/deploy/fop/trunk/extensions.pdf Thu Aug 25 08:04:24 2011 differ

Modified: xmlgraphics/site/deploy/fop/trunk/extensions.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/extensions.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/extensions.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/extensions.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Standard FOP Extensions</title>
     <version>$Revision: 1099706 $</version>

Modified: xmlgraphics/site/deploy/fop/trunk/fonts.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/fonts.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/fonts.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/fonts.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Apache FOP: Fonts</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Apache FOP: Fonts</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -263,8 +264,9 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N10024"></a><a name="intro"></a>
+<a name="intro"></a>
 <h2 class="underlined_10">Summary</h2>
 <div class="section">
 <p>The following table summarizes the font capabilities of the various FOP renderers:</p>
@@ -387,7 +389,7 @@ document.write("Last Published: " + docu
 </table>
 </div>
     
-<a name="N1014D"></a><a name="Base-14+Fonts"></a>
+<a name="Base-14+Fonts"></a>
 <h2 class="underlined_10">Base-14 Fonts</h2>
 <div class="section">
 <p>
@@ -457,7 +459,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N101AE"></a><a name="missing-fonts"></a>
+<a name="missing-fonts"></a>
 <h2 class="underlined_10">Missing Fonts</h2>
 <div class="section">
 <p>
@@ -468,7 +470,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N101B8"></a><a name="missing-glyphs"></a>
+<a name="missing-glyphs"></a>
 <h2 class="underlined_10">Missing Glyphs</h2>
 <div class="section">
 <p>
@@ -484,7 +486,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N101C6"></a><a name="awt"></a>
+<a name="awt"></a>
 <h2 class="underlined_10">Java2D/AWT/Operating System Fonts</h2>
 <div class="section">
 <p>
@@ -501,7 +503,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N101D3"></a><a name="custom"></a>
+<a name="custom"></a>
 <h2 class="underlined_10">Custom Fonts</h2>
 <div class="section">
 <p>
@@ -538,7 +540,7 @@ document.write("Last Published: " + docu
 </ul>
 </div>
     
-<a name="N101F8"></a><a name="basics"></a>
+<a name="basics"></a>
 <h2 class="underlined_10">Basic font configuration</h2>
 <div class="section">
 <p>
@@ -574,7 +576,7 @@ document.write("Last Published: " + docu
 </div>
 </div>
     
-<a name="N1020D"></a><a name="advanced"></a>
+<a name="advanced"></a>
 <h2 class="underlined_10">Advanced font configuration</h2>
 <div class="section">
 <p>
@@ -582,7 +584,7 @@ document.write("Last Published: " + docu
         additional instructions in case the basic font configuration doesn't lead to
         the desired results.
       </p>
-<a name="N10216"></a><a name="type1-metrics"></a>
+<a name="type1-metrics"></a>
 <h3 class="underlined_5">Type 1 Font Metrics</h3>
 <p>FOP includes PFMReader, which reads the PFM file that normally comes with a Type 1 font, and generates an appropriate font metrics file for it.
           To use it, run the class org.apache.fop.fonts.apps.PFMReader:</p>
@@ -616,7 +618,7 @@ document.write("Last Published: " + docu
           The PFMReader tool does not yet interpret PFB or AFM files, so if you want to be correct, you may have to adjust the values in the XML file manually.
           The constructed values however appear to have no visible influence.</div>
 </div>
-<a name="N1023F"></a><a name="truetype-metrics"></a>
+<a name="truetype-metrics"></a>
 <h3 class="underlined_5">TrueType Font Metrics</h3>
 <p>FOP includes TTFReader, which reads the TTF file and generates an appropriate font metrics file for it.
           Use it in a similar manner to PFMReader.
@@ -683,7 +685,7 @@ document.write("Last Published: " + docu
           the so-called Unicode "cmap" table. TTFReader can currently not deal with font like this.
         </div>
 </div>
-<a name="N102A4"></a><a name="truetype-collections-metrics"></a>
+<a name="truetype-collections-metrics"></a>
 <h3 class="underlined_5">TrueType Collections</h3>
 <p>TrueType collections (.ttc files) contain more than one font.
           To create metrics files for these fonts, you must specify which font in the collection should be generated, by using the "-ttcname" option with the TTFReader.</p>
@@ -701,7 +703,7 @@ document.write("Last Published: " + docu
 <pre class="code">&lt;font embed-url="gulim.ttc" sub-font="GulimChe"&gt;
   &lt;font-triplet name="GulimChe" style="normal" weight="normal"/&gt;
 &lt;/font&gt;</pre>
-<a name="N102BF"></a><a name="register"></a>
+<a name="register"></a>
 <h3 class="underlined_5">Register Fonts with FOP</h3>
 <p>You must tell FOP how to find and use the font metrics files by registering them in the <a href="configuration.html">FOP Configuration</a>. Add entries for your custom fonts, regardless of font type, to the configuration file in a manner similar to the following:</p>
 <pre class="code">
@@ -772,7 +774,7 @@ document.write("Last Published: " + docu
           </li>
         
 </ul>
-<a name="N1030A"></a><a name="autodetect"></a>
+<a name="autodetect"></a>
 <h3 class="underlined_5">Auto-Detect and auto-embed feature</h3>
 <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>
@@ -781,7 +783,7 @@ document.write("Last Published: " + docu
           Name: font/myfont.ttf
           Content-Type: application/x-font</pre>
 <p>This feature allows you to create JAR files containing fonts. The JAR files can be added to fop by providem them in the classpath, e.g. copying them into the lib/ directory.</p>
-<a name="N1031D"></a><a name="font-cache"></a>
+<a name="font-cache"></a>
 <h4>The font cache</h4>
 <p>
             Apache FOP maintains a cache file that is used to speed up auto-detection. This file
@@ -795,7 +797,7 @@ document.write("Last Published: " + docu
             by Apache FOP, it's worth a try to delete the font cache file which forces Apache FOP
             to reparse all fonts.
           </p>
-<a name="N1032B"></a><a name="embedding"></a>
+<a name="embedding"></a>
 <h3 class="underlined_5">Embedding</h3>
 <p>
           By default, all fonts are embedded if an output format supports font embedding. In some
@@ -865,7 +867,7 @@ document.write("Last Published: " + docu
           complete font is embedded.</li>
         
 </ul>
-<a name="N10372"></a><a name="substitution"></a>
+<a name="substitution"></a>
 <h3 class="underlined_5">Substitution</h3>
 <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>
@@ -893,7 +895,7 @@ document.write("Last Published: " + docu
 &lt;/fop&gt;</pre>
 </div>
     
-<a name="N1038F"></a><a name="selection"></a>
+<a name="selection"></a>
 <h2 class="underlined_10">Font Selection Strategies</h2>
 <div class="section">
 <p>
@@ -913,7 +915,7 @@ document.write("Last Published: " + docu
 <p>Character-by-Character is NOT yet supported!</p>
 </div>
     
-<a name="N103AE"></a><a name="font-list"></a>
+<a name="font-list"></a>
 <h2 class="underlined_10">Font List Command-Line Tool</h2>
 <div class="section">
 <p>
@@ -946,7 +948,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/fonts.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/fonts.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/fonts.pdf (original) and xmlgraphics/site/deploy/fop/trunk/fonts.pdf Thu Aug 25 08:04:24 2011 differ

Modified: xmlgraphics/site/deploy/fop/trunk/fonts.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/fonts.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/fonts.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/fonts.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Apache FOP: Fonts</title>
     <version>$Revision: 1066543 $</version>

Modified: xmlgraphics/site/deploy/fop/trunk/graphics.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/graphics.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/graphics.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/graphics.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Apache FOP: Graphics Formats</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Apache FOP: Graphics Formats</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -294,8 +295,9 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N10011"></a><a name="introduction"></a>
+<a name="introduction"></a>
 <h2 class="underlined_10">Introduction</h2>
 <div class="section">
 <p>
@@ -326,7 +328,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N10032"></a><a name="support-overview"></a>
+<a name="support-overview"></a>
 <h2 class="underlined_10">Overview of Graphics Support</h2>
 <div class="section">
 <p>
@@ -472,7 +474,7 @@ document.write("Last Published: " + docu
         the image manipulation functionality.
       </div>
 </div>
-<a name="N1018D"></a><a name="format-map"></a>
+<a name="format-map"></a>
 <h3 class="underlined_5">Map of supported image formats by output format</h3>
 <p>
           Not all image formats are supported for all output formats! For example, while you can
@@ -619,10 +621,10 @@ document.write("Last Published: " + docu
 </ul>
 </div>
     
-<a name="N10331"></a><a name="packages"></a>
+<a name="packages"></a>
 <h2 class="underlined_10">Graphics Packages</h2>
 <div class="section">
-<a name="N10337"></a><a name="native"></a>
+<a name="native"></a>
 <h3 class="underlined_5">XML Graphics Commons Native</h3>
 <p>
           
@@ -630,14 +632,14 @@ document.write("Last Published: " + docu
           of graphic file formats natively as basic functionality: all bitmap formats for which
           there are Image I/O codecs available (JPEG, PNG, GIF, TIFF, etc.), EPS and EMF.
         </p>
-<a name="N10345"></a><a name="fop-native"></a>
+<a name="fop-native"></a>
 <h3 class="underlined_5">FOP Native</h3>
 <p>
           FOP has no native image plug-ins for the image loading framework of its own but currently
           hosts the Batik-dependent SVG and WMF plug-ins until they can be moved to
           <a href="http://xmlgraphics.apache.org/batik/">Apache Batik</a>.
         </p>
-<a name="N10353"></a><a name="batik"></a>
+<a name="batik"></a>
 <h3 class="underlined_5">Apache Batik</h3>
 <p>
           
@@ -681,7 +683,7 @@ document.write("Last Published: " + docu
           </li>
         
 </ul>
-<a name="N10385"></a><a name="imageio"></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>
@@ -694,22 +696,22 @@ document.write("Last Published: " + docu
         </p>
 </div>
     
-<a name="N1039E"></a><a name="image-formats"></a>
+<a name="image-formats"></a>
 <h2 class="underlined_10">Details on image formats</h2>
 <div class="section">
-<a name="N103A4"></a><a name="bmp"></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="N103AE"></a><a name="emf"></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="N103B8"></a><a name="eps"></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>
@@ -717,13 +719,13 @@ document.write("Last Published: " + docu
           FOP lacks a PostScript interpreter. Furthermore, FOP is currently not able
           to parse the preview bitmaps sometimes contained in EPS files.
         </p>
-<a name="N103C5"></a><a name="gif"></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="N103CF"></a><a name="jpeg"></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
@@ -737,15 +739,15 @@ document.write("Last Published: " + docu
           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="N103D9"></a><a name="png"></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="N103E3"></a><a name="svg"></a>
+<a name="svg"></a>
 <h3 class="underlined_5">SVG</h3>
-<a name="N103E9"></a><a name="svg-intro"></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
@@ -759,7 +761,7 @@ document.write("Last Published: " + docu
             on the Batik site.
           </div>
 </div>
-<a name="N10404"></a><a name="svg-pdf-graphics"></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
@@ -779,7 +781,7 @@ document.write("Last Published: " + docu
             contain effects or graphics with transparent areas may not be displayed
             correctly.
           </p>
-<a name="N10418"></a><a name="svg-pdf-text"></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
@@ -810,7 +812,7 @@ document.write("Last Published: " + docu
             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="N10434"></a><a name="svg-font-selection"></a>
+<a name="svg-font-selection"></a>
 <h4>Font selection notes</h4>
 <p>
             Apache Batik uses the AWT/Java2D subsystem as font source while FOP has its own font
@@ -831,7 +833,7 @@ document.write("Last Published: " + docu
             if a particular font could not be found and had to be substituted, or if a particular
             glyph is missing in a font.
           </p>
-<a name="N10441"></a><a name="svg-scaling"></a>
+<a name="svg-scaling"></a>
 <h4>Scaling</h4>
 <p>
             Currently, SVG images are rendered with the dimensions specified <em>in the SVG 
@@ -846,7 +848,7 @@ document.write("Last Published: " + docu
             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="N10455"></a><a name="svg-problems"></a>
+<a name="svg-problems"></a>
 <h4>Known Problems</h4>
 <ul>
             
@@ -872,7 +874,7 @@ document.write("Last Published: " + docu
             </li>
           
 </ul>
-<a name="N1046C"></a><a name="tiff"></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
@@ -882,7 +884,7 @@ document.write("Last Published: " + docu
 <p>
           There may be some limitation concerning images in the CMYK color space.
         </p>
-<a name="N10479"></a><a name="wmf"></a>
+<a name="wmf"></a>
 <h3 class="underlined_5">WMF</h3>
 <p>
           Windows Metafiles (WMF) are supported through classes in 
@@ -891,7 +893,7 @@ document.write("Last Published: " + docu
         </p>
 </div>
     
-<a name="N10488"></a><a name="resolution"></a>
+<a name="resolution"></a>
 <h2 class="underlined_10">Graphics Resolution</h2>
 <div class="section">
 <p>
@@ -916,7 +918,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N1049C"></a><a name="page-selection"></a>
+<a name="page-selection"></a>
 <h2 class="underlined_10">Page selection for multi-page formats</h2>
 <div class="section">
 <p>
@@ -927,7 +929,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N104A9"></a><a name="caching"></a>
+<a name="caching"></a>
 <h2 class="underlined_10">Image caching</h2>
 <div class="section">
 <p>
@@ -969,7 +971,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/graphics.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/graphics.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/graphics.pdf (original) and xmlgraphics/site/deploy/fop/trunk/graphics.pdf Thu Aug 25 08:04:24 2011 differ

Modified: xmlgraphics/site/deploy/fop/trunk/graphics.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/graphics.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/graphics.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/graphics.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Apache FOP: Graphics Formats</title>
     <version>$Revision: 964711 $</version>

Modified: xmlgraphics/site/deploy/fop/trunk/hyphenation.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/hyphenation.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/hyphenation.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/hyphenation.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Apache FOP: Hyphenation</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Apache FOP: Hyphenation</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -225,11 +226,12 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N10011"></a><a name="support"></a>
+<a name="support"></a>
 <h2 class="underlined_10">Hyphenation Support</h2>
 <div class="section">
-<a name="N10017"></a><a name="intro"></a>
+<a name="intro"></a>
 <h3 class="underlined_5">Introduction</h3>
 <p>FOP uses Liang's hyphenation algorithm, well known from TeX. It needs
        language specific pattern and other data for operation.</p>
@@ -245,7 +247,7 @@ document.write("Last Published: " + docu
        Please inquire on the <a href="../maillist.html#fop-user">FOP User
        mailing list</a>.</div>
 </div>
-<a name="N10034"></a><a name="license-issues"></a>
+<a name="license-issues"></a>
 <h3 class="underlined_5">License Issues</h3>
 <p>Many of the hyphenation files distributed with TeX and its offspring are
        licenced under the <a class="external" href="http://www.latex-project.org/lppl.html">LaTeX
@@ -264,12 +266,12 @@ document.write("Last Published: " + docu
 <div class="content">The user is responsible to settle license issues for hyphenation
        pattern files that are obtained from non-Apache sources.</div>
 </div>
-<a name="N10049"></a><a name="sources"></a>
+<a name="sources"></a>
 <h3 class="underlined_5">Sources of Custom Hyphenation Pattern Files</h3>
 <p>The most important source of hyphenation pattern files is the
        <a class="external" href="http://www.ctan.org/tex-archive/language/hyphenation/">CTAN TeX
         Archive</a>.</p>
-<a name="N10058"></a><a name="install"></a>
+<a name="install"></a>
 <h3 class="underlined_5">Installing Custom Hyphenation Patterns</h3>
 <p>To install a custom hyphenation pattern for use with FOP:</p>
 <ol>
@@ -355,7 +357,7 @@ document.write("Last Published: " + docu
 </div>
 </div>
   
-<a name="N100CC"></a><a name="patterns"></a>
+<a name="patterns"></a>
 <h2 class="underlined_10">Hyphenation Patterns</h2>
 <div class="section">
 <p>If you would like to build your own hyphenation pattern files, or modify
@@ -503,7 +505,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/hyphenation.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/hyphenation.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/hyphenation.pdf (original) and xmlgraphics/site/deploy/fop/trunk/hyphenation.pdf Thu Aug 25 08:04:24 2011 differ

Modified: xmlgraphics/site/deploy/fop/trunk/hyphenation.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/hyphenation.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/hyphenation.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/hyphenation.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Apache FOP: Hyphenation</title>
     <version>$Revision: 1091385 $</version>

Modified: xmlgraphics/site/deploy/fop/trunk/index.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/index.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/index.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/index.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Apache FOP Trunk (Development code)</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -204,6 +204,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Apache FOP Trunk (Development code)</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -214,8 +215,9 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N10011"></a><a name="intro"></a>
+<a name="intro"></a>
 <h2 class="underlined_10">Introduction</h2>
 <div class="section">
 <p>
@@ -233,7 +235,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N10025"></a><a name="upgrading"></a>
+<a name="upgrading"></a>
 <h2 class="underlined_10">Upgrading from an earlier version</h2>
 <div class="section">
 <p>
@@ -262,7 +264,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <div id="logos"></div>
 <!--+
     |end bottomstrip

Modified: xmlgraphics/site/deploy/fop/trunk/index.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/index.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/index.pdf (original) and xmlgraphics/site/deploy/fop/trunk/index.pdf Thu Aug 25 08:04:24 2011 differ

Modified: xmlgraphics/site/deploy/fop/trunk/index.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/index.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/index.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/index.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Apache FOP Trunk (Development code)</title>
     <version>$Revision: 627324 $</version>

Modified: xmlgraphics/site/deploy/fop/trunk/intermediate.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/intermediate.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/intermediate.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/intermediate.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Intermediate Format</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Intermediate Format</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -250,6 +251,7 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
 <div class="note">
 <div class="label">Note</div>
@@ -259,7 +261,7 @@ document.write("Last Published: " + docu
     </div>
 </div>
     
-<a name="N10017"></a><a name="introduction"></a>
+<a name="introduction"></a>
 <h2 class="underlined_10">Introduction</h2>
 <div class="section">
 <p>
@@ -286,14 +288,14 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N1002B"></a><a name="which-if"></a>
+<a name="which-if"></a>
 <h2 class="underlined_10">Which Intermediate Format to choose?</h2>
 <div class="section">
 <p>
         Both formats have their use cases, so the choice you will make will depend on your 
         particular situation. Here is a list of strengths and use cases for both formats:
       </p>
-<a name="N10034"></a><a name="strengths-at"></a>
+<a name="strengths-at"></a>
 <h3 class="underlined_5">Area Tree XML (AT XML)</h3>
 <ul>
           
@@ -304,7 +306,7 @@ document.write("Last Published: " + docu
 <li>Used in FOP's layout engine test suite for regression testing.</li>
         
 </ul>
-<a name="N10047"></a><a name="strengths-if"></a>
+<a name="strengths-if"></a>
 <h3 class="underlined_5">Intermediate Format (IF)</h3>
 <ul>
           
@@ -328,14 +330,14 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N10068"></a><a name="architecture"></a>
+<a name="architecture"></a>
 <h2 class="underlined_10">Architectural Overview</h2>
 <div class="section">
-<div id="" style="text-align: center;">
-<img id="" class="figure" alt="Diagram with an architectural overview over the intermediate formats" src="images/if-architecture-overview.png"></div>
+<div style="text-align: center;">
+<img class="figure" alt="Diagram with an architectural overview over the intermediate formats" src="images/if-architecture-overview.png"></div>
 </div>
     
-<a name="N10073"></a><a name="usage"></a>
+<a name="usage"></a>
 <h2 class="underlined_10">Usage of the Area Tree XML format (AT XML)</h2>
 <div class="section">
 <p>
@@ -408,7 +410,7 @@ try {
         by using the "-atin" parameter for specifying the area tree XML as input file. You can also 
         specify a "mimic renderer" by inserting a MIME type between "-at" and the output file.
       </p>
-<a name="N100A4"></a><a name="concat"></a>
+<a name="concat"></a>
 <h3 class="underlined_5">Concatenating Documents</h3>
 <p>
           This initial example is obviously not very useful. It would be faster to create the PDF file 
@@ -417,7 +419,7 @@ try {
           same AreaTreeModel instance which essentially concatenates all the input document to one single
           output document.
         </p>
-<a name="N100B2"></a><a name="modifying"></a>
+<a name="modifying"></a>
 <h3 class="underlined_5">Modifying Documents</h3>
 <p>
           One of the most important use cases for this format is obviously modifying the area
@@ -434,7 +436,7 @@ try {
           the modified file may not render correctly.
         </div>
 </div>
-<a name="N100BF"></a><a name="advanced"></a>
+<a name="advanced"></a>
 <h3 class="underlined_5">Advanced Use</h3>
 <p>
           The generation of the area tree format as well as it parsing process has been designed to allow
@@ -446,7 +448,7 @@ try {
         </p>
 </div>
     
-<a name="N100D0"></a><a name="usage-if"></a>
+<a name="usage-if"></a>
 <h2 class="underlined_10">Usage of the Intermediate Format (IF)</h2>
 <div class="section">
 <p>
@@ -536,7 +538,7 @@ try {
         IFParser.parse() is used, but you can also just get a SAX ContentHandler by using the
         IFParser.getContentHandler() method.
       </p>
-<a name="N1010C"></a><a name="concat-if"></a>
+<a name="concat-if"></a>
 <h3 class="underlined_5">Concatenating Documents</h3>
 <p>
           This initial example is obviously not very useful. It would be faster to create the PDF file 
@@ -548,7 +550,7 @@ try {
           IFDocumentHandler interface. You could also do this in XSLT or using SAX on the XML level.
           Whatever suits your process best.
         </p>
-<a name="N1011A"></a><a name="modifying-if"></a>
+<a name="modifying-if"></a>
 <h3 class="underlined_5">Modifying Documents</h3>
 <p>
           One of the most important use cases for this format is obviously modifying the
@@ -565,7 +567,7 @@ try {
           arbitrary transformations on the IF's "viewport" and "g" elements. Possible are
           only rotations in 90 degree steps and translations.
         </p>
-<a name="N1012E"></a><a name="advanced-if"></a>
+<a name="advanced-if"></a>
 <h3 class="underlined_5">Advanced Use</h3>
 <p>
           The generation of the intermediate format as well as it parsing process has been
@@ -597,7 +599,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/intermediate.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/intermediate.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/intermediate.pdf (original) and xmlgraphics/site/deploy/fop/trunk/intermediate.pdf Thu Aug 25 08:04:24 2011 differ

Modified: xmlgraphics/site/deploy/fop/trunk/intermediate.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/intermediate.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/intermediate.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/intermediate.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Intermediate Format</title>
     <version>$Revision: 746664 $</version>

Modified: xmlgraphics/site/deploy/fop/trunk/metadata.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/metadata.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/metadata.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/metadata.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Metadata</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Metadata</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -227,8 +228,9 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N1000E"></a><a name="overview"></a>
+<a name="overview"></a>
 <h2 class="underlined_10">Overview</h2>
 <div class="section">
 <p>
@@ -246,7 +248,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N1001C"></a><a name="xmp-in-fo"></a>
+<a name="xmp-in-fo"></a>
 <h2 class="underlined_10">Embedding XMP in an XSL-FO document</h2>
 <div class="section">
 <p>
@@ -262,7 +264,7 @@ document.write("Last Published: " + docu
         <span class="codefrag">x:xmpmeta</span> and <span class="codefrag">rdf:RDF</span> elements are recognized as the top-level
         element introducing an XMP fragment (as per the XMP specification).
       </p>
-<a name="N1003A"></a><a name="xmp-example"></a>
+<a name="xmp-example"></a>
 <h3 class="underlined_5">Example</h3>
 <pre class="code">[..]
 &lt;/fo:layout-master-set&gt;
@@ -296,7 +298,7 @@ document.write("Last Published: " + docu
 </div>
 </div>
     
-<a name="N10055"></a><a name="xmp-impl-in-fop"></a>
+<a name="xmp-impl-in-fop"></a>
 <h2 class="underlined_10">Implementation in Apache FOP</h2>
 <div class="section">
 <p>
@@ -439,7 +441,7 @@ document.write("Last Published: " + docu
         this was changed to map to <span class="codefrag">dc:description["x-default"]</span>. 
       </div>
 </div>
-<a name="N10187"></a><a name="namespaces"></a>
+<a name="namespaces"></a>
 <h3 class="underlined_5">Namespaces</h3>
 <p>
           Metadata is made of property sets where each property set uses a different namespace URI.
@@ -494,7 +496,7 @@ document.write("Last Published: " + docu
         </p>
 </div>
     
-<a name="N101EA"></a><a name="links"></a>
+<a name="links"></a>
 <h2 class="underlined_10">Links</h2>
 <div class="section">
 <ul>
@@ -536,7 +538,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/metadata.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/metadata.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Binary files - no diff available.

Modified: xmlgraphics/site/deploy/fop/trunk/metadata.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/metadata.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/metadata.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/metadata.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Metadata</title>
   </header>

Modified: xmlgraphics/site/deploy/fop/trunk/output.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/output.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/output.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/output.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>Apache FOP Output Formats</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>Apache FOP Output Formats</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -396,6 +397,7 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
 <p>
       FOP supports multiple output formats by using a different renderer for each format.
@@ -404,10 +406,10 @@ document.write("Last Published: " + docu
       attention than others.
     </p>
     
-<a name="N10020"></a><a name="general"></a>
+<a name="general"></a>
 <h2 class="underlined_10">General Information</h2>
 <div class="section">
-<a name="N10026"></a><a name="general-fonts"></a>
+<a name="general-fonts"></a>
 <h3 class="underlined_5">Fonts</h3>
 <p>
           Most FOP renderers use a FOP-specific system for font registration.
@@ -464,7 +466,7 @@ document.write("Last Published: " + docu
 </li>
         
 </ol>
-<a name="N1005B"></a><a name="general-direct-output"></a>
+<a name="general-direct-output"></a>
 <h3 class="underlined_5">Output to a Printer or Other Device</h3>
 <p>
           The most obvious way to print your document is to use the FOP 
@@ -488,7 +490,7 @@ out = proc.getOutputStream();</pre>
         </p>
 </div>
     
-<a name="N1007F"></a><a name="pdf"></a>
+<a name="pdf"></a>
 <h2 class="underlined_10">PDF</h2>
 <div class="section">
 <p>
@@ -504,7 +506,7 @@ out = proc.getOutputStream();</pre>
         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>
-<a name="N10097"></a><a name="pdf-fonts"></a>
+<a name="pdf-fonts"></a>
 <h3 class="underlined_5">Fonts</h3>
 <p>
           PDF has a set of fonts that are always available to all PDF viewers;
@@ -518,7 +520,7 @@ out = proc.getOutputStream();</pre>
           guaranteed to be available in all PDF viewer applications."</em>
         
 </p>
-<a name="N100A4"></a><a name="pdf-postprocess"></a>
+<a name="pdf-postprocess"></a>
 <h3 class="underlined_5">Post-processing</h3>
 <p>
           FOP does not currently support several desirable PDF features: watermarks and signatures. 
@@ -588,7 +590,7 @@ out = proc.getOutputStream();</pre>
         Check the iText tutorial and documentation for setting access flags, password, 
         encryption strength and other parameters.
       </p>
-<a name="N100CA"></a><a name="pdf-watermark"></a>
+<a name="pdf-watermark"></a>
 <h3 class="underlined_5">Watermarks</h3>
 <p>
         In addition to the <a href="#pdf-postprocess">PDF Post-processing</a> options, consider the following workarounds:
@@ -610,7 +612,7 @@ out = proc.getOutputStream();</pre>
         </li>
       
 </ul>
-<a name="N100E1"></a><a name="pdf-extensions"></a>
+<a name="pdf-extensions"></a>
 <h3 class="underlined_5">Extensions</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 
@@ -619,7 +621,7 @@ out = proc.getOutputStream();</pre>
 &lt;fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
          xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf"&gt;
   </pre>
-<a name="N100EE"></a><a name="pdf-embedded-file"></a>
+<a name="pdf-embedded-file"></a>
 <h4>Embedded Files</h4>
 <p>
           It is possible to attach/embed arbitrary files into a PDF file. You can give a name and
@@ -655,7 +657,7 @@ out = proc.getOutputStream();</pre>
         </p>
 </div>
 
-<a name="N10114"></a><a name="ps"></a>
+<a name="ps"></a>
 <h2 class="underlined_10">PostScript</h2>
 <div class="section">
 <p>
@@ -668,7 +670,7 @@ out = proc.getOutputStream();</pre>
     filter (the latter is used for 1:1 embedding of JPEG images), everything 
     else is Level 2.
   </p>
-<a name="N1011D"></a><a name="ps-configuration"></a>
+<a name="ps-configuration"></a>
 <h3 class="underlined_5">Configuration</h3>
 <p>
         The PostScript renderer configuration currently allows the following settings:
@@ -718,7 +720,7 @@ out = proc.getOutputStream();</pre>
         rendering quality. For example, solid borders are then painted as plain rectangles
         instead of the elaborate painting instructions required for mixed-color borders.
       </p>
-<a name="N1013D"></a><a name="ps-limitations"></a>
+<a name="ps-limitations"></a>
 <h3 class="underlined_5">Limitations</h3>
 <ul>
       
@@ -733,7 +735,7 @@ out = proc.getOutputStream();</pre>
 </ul>
 </div>
   
-<a name="N10154"></a><a name="pcl"></a>
+<a name="pcl"></a>
 <h2 class="underlined_10">PCL</h2>
 <div class="section">
 <p>
@@ -751,7 +753,7 @@ out = proc.getOutputStream();</pre>
       painting operations. Certain painting operations are done off-screen and
       rendered to PCL as bitmaps because of limitations in PCL 5.
     </p>
-<a name="N10160"></a><a name="pcl-references"></a>
+<a name="pcl-references"></a>
 <h3 class="underlined_5">References</h3>
 <ul>
         
@@ -764,7 +766,7 @@ out = proc.getOutputStream();</pre>
 </li>
       
 </ul>
-<a name="N10174"></a><a name="pcl-limitations"></a>
+<a name="pcl-limitations"></a>
 <h3 class="underlined_5">Limitations</h3>
 <ul>
         
@@ -812,7 +814,7 @@ out = proc.getOutputStream();</pre>
         </li>
       
 </ul>
-<a name="N10196"></a><a name="pcl-configuration"></a>
+<a name="pcl-configuration"></a>
 <h3 class="underlined_5">Configuration</h3>
 <p>
         The PCL renderer configuration currently allows the following settings:
@@ -848,7 +850,7 @@ out = proc.getOutputStream();</pre>
         should be enough for most use cases. Note that this setting directly affects
         the size of the output file and the print quality.
       </p>
-<a name="N101B0"></a><a name="pcl-extensions"></a>
+<a name="pcl-extensions"></a>
 <h3 class="underlined_5">Extensions</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 
@@ -857,7 +859,7 @@ out = proc.getOutputStream();</pre>
       &lt;fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
                xmlns:pcl="http://xmlgraphics.apache.org/fop/extensions/pcl"&gt;
 </pre>
-<a name="N101BD"></a><a name="pcl-page-source"></a>
+<a name="pcl-page-source"></a>
 <h4>Page Source (Tray selection)</h4>
 <p>
           The page-source extension attribute on fo:simple-page-master allows to 
@@ -882,7 +884,7 @@ out = proc.getOutputStream();</pre>
           "7" is "auto-select".
           Consult the technical reference for your printer for all available values.
         </p>
-<a name="N101CE"></a><a name="pcl-output-bin"></a>
+<a name="pcl-output-bin"></a>
 <h4>Output Bin</h4>
 <p>
           The <span class="codefrag">output-bin</span> extension attribute on fo:simple-page-master allows to 
@@ -903,7 +905,7 @@ out = proc.getOutputStream();</pre>
           "2" is the lower (rear) output bin. 
           Consult the technical reference for your printer for all available values.
         </p>
-<a name="N101E2"></a><a name="pcl-duplex-mode"></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 
@@ -929,7 +931,7 @@ out = proc.getOutputStream();</pre>
         </p>
 </div>
   
-<a name="N101F5"></a><a name="afp"></a>
+<a name="afp"></a>
 <h2 class="underlined_10">AFP</h2>
 <div class="section">
 <p>
@@ -974,7 +976,7 @@ out = proc.getOutputStream();</pre>
       FOP creates exactly one Document per Printfile with an optional Resource Group at the
       beginning. FOP does not create document indices.
     </p>
-<a name="N1023B"></a><a name="afp-references"></a>
+<a name="afp-references"></a>
 <h3 class="underlined_5">References</h3>
 <ul>
         
@@ -991,7 +993,7 @@ out = proc.getOutputStream();</pre>
 </li>
       
 </ul>
-<a name="N10254"></a><a name="afp-limitations"></a>
+<a name="afp-limitations"></a>
 <h3 class="underlined_5">Limitations</h3>
 <p>This list is most likely badly incomplete.</p>
 <ul>
@@ -1006,7 +1008,7 @@ out = proc.getOutputStream();</pre>
         </li>
       
 </ul>
-<a name="N10267"></a><a name="afp-compatibility"></a>
+<a name="afp-compatibility"></a>
 <h3 class="underlined_5">Deployment in older environments</h3>
 <p>
         There are still a big number of older (or limited) MO:DCA/IPDS environments in production
@@ -1019,9 +1021,9 @@ out = proc.getOutputStream();</pre>
         If a higher number of bits per pixel is configured, FOP has to switch to at least FS11
         which may not work everywhere.
       </p>
-<a name="N10271"></a><a name="afp-configuration"></a>
+<a name="afp-configuration"></a>
 <h3 class="underlined_5">Configuration</h3>
-<a name="N10277"></a><a name="afp-font-config"></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
@@ -1182,13 +1184,13 @@ Note that the value of the encoding attr
           <a href="fonts.html#embedding"><span class="codefrag">referenced-fonts</span> section of the configuration file</a>.
           However, the default fonts shown above will not be embedded.
         </p>
-<a name="N102C5"></a><a name="afp-renderer-resolution-config"></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="N102D3"></a><a name="afp-image-config"></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>
@@ -1227,7 +1229,7 @@ Note that the value of the encoding attr
         </p>
 <pre class="code">
       &lt;images mode="b+w" bits-per-pixel="1" dithering-quality="maximum"/&gt;</pre>
-<a name="N10309"></a><a name="afp-goca-config"></a>
+<a name="afp-goca-config"></a>
 <h4>GOCA (Vector Graphics)</h4>
 <p>
           Not all AFP implementations support GOCA. Some also have bugs related to GOCA. Therefore,
@@ -1249,7 +1251,7 @@ Note that the value of the encoding attr
           If you disable GOCA or let text render as shapes, the size of the generated AFP usually
           increases considerably.
         </p>
-<a name="N10324"></a><a name="afp-shading-config"></a>
+<a name="afp-shading-config"></a>
 <h4>Shading</h4>
 <p>
           By default, filled rectangles are painted using their given color using a PTOCA I-axis rule
@@ -1262,7 +1264,7 @@ Note that the value of the encoding attr
 <pre class="code">
       &lt;shading&gt;dithered&lt;/shading&gt;
 </pre>
-<a name="N10332"></a><a name="afp-resource-group-file"></a>
+<a name="afp-resource-group-file"></a>
 <h4>Resource Group File</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
@@ -1274,7 +1276,7 @@ Note that the value of the encoding attr
 <div class="label">Note</div>
 <div class="content">Be careful when using this option not to overwrite existing resource files from previous rendering runs.</div>
 </div>
-<a name="N10343"></a><a name="afp-resource-level-defaults"></a>
+<a name="afp-resource-level-defaults"></a>
 <h4>Resource Level Defaults</h4>
 <p>
           By default, bitmap image objects (or page segments derived from them) are put in the
@@ -1293,7 +1295,7 @@ Note that the value of the encoding attr
           for the attributes are "inline" and "print-file". In the future,
           additional possibilities may be added.
         </p>
-<a name="N1035C"></a><a name="afp-extensions"></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>
@@ -1301,7 +1303,7 @@ Note that the value of the encoding attr
       &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="N10369"></a><a name="afp-page-overlay"></a>
+<a name="afp-page-overlay"></a>
 <h4>Page Overlay (IPO) 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">
@@ -1315,7 +1317,7 @@ Note that the value of the encoding attr
 <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>
-<a name="N1037A"></a><a name="afp-page-segment"></a>
+<a name="afp-page-segment"></a>
 <h4>Page Segment (IPS) Extension</h4>
 <p>The include-page-segment extension element allows to define resource substitution for fo:external-graphics elements. 
           Example:</p>
@@ -1355,7 +1357,7 @@ Note that the value of the encoding attr
           generated document so that the external resource does not have to be supplied in the
           print job.
         </p>
-<a name="N10394"></a><a name="afp-tag-logical-element"></a>
+<a name="afp-tag-logical-element"></a>
 <h4>Tag Logical Element (TLE) Extension</h4>
 <p>The tag-logical-element extension element allows to injects TLEs into the AFP output stream. Example:</p>
 <pre class="code">
@@ -1379,7 +1381,7 @@ Note that the value of the encoding attr
           Multiple tag-logical-element extension elements within a simple-page-master or
           page-sequence are allowed. The name and value attributes are mandatory.
         </p>
-<a name="N103A5"></a><a name="afp-no-operation"></a>
+<a name="afp-no-operation"></a>
 <h4>No Operation (NOP) 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>
@@ -1407,7 +1409,7 @@ Note that the value of the encoding attr
         object.
         The "name" attribute is mandatory but will not appear inside the AFP stream.
         </p>
-<a name="N103C5"></a><a name="afp-invoke-medium-map"></a>
+<a name="afp-invoke-medium-map"></a>
 <h4>Invoke Medium Map (IMM) Extension</h4>
 <p>
           The invoke-medium-map extension allows to generate IMM fields (Invoke Medium Map) in the
@@ -1429,7 +1431,7 @@ Note that the value of the encoding attr
           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>
-<a name="N103D6"></a><a name="afp-form-maps"></a>
+<a name="afp-form-maps"></a>
 <h4>Form Maps/Defs</h4>
 <p>
           Apache FOP supports embedding an external form map resource in the
@@ -1460,9 +1462,9 @@ Note that the value of the encoding attr
           tool.
         </div>
 </div>
-<a name="N103FD"></a><a name="afp-foreign-attributes"></a>
+<a name="afp-foreign-attributes"></a>
 <h3 class="underlined_5">Foreign Attributes</h3>
-<a name="N10403"></a><a name="afp-foreign-attributes-resource"></a>
+<a name="afp-foreign-attributes-resource"></a>
 <h4>Resource</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.
@@ -1499,7 +1501,7 @@ Note that the value of the encoding attr
 <p></p>
 </div>
 
-<a name="N1041C"></a><a name="rtf"></a>
+<a name="rtf"></a>
 <h2 class="underlined_10">RTF</h2>
 <div class="section">
 <p>
@@ -1553,7 +1555,7 @@ Note that the value of the encoding attr
 </ul>
 </div>
 
-<a name="N10450"></a><a name="xml"></a>
+<a name="xml"></a>
 <h2 class="underlined_10">XML (Area Tree XML)</h2>
 <div class="section">
 <p>
@@ -1567,7 +1569,7 @@ Note that the value of the encoding attr
   </p>
 </div>
 
-<a name="N10461"></a><a name="awt"></a>
+<a name="awt"></a>
 <h2 class="underlined_10">Java2D/AWT</h2>
 <div class="section">
 <p>
@@ -1582,14 +1584,14 @@ Note that the value of the encoding attr
     </p>
 </div>
 
-<a name="N1046E"></a><a name="print"></a>
+<a name="print"></a>
 <h2 class="underlined_10">Print</h2>
 <div class="section">
 <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>
-<a name="N10477"></a><a name="print-issues"></a>
+<a name="print-issues"></a>
 <h3 class="underlined_5">Known issues</h3>
 <p>
       If you run into the problem that the printed output is incomplete on Windows:
@@ -1600,7 +1602,7 @@ Note that the value of the encoding attr
     </p>
 </div>
 
-<a name="N10482"></a><a name="bitmap"></a>
+<a name="bitmap"></a>
 <h2 class="underlined_10">Bitmap (TIFF/PNG)</h2>
 <div class="section">
 <p>
@@ -1619,7 +1621,7 @@ Note that the value of the encoding attr
     The quality of the bitmap depends on the target resolution setting 
     on the FOUserAgent and on further settings described below.
   </p>
-<a name="N10497"></a><a name="bitmap-configuration"></a>
+<a name="bitmap-configuration"></a>
 <h3 class="underlined_5">Configuration</h3>
 <p>
         The TIFF and PNG renderer configuration currently allows the following settings:
@@ -1680,7 +1682,7 @@ Note that the value of the encoding attr
         at the loss of some image quality. If this setting has an actual effect depends
         on the JVM's Java2D backend.
       </p>
-<a name="N104FE"></a><a name="tiff-configuration"></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
@@ -1746,7 +1748,7 @@ Note that the value of the encoding attr
         Deflate and JPEG compression for writing.
       </div>
 </div>
-<a name="N10549"></a><a name="bitmap-rendering-options"></a>
+<a name="bitmap-rendering-options"></a>
 <h3 class="underlined_5">Runtime Rendering Options</h3>
 <p>
         The IF-based bitmap output implementations support a rendering option with the key
@@ -1758,7 +1760,7 @@ Note that the value of the encoding attr
     "target-bitmap-size", new Dimension(320, 200));</pre>
 </div>
 
-<a name="N10558"></a><a name="txt"></a>
+<a name="txt"></a>
 <h2 class="underlined_10">TXT</h2>
 <div class="section">
 <p>
@@ -1796,7 +1798,7 @@ Note that the value of the encoding attr
 </ul>
 </div>
 
-<a name="N10574"></a><a name="sandbox"></a>
+<a name="sandbox"></a>
 <h2 class="underlined_10">Output Formats in the Sandbox</h2>
 <div class="section">
 <p>
@@ -1805,7 +1807,7 @@ Note that the value of the encoding attr
     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="N1057D"></a><a name="mif"></a>
+<a name="mif"></a>
 <h3 class="underlined_5">MIF</h3>
 <div class="warning">
 <div class="label">Warning</div>
@@ -1815,7 +1817,7 @@ Note that the value of the encoding attr
       This format is the Maker Interchange Format which is used by
       Adobe Framemaker.
     </p>
-<a name="N1058A"></a><a name="svg"></a>
+<a name="svg"></a>
 <h3 class="underlined_5">SVG</h3>
 <div class="warning">
 <div class="label">Warning</div>
@@ -1834,7 +1836,7 @@ Note that the value of the encoding attr
      </p>
 </div>
 
-<a name="N10598"></a><a name="wishlist"></a>
+<a name="wishlist"></a>
 <h2 class="underlined_10">Wish list</h2>
 <div class="section">
 <p>
@@ -1876,7 +1878,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/output.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/output.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/output.pdf (original) and xmlgraphics/site/deploy/fop/trunk/output.pdf Thu Aug 25 08:04:24 2011 differ

Modified: xmlgraphics/site/deploy/fop/trunk/output.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/output.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/output.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/output.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!-- Output Formats: Renderers --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>Apache FOP Output Formats</title>
     <version>$Revision: 1095882 $</version>

Modified: xmlgraphics/site/deploy/fop/trunk/pdfa.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfa.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/pdfa.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/pdfa.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>PDF/A (ISO 19005)</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>PDF/A (ISO 19005)</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -226,15 +227,16 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N10018"></a><a name="overview"></a>
+<a name="overview"></a>
 <h2 class="underlined_10">Overview</h2>
 <div class="section">
 <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 class="external" href="http://www.iso.org/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=38920&ICS1=37&ICS2=100&ICS3=99">ISO 19005-1:2005(E)</a>. 
+        <a class="external" 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 class="external" href="http://www.aiim.org/standards.asp?ID=25013">AIIM</a>.
       </p>
@@ -244,7 +246,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N10031"></a><a name="status"></a>
+<a name="status"></a>
 <h2 class="underlined_10">Implementation Status</h2>
 <div class="section">
 <p>
@@ -265,7 +267,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N1004B"></a><a name="command-line"></a>
+<a name="command-line"></a>
 <h2 class="underlined_10">Usage (command line)</h2>
 <div class="section">
 <p>
@@ -278,7 +280,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N10058"></a><a name="embedded"></a>
+<a name="embedded"></a>
 <h2 class="underlined_10">Usage (embedded)</h2>
 <div class="section">
 <p>
@@ -299,7 +301,7 @@ Fop fop = fopFactory.newFop(MimeConstant
       </p>
 </div>
     
-<a name="N1006C"></a><a name="rules"></a>
+<a name="rules"></a>
 <h2 class="underlined_10">PDF/A in Action</h2>
 <div class="section">
 <p>
@@ -355,7 +357,7 @@ Fop fop = fopFactory.newFop(MimeConstant
 </div>
 </div>
     
-<a name="N10095"></a><a name="profile-compatibility"></a>
+<a name="profile-compatibility"></a>
 <h2 class="underlined_10">PDF profile compatibility</h2>
 <div class="section">
 <p>
@@ -364,7 +366,7 @@ Fop fop = fopFactory.newFop(MimeConstant
       </p>
 </div>
     
-<a name="N1009F"></a><a name="interoperability"></a>
+<a name="interoperability"></a>
 <h2 class="underlined_10">Interoperability</h2>
 <div class="section">
 <p>
@@ -425,7 +427,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/pdfa.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfa.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/pdfa.pdf (original) and xmlgraphics/site/deploy/fop/trunk/pdfa.pdf Thu Aug 25 08:04:24 2011 differ

Modified: xmlgraphics/site/deploy/fop/trunk/pdfa.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfa.xml?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/pdfa.xml (original)
+++ xmlgraphics/site/deploy/fop/trunk/pdfa.xml Thu Aug 25 08:04:24 2011
@@ -14,7 +14,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --><!-- $Id$ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
-<document>
+<document xmlns:xi="http://www.w3.org/2001/XInclude">
   <header>
     <title>PDF/A (ISO 19005)</title>
     <version>$Revision: 830293 $</version>

Modified: xmlgraphics/site/deploy/fop/trunk/pdfencryption.html
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfencryption.html?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
--- xmlgraphics/site/deploy/fop/trunk/pdfencryption.html (original)
+++ xmlgraphics/site/deploy/fop/trunk/pdfencryption.html Thu Aug 25 08:04:24 2011
@@ -3,7 +3,7 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-version" content="0.9">
 <meta name="Forrest-skin-name" content="pelt">
 <title>PDF encryption.</title>
 <link type="text/css" href="../skin/basic.css" rel="stylesheet">
@@ -201,6 +201,7 @@ document.write("Last Published: " + docu
 	          &nbsp;<input value="+a" class="biggerfont" title="Enlarge text" onclick="ndeSetTextSize('incr'); return false;" type="button">
 </div>
 <h1>PDF encryption.</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -220,8 +221,9 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
     
-<a name="N1001C"></a><a name="Overview"></a>
+<a name="Overview"></a>
 <h2 class="underlined_10">Overview</h2>
 <div class="section">
 <p>
@@ -241,7 +243,7 @@ document.write("Last Published: " + docu
       </p>
 </div>
     
-<a name="N10029"></a><a name="Usage+%28command+line%29"></a>
+<a name="Usage+%28command+line%29"></a>
 <h2 class="underlined_10">Usage (command line)</h2>
 <div class="section">
 <p>
@@ -337,7 +339,7 @@ document.write("Last Published: " + docu
 </p>
 </div>
     
-<a name="N100C5"></a><a name="Usage+%28embedded%29"></a>
+<a name="Usage+%28embedded%29"></a>
 <h2 class="underlined_10">Usage (embedded)</h2>
 <div class="section">
 <p>
@@ -529,7 +531,7 @@ Fop fop = fopFactory.newFop(MimeConstant
 </ol>
 </div>
     
-<a name="N10236"></a><a name="Environment"></a>
+<a name="Environment"></a>
 <h2 class="underlined_10">Environment</h2>
 <div class="section">
 <p>
@@ -558,7 +560,7 @@ Fop fop = fopFactory.newFop(MimeConstant
       </p>
 </div>
     
-<a name="N1025C"></a><a name="install_crypto"></a>
+<a name="install_crypto"></a>
 <h2 class="underlined_10">Installing a crypto provider</h2>
 <div class="section">
 <p>
@@ -616,7 +618,10 @@ document.write("Last Published: " + docu
 <div class="copyright">
         Copyright &copy;
          1999-2011 <a href="http://www.apache.org/licenses/">The Apache Software Foundation. Licensed under Apache License 2.0</a>
-</div>
+<br>
+    Apache, Apache FOP, the Apache feather logo, and the Apache FOP
+    logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+  </div>
 <!--+
     |end bottomstrip
     +-->

Modified: xmlgraphics/site/deploy/fop/trunk/pdfencryption.pdf
URL: http://svn.apache.org/viewvc/xmlgraphics/site/deploy/fop/trunk/pdfencryption.pdf?rev=1161429&r1=1161428&r2=1161429&view=diff
==============================================================================
Files xmlgraphics/site/deploy/fop/trunk/pdfencryption.pdf (original) and xmlgraphics/site/deploy/fop/trunk/pdfencryption.pdf Thu Aug 25 08:04:24 2011 differ



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