]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Added 0.91 beta documentation.
authorJeremias Maerki <jeremias@apache.org>
Fri, 23 Dec 2005 14:39:44 +0000 (14:39 +0000)
committerJeremias Maerki <jeremias@apache.org>
Fri, 23 Dec 2005 14:39:44 +0000 (14:39 +0000)
Updated compliance page.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_91@358813 13f79535-47bb-0310-9956-ffa450edef68

33 files changed:
src/documentation/content/.htaccess
src/documentation/content/xdocs/0.90/anttask.xml [deleted file]
src/documentation/content/xdocs/0.90/compiling.xml [deleted file]
src/documentation/content/xdocs/0.90/configuration.xml [deleted file]
src/documentation/content/xdocs/0.90/embedding.xml [deleted file]
src/documentation/content/xdocs/0.90/extensions.xml [deleted file]
src/documentation/content/xdocs/0.90/fonts.xml [deleted file]
src/documentation/content/xdocs/0.90/graphics.xml [deleted file]
src/documentation/content/xdocs/0.90/hyphenation.xml [deleted file]
src/documentation/content/xdocs/0.90/index.xml [deleted file]
src/documentation/content/xdocs/0.90/output.xml [deleted file]
src/documentation/content/xdocs/0.90/pdfencryption.xml [deleted file]
src/documentation/content/xdocs/0.90/running.xml [deleted file]
src/documentation/content/xdocs/0.90/servlets.xml [deleted file]
src/documentation/content/xdocs/0.90/upgrading.xml [deleted file]
src/documentation/content/xdocs/0.91/anttask.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/compiling.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/configuration.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/embedding.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/extensions.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/fonts.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/graphics.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/hyphenation.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/index.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/output.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/pdfencryption.xml [new file with mode: 0755]
src/documentation/content/xdocs/0.91/running.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/servlets.xml [new file with mode: 0644]
src/documentation/content/xdocs/0.91/upgrading.xml [new file with mode: 0644]
src/documentation/content/xdocs/compliance.ihtml
src/documentation/content/xdocs/index.xml
src/documentation/content/xdocs/site.xml
src/documentation/content/xdocs/tabs.xml

index 5a01cf1349d99dcf37eaee6dd28ef4f8115521fa..4b0540fa10b931b20b9226ff9f29de7c7f5a016e 100644 (file)
@@ -15,6 +15,7 @@ RedirectMatch Permanent ^/fop/servlets(.*) http://xmlgraphics.apache.org/fop/0.2
 # redirect to versioned documentation
 Redirect Temp /fop/stable http://xmlgraphics.apache.org/fop/0.20.5
 Redirect Temp /fop/current http://xmlgraphics.apache.org/fop/0.20.5
-Redirect Temp /fop/0.90alpha1 http://xmlgraphics.apache.org/fop/0.90
-Redirect Temp /fop/unstable http://xmlgraphics.apache.org/fop/0.90
-Redirect Temp /fop/latest http://xmlgraphics.apache.org/fop/0.90
+Redirect Temp /fop/0.90alpha1 http://xmlgraphics.apache.org/fop/0.91
+Redirect Temp /fop/0.91beta http://xmlgraphics.apache.org/fop/0.91
+Redirect Temp /fop/unstable http://xmlgraphics.apache.org/fop/0.91
+Redirect Temp /fop/latest http://xmlgraphics.apache.org/fop/0.91
diff --git a/src/documentation/content/xdocs/0.90/anttask.xml b/src/documentation/content/xdocs/0.90/anttask.xml
deleted file mode 100644 (file)
index fd8a7e0..0000000
+++ /dev/null
@@ -1,183 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Ant task</title>
-    <version>$Revision$</version>
-  </header>
-  <body>
-    <p>
-      Apache FOP provides an Ant task for automating the document build process.
-    </p>
-    <section id="basics">
-      <title>Description</title>
-      <p>
-        The FOP Ant task will convert XSL-FO documents to PDF, PS, PCL etc. output
-        (see <a href="output.html">Output formats</a> for available formats).
-      </p>
-      <p>
-        To call FOP tasks within Ant, first add a FOP task definition to your Ant build file.
-        One method of defining the task is as follows:
-      </p>
-      <source><![CDATA[
-<property name="fop.dir" value="....path to your FOP jar files..."/>
-
-<taskdef name="fop" 
-         classname="org.apache.fop.tools.anttasks.Fop">
-         <classpath>
-            <pathelement location="${fop.dir}\fop.jar"/>
-            <pathelement location="${fop.dir}\batik.jar"/>
-            <pathelement location="${fop.dir}\avalon-framework.jar"/>
-            <pathelement location="${fop.dir}\commons-logging.jar"/>
-            <pathelement location="${fop.dir}\commons-io.jar"/>
-         </classpath>
-</taskdef>
-    ]]></source>
-<p>
-    Then create FOP tasks within your Ant build file, using the FOP task parameters listed below.</p>
-    </section>
-    <!-- TODO: Installation/Configuration -->
-    <section id="parameters"><title>Parameters for FOP Ant task</title>
-     <table><caption>Parameters specified as attributes</caption> 
-      <tr> 
-       <th>Attribute</th> 
-       <th>Description</th> 
-       <th>Required</th> 
-      </tr> 
-      <tr> 
-       <td>fofile</td> 
-       <td>XSL-FO file to be rendered</td> 
-       <td>Yes, if no fileset nested element is used</td> 
-      </tr> 
-      <tr> 
-       <td>outfile</td> 
-       <td>Output filename</td> 
-       <td>Yes, when fofile is used.  (This attribute is not valid for filesets.)</td> 
-      </tr> 
-      <tr> 
-       <td>format</td> 
-       <td>Possible output formats:<br/>
-         <code>application/pdf</code><br/>
-         <code>application/postscript</code><br/>
-         <code>application/vnd.mif</code><br/>
-         <code>application/rtf</code><br/>
-         <code>application/vnd.hp-PCL</code><br/>
-         <code>text/plain</code><br/>
-         <code>text/xml</code><br/>
-       </td> 
-       <td>No, defaults to <code>application/pdf</code></td> 
-      </tr> 
-      <tr> 
-       <td>outdir</td> 
-       <td>Output directory</td> 
-       <td>Required if a fileset is used to specify the files to render; optional for fofile. (Can alternatively specify the full path in the fofile value.)</td> 
-      </tr> 
-      <tr> 
-       <td>force</td> 
-       <td>Recreate target files, even if they are newer than their corresponding
-            source files. Note: This attribute is available in post-0.20.5 
-            versions (0.20.x nightly build and 1.0dev) only; target files are 
-            always generated (i.e., force=true) in 0.20.5 release.
-       </td> 
-       <td>No, default is <code>false</code></td> 
-      </tr> 
-      <tr> 
-       <td>basedir</td> 
-       <td>Base directory to resolve relative references (e.g., graphics files) within the 
-            FO document.
-       </td> 
-       <td>No, for single FO File entry, default is to use the location 
-            of that FO file.
-       </td> 
-      </tr> 
-      <tr> 
-       <td>relativebase</td> 
-       <td>For fileset usage only.  A value of <code>true</code> specifies using the location
-        of each .fo file as the base directory for resolving relative file references located
-        within that .fo file.  A value of <code>false</code> specifies using the value of 
-        basedir for all files within the fileset, or just the current working directory
-        if basedir is not specified.
-       </td> 
-       <td>No, default is <code>false</code>.
-       </td> 
-      </tr> 
-      <tr> 
-       <td>userconfig</td> 
-       <td>User configuration file (same as the FOP "-c" command line option). <strong>Currently doesn't work in FOP Trunk!!!</strong></td> 
-       <td>No</td> 
-      </tr> 
-      <tr> 
-       <td>messagelevel</td> 
-       <td>Logging level<br/>
-       Possible values: <code>error</code>, <code>warn</code>, <code>info</code>, <code>verbose</code>, <code>debug</code>. <strong>Currently doesn't work in FOP Trunk!!!</strong></td> 
-       <td>No, defaults to <code>verbose</code></td> 
-      </tr> 
-      <tr> 
-       <td>logFiles</td> 
-       <td>Controls whether the names of the files that are processed are logged 
-            (<code>true</code>) or not (<code>false</code>). <strong>Currently doesn't work in FOP Trunk!!!</strong></td> 
-       <td>No, default is <code>true</code></td> 
-      </tr> 
-     </table>
-     <p/>
-     <table><caption>Parameters specified as nested elements</caption>
-      <tr> 
-       <th>Attribute</th> 
-       <th>Description</th> 
-       <th>Required</th> 
-      </tr> 
-      <tr> 
-       <td>fileset</td> 
-       <td><a href="http://ant.apache.org/manual/CoreTypes/fileset.html">FileSets</a> 
-            are used to specify multiple XSL-FO files to be rendered.</td> 
-       <td>Yes, if no fofile attribute is supplied</td> 
-      </tr> 
-      </table>
-    </section>
-    <section id="examples">
-    <title>Examples</title>
-    <p>
-    The following example converts a single XSL-FO file to a PDF document:
-    </p>
-
-    <source><![CDATA[
-<target name="generate-pdf" description="Generates a single PDF file">
-   <fop format="application/pdf" 
-        fofile="c:\working\foDirectory\foDocument.fo"
-        outfile="c:\working\pdfDirectory\pdfDocument.pdf" />
-</target>
-    ]]></source>
-    <p>
-    This example converts all XSL-FO files within an entire directory to PostScript:
-    </p>
-    <source><![CDATA[
-<target name="generate-multiple-ps" 
-        description="Generates multiple PostScript files">
-   <fop format="application/postscript" 
-        outdir="${build.dir}" messagelevel="debug">
-        <fileset dir="${fo.examples.dir}">
-           <include name="*.fo"/>
-        </fileset>
-   </fop>
-</target>
-    ]]></source>
-    </section>
-    </body>
-</document>
-
diff --git a/src/documentation/content/xdocs/0.90/compiling.xml b/src/documentation/content/xdocs/0.90/compiling.xml
deleted file mode 100644 (file)
index ad02f30..0000000
+++ /dev/null
@@ -1,139 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Apache FOP: Building from Source Code</title>
-    <version>$Revision$</version>
-  </header>
-  <body>
-    <section id="build-needed">
-      <title>Do You Need To Build?</title>
-      <p>
-        FOP distributions are either pre-compiled binary or source.
-        If you are using a binary distribution, it is already built and there is no need to build it again. 
-        See the <a href="../download.html">Download Instructions</a> for information about whether a 
-        binary or source distribution is best for your needs.
-      </p>
-      <p>
-        If you got the source code from a repository snapshot or via Subversion you will need to build FOP
-        in any case.
-      </p>
-    </section>
-    <section id="env">
-      <title>Set Up Your Environment</title>
-      <section id="env-jdk">
-        <title>JDK</title>
-        <p>
-          Building FOP requires a minimum Java Development Kit (JDK/SDK) of 1.3
-          (A Java Runtime Environment is not sufficient).
-        </p>
-      </section>
-      <section id="env-classpath">
-        <title>CLASSPATH</title>
-        <p>
-          There is generally no need to setup a classpath. All libraries needed to compile FOP are included 
-          in the source distribution and are referenced by the build script.
-          You will only need to adjust the classpath if you build FOP in some other way. See the build 
-          script build.xml for details.
-        </p>
-      </section>
-      <section id="env-java-home">
-        <title>JAVA_HOME</title>
-        <p>
-          The build script uses <a href="ext:ant">Apache Ant</a>, a popular 
-          Java-based build tool, which usually requires that the environment variable JAVA_HOME point to 
-          your local JDK root directory. This is true even if you use JDK 1.2 or above, which normally 
-          does not need this setting.
-        </p>
-      </section>
-      <section id="env-ant">
-        <title>Apache Ant</title>
-        <p>
-          <a href="ext:ant">Apache Ant</a> must be installed in order to
-          build FOP. Following best practices we don't include Ant with FOP anymore. You can find the
-          <a href="ext:ant/manual/">instructions to install Ant in the Ant manual</a> on the web.
-        </p>
-      </section>
-    </section>
-    <section id="build-script">
-      <title>Run the Build Script</title>
-      <p>
-        Change to the FOP root directory and build FOP by executing the build script (build.xml)
-        using the "ant" command.
-      </p>
-      <note>
-        The "ant" command is only available on your system if you've properly 
-        <a href="ext:ant/manual/">installed Apache Ant</a> and added Ant's location to the PATH 
-        environment variable.
-      </note>
-      <p>
-        The file build.xml in the FOP root directory is the blueprint that Ant uses for the build. It 
-        contains information for numerous build targets, many of which are building blocks to more 
-        useful target, and others which are primarily used by the FOP developers.
-        You may benefit from looking through this file to learn more about the various build targets.
-        To obtain a complete list of useful build targets:
-      </p>
-      <source>ant -projecthelp</source>
-      <p>The most useful targets are:</p>
-      <ul>
-        <li>
-          <strong>package</strong>: Generates the JAR files (default). This is the normal build that 
-          produces a jar file usable for running FOP.
-        </li>
-        <li>
-          <strong>clean </strong>: Cleans the build directory. This is useful for making sure that 
-          any build errors are cleaned up before starting a new build. It should not ordinarily be 
-          needed, but may be helpful if you are having problems with the build process itself.
-        </li>
-        <li>
-          <strong>javadocs</strong>: Generates javadocs. This creates the FOP API documentation.
-        </li>
-      </ul>
-      <p>To run the build:</p>
-      <source>ant [target ...]</source>
-      <p>For example to do a normal build for the "all" target (which is the default):</p>
-      <source>ant</source>
-      <p>OR</p>
-      <source>ant all</source>
-      <p>To clean the build directory first:</p>
-      <source>ant clean all</source>
-      <note>
-        If you want to shorten the build time you can just call the "package" target which
-        doesn't perform any automated tests during the build.
-      </note>
-    </section>
-    <section id="problems">
-      <title id="Troubleshooting">Troubleshooting</title>
-      <p>If you have problems building FOP, please try the following:</p>
-      <ul>
-        <li>Run the build with the target of "clean", then rerun the build.</li>
-        <li>Delete the build directory completely, then rerun the build.</li>
-        <li>
-          Make sure you do not have a non-FOP version of xerces.jar, xalan.jar, batik.jar, 
-          or another dependency product somewhere in your CLASSPATH.
-        </li>
-        <li>
-          If the build still fails, see the <a href="../gethelp.html">Getting Help</a> 
-          page for further help.
-        </li>
-      </ul>
-    </section>
-  </body>
-</document>
-
diff --git a/src/documentation/content/xdocs/0.90/configuration.xml b/src/documentation/content/xdocs/0.90/configuration.xml
deleted file mode 100644 (file)
index c5e1b89..0000000
+++ /dev/null
@@ -1,146 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Apache FOP: Configuration</title>
-    <version>$Revision$</version>
-  </header>
-
-  <body>
-  <section id="general">
-    <title>Configuration File Basics</title>
-    <p>
-      The FOP configuration file is an XML file containing a variety of settings that are useful 
-      for controlling FOP's behavior, and for helping it find resources that you wish it to use.
-    </p>
-    <p>
-      The easiest way to get started using a FOP configuration file is to copy the sample found 
-      at <code>{fop-dir}/conf/fop.xconf</code> to a location of your choice, and then to 
-      edit it according to your needs.
-      It contains templates for the various configuration options, most of which are commented 
-      out. Remove the comments and change the settings for entries that you wish to use.
-      Be sure to follow any instructions, including comments which specify the value range.
-      Also, since the configuration file is XML, be sure to keep it well-formed.
-    </p>
-    <section id="general-available">
-      <title>Making Configuration Available to FOP</title>
-      <p>After creating your configuration file, you must tell FOP how to find it:</p>
-      <ul>
-        <li>
-          If running FOP from the command-line, see the "-c" command-line option in 
-          <a href="running.html">Running FOP</a>.
-        </li>
-        <li>
-          If running FOP as an embedded application, see 
-          <a href="embedding.html#config-external">Embedding, Using a Configuration File</a>.
-        </li>
-      </ul>
-      <p>
-        See <a href="embedding.html#config-internal">Setting the Configuration Programmatically</a>
-        for instructions on how to do so in an embedded environment.
-      </p>
-    </section>
-  </section>
-  <section id="general-elements">
-    <title>Summary of the General Configuration Options</title>
-    <table>
-      <tr>
-        <th>Element</th>
-        <th>Data Type (for the value)</th>
-        <th>Default Value</th>
-      </tr>
-      <tr>
-        <td>base</td>
-        <td>URL</td>
-        <td>Specifies the base URL based on which relative URL will be resolved.</td>
-      </tr>
-      <tr>
-        <td>resolution</td>
-        <td>Integer, dpi</td>
-        <td>Resolution in dpi (dots per inch) which is used internally.</td>
-      </tr>
-      <tr>
-        <td>default-page-settings</td>
-        <td>n/a</td>
-        <td>
-          Specifies the default width and height of a page if "auto" is specified 
-          for either or both values. Use "height" and "width" attributes on the 
-          default-page-settings element to specify the two values.</td>
-      </tr>
-      <tr>
-        <td>renderers</td>
-        <td>(see text below)</td>
-        <td>Contains the configuration for each renderer. See below.</td>
-      </tr>
-    </table>
-    <p>
-      This is an excerpt from the example configuration file coming with FOP:
-    </p>
-    <source><![CDATA[
-<fop version="1.0">
-
-  <!-- Base URL for resolving relative URLs -->
-  <base>./</base>
-  <!-- Internal resolution in dpi (dots per pixel), default: 72dpi -->
-  <resolution>72</resolution>
-  <!-- default page-height and page-width, in case
-       value is specified as auto -->
-  <default-page-settings height="11in" width="8.26in"/>
-  
-  <!-- etc. etc..... -->
-</fop>]]></source>
-  </section>
-  <section id="renderers">
-    <title>Renderer configuration</title>
-    <p>
-      Each Renderer has its own configuration section which is identified by the
-      MIME type the Renderer is written for, ex. "application/pdf" for the PDF Renderer.
-    </p>
-    <p>
-      The configuration for the PDF Renderer could look like this:
-    </p>
-    <source><![CDATA[
-  <renderers>
-    <renderer mime="application/pdf">
-      <filterList>
-        <!-- provides compression using zlib flate (default is on) -->
-        <value>flate</value>
-      </filterList>
-      <fonts>
-        <font metrics-url="arial.xml" kerning="yes" embed-url="arial.ttf">
-          <font-triplet name="Arial" style="normal" weight="normal"/>
-          <font-triplet name="ArialMT" style="normal" weight="normal"/>
-        </font>
-        <font metrics-url="arialb.xml" kerning="yes" embed-url="arialb.ttf">
-          <font-triplet name="Arial" style="normal" weight="bold"/>
-          <font-triplet name="ArialMT" style="normal" weight="bold"/>
-        </font>
-      </fonts>
-    </renderer>
-    
-    <renderer mime="application/postscript">
-    <!-- etc. etc..... -->]]></source>
-    <p>
-      The details on the font configuration can be found on the separate <a href="fonts.html">Fonts</a> page.
-      Note especially the section entitled <a href="fonts.html#register">Register Fonts with FOP</a>.
-    </p>
-  </section>
-  </body>
-</document>
-
diff --git a/src/documentation/content/xdocs/0.90/embedding.xml b/src/documentation/content/xdocs/0.90/embedding.xml
deleted file mode 100644 (file)
index 2e77c11..0000000
+++ /dev/null
@@ -1,600 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<!-- Embedding FOP -->
-<document>
-  <header>
-    <title>Apache FOP: Embedding</title>
-    <subtitle>How to Embed FOP in a Java application</subtitle>
-    <version>$Revision$</version>
-  </header>
-
-  <body>
-  <section id="overview">
-    <title>Overview</title>
-    <p>
-      Review <a href="running.html">Running FOP</a> for important information that applies 
-      to embedded applications as well as command-line use, such as options and performance.
-    </p>
-    <p>
-      To embed Apache FOP in your application, instantiate org.apache.fop.apps.Fop.
-      You'll tell FOP in the constructor which output format (i.e. Renderer) to use.
-      Afterwards, you'll set the OutputStream to use to output the results of the
-      rendering (where applicable). You can customize FOP's behaviour by supplying
-      your own FOUserAgent instance. The FOUserAgent can, for example, be used to
-      set your own Renderer instance (details below). Finally, you retrieve a SAX 
-      DefaultHandler instance from the Fop instance to which you can send your
-      FO file.
-    </p>
-  </section>
-  <section id="basics">
-    <title>Basic Usage Pattern</title>
-    <p>
-      Apache FOP relies heavily on JAXP. It uses SAX events exclusively to receive the XSL-FO 
-      input document. It is therefore a good idea that you know a few things about JAXP (which
-      is a good skill anyway). Let's look at the basic usage pattern for FOP...
-    </p>
-    <p>Here is the basic pattern to render an XSL-FO file to PDF:
-    </p>
-    <source><![CDATA[
-import org.apache.fop.apps.Fop;
-import org.apache.fop.apps.MimeConstants;
-
-/*..*/
-
-// Step 1: Construct fop with desired output format
-Fop fop = new Fop(MimeConstants.MIME_PDF);
-
-// Step 2: Setup output stream.
-// Note: Using BufferedOutputStream for performance reasons (helpful with FileOutputStreams).
-OutputStream out = new BufferedOutputStream(new FileOutputStream(new File("C:/Temp/myfile.pdf")));
-try {
-  fop.setOutputStream(out);
-
-  // Step 3: Setup JAXP using identity transformer
-  TransformerFactory factory = TransformerFactory.newInstance();
-  Transformer transformer = factory.newTransformer(); // identity transformer
-           
-  // Step 4: Setup input and output for XSLT transformation 
-  // Setup input stream
-  Source src = new StreamSource(new File("C:/Temp/myfile.fo"));
-
-  // Resulting SAX events (the generated FO) must be piped through to FOP
-  Result res = new SAXResult(fop.getDefaultHandler());
-            
-  // Step 5: Start XSLT transformation and FOP processing
-  transformer.transform(src, res);
-
-} finally {
-  //Clean-up
-  out.close();
-}]]></source>
-    <p>
-      Let's discuss these 5 steps in detail:
-    </p>
-    <ul>
-      <li>
-        <strong>Step 1:</strong> You create a new Fop instance and set it up for PDF 
-        output.
-      </li>
-      <li>
-        <strong>Step 2:</strong> You tell FOP where to save the generated PDF file 
-        later. It's a good idea to buffer the OutputStream as demonstrated to improve 
-        performance.
-      </li>
-      <li>
-        <strong>Step 3:</strong> We recommend that you use JAXP Transformers even 
-        if you don't do XSLT transformations to generate the XSL-FO file. This way 
-        you can always use the same basic pattern. The example here sets up an 
-        "identity transformer" which just passes the input (Source) unchanged to the 
-        output (Result). You don't have to work with a SAXParser if you don't do any 
-        XSLT transformations.
-      </li>
-      <li>
-        <strong>Step 4:</strong> Here you set up the input and output for the XSLT 
-        transformation. The Source object is set up to load the "myfile.fo" file. 
-        The Result is set up so the output of the XSLT transformation is sent to FOP. 
-        The FO file is sent to FOP in the form of SAX events which is the most efficient 
-        way. Please always avoid saving intermediate results to a file or a memory buffer 
-        because that affects performance negatively.
-      </li>
-      <li>
-        <strong>Step 5:</strong> Finally, we start the XSLT transformation by starting 
-        the JAXP Transformer. As soon as the JAXP Transformer starts to send its output 
-        to FOP, FOP itself starts its processing in the background. When the 
-        <code>transform()</code> method returns FOP will also have finished converting 
-        the FO file to a PDF file and you can close the OutputStream.
-        <note label="Tip!">
-          It's a good idea to enclose the whole conversion in a try..finally statement. If
-          you close the OutputStream in the finally section, this will make sure that the
-          OutputStream is properly closed even if an exception occurs during the conversion.
-        </note>
-      </li>
-    </ul>
-    <p>
-      If you're not totally familiar with JAXP Transformers, please have a look at the 
-      <a href="#examples">Embedding examples</a> below. The section contains examples
-      for all sorts of use cases. If you look at all of them in turn you should be able
-      to see the patterns in use and the flexibility this approach offers without adding
-      too much complexity.
-    </p>
-    <p>
-      This may look complicated at first, but it's really just the combination of an 
-      XSL transformation and a FOP run. It's also easy to comment out the FOP part
-      for debugging purposes, for example when you're tracking down a bug in your 
-      stylesheet. You can easily write the XSL-FO output from the XSL transformation
-      to a file to check if that part generates the expected output. An example for that
-      can be found in the <a href="#examples">Embedding examples</a> (See "ExampleXML2FO").
-    </p>
-    <note>
-      Please be aware that you should not reuse a Fop instance for additional rendering runs.
-      Recreate a new instance for each rendering run. This is a relatively inexpensive 
-      operation and will be further optimized shortly.
-    </note>
-    <section id="basic-logging">
-      <title>Logging</title>
-      <p>
-        Logging is now a little different than it was in FOP 0.20.5. We've switched from
-        Avalon Logging to <a href="ext:jakarta/commons/logging">Jakarta Commons Logging</a>.
-        While with Avalon Logging the loggers were directly given to FOP, FOP now retrieves
-        its logger(s) through a statically available LogFactory. This is similar to the
-        general pattern that you use when you work with Apache Log4J directly, for example.
-        We call this "static logging" (Commons Logging, Log4J) as opposed to "instance logging" 
-        (Avalon Logging). This has a consequence: You can't give FOP a logger for each
-        processing run anymore. The log output of multiple, simultaneously running FOP instances
-        is sent to the same logger.
-      </p>
-      <note>
-        We know this may be an issue in multi-threaded server environments if you'd like to 
-        know what's going on in every single FOP processing run. We're planning to add an
-        additional feedback facility to FOP which can be used to obtain all sorts of specific
-        feedback (validation messages, layout problems etc.). "Static logging" is mainly 
-        interesting for a developer working on FOP and for advanced users who are debugging 
-        FOP. We don't consider the logging output to be useful to normal FOP users. Please
-        have some patience until we can add this feature or jump in and help us build it. We've
-        set up a <a href="http://wiki.apache.org/xmlgraphics-fop/ProcessingFeedback">Wiki page</a>
-        which documents what we're going to build.
-      </note>
-      <p>
-        By default, <a href="ext:jakarta/commons/logging">Jakarta Commons Logging</a> uses
-        JDK logging (available in JDKs 1.4 or higher) as its backend. You can configure Commons
-        Logging to use an alternative backend, for example Log4J. Please consult the
-        <a href="ext:jakarta/commons/logging">documentation for Jakarta Commons Logging</a> on
-        how to configure altentive backends.
-      </p>
-    </section>
-  
-    <section id="render">
-      <title>Processing XSL-FO</title>
-      <p>
-        Once the Fop instance is set up, call <code>getDefaultHandler()</code> to obtain a SAX 
-        DefaultHandler instance to which you can send the SAX events making up the XSL-FO 
-        document you'd like to render. FOP processing starts as soon as the DefaultHandler's
-        <code>startDocument()</code> methods is called. Processing stops again when the
-        DefaultHandler's <code>endDocument()</code> method is called. Please refer to the basic
-        usage pattern shown above to render a simply XSL-FO document.
-      </p>
-    </section>
-
-    <section id="render-with-xslt">
-      <title>Processing XSL-FO generated from XML+XSLT</title>
-      <p>
-        If you want to process XSL-FO generated from XML using XSLT we recommend 
-        again using standard JAXP to do the XSLT part and piping the generated SAX 
-        events directly through to FOP. The only thing you'd change to do that 
-        on the basic usage pattern above is to set up the Transformer differently:
-      </p>
-      <source><![CDATA[
-  //before (without XSLT):
-  //Transformer transformer = factory.newTransformer(); // identity transformer
-  
-  //after (with XSLT):
-  Source xslt = new StreamSource(new File("mystylesheet.xsl"));
-  Transformer transformer = factory.newTransformer(xslt);]]></source>
-    </section>
-  </section>
-  <section id="input">
-    <title>Input Sources</title>
-    <p>
-      The input XSL-FO document is always handled internally as SAX (see the 
-      <a href="../dev/design/parsing.html">Parsing Design Document</a> for the rationale).
-    </p>
-    <p>
-      However, you may not always have your input document available as a SAX stream. 
-      But with JAXP it's easy to convert different input sources to a SAX stream so you
-      can pipe it into FOP. That sounds more difficult than it is. You simply have
-      to set up the right Source instance as input for the JAXP transformation. 
-      A few examples:
-    </p>
-    <ul>
-      <li>
-        <strong>URL:</strong> <code>Source src = new StreamSource("http://localhost:8080/testfile.xml");</code>
-      </li>
-      <li>
-        <strong>File:</strong> <code>Source src = new StreamSource(new File("C:/Temp/myinputfile.xml"));</code>
-      </li>
-      <li>
-        <strong>String:</strong> <code>Source src = new StreamSource(new StringReader(myString)); //myString is a String</code>
-      </li>
-      <li>
-        <strong>InputStream:</strong> <code>Source src = new StreamSource(new MyInputStream(something));</code>
-      </li>
-      <li>
-        <strong>Byte Array:</strong> <code>Source src = new StreamSource(new ByteArrayInputStream(myBuffer)); //myBuffer is a byte[] here</code>
-      </li>
-      <li>
-        <strong>DOM:</strong> <code>Source src = new DOMSource(myDocument); //myDocument is a Document or a Node</code>
-      </li>
-      <li>
-        <strong>Java Objects:</strong> Please have a look at the <a href="#examples">Embedding examples</a> which contains an example for this.
-      </li>
-    </ul>
-    <p>
-      There are a variety of upstream data manipulations possible.
-      For example, you may have a DOM and an XSL stylesheet; or you may want to
-      set variables in the stylesheet. Interface documentation and some cookbook 
-      solutions to these situations are provided in 
-      <a href="http://xml.apache.org/xalan-j/usagepatterns.html">Xalan Basic Usage Patterns</a>.
-    </p>
-  </section>
-  <section id="config-internal">
-    <title>Configuring Apache FOP Programmatically</title>
-    <p>
-      Apache FOP provides a class called FOUserAgent which is used to customize FOP's
-      behaviour. If you wish to do that, the first step is to create your own instance
-      of FOUserAgent and pass that to the Fop constructor:
-    </p>
-    <source><![CDATA[
-FOUserAgent userAgent = new FOUserAgent();
-Fop fop = new Fop(MimeConstants.MIME_POSTSCRIPT, userAgent);]]></source>
-    <p>
-      You can do all sorts of things on the user agent:
-    </p>
-    <ul>
-      <li>
-        <p>
-          The <strong>base URL</strong> to use when resolving relative URLs. Example:
-        </p>
-        <source>userAgent.setBaseURL("file:///C:/Temp/");</source>
-      </li>
-      <li>
-        <p>
-          Disable <strong>strict validation</strong>. When disabled FOP is less strict about the rules established by the XSL-FO specification. Example:
-        </p>
-        <source>userAgent.setStrictValidation(false);</source>
-      </li>
-      <li>
-        <p>
-          Set the <strong>producer</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. The default producer is "Apache FOP". Example:
-        </p>
-        <source>userAgent.setProducer("MyKillerApplication");</source>
-      </li>
-      <li>
-        <p>
-          Set the <strong>creating user</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
-        </p>
-        <source>userAgent.setCreator("John Doe");</source>
-      </li>
-      <li>
-        <p>
-          Set the <strong>author</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
-        </p>
-        <source>userAgent.setAuthor("John Doe");</source>
-      </li>
-      <li>
-        <p>
-          Override the <strong>creation date and time</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
-        </p>
-        <source>userAgent.setCreationDate(new Date());</source>
-      </li>
-      <li>
-        <p>
-          Set the <strong>title</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
-        </p>
-        <source>userAgent.setTitle("Invoice No 138716847");</source>
-      </li>
-      <li>
-        <p>
-          Set the <strong>keywords</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
-        </p>
-        <source>userAgent.setKeywords("XML XSL-FO");</source>
-      </li>
-      <li>
-        <p>
-          Set the <strong>internal resolution</strong> for the document. This is used when creating bitmap images, for example. Example:
-        </p>
-        <source>userAgent.setResolution(300); //=300dpi (dots/pixels per Inch)</source>
-      </li>
-      <li>
-        <p>
-          Set <strong>your own Renderer instance</strong>. If you want to supply your own renderer or 
-          configure a Renderer in a special way you can give the instance to the FOUserAgent. Normally,
-          the Renderer instance is created by FOP. Example:
-        </p>
-        <source>userAgent.setRendererOverride(myRenderer); //myRenderer is an org.apache.fop.render.Renderer</source>
-      </li>
-      <li>
-        <p>
-          Set <strong>your own FOEventHandler instance</strong>. If you want to supply your own FOEventHandler or 
-          configure an FOEventHandler subclass in a special way you can give the instance to the FOUserAgent. Normally, 
-          the FOEventHandler instance is created by FOP. Example:
-        </p>
-        <source>userAgent.setFOEventHandlerOverride(myFOEventHandler); //myFOEventHandler is an org.apache.fop.fo.FOEventHandler</source>
-      </li>
-      <li>
-        <p>
-          Manually add a <strong>ElementMapping instance</strong>. If you want to supply a special FOP extension
-          you can give the instance to the FOUserAgent. Normally, the FOP extensions can be automatically detected 
-          (see the documentation on extension for more info).
-        </p>
-        <source>userAgent.addElementMapping(myElementMapping); //myElementMapping is a org.apache.fop.fo.ElementMapping</source>
-      </li>
-      <li>
-        <p>
-          Set a <strong>URIResolver</strong> for custom URI resolution. By supplying a JAXP URIResolver you can add
-          custom URI resolution functionality to FOP. For example, you can use 
-          <a href="ext:xml.apache.org/commons/resolver">Apache XML Commons Resolver</a> to make use of XCatalogs.
-        </p>
-        <source>userAgent.setURIResolver(myResolver); //myResolver is a javax.xml.transform.URIResolver</source>
-      </li>
-      <li>
-        <p>
-          Set the <strong>parameters for PDF encryption</strong> for the document. If you create PDF files you can 
-          instantiate and set an org.apache.fop.pdf.PDFEncryptionParams object. Example:
-        </p>
-        <source>userAgent.setPDFEncryptionParams(new PDFEncryptionParams(null, "owner", false, false, true, true));</source>
-      </li>
-    </ul>
-    <note>
-      You should not reuse an FOUserAgent instance between FOP rendering runs although you can. Especially
-      in multi-threaded environment, this is a bad idea.
-    </note>
-  </section>
-  <section id="config-external">
-    <title>Using a Configuration File</title>
-    <p>
-      Instead of setting the parameters manually in code as shown above you can also set 
-      many values from an XML configuration file:
-    </p>
-    <source><![CDATA[
-import org.apache.avalon.framework.configuration.Configuration;
-import org.apache.avalon.framework.configuration.DefaultConfigurationBuilder;
-
-/*..*/
-
-DefaultConfigurationBuilder cfgBuilder = new DefaultConfigurationBuilder();
-Configuration cfg = cfgBuilder.buildFromFile(new File("C:/Temp/mycfg.xml"));
-userAgent.setUserConfig(cfg);]]></source>
-    <p>
-      The layout of the configuration file is described on the <a href="configuration.html">Configuration page</a>.
-    </p>
-  </section>
-  <section id="hints">
-    <title>Hints</title>
-    <section id="object-reuse">
-      <title>Object reuse</title>
-      <p>
-        At the moment, the Fop instances shouldn't be reused. Please recreate
-        Fop and FOUserAgent instances for each rendering run until further notice.
-        We will likely add an additional object which will carry information
-        and configuration which can be reused between rendering runs to further
-        optimize this.
-     </p>
-    </section>
-    <section id="awt">
-      <title>AWT issues</title>
-      <p>
-        If your XSL-FO files contain SVG then Apache Batik will be used. When Batik is
-        initialised it uses certain classes in <code>java.awt</code> that
-        intialise the Java AWT classes. This means that a daemon thread
-        is created by the JVM and on Unix it will need to connect to a
-        DISPLAY.
-      </p>
-      <p>
-        The thread means that the Java application may not automatically quit
-        when finished, you will need to call <code>System.exit()</code>. These
-        issues should be fixed in the JDK 1.4.
-      </p>
-      <p>
-        If you run into trouble running FOP on a head-less server, please see the
-        <a href="graphics.html#batik">notes on Batik</a>.
-      </p>
-    </section>
-    <section id="render-info">
-      <title>Getting information on the rendering process</title>
-      <p>
-        To get the number of pages that were rendered by FOP you can call 
-        <code>Fop.getResults()</code>. This returns a <code>FormattingResults</code> object 
-        where you can lookup the number of pages produced. It also gives you the 
-        page-sequences that were produced along with their id attribute and their 
-        number of pages. This is particularly useful if you render multiple 
-        documents (each enclosed by a page-sequence) and have to know the number of 
-        pages of each document.
-      </p>
-    </section>
-  </section>
-  <section id="performance">
-    <title>Improving performance</title>
-    <p>
-      There are several options to consider:
-    </p>
-    <ul>
-      <li>
-        Whenever possible, try to use SAX to couple the individual components involved 
-        (parser, XSL transformer, SQL datasource etc.).
-      </li>
-      <li>
-        Depending on the target OutputStream (in case of an FileOutputStream, but not 
-        for a ByteArrayOutputStream, for example) it may improve performance considerably 
-        if you buffer the OutputStream using a BufferedOutputStream: 
-        <code>fop.setOutputStream(new java.io.BufferedOutputStream(out));</code>
-        <br/>
-        Make sure you properly close the OutputStream when FOP is finished.
-      </li>
-      <li>
-        Cache the stylesheet. If you use the same stylesheet multiple times 
-        you can setup a JAXP <code>Templates</code> object and reuse it each time you do
-        the XSL transformation.  (More information can be found
-        <a class="fork" href="http://www.javaworld.com/javaworld/jw-05-2003/jw-0502-xsl.html">here</a>.)
-      </li>
-      <li>
-        Use an XSLT compiler like <a class="fork" href="http://xml.apache.org/xalan-j/xsltc_usage.html">XSLTC</a>
-        that comes with Xalan-J.
-      </li>
-    </ul>
-  </section>
-  <section id="multithreading">
-    <title>Multithreading FOP</title>
-    <p>
-      Apache FOP may currently not be completely thread safe.
-      FOP uses some static variables (for example for the image cache). This code 
-      has not been fully tested for multi-threading issues, yet.
-    </p>
-    <p>
-      There is also a known issue with fonts being jumbled between threads when using 
-      the Java2D/AWT renderer (which is used by the -awt and -print output options).
-      In general, you cannot safely run multiple threads through the AWT renderer.
-    </p>
-  </section>
-<section id="examples">
-  <title>Examples</title>
-  <p>
-   The directory "{fop-dir}/examples/embedding" contains several working examples. 
-   In contrast to the examples above the examples here primarily use JAXP for 
-   XML access. This may be easier to understand for people familiar with JAXP.
-  </p>
-  <section id="ExampleFO2PDF">
-    <title>ExampleFO2PDF.java</title>
-    <p>This
-        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleFO2PDF.java?view=markup">
-            example</a>
-demonstrates the basic usage pattern to transform an XSL-FO
-file to PDF using FOP.
-    </p>
-    <figure src="images/EmbeddingExampleFO2PDF.png" alt="Example XSL-FO to PDF"/>
-  </section>
-  <section id="ExampleXML2FO">
-    <title>ExampleXML2FO.java</title>
-    <p>This 
-        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleXML2FO.java?view=markup">
-            example</a>
-has nothing to do with FOP. It is there to show you how an XML 
-file can be converted to XSL-FO using XSLT. The JAXP API is used to do the
-transformation. Make sure you've got a JAXP-compliant XSLT processor in your 
-classpath (ex. <a href="http://xml.apache.org/xalan-j">Xalan</a>).
-    </p>
-    <figure src="images/EmbeddingExampleXML2FO.png" alt="Example XML to XSL-FO"/>
-  </section>
-  <section id="ExampleXML2PDF">
-    <title>ExampleXML2PDF.java</title>
-    <p>This 
-        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleXML2PDF.java?view=markup">
-        example</a>
-demonstrates how you can convert an arbitrary XML file to PDF 
-using XSLT and XSL-FO/FOP. It is a combination of the first two examples 
-above. The example uses JAXP to transform the XML file to XSL-FO and FOP to 
-transform the XSL-FO to PDF.
-    </p>
-    <figure src="images/EmbeddingExampleXML2PDF.png" alt="Example XML to PDF (via XSL-FO)"/>
-    <p>
-The output (XSL-FO) from the XSL transformation is piped through to FOP using 
-SAX events. This is the most efficient way to do this because the 
-intermediate result doesn't have to be saved somewhere. Often, novice users 
-save the intermediate result in a file, a byte array or a DOM tree. We 
-strongly discourage you to do this if it isn't absolutely necessary. The 
-performance is significantly higher with SAX.
-    </p>
-  </section>
-  <section id="ExampleObj2XML">
-    <title>ExampleObj2XML.java</title>
-    <p>This 
-    <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleObj2XML.java?view=markup">
-        example</a>
-is a preparatory example for the next one. It's an example that 
-shows how an arbitrary Java object can be converted to XML. It's an often 
-needed task to do this. Often people create a DOM tree from a Java object and 
-use that. This is pretty straightforward. The example here however shows how
-to do this using SAX which will probably be faster and not even more 
-complicated once you know how this works.
-    </p>
-    <figure src="images/EmbeddingExampleObj2XML.png" alt="Example Java object to XML"/>
-    <p>
-For this example we've created two classes: ProjectTeam and ProjectMember 
-(found in xml-fop/examples/embedding/java/embedding/model). They represent 
-the same data structure found in 
-xml-fop/examples/embedding/xml/xml/projectteam.xml. We want to serialize a 
-project team with several members which exist as Java objects to XML. 
-Therefore we created the two classes: ProjectTeamInputSource and 
-ProjectTeamXMLReader (in the same place as ProjectTeam above).
-    </p>
-    <p>
-The XMLReader implementation (regard it as a special kind of XML parser)is 
-responsible for creating SAX events from the Java object. The InputSource 
-class is only used to hold the ProjectTeam object to be used.
-    </p>
-    <p>
-Have a look at the source of ExampleObj2XML.java to find out how this is 
-used. For more detailed information see other resources on JAXP (ex. 
-<a class="fork" href="http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/xslt/3_generate.html">An older JAXP tutorial</a>).
-    </p>
-  </section>
-  <section id="ExampleObj2PDF">
-    <title>ExampleObj2PDF.java</title>
-    <p>This 
-        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleObj2PDF.java?view=markup">
-            example</a>
-combines the previous and the third to demonstrate 
-how you can transform a Java object to a PDF directly in one smooth run
-by generating SAX events from the Java object that get fed to an XSL 
-transformation. The result of the transformation is then converted to PDF 
-using FOP as before.
-    </p>
-    <figure src="images/EmbeddingExampleObj2PDF.png" alt="Example Java object to PDF (via XML and XSL-FO)"/>
-  </section>
-  <section id="ExampleDOM2PDF">
-    <title>ExampleDOM2PDF.java</title>
-    <p>This 
-        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleDOM2PDF.java?view=markup">
-            example</a>
-has FOP use a DOMSource instead of a StreamSource in order to 
-use a DOM tree as input for an XSL transformation.
-    </p>
-  </section>
-  <section id="ExampleSVG2PDF">
-    <title>ExampleSVG2PDF.java (PDF Transcoder example)</title>
-    <p>This 
-        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleSVG2PDF.java?view=markup">
-            example</a>
-shows use of the PDF Transcoder, a sub-application within FOP.  
-It is used to generate a PDF document from an SVG file.
-    </p>
-  </section>
-  <section id="example-notes">
-    <title>Final notes</title>
-    <p>
-These examples should give you an idea of what's possible. It should be easy 
-to adjust these examples to your needs. Also, if you have other examples that you
-think should be added here, please let us know via either the fop-users or fop-dev
-mailing lists.  Finally, for more help please send your questions to the fop-users
-mailing list.
-    </p>
-  </section>
-</section>
-  </body>
-</document>
-
diff --git a/src/documentation/content/xdocs/0.90/extensions.xml b/src/documentation/content/xdocs/0.90/extensions.xml
deleted file mode 100644 (file)
index 71fff1e..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Standard FOP Extensions</title>
-    <version>$Revision$</version>
-  </header>
-  <body>
-    <p>
-      By "extension", we mean any data that can be placed in the input XML document that 
-      is not addressed by the XSL-FO standard.
-      By having a mechanism for supporting extensions, FOP is able to add features that 
-      are not covered in the specification.
-    </p>
-    <p>
-      The extensions documented here are included with FOP, and are automatically available 
-      to you. If you wish to add an extension of your own to FOP, please see the 
-      <a href="../dev/extensions.html">Developers' Extension Page</a>.
-    </p>
-    <note>All extensions required the correct use of an appropriate namespace in your input document.</note>
-    <section id="svg">
-      <title>SVG</title>
-      <p>
-        Please see the <a href="graphics.html#svg">SVG documentation</a> for more details.
-      </p>
-    </section>
-    <section id="fo-extensions">
-      <title>FO Extensions</title>
-      <section id="fox-namespace">
-        <title>Namespace</title>
-        <p>
-          By convention, FO extensions in FOP use the "fox" namespace prefix.
-          To use any of the FO extensions, add a namespace entry for 
-          <code>http://xml.apache.org/fop/extensions</code> to the root element:
-        </p>
-        <source><![CDATA[<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
-               xmlns:fox="http://xml.apache.org/fop/extensions">]]></source>
-        <note>Currently, no extensions are implemented in FOP Trunk which use the FOP extension namespace.</note>
-      </section>
-      <section id="bookmarks">
-        <title>PDF Bookmarks</title>
-        <p>
-          In previous versions of Apache FOP there was a <code>fox:outline</code> element
-          which was used to create outlines in PDF files. The redesigned code makes use
-          of the new <a href="http://www.w3.org/TR/xsl11/#fo_bookmark-tree">bookmark feature defined in the latest XSL 1.1 working draft</a>.
-        </p>
-      </section>
-      <section id="named-destinations">
-        <title>Anchors or Named Destinations</title>
-        <p>This extension element hasn't been reimplemented for the redesigned code, yet.</p>
-        <!--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".
-fox:destination elements can be placed almost anywhere in the fo document, including a child of
-root, a block-level element, or an inline-level element.
-For the destination to actually work, it must correspond to an "id" attribute on some fo element
-within the document. In other words, the "id" attribute actually creates the "view" within the
-PDF document. The fox:destination simply gives that view an independent name.
-</p>
-        <source><![CDATA[<fox:destination internal-destination="table-of-contents"/>
-...
-<fo:block id="table-of-contents">Table of Contents</fo:block>]]></source>
-        <warning>It is possible that in some future release of FOP, <em>all </em>elements with
-"id" attributes will generate named-destinations, which will eliminate the need for
-fox:destination.</warning-->
-      </section>
-      <section id="table-continue-label">
-        <title>Table Continuation Label</title>
-        <p>This extension element hasn't been reimplemented for the redesigned code, yet.</p>
-        <!--p>Use the fox:continued-label element to create content in table-header and
-table-footer cells that will appear only on pages after the first page that the table
-appears. fox:continued-label is itself inline content, and is a container of fo:inline
-content. This content will be laid out only if the table does not fit on a single page and flows
-to following pages. Here is an example of FO code creating such a table-header:</p>
-<source><![CDATA[<fo:table-header>
-  <fo:table-row>
-    <fo:table-cell>
-      <fo:block>Header column 1 with continued label
-          <fox:continued-label><fo:inline> (cont.)</fo:inline></fox:continued-label>
-      </fo:block>
-    </fo:table-cell>
-    <fo:table-cell>
-      <fo:block>Header column 2 with no continued label</fo:block>
-    </fo:table-cell>
-  </fo:table-row>
-</fo:table-header>]]></source-->
-      </section>
-    </section>
-  </body>
-</document>
-
diff --git a/src/documentation/content/xdocs/0.90/fonts.xml b/src/documentation/content/xdocs/0.90/fonts.xml
deleted file mode 100644 (file)
index ba5be8e..0000000
+++ /dev/null
@@ -1,270 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Apache FOP: Fonts</title>
-    <version>$Revision$</version>
-    <authors>
-      <person name="Jeremias Märki" email=""/>
-      <person name="Tore Engvig" email=""/>
-    </authors>
-  </header>
-  <body>
-    <section id="intro">
-      <title>Summary</title>
-      <note>The FOP Font subsystem is currently undergoing a significant change.
-        The details provided here especially related to the generation of FOP Font
-        Metrics files and the FOP Font configuration are likely to change substantially
-        in the future.
-      </note>
-      <p>The following table summarizes the font capabilities of the various FOP renderers:</p>
-      <table>
-        <tr>
-          <th>Renderer</th>
-          <th>Base-14</th>
-          <th>AWT/OS</th>
-          <th>Custom</th>
-          <th>Custom Embedding</th>
-        </tr>
-        <tr>
-          <td>PDF</td>
-          <td>yes</td>
-          <td>no</td>
-          <td>yes</td>
-          <td>yes</td>
-        </tr>
-        <tr>
-          <td>PostScript</td>
-          <td>yes</td>
-          <td>no</td>
-          <td>yes</td>
-          <td>yes</td>
-        </tr>
-        <!--tr> NOT AVAILABLE YET!!!
-          <td>PCL</td>
-          <td>yes (modified)</td>
-          <td>no</td>
-          <td>no</td>
-          <td>no</td>
-        </tr-->
-        <tr>
-          <td>TXT</td>
-          <td>yes (used for layout but not for output)</td>
-          <td>no</td>
-          <td>yes (used for layout but not for output)</td>
-          <td>no</td>
-        </tr>
-        <tr>
-          <td>AWT</td>
-          <td>if available from OS</td>
-          <td>yes</td>
-          <td>yes</td>
-          <td>n/a (display only)</td>
-        </tr>
-        <tr>
-          <td>Print</td>
-          <td>if available from OS</td>
-          <td>yes</td>
-          <td>yes</td>
-          <td>controlled by OS printer driver</td>
-        </tr>
-        <tr>
-          <td>RTF</td>
-          <td>n/a (font metrics not needed)</td>
-          <td>n/a</td>
-          <td>n/a</td>
-          <td>n/a</td>
-        </tr>
-        <tr>
-          <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>
-          <td>SVG</td>
-          <td>if available from OS</td>
-          <td>yes</td>
-          <td>no</td>
-          <td>no</td>
-        </tr>
-        <tr>
-          <td>XML</td>
-          <td>yes</td>
-          <td>no</td>
-          <td>yes</td>
-          <td>n/a</td>
-        </tr>
-      </table>
-    </section>
-    <section>
-      <title>Base-14 Fonts</title>
-      <p>The Adobe PDF Specification specifies a set of 14 fonts that must be available to every PDF reader: Helvetica (normal, bold, italic, bold italic), Times (normal, bold, italic, bold italic), Courier (normal, bold, italic, bold italic), Symbol and ZapfDingbats.</p>
-    </section>
-    <section id="awt">
-      <title>AWT/Operating System Fonts</title>
-      <p>The AWT family of renderers (AWT, Print, SVG), use the Java AWT libraries for font metric information. Through operating system registration, the AWT libraries know what fonts are available on the system, and the font metrics for each one.</p>
-    </section>
-    <section id="custom">
-      <title>Custom Fonts</title>
-      <p>Support for custom fonts is added by creating font metric files (written in XML) from the actual font files, and registering them with FOP. Currently only Type 1 and TrueType fonts can be added.
-More information about fonts can be found at:</p>
-      <ul>
-        <li><a href="http://partners.adobe.com/asn/developer/type/ftypes.html">Adobe font types</a></li>
-        <li><a href="http://partners.adobe.com/asn/developer/technotes/fonts.html">Adobe Font Technote</a>
-</li>
-      </ul>
-      <section id="type1-metrics">
-        <title>Type 1 Font Metrics</title>
-        <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>
-        <p>Windows:</p>
-        <source>java -cp build\fop.jar;lib\avalon-framework.jar;lib\xml-apis.jar;
-         lib\xercesImpl.jar;lib\xalan.jar
-           org.apache.fop.fonts.apps.PFMReader [options] pfm-file xml-file</source>
-        <p>Unix:</p>
-        <source>java -cp build/fop.jar:lib/avalon-framework.jar:lib/xml-apis.jar:
-         lib/xercesImpl.jar:lib/xalan.jar
-           org.apache.fop.fonts.apps.PFMReader [options] pfm-file xml-file</source>
-        <p>PFMReader [options]:</p>
-        <ul>
-          <li><strong>-fn &lt;fontname&gt;</strong> By default, FOP uses the fontname from the
-.pfm file when embedding the font. Use the "-fn" option to override this name with one you have
-chosen. This may be useful in some cases to ensure that applications using the output document
-(Acrobat Reader for example) use the embedded font instead of a local font with the same
-name.</li>
-        </ul>
-        <note>The classpath in the above example has been simplified for readability.
-You will have to adjust the classpath to the names of the actual JAR files in the lib directory.
-avalon-framework.jar is necessary only for versions 0.20.5 or later.
-xml-apis.jar, xercesImpl.jar and xalan.jar are not necessary for JDK version 1.4 or later.</note>
-        <note>The tool will construct some values (FontBBox, StemV and ItalicAngle) based on assumptions and calculations which are only an approximation to the real values.
-FontBBox and Italic Angle can be found in the human-readable part of the PFB file or in the AFM file.
-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.</note>
-      </section>
-      <section id="truetype-metrics">
-        <title>TrueType Font Metrics</title>
-        <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.
-For example, to create such a metrics file in Windows from the TrueType font at c:\myfonts\cmr10.ttf:</p>
-        <source>java -cp build\fop.jar;lib\avalon-framework.jar;lib\xml-apis.jar;
-         lib\xercesImpl.jar;lib\xalan.jar
-           org.apache.fop.fonts.apps.TTFReader [options]
-             C:\myfonts\cmr10.ttf ttfcm.xml</source>
-        <p>TTFReader [options]:</p>
-        <ul>
-          <li><strong>-d &lt;DEBUG | INFO &gt;</strong> Sets the debug level (default is
-INFO).</li>
-          <li><strong>-fn &lt;fontname&gt;</strong> Same as for PFMReader.</li>
-          <li><strong>-ttcname &lt;fontname&gt;</strong> If you're reading data from a
-TrueType Collection (.ttc file) you must specify which font from the collection you will read
-metrics from.
-If you read from a .ttc file without this option, the fontnames will be listed for you.</li>
-          <li><strong>-enc ansi</strong> Creates a WinAnsi-encoded font metrics file.
-Without this option, a CID-keyed font metrics file is created.
-The table below summarizes the differences between these two encoding options as currently
-used within FOP.
-Please note that this information only applies to TrueType fonts and TrueType collections:</li>
-        </ul>
-        <table id="ttf-encoding">
-          <tr>
-            <th>Issue</th>
-            <th>WinAnsi</th>
-            <th>CID-keyed</th>
-          </tr>
-          <tr>
-            <td>Usable Character Set</td>
-            <td>Limited to WinAnsi character set, which is roughly equivalent to iso-8889-1.</td>
-            <td>Limited only by the characters in the font itself.</td>
-          </tr>
-          <tr>
-            <td>Character Encoding in the Output Document.</td>
-            <td>Correct.</td>
-            <td>Never correct. Search, index, and cut-and-paste operations in the output document
-will produce incorrect results.</td>
-          </tr>
-          <tr>
-            <td>Character Display</td>
-            <td>Correct.</td>
-            <td>Correct if and only if the font is embedded in the output. (This is possible
-because, although the underlying characters are encoded incorrectly, the embedded font is
-also encoded incorrectly).</td>
-          </tr>
-        </table>
-        <warning id="cid-keyed-encoding-ttf">As shown in the above table, regardless of
-whether the font is embedded or not, text generated from a CID-keyed font metrics file
-will <em>never </em>be encoded properly.
-Further, if the related font is not embedded, it cannot even be displayed properly.
-Obviously, this behavior is not desirable, and we hope to correct it in upcoming releases.</warning>
-      </section>
-      <section id="truetype-collections-metrics">
-        <title>TrueType Collections Font Metrics</title>
-        <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>
-        <p>To get a list of the fonts in a collection, just start the TTFReader as if it were a normal TrueType file (without the -ttcname option).
-It will display all of the font names and exit with an Exception.</p>
-        <p>Here is an example of generating a metrics file for a .ttc file:</p>
-        <source>java -cp build\fop.jar;lib\avalon-framework.jar;lib\xml-apis.jar;
-         lib\xercesImpl.jar;lib\xalan.jar
-           org.apache.fop.fonts.apps.TTFReader -ttcname "MS Mincho"
-             msmincho.ttc msminch.xml</source>
-      </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 <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>
-        <source><![CDATA[<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>]]></source>
-        <note>Review the documentation for <a href="configuration.html">FOP Configuration</a> for instructions on making the FOP configuration available to FOP when it runs. Otherwise, FOP has no way of finding your custom font information.</note>
-        <ul>
-          <li>
-            URLs are used to access the font metric and font files.
-            <!--Relative URLs are resolved relative to the fontBaseDir property (or baseDir) if available.-->
-            See <a href="configuration.html">FOP: Configuration</a> for more information.
-            <note>Relative font URLs are currently not possible. You need to specify absolute URLs. Patches are welcome! :-)</note>
-          </li>
-          <li>The "kerning" and "embed-url" attributes are optional. Kerning is currently not used at all. If embedding is off, the output will position the text correctly (from the metrics file), but it will not be displayed or printed correctly unless the viewer has the applicable font available to their local system.</li>
-          <li>When setting the embed-url attribute for Type 1 fonts, be sure to specify the PFB (actual font data), not PFM (font metrics) file that you used to generate the XML font metrics file.</li>
-        </ul>
-        <!--note>Cocoon users will need to setup the config, see FOPSerializer for more information.</note-->
-      </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>
-        <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.
-Currently, this embedded font contains only the minimum data needed to be embedded in a pdf document, and does not contain any codepage information.
-The PDF document contains indexes to the glyphs in the font instead of to encoded characters.
-While the document will be displayed correctly, the net effect of this is that searching, indexing, and cut-and-paste will not work properly.</p>
-        <p>One workaround for this behavior is to use the "-enc ansi" option when generating metrics with TTFReader.
-This will cause the whole font to be embedded in the pdf document.
-Characters will be WinAnsi encoded (as specified in the PDF spec), so you lose the ability to use characters from other character sets.
-See <a href="#ttf-encoding">Table of TTF Encoding Options</a> for more details.</p>
-      </section>
-    </section>
-  </body>
-</document>
diff --git a/src/documentation/content/xdocs/0.90/graphics.xml b/src/documentation/content/xdocs/0.90/graphics.xml
deleted file mode 100644 (file)
index e52f257..0000000
+++ /dev/null
@@ -1,343 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Apache FOP: Graphics Formats</title>
-    <version>$Revision$</version>
-  </header>
-  <body>
-    <section id="support-overview">
-      <title>Overview of Graphics Support</title>
-      <p>
-        The table below summarizes the <em>theoretical</em> support for graphical formats within FOP. In other words, within the constraints of the limitations listed here, these formats <em>should</em> work. However, many of them have not been tested, and there may be limitations that have not yet been discovered or documented. The packages needed to support some formats are not included in the FOP distribution and must be installed separately. Follow the links in the "Support Thru" column for more details.
-      </p>
-      <table>
-        <tr>
-          <th>Format</th>
-          <th>Type</th>
-          <th><a href="#native">FOP native support</a></th>
-          <th><a href="#batik">Batik SVG</a></th>
-          <th><a href="#batik-codecs">Batik codecs</a></th>
-          <th><a href="#imageio">Image I/O</a></th>
-          <th><a href="#jai">JAI</a></th>
-          <th><a href="#jimi">JIMI</a></th>
-        </tr>
-        <tr>
-          <td><a href="#bmp">BMP</a> (Microsoft Windows Bitmap)</td>
-          <td>bitmap</td>
-          <td>X</td>
-          <td></td>
-          <td></td>
-          <td></td>
-          <td></td>
-          <td></td>
-        </tr>
-        <tr>
-          <td><a href="#eps">EPS</a> (Encapsulated PostScript)</td>
-          <td>metafile (both bitmap and vector), probably most frequently used for vector drawings</td>
-          <td>(X)</td>
-          <td></td>
-          <td></td>
-          <td></td>
-          <td></td>
-          <td></td>
-        </tr>
-        <tr>
-          <td>GIF (Graphics Interchange Format)</td>
-          <td>bitmap</td>
-          <td>X</td>
-          <td></td>
-          <td></td>
-          <td>X</td>
-          <td>X</td>
-          <td>X</td>
-        </tr>
-        <tr>
-          <td><a href="#jpeg">JPEG</a> (Joint Photographic Experts Group)</td>
-          <td>bitmap</td>
-          <td>(X)</td>
-          <td></td>
-          <td></td>
-          <td></td>
-          <td></td>
-          <td></td>
-        </tr>
-        <tr>
-          <td><a href="#png">PNG</a> (Portable Network Graphic)</td>
-          <td>bitmap</td>
-          <td></td>
-          <td></td>
-          <td>X</td>
-          <td></td>
-          <td></td>
-          <td></td>
-        </tr>
-        <tr>
-          <td><a href="#svg">SVG</a> (Scalable Vector Graphics)</td>
-          <td>vector (with embedded bitmaps)</td>
-          <td></td>
-          <td>X</td>
-          <td></td>
-          <td></td>
-          <td></td>
-          <td></td>
-        </tr>
-        <tr>
-          <td><a href="#tiff">TIFF</a> (Tag Image Format File)</td>
-          <td>bitmap</td>
-          <td>(X)</td>
-          <td></td>
-          <td>X</td>
-          <td></td>
-          <td>X</td>
-          <td></td>
-          <!--td><a href="#native">FOP native</a> or <a href="#jai">JAI</a>, depending on the subformat. See <a href="#tiff">TIFF</a> for more details.(JIMI also supports TIFF, but this has not been implemented within FOP).</td-->
-        </tr>
-      </table>
-      <note>"(X)" means restricted support. Please see the details below.</note>
-    </section>
-    <section id="packages">
-      <title>Graphics Packages</title>
-      <section id="native">
-        <title>FOP Native</title>
-        <p>
-          FOP has native ability to handle some graphic file formats.
-        </p>
-      </section>
-      <section id="batik-codecs">
-        <title>Batik codecs</title>
-        <p>
-          Apache Batik contains codecs for PNG and TIFF access. FOP can use these.
-        </p>
-      </section>
-      <section id="imageio">
-        <title>Image I/O (JDK 1.4 or higher)</title>
-        <p>
-          For JDKs 1.4 or higher, FOP provides a wrapper to load images through the 
-          <a class="fork" 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="fork" href="http://java.sun.com/products/java-media/jai/">JAI Image I/O Tools</a> available from Sun.
-        </p>
-      </section>
-      <section id="jimi">
-        <title>JIMI</title>
-        <p>
-          Because of licensing issues, the JIMI image library is not included in the FOP distribution. First, <a class="fork" href="http://java.sun.com/products/jimi">download</a> and install it.
-Then, copy the file "JimiProClasses.zip" from the archive to {fop-install-dir}/lib/jimi-1.0.jar. Please note that FOP binary distributions are compiled with JIMI support, so there is no need for you to build FOP to add the support. If jimi-1.0.jar is installed in the right place, it will automatically be used by FOP, otherwise it will not.
-        </p>
-      </section>
-      <section id="jai">
-        <title>JAI (Java Advanced Imaging API)</title>
-        <warning>JAI support is available for Release 0.20.5 and later. The comments in this section do not apply to releases earlier than 0.20.5.</warning>
-        <p>
-          FOP has been compiled with JAI support, but JAI is not included in the FOP distribution.
-To use it, install <a href="http://java.sun.com/products/java-media/jai">JAI</a>, then copy the jai_core.jar and the jai_codec.jar files to {fop-install-dir}/lib.
-JAI is much faster than JIMI, but is not available for all platforms. See <a href="http://java.sun.com/products/java-media/jai/forDevelopers/jaifaq.html#platforms">What platforms are supported?</a> on the JAI FAQ page for more details.
-        </p>
-      </section>
-      <section id="batik">
-        <title>Batik</title>
-        <p>Current FOP distributions include a distribution of the Apache <a class="fork" href="ext:batik">Batik</a> version 1.6.
-It is automatically installed with FOP.
-Because Batik's API changes frequently, it is highly recommended that you use the version that ships with FOP, at least when running FOP.</p>
-        <warning>Batik must be run in a graphical environment.</warning>
-        <p>Batik must be run in a graphical environment.
-It uses AWT classes for rendering SVG, which in turn require an X server on Unixish systems.
-If you run a server without X, or if you can't connect to the X server due to security restrictions or policies (a so-called "headless" environment), SVG rendering will fail.</p>
-        <p>Here are some workarounds:</p>
-        <ul>
-          <li>If you are using JDK 1.4, start it with the <code>-Djava.awt.headless=true</code> command line option.</li>
-          <li>Install an X server which provides an in-memory framebuffer without actually using a screen device or any display hardware. One example is Xvfb.</li>
-          <li>Install a toolkit which emulates AWT without the need for an underlying X server. One example is the <a href="http://www.eteks.com/pja/en">PJA toolkit</a>, which is free and comes with detailed installation instructions.</li>
-        </ul>
-      </section>
-    </section>
-    <section id="bmp">
-      <title>BMP</title>
-      <p>FOP native support for BMP images is limited to the RGB color-space.</p>
-    </section>
-    <section id="eps">
-      <title>EPS</title>
-      <p>FOP provides support for two output targets:</p>
-      <ul>
-        <li>PostScript (full support).</li>
-        <li>
-          PDF (partial support). Due to the lack of a built-in PostScript interpreter, FOP 
-          can only embed the EPS file into the PDF. Acrobat Reader will not currently display 
-          the EPS (it doesn't have a PostScript interpreter, either) but it will be shown 
-          correctly when you print the PDF on a PostScript-capable printer. PostScript devices 
-          (including GhostScript) will render the EPS correctly.
-        </li>
-      </ul>
-      <p>
-        Other output targets can't be supported at the moment because
-        FOP lacks a PostScript interpreter. Furthermore, FOP is not able
-        to parse the preview bitmaps sometimes contained in EPS files.
-      </p>
-    </section>
-    <section id="jpeg">
-      <title>JPEG</title>
-      <p>FOP native support of JPEG does not include all variants, especially those containing unusual color lookup tables and color profiles.
-If you have trouble with a JPEG image in FOP, try opening it with an image processing program (such as Photoshop or Gimp) and then saving it.
-Specifying 24-bit color output may also help.
-For the PDF and PostScript renderers most JPEG images can be passed through without decompression.
-User reports indicate that grayscale, RGB, and CMYK color-spaces are all rendered properly.
-      </p>
-    </section>
-    <section id="png">
-      <title>PNG</title>
-      <p>If using JAI for PNG support, only RGB and RGBA color-spaces are supported for FOP rendering.</p>
-    </section>
-    <section id="svg">
-      <title>SVG</title>
-      <section id="svg-intro">
-        <title>Introduction</title>
-        <p>FOP uses <a href="#batik">Batik</a> for SVG support.
-This format can be handled as an <code>fo:instream-foreign-object</code> or in a separate
-file referenced with <code>fo:external-graphic</code>.</p>
-      <note>   
-Batik's SVG Rasterizer utility may also be used to convert standalone SVG
-documents into PDF.  For more information please see the
-<a href="http://xml.apache.org/batik/svgrasterizer.html">SVG Rasterizer documentation</a>
-on the Batik site.
-      </note>
-      </section>
-      <section id="svg-pdf-graphics">
-        <title>Placing SVG Graphics into PDF</title>
-        <p>
-The SVG is rendered into PDF by using PDF commands to draw and fill
-lines and curves. This means that the graphical objects created with
-this remain as vector graphics.
-        </p>
-        <p>
-There are a number of SVG things that cannot be converted directly into
-PDF. Parts of the graphic such as effects, patterns and images are inserted
-into the PDF as a raster graphic. The resolution of this graphic may not
-be ideal depending on the FOP dpi (72dpi) and the scaling for that graphic.
-We hope to improve this in the future.</p>
-        <p>
-Currently transparency is not supported in PDF so many svg images that
-contain effects or graphics with transparent areas will not be displayed
-correctly.
-        </p>
-      </section>
-      <section id="svg-pdf-text">
-        <title>Placing SVG Text into PDF</title>
-        <p>If possible, Batik will use normal PDF text when inserting text. It does
-this by checking if the text can be drawn normally and the font is
-supported. This example svg <a href="../dev/svg/text.svg">text.svg</a> /
-<!--link href="../dev/svg/text.pdf"-->text.pdf<!--/link-->
-shows how various types and effects with text are handled.
-Note that tspan and outlined text are not yet implemented.</p>
-        <p>
-Otherwise, text is converted and drawn as a set of shapes by batik, using the stroking text painter.
-This means that a typical character will
-have about 10 curves (each curve consists of at least 20 characters).
-This can make the pdf files large and when the pdf is viewed the
-viewer does not normally draw those fine curves very well (turning on
-Smooth Line Art in the Acrobat preferences will fix this).
-If the text is inserted into the PDF using the inbuilt text commands
-for PDF it will use a single character.
-        </p>
-        <p>
-For PDF output, there is a <a href="configuration.html#svg-strokeSVGText">configuration option to force SVG text to be rendered as text</a>.
-The drawback to this approach is that it is effective only for available fonts (including embedded fonts).
-Font sizes are rounded to the next integer point size.
-This will be improved in the future.
-        </p>
-        <p>Note that because SVG text can be rendered as either text or a vector graphic, you may need to consider settings in your viewer for both.
-The Acrobat viewer has both "smooth line art" and "smooth text" settings that may need to be set for SVG images 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>
-      </section>
-      <section id="svg-scaling">
-        <title>Scaling</title>
-        <p>Currently, SVG images are rendered with the dimensions specified <em>in the SVG file</em>, within the viewport specified in the fo:external-graphic element.
-For everything to work properly, the two should be equal.
-The SVG standard leaves this issue as an implementation detail.
-FOP will probably implement a scaling mechanism in the future.</p>
-      </section>
-      <section id="svg-problems">
-        <title>Known Problems</title>
-        <ul>
-          <li>
-soft mask transparency is combined with white so that it looks better
-on pdf 1.3 viewers but this causes the soft mask to be slightly lighter
-or darker on pdf 1.4 viewers
-          </li>
-          <li>
-there is some problem with a gradient inside a pattern causing a pdf
-error when viewed in acrobat 5
-          </li>
-          <li>
-text is not always handled correctly, it may select the wrong font
-especially if characters have multiple fonts in the font list
-          </li>
-          <li>
-more pdf text handling could be implemented
-It could draw the string using the attributed character iterator
-to handle tspans and other simple changes of text.
-          </li>
-          <li>
-JPEG images are not inserted directly into the pdf document
-This area has not been implemented yet since the appropriate
-method in batik is static
-          </li>
-          <li>
-Uniform transparency for images and other svg elements that are converted
-into a raster graphic are not drawn properly in PDF. The image is opaque.
-          </li>
-        </ul>
-      </section>
-    </section>
-    <section id="tiff">
-      <title>TIFF</title>
-      <p>FOP-native TIFF support is limited to PDF and PostScript output only. Also, according to user reports, FOP's native support for TIFF is limited to images with the following characteristics (all must be true for successful rendering):</p>
-      <ul>
-        <li>single channel images (i.e., bi-level and grayscale only)</li>
-        <li>uncompressed images, or images using CCITT T.4, CCITT T.6, or JPEG compression</li>
-        <li>images using white-is-zero encoding in the TIFF PhotometricInterpretation tag</li>
-      </ul>
-      <p><em>JAI:</em> Supports RGB and RGBA only for FOP rendering.</p>
-    </section>
-    <section id="resolution">
-      <title>Graphics Resolution</title>
-      <p>Some bitmapped image file formats store a dots-per-inch (dpi) or other resolution value. Since PDF and most output formats do not have a concept of resolution, but only of absolute image units (i.e. pixels) FOP ignores the resolution values as well. Instead, FOP uses the dimensions of the image as specified in the fo:external-graphic element to render the image:</p>
-      <ul>
-        <li>If no dimensions are given, FOP uses a default value of 72 dpi to compute the graphic's dimensions. For example, suppose a graphic 300 pixels wide and 400 pixels high. FOP will render the graphic at 4.167 inches wide, 5.555 inches high, with an apparent resolution of 72 dpi.</li>
-        <li>If only one dimension is given, FOP by default uses the same aspect ratio to compute the other dimension (to avoid the appearance of stretching). For example, suppose a graphic 300 pixels wide and 400 pixels high, for which content-width = ".5in". FOP will compute the content-height = .667 inches, and will render the graphic at that size, with an apparent resolution of 600 dpi.</li>
-        <li>If both dimensions are given, FOP simply renders the image in that space. For example, suppose a graphic 300 pixels wide and 400 pixels high, for which content-width = "3in" and content-height = "4in". FOP will render the graphic at that size, with an apparent resolution of 100 dpi.</li>
-      </ul>
-      <p>If you need a higher apparent output resolution for bitmapped images, first make sure that at least one dimension of the image is defined in your XSL-FO input. Apart from that, resolution problems are in the image file itself, and must be corrected there: use or create a higher-resolution image file.</p>
-      <note>The explanation above describes only the basic default behavior. There are other attributes of the fo:external-graphic element that can affect the behavior described above.</note>
-    </section>
-    <section id="caching">
-      <title>Image caching</title>
-      <p>
-        FOP caches images between runs. The URL is used as a key to identify images which means that when
-        a particular URL appears again, the image is taken from the cache. If you have a servlet that
-        generates a different image each time it is called with the same URL you need to use a constantly 
-        changing dummy parameter on the URL to avoid caching.
-      </p>
-      <p>
-        The image cache has been improved considerably in the redesigned code. Therefore, a resetCache() method
-        has become unnecessary. If you still experience OutOfMemoryErrors, please notify us.
-      </p>
-    </section>
-  </body>
-</document>
diff --git a/src/documentation/content/xdocs/0.90/hyphenation.xml b/src/documentation/content/xdocs/0.90/hyphenation.xml
deleted file mode 100644 (file)
index 3340f9c..0000000
+++ /dev/null
@@ -1,236 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Apache FOP: Hyphenation</title>
-    <version>$Revision$</version>
-  </header>
-  <body>
-    <section id="support">
-    <title>Hyphenation Support</title>
-    <section id="intro">
-      <title>Introduction</title>
-      <p>FOP uses Liang's hyphenation algorithm, well known from TeX. It needs
-       language specific pattern and other data for operation.</p>
-      <p>Because of <a href="#license-issues">licensing issues</a> (and for 
-       convenience), all hyphenation patterns for FOP are made available through 
-       the <a class="fork" href="http://offo.sourceforge.net/hyphenation/index.html">Objects For 
-       Formatting Objects</a> project.</p>
-      <note>If you have made improvements to an existing FOP hyphenation pattern, 
-       or if you have created one from scratch, please consider contributing these 
-       to OFFO so that they can benefit other FOP users as well. 
-       Please inquire on the <a href="../maillist.html#fop-user">FOP User
-       mailing list</a>.</note>
-    </section>
-    <section id="license-issues">
-      <title>License Issues</title>
-      <p>Many of the hyphenation files distributed with TeX and its offspring are
-       licenced under the <a class="fork" href="http://www.latex-project.org/lppl.html">LaTeX
-       Project Public License (LPPL)</a>, which prevents them from being
-       distributed with Apache software. The LPPL puts restrictions on file names
-       in redistributed derived works which we feel can't guarantee. Some
-       hyphenation pattern files have other or additional restrictions, for
-       example against use for commercial purposes.</p>
-      <p>Although Apache FOP cannot redistribute hyphenation pattern files that do
-       not conform with its license scheme, that does not necessarily prevent users
-       from using such hyphenation patterns with FOP. However, it does place on
-       the user the responsibility for determining whether the user can rightly use
-       such hyphenation patterns under the hyphenation pattern license.</p>
-      <warning>The user is responsible to settle license issues for hyphenation
-       pattern files that are obtained from non-Apache sources.</warning>
-    </section>
-    <section id="sources">
-      <title>Sources of Custom Hyphenation Pattern Files</title>
-      <p>The most important source of hyphenation pattern files is the
-       <a class="fork" href="http://www.ctan.org/tex-archive/language/hyphenation/">CTAN TeX
-        Archive</a>.</p>
-    </section>
-    <section id="install">
-      <title>Installing Custom Hyphenation Patterns</title>
-      <p>To install a custom hyphenation pattern for use with FOP:</p>
-      <ol>
-        <li>Convert the TeX hyphenation pattern file to the FOP format. The FOP
-         format is an xml file conforming to the DTD found at
-         <code>{fop-dir}/hyph/hyphenation.dtd</code>.</li>
-        <li>Name this new file following this schema:
-         <code>languageCode_countryCode.xml</code>. The country code is
-          optional, and should be used only if needed. For example:
-          <ul>
-            <li><code>en_US.xml</code> would be the file name for American
-             English hyphenation patterns.</li>
-            <li><code>it.xml</code> would be the file name for Italian
-             hyphenation patterns.</li>
-          </ul>
-          The language and country codes must match the XSL-FO input, which
-          follows <a href="http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt">ISO
-          639</a> (languages) and <a href="http://www.ics.uci.edu/pub/ietf/http/related/iso3166.txt">ISO
-          3166</a> (countries). NOTE: The ISO 639/ISO 3166 convention is that
-          language names are written in lower case, while country codes are written
-          in upper case. FOP does not check whether the language and country specified
-          in the FO source are actually from the current standard, but it relies
-          on it being two letter strings in a few places. So you can make up your
-          own codes for custom hyphenation patterns, but they should be two
-          letter strings too (patches for proper handling extensions are welcome)</li>
-        <li>There are basically three ways to make the FOP-compatible hyphenation pattern 
-          file(s) accessible to FOP:
-          <ul>
-            <li>Download the precompiled JAR from <a class="fork" href="http://offo.sourceforge.net/hyphenation/index.html">OFFO
-            </a> and place it either in the <code>{fop-dir}/lib</code> directory, or 
-             in a directory of your choice (and append the full path to the JAR to 
-             the environment variable <code>FOP_HYPHENATION_PATH</code>).</li>
-            <li>Download the desired FOP-compatible hyphenation pattern file(s) from 
-             <a class="fork" href="http://offo.sourceforge.net/hyphenation/index.html">OFFO</a>,
-             and/or take your self created hyphenation pattern file(s), 
-             <ul>
-                <li>place them in the directory <code>{fop-dir}/hyph</code>, </li>
-                <li>or place them in a directory of your choice and set the Ant variable
-                <code>user.hyph.dir</code> to point to that directory (in
-                <code>build-local.properties</code>),</li>
-             </ul>
-             and run Ant with build target
-             <code>jar-hyphenation</code>. This will create a JAR containing the 
-             compiled patterns in <code>{fop-dir}/build</code> that will be added to the 
-             classpath on the next run.
-             (When FOP is built from scratch, and there are pattern source file(s) 
-             present in the directory pointed to by the
-             <code>user.hyph.dir</code> variable, this JAR will automatically 
-             be created from the supplied pattern(s)).</li>
-            <li>Put the pattern source file(s) into a directory of your choice and 
-             configure FOP to look for custom patterns in this directory, by setting the
-             <a href="configuration.html#hyphenation-dir">&lt;hyphenation-dir&gt;</a> 
-             configuration option.</li>
-          </ul>
-        </li>
-      </ol>
-      <warning>
-        Either of these three options will ensure hyphenation is working when using
-        FOP from the command-line. If FOP is being embedded, remember to add the location(s)
-        of the hyphenation JAR(s) to the CLASSPATH (option 1 and 2) or to set the 
-        <a href="configuration.html#hyphenation-dir">&lt;hyphenation-dir&gt;</a> 
-        configuration option programmatically (option 3).
-      </warning>
-    </section>
-  </section>
-  <section id="patterns">
-    <title>Hyphenation Patterns</title>
-    <p>If you would like to build your own hyphenation pattern files, or modify
-     existing ones, this section will help you understand how to do so. Even
-     when creating a pattern file from scratch, it may be beneficial to start
-     with an existing file and modify it. See <a class="fork" href="http://offo.sourceforge.net/hyphenation/index.html">
-     OFFO's Hyphenation page</a> for examples. 
-     Here is a brief explanation of the contents of FOP's hyphenation patterns:</p>
-    <warning>The remaining content of this section should be considered "draft"
-     quality. It was drafted from theoretical literature, and has not been
-     tested against actual FOP behavior. It may contain errors or omissions.
-     Do not rely on these instructions without testing everything stated here.
-     If you use these instructions, please provide feedback on the
-     <a href="../maillist.html#fop-user">FOP User mailing list</a>, either
-     confirming their accuracy, or raising specific problems that we can
-     address.</warning>
-    <ul>
-      <li>The root of the pattern file is the &lt;hyphenation-info> element.</li>
-      <li>&lt;hyphen-char>: its attribute "value" contains the character signalling
-       a hyphen in the &lt;exceptions> section. It has nothing to do with the
-       hyphenation character used in FOP, use the XSLFO hyphenation-character
-       property for defining the hyphenation character there. At some points
-       a dash U+002D is hardwired in the code, so you'd better use this too
-       (patches to rectify the situation are welcome). There is no default,
-       if you declare exceptions with hyphenations, you must declare the
-       hyphen-char too.</li>
-      <li>&lt;hyphen-min> contains two attributes:
-        <ul>
-          <li>before: the minimum number of characters in a word allowed to exist
-           on a line immediately preceding a hyphenated word-break.</li>
-          <li>after: the minimum number of characters in a word allowed to exist
-           on a line immediately after a hyphenated word-break.</li>
-        </ul>
-        This element is unused and not even read. It should be considered a
-        documentation for parameters used during pattern generation.
-      </li>
-      <li>&lt;classes> contains whitespace-separated character sets. The members
-       of each set should be treated as equivalent for purposes of hyphenation,
-       usually upper and lower case of the same character. The first character
-       of the set is the canonical character, the patterns and exceptions
-       should only contain these canonical representation characters (except
-       digits for weight, the period (.) as word delimiter in the patterns and
-       the hyphen char in exceptions, of course).</li>
-      <li>&lt;exceptions> contains whitespace-separated words, each of which
-       has either explicit hyphen characters to denote acceptable breakage
-       points, or no hyphen characters, to indicate that this word should
-       never be hyphenated, or contain explicit &lt;hyp> elements for specifying
-       changes of spelling due to hyphenation (like backen -> bak-ken or
-       Stoffarbe -> Stoff-farbe in the old german spelling). Exceptions override
-       the patterns described below. Explicit &lt;hyp> declarations don't work
-       yet (patches welcome). Exceptions are generally a bit brittle, test
-       carefully.</li>
-      <li>&lt;patterns> includes whitespace-separated patterns, which are what
-       drive most hyphenation decisions. The characters in these patterns are
-       explained as follows:
-        <ul>
-          <li>non-numeric characters represent characters in a sub-word to be
-           evaluated</li>
-          <li>the period character (.) represents a word boundary, i.e. either
-           the beginning or ending of a word</li>
-          <li>numeric characters represent a scoring system for indicating the
-           acceptability of a hyphen in this location. Odd numbers represent an
-           acceptable location for a hyphen, with higher values overriding lower
-           inhibiting values. Even numbers indicate an unacceptable location, with
-           higher values overriding lower values indicating an acceptable position.
-           A value of zero (inhibiting) is implied when there is no number present.
-           Generally patterns are constructed so that valuse greater than 4 are rare.
-           Due to a bug currently patterns with values of 8 and greater don't
-           have an effect, so don't wonder.</li>
-        </ul>
-        Here are some examples from the English patterns file:
-        <ul>
-          <li>Knuth (<em>The TeXBook</em>, Appendix H) uses the example <strong>hach4</strong>, which indicates that it is extremely undesirable to place a hyphen after the substring "hach", for example in the word "toothach-es".</li>
-          <li><strong>.leg5e</strong> indicates that "leg-e", when it occurs at the beginning of a word, is a very good place to place a hyphen, if one is needed. Words like "leg-end" and "leg-er-de-main" fit this pattern.</li>
-        </ul>
-        Note that the algorithm that uses this data searches for each of the word's substrings in the patterns, and chooses the <em>highest</em> value found for letter combination.
-      </li>
-    </ul>
-    <p>If you want to convert a TeX hyphenation pattern file, you have to undo
-     the TeX encoding for non-ASCII text. FOP uses Unicode, and the patterns
-     must be proper Unicode too. You should be aware of the XML encoding issues,
-     preferably use a good Unicode editor.</p>
-    <p>Note that FOP does not do Unicode character normalization. If you use
-     combining chars for accents and other character decorations, you must
-     declare character classes for them, and use the same sequence of base character
-     and combining marks in the XSLFO source, otherwise the pattern wouldn't match.
-     Fortunately, Unicode provides precomposed characters for all important cases
-     in common languages, until now nobody run seriously into this issue. Some dead
-     languages and dialects, especially ancient ones, may pose a real problem
-     though.</p>
-    <p>If you want to generate your own patterns, an open-source utility called
-     patgen is available on many Unix/Linux distributions and every TeX
-     distribution which can be used to assist in
-     creating pattern files from dictionaries. Pattern creation for languages like
-     english or german is an art. If you can, read Frank Liang's original paper
-     "Word Hy-phen-a-tion by Com-pu-ter" (yes, with hyphens). It is not available
-     online. The original patgen.web source, included in the TeX source distributions,
-     contains valuable comments, unfortunately technical details obscure often the
-     high level issues. Another important source is
-     <a class="fork" href="http://www.ctan.org/tex-archive/systems/knuth/tex/texbook.tex">The
-     TeX Book</a>, appendix H (either read the TeX source, or run it through
-     TeX to typeset it). Secondary articles, for example the works by Petr Sojka,
-     may also give some much needed insight into problems arising in automated
-     hyphenation.</p>
-  </section>
-  </body>
-</document>
diff --git a/src/documentation/content/xdocs/0.90/index.xml b/src/documentation/content/xdocs/0.90/index.xml
deleted file mode 100644 (file)
index 0fac1c7..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Apache FOP 0.90 alpha 1</title>
-    <version>$Revision: 201586 $</version>
-  </header>
-  <body>
-    <section id="intro">
-      <title>Introduction</title>
-      <p>
-        The Apache FOP team is proud to present to you the largely rewritten codebase which is 
-        finally in a state where you can start to use it. It has taken over three years to get this
-        far and over two years without a new release from the FOP project. We would like to encourage 
-        you to download the code and to play with it. We're still in the process of adding new major
-        features and stabilizing the code. We welcome any feedback you might have and even more, any
-        other form of help to get the project forward.
-      </p>
-    </section>
-    <section id="upgrading">
-      <title>Upgrading from an earlier version</title>
-      <p>
-        If you're upgrading to this version from an earlier version of FOP, please read the 
-        information contained on the <a href="upgrading.html">Upgrading page</a>!
-      </p>
-    </section>
-    <section id="download">
-      <title>Download</title>
-      <p>
-        To download this version, please visit the <a href="../download.html">download page</a>.
-      </p>
-    </section>
-  </body>
-</document>
diff --git a/src/documentation/content/xdocs/0.90/output.xml b/src/documentation/content/xdocs/0.90/output.xml
deleted file mode 100644 (file)
index d2aed60..0000000
+++ /dev/null
@@ -1,378 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<!-- Output Formats: Renderers -->
-<document>
-  <header>
-    <title>Apache FOP Output Formats</title>
-    <version>$Revision$</version>
-    <authors>
-      <person name="Keiron Liddle" email="keiron@aftexsw.com"/>
-      <person name="Art Welch" email=""/>
-    </authors>
-  </header>
-
-  <body>
-    <p>
-      FOP supports multiple output formats by using a different renderer for each format.
-      The renderers do not all have the same set of capabilities, sometimes because of 
-      the output format itself, sometimes because some renderers get more development 
-      attention than others.
-    </p>
-    <section id="general">
-      <title>General Information</title>
-      <section id="general-fonts">
-        <title>Fonts</title>
-        <p>
-          Most FOP renderers use a FOP-specific system for font registration.
-          However, the Java2D/AWT and print renderers use the Java AWT package, which gets its 
-          font information from the operating system registration.
-          This can result in several differences, including actually using different fonts, 
-          and having different font metrics for the same font.
-          The net effect is that the layout of a given FO document can be quite different between 
-          renderers that do not use the same font information.
-        </p>
-      </section>
-      <section id="general-direct-output">
-        <title>Output to a Printer or Other Device</title>
-        <p>
-          The most obvious way to print your document is to use the FOP 
-          <a href="#print">print renderer</a>, which uses the Java2D API (AWT).
-          However, you can also send output from the Postscript renderer directly to a Postscript 
-          device, or output from the PCL renderer directly to a PCL device.
-        </p>
-        <p>
-          Here are Windows command-line examples for Postscript and PCL:
-        </p>
-        <source><![CDATA[fop ... -ps \\computername\printer]]></source>
-        <source><![CDATA[fop ... -pcl \\computername\printer]]></source>
-        <p>
-          Here is some Java code to accomplish the task in UNIX:
-        </p>
-        <source><![CDATA[proc = Runtime.getRuntime().exec("lp -d" + print_queue + " -o -dp -");
-out = proc.getOutputStream();]]></source>
-        <p>
-          Set the OutputStream (out) to the PCLRenderer and it happily sends the
-          PCL to the UNIX printer queue.
-        </p>
-      </section>
-    </section>
-    <section id="pdf">
-      <title>PDF</title>
-      <p>
-        PDF is the best supported output format. It is also the most accurate
-        with text and layout. This creates a PDF document that is streamed out
-        as each page is rendered. This means that the internal page index
-        information is stored near the end of the document.
-        The PDF version supported is 1.4. PDF versions are forwards/backwards
-        compatible.
-      </p>
-      <p>
-        Note that FOP does not currently support "tagged PDF", PDF/X or PDF/A.
-      </p>
-      <section id="pdf-fonts">
-        <title>Fonts</title>
-        <p>
-          PDF has a set of fonts that are always available to all PDF viewers,
-          to quote from the PDF Specification:
-
-          <em>"PDF prescribes a set of 14 standard fonts that can be used without prior
-          definition.
-          These include four faces each of three Latin text typefaces (Courier,
-          Helvetica, and Times), as well as two symbolic fonts (Symbol and ITC Zapf
-          Dingbats). These fonts, or suitable substitute fonts with the same metrics, are
-          guaranteed to be available in all PDF viewer applications."</em>
-        </p>
-      </section>
-      <section id="pdf-postprocess">
-        <title>Post-processing</title>
-        <p>
-          FOP does not currently support several desirable PDF features: XMP metadata and watermarks. 
-          One workaround is to use Adobe Acrobat (the full version, not the Reader) to process 
-          the file manually or with scripting that it supports.
-        </p>
-        <p>
-          Another popular post-processing tool is <a href="http://www.lowagie.com/iText">iText</a>, 
-          which has tools for adding security features, document properties, watermarks, and many 
-          other features to PDF files.
-        </p>
-        <warning>
-          Caveat: iText may swallow PDF bookmarks. But 
-          <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=37589">Jens Stavnstrup tells us</a>
-          that this doesn't happen if you use iText's PDFStamper.
-        </warning>
-        <p>
-          Here is some sample code that uses iText to encrypt a FOP-generated PDF. (Note that FOP now 
-          supports <a href="pdfencryption.html">PDF encryption</a>. However the principles for using 
-          iText for other PDF features are similar.)
-        </p>
-        <source><![CDATA[public static void main(String args[]) {
-  try {
-    ByteArrayOutputStream fopout = new ByteArrayOutputStream();
-    FileOutputStream outfile = new FileOutputStream(args[2]);
-    Fop fop = new Fop(Constants.RENDER_PDF);
-    fop.setOutputStream(fopout);
-    
-    Transformer transformer = TransformerFactory.newInstance().newTransformer(
-        new StreamSource(new File(args[1])));
-    transformer.transform(new StreamSource(new File(args[0])),
-        new SAXResult(fop.getDefaultHandler()));
-    PdfReader reader = new PdfReader(fopout.toByteArray());
-    int n = reader.getNumberOfPages();
-    Document document = new Document(reader.getPageSizeWithRotation(1));
-    PdfWriter writer = PdfWriter.getInstance(document, outfile);
-    writer.setEncryption(PdfWriter.STRENGTH40BITS, "pdf", null,
-      PdfWriter.AllowCopy);
-    document.open();
-    PdfContentByte cb = writer.getDirectContent();
-    PdfImportedPage page;
-    int rotation;
-    int i = 0;
-    while (i < n) {
-      i++;
-      document.setPageSize(reader.getPageSizeWithRotation(i));
-      document.newPage();
-      page = writer.getImportedPage(reader, i);
-      rotation = reader.getPageRotation(i);
-      if (rotation == 90 || rotation == 270) {
-        cb.addTemplate(page, 0, -1f, 1f, 0, 0,
-        reader.getPageSizeWithRotation(i).height());
-      } else {
-        cb.addTemplate(page, 1f, 0, 0, 1f, 0, 0);
-      }
-      System.out.println("Processed page " + i);
-    }
-    document.close();
-  } catch( Exception e) {
-    e.printStackTrace();
-  }
-}]]></source>
-    <p>
-      Check the iText tutorial and documentation for setting access flags, password, 
-      encryption strength and other parameters.
-    </p>
-  </section>
-  <section id="pdf-watermark">
-    <title>Watermarks</title>
-    <p>
-      In addition to the <a href="#pdf-postprocess">PDF Post-processing</a> options, consider the following workarounds:
-    </p>
-    <ul>
-      <li>
-        Use a background image for the body region.
-      </li>
-      <li>
-        (submitted by Trevor Campbell) Place an image in a
-        region that overlaps the flowing text. For example, make
-        region-before large enough to contain your image. Then include a
-        block (if necessary, use an absolutely positioned block-container)
-        containing the watermark image in the static-content for the
-        region-before. Note that the image will be drawn on top of the
-        normal content.
-      </li>
-    </ul>
-  </section>
-</section>
-<section id="ps">
-  <title>PostScript</title>
-  <p>
-    The PostScript renderer has been brought up to a similar quality as the 
-    PDF renderer, but may still be missing certain features. It provides good 
-    support for most text and layout.
-    Images and SVG are not fully supported, yet. Currently, the PostScript
-    renderer generates PostScript Level 3 with most DSC comments. Actually,
-    the only Level 3 feature used is FlateDecode, everything else is Level 2.
-  </p>
-  <section id="ps-limitations">
-    <title>Limitations</title>
-    <ul>
-      <li>Images and SVG may not be display correctly. SVG support is far from being complete. No image transparency is available.</li>
-      <li>Only Type 1 fonts are supported.</li>
-      <li>Multibyte characters are not supported.</li>
-      <li>PPD support is still missing.</li>
-      <li>The renderer is not yet configurable.</li>
-    </ul>
-  </section>
-</section>
-<section id="rtf">
-  <title>RTF</title>
-  <p>
-    JFOR, an open source XSL-FO to RTF converter has been integrated into Apache FOP.
-    This will create an RTF (rich text format) document that will
-    attempt to contain as much information from the fo document as
-    possible. The RTF output follows Microsoft's RTF specifications
-    and produces best results on Microsoft Word.
-  </p>
-</section>
-<section id="xml">
-  <title>XML (Area Tree XML)</title>
-  <p>
-    This is for testing and verification. The XML created is simply
-    a representation of the internal area tree put into XML. It does
-    not perform any other purpose.
-  </p>
-</section>
-<section id="awt">
-  <title>Java2D/AWT</title>
-    <warning>The Java2D/AWT, Print and Bitmap renderers may not yet fully work as expected. There are some known bugs and missing features.</warning>
-    <p>
-      The AWT viewer shows a window with the pages displayed inside a
-      Java graphic. It displays one page at a time.
-      The fonts used for the formatting and viewing depend on the fonts
-      available to your JRE.
-    </p>
-</section>
-<section id="print">
-  <title>Print</title>
-  <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>
-</section>
-<section id="bitmap">
-  <title>Bitmap (TIFF/PNG)</title>
-  <p>
-    It is possible to directly create bitmap images from the individual 
-    pages generated by the layout engine.
-    This is done with the same code that renders to the Java2D/AWT renderer.
-  </p>
-  <p>
-    Currently, two output formats are supported: PNG and TIFF. TIFF produces
-    one file with multiple pages, while PNG output produces one file per
-    page. The quality of the bitmap depends on the resolution setting on the
-    FOUserAgent.
-  </p>
-</section>
-<section id="txt">
-  <title>TXT</title>
-  <p>
-    The text renderer produces plain ASCII text output
-    that attempts to match the output of the PDFRenderer as closely as
-    possible. This was originally developed to accommodate an archive system
-    that could only accept plain text files, and is primarily useful for getting
-    a quick-and-dirty view of the document text. The renderer is very limited,
-    so do not be surprised if it gives unsatisfactory results.
-  </p>
-  <p>
-    The Text renderer works with a fixed size page buffer. The size of this
-    buffer is controlled with the textCPI and textLPI public variables.
-    The textCPI is the effective horizontal characters per inch to use.
-    The textLPI is the vertical lines per inch to use. From these values
-    and the page width and height the size of the buffer is calculated.
-    The formatting objects to be rendered are then mapped to this grid.
-    Graphic elements (lines, borders, etc) are assigned a lower priority
-    than text, so text will overwrite any graphic element representations.
-  </p>
-  <p>
-    Because FOP lays the text onto a grid during layout, there are frequently 
-    extra or missing spaces between characters and lines, which is generally 
-    unsatisfactory.
-    Users have reported that the optimal settings to avoid such spacing problems are:
-  </p>
-  <ul>
-    <li>font-family="Courier"</li>
-    <li>font-size="7.3pt"</li>
-    <li>line-height="10.5pt"</li>
-  </ul>
-</section>
-<section id="sandbox">
-  <title>Output Formats in the Sandbox</title>
-  <p>
-    Due to the state of certain renderers we moved some of them to a "sandbox" area until 
-    they are ready for more serious use. The renderers and FOEventHandlers in the sandbox
-    can be found under src/sandbox and are compiled into build/fop-sandbox.jar during the
-    main build. The output formats in the sandbox are marked as such below.
-  </p>
-  <section id="pcl">
-    <title>PCL</title>
-    <warning>The PCL Renderer is in the sandbox and not yet functional in FOP Trunk!!! Please help us ressurrect this feature.</warning>
-    <p>
-      This format is for the Hewlett-Packard PCL printers.
-      It should produce output as close to identical as possible to the
-      printed output of the PDFRenderer within the limitations of the
-      renderer, and output device.
-    </p>
-    <!--p>
-      The output created by the PCLRenderer is generic PCL 5 as documented
-      in the "HP PCL 5 Printer Language Technical Reference Manual" (copyright 1990).
-      This should allow any device fully supporting PCL 5 to be able to
-      print the output generated by the PCLRenderer.
-    </p>
-    <section id="pcl-limitations">
-      <title>Limitations</title>
-      <ul>
-        <li>Text or graphics outside the left or top of the printable area are not rendered properly. In general things that should print to the left of the printable area are shifted to the right so that they start at the left edge of the printable area and an error message is generated.</li>
-        <li>The Helvetica and Times fonts are not well supported among PCL printers so Helvetica is mapped to Arial and Times is mapped to Times New. This is done in the PCLRenderer, no changes are required in the FO's. The metrics and appearance for Helvetica/Arial and Times/Times New are nearly identical, so this has not been a problem so far.</li>
-        <li>Only the original fonts built into FOP are supported.</li>
-        <li>For the non-symbol fonts, the ISO 8859/1 symbol set is used (PCL set "0N").</li>
-        <li>Multibyte characters are not supported.</li>
-        <li>SVG is not supported.</li>
-        <li>Images print black and white only (not dithered). When the renderer prints a color image it uses a threshold value, colors above the threshold are printed as white and below are black. If you need to print a non-monochrome image you should dither it first.</li>
-        <li>Image scaling is accomplished by modifying the effective resolution of the image data. The available resolutions are 75, 100, 150, 300, and 600 DPI.</li>
-        <li>Color printing is not supported. Colors are rendered by mapping the color intensity to one of the PCL fill shades (from white to black in 9 steps).</li>
-      </ul>
-    </section>
-
-    <section id="pcl-additional">
-      <title>Additional Features</title>
-      <p>There are some special features that are controlled by some public variables on the PCLRenderer class.</p>
-
-      <dl>
-        <dt>orientation</dt>
-        <dd>The logical page orientation is controlled by the public orientation variable. Legal values are:-->
-          <!--ul>
-            <li>0 Portrait</li>
-            <li>1 Landscape</li>
-            <li>2 Reverse Portrait</li>
-            <li>3 Reverse Landscape</li>
-          </ul-->
-        <!--/dd>
-        <dt>curdiv, paperheight</dt>
-        <dd>The curdiv and paperheight variables allow multiple virtual pages to be printed on a piece of paper. This allows a standard laser printer to use perforated paper where every perforation will represent an individual page. The paperheight sets the height of a piece of paper in decipoints. This will be divided by the page.getHeight() to determine the number of equal sized divisions (pages) that will fit on the paper. The curdiv variable may be read/written to get/set the current division on the page (to set the starting division and read the ending division for multiple invocations).</dd>
-        <dt>topmargin, leftmargin</dt>
-        <dd>The topmargin and leftmargin may be used to increase the top and left margins for printing.</dd>
-      </dl>
-    </section-->
-  </section>
-  <section id="mif">
-    <title>MIF</title>
-    <warning>The MIF handler is in the sandbox and not yet functional in FOP Trunk!!! Please help us ressurrect this feature.</warning>
-    <p>
-      This format is the Maker Interchange Format which is used by
-      Adobe Framemaker.
-    </p>
-   </section>
-   <section id="svg">
-     <title>SVG</title>
-     <warning>The SVG renderer is in the sandbox and may not work as expected in FOP Trunk!!! Please help us improve this feature.</warning>
-     <p>
-       This format creates an SVG document that has links between the pages.
-       This is primarily for slides and creating svg images of pages.
-       Large documents will create SVG files that are far too large for
-       and SVG viewer to handle. Since FO documents usually have text the
-       SVG document will have a large number of text elements.
-       The font information for the text is obtained from the JVM in the
-       same way as the AWT viewer, if the SVG is view where the fonts are
-       different, such as another platform, then the page may appear wrong.
-     </p>
-   </section>
-</section>
-
-  </body>
-</document>
-
diff --git a/src/documentation/content/xdocs/0.90/pdfencryption.xml b/src/documentation/content/xdocs/0.90/pdfencryption.xml
deleted file mode 100755 (executable)
index f0d717f..0000000
+++ /dev/null
@@ -1,221 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>PDF encryption.</title>
-    <version>$Revision$</version>
-    <authors>
-      <person name="J.Pietschmann" email="pietsch@apache.org"/>
-      <person name="Jeremias Märki" email="jeremias@apache.org"/>
-    </authors>
-  </header>
-  <body>
-    <section>
-      <title>Overview</title>
-      <warning>
-        PDF Encryption is available in Release 0.20.5 and later. The comments on this page do 
-        not apply to releases earlier than 0.20.5.
-      </warning>
-      <p>
-        FOP supports encryption of PDF output, thanks to Patrick
-        C. Lankswert. This feature is commonly used to prevent
-        unauthorized viewing, printing, editing, copying text from the
-        document and doing annotations. It is also possible to ask the
-        user for a password in order to view the contents. Note that
-        there already exist third party applications which can decrypt
-        an encrypted PDF without effort and allow the aforementioned
-        operations, therefore the degree of protection is limited.
-      </p>
-      <p>
-        For further information about features and restrictions regarding PDF
-        encryption, look at the documentation coming with Adobe Acrobat or the
-        technical documentation on the Adobe web site.
-      </p>
-    </section>
-    <section>
-      <title>Usage (command line)</title>
-      <p>
-        Encryption is enabled by supplying any of the encryption related
-        options.
-      </p>
-      <p>
-        An owner password is set with the <code>-o</code> option. This
-        password is actually used as encryption key. Many tools for
-        PDF processing ask for this password to disregard any
-        restriction imposed on the PDF document.
-      </p>
-      <p>
-        If no owner password has been supplied but FOP was asked to apply some
-        restrictions, a random password is used. In this case it is obviously
-        impossiible to disregard restrictions in PDF processing tools.
-      </p>
-      <p>
-        A user password, supplied with the <code>-u</code> option, will
-        cause the PDF display software to ask the reader for this password in
-        order to view the contents of the document. If no user password was
-        supplied, viewing the content is not restricted.
-      </p>
-      <p>
-        Further restrictions can be imposed by using the <code>-noprint</code>,
-        <code>-nocopy</code>, <code>-noedit</code> and
-        <code>-noannotations</code> options, which disable printing, copying
-        text, editing in Adobe Acrobat and making annotations, respectively.
-      </p>
-    </section>
-    <section>
-      <title>Usage (embedded)</title>
-      <p>
-        When FOP is embedded in another Java application you need to set an 
-        options map on the renderer. These are the supported options:
-      </p>
-      <table>
-        <tr>
-          <th>Option</th>
-          <th>Description</th>
-          <th>Values</th>
-          <th>Default</th>
-        </tr>
-        <tr>
-          <td>ownerPassword</td>
-          <td>The owner password</td>
-          <td>String</td>
-          <td/>
-        </tr>
-        <tr>
-          <td>userPassword</td>
-          <td>The user password</td>
-          <td>String</td>
-          <td/>
-        </tr>
-        <tr>
-          <td>allowPrint</td>
-          <td>Allows/disallows printing of the PDF</td>
-          <td>"TRUE" or "FALSE"</td>
-          <td>"TRUE"</td>
-        </tr>
-        <tr>
-          <td>allowCopyContent</td>
-          <td>Allows/disallows copy/paste of content</td>
-          <td>"TRUE" or "FALSE"</td>
-          <td>"TRUE"</td>
-        </tr>
-        <tr>
-          <td>allowEditContent</td>
-          <td>Allows/disallows editing of content</td>
-          <td>"TRUE" or "FALSE"</td>
-          <td>"TRUE"</td>
-        </tr>
-        <tr>
-          <td>allowEditAnnotations</td>
-          <td>Allows/disallows editing of annotations</td>
-          <td>"TRUE" or "FALSE"</td>
-          <td>"TRUE"</td>
-        </tr>
-      </table>
-      <note>
-        Encryption is enabled as soon as one of these options is set.
-      </note>
-      <p>
-        An example to enable PDF encryption in Java code:
-      </p>
-      <source><![CDATA[
-import org.apache.fop.pdf.PDFEncryptionParams;
-
-[..]
-
-FOUserAgent userAgent = new FOUserAgent();
-useragent.setPDFEncryptionParams(new PDFEncryptionParams(
-    null, "password", false, false, true, true));
-Fop fop = new Fop(Constants.RENDER_PDF, userAgent);
-driver.setOutputStream(...]]></source>
-      <p>
-        The parameters for the constructor of PDFEncryptionParams are:
-      </p>
-      <ol>
-        <li>userPassword: String, may be null</li>
-        <li>ownerPassword: String, may be null</li>
-        <li>allowPrint: true if printing is allowed</li>
-        <li>allowCopyContent: true if copying content is allowed</li>
-        <li>allowEditContent: true if editing content is allowed</li>
-        <li>allowEditAnnotations: true if editing annotations is allowed</li>
-      </ol>
-    </section>
-    <section>
-      <title>Environment</title>
-      <p>
-        In order to use PDF encryption, FOP has to be compiled with
-        cryptography support. Currently, only <a
-        href="http://java.sun.com/j2se/1.4/docs/guide/security/jce/JCERefGuide.html">JCE</a>
-        is supported. JCE is part of JDK 1.4. For earlier JDKs, it can
-        be installed separately. The build process automatically
-        detects JCE presence and installs PDF encryption support if
-        possible, otherwise a stub is compiled in.
-      </p>
-      <p>
-        Cryptography support must also be present at run time. In particular, a
-        provider for the RC4 cipher is needed. Unfortunately, the sample JCE
-        provider in Sun's JDK 1.4 does <strong>not</strong> provide RC4. If you
-        get a message saying
-      </p>
-      <source>"Cannot find any provider supporting RC4"</source>
-      <p>
-        then you don't have the needed infrastructure.
-      </p>
-      <p>
-        There are several commercial and a few Open Source packages which
-        provide RC4. A pure Java implementation is produced by <a
-        href="http://www.bouncycastle.org/">The Legion of the Bouncy
-        Castle</a>. <a
-        href="http://www.mozilla.org/projects/security/pki/jss/">Mozilla
-        JSS</a> is an interface to a native implementation.
-      </p>
-    </section>
-    <section id="install_crypto">
-      <title>Installing a crypto provider</title>
-      <p>
-        The pure Java implementation from <a
-        href="http://www.bouncycastle.org/">Bouncy Castle</a> is easy to
-        install.
-      </p>
-      <ol>
-        <li>
-          Download the binary distribution for your JDK version. If you have JDK
-          1.3 or earlier you must also download a JCE from the same page.
-        </li>
-        <li>
-          Unpack the distribution. Add the jar file to your classpath. A
-          convenient way to use the jar on Linux is to simply drop it into the
-          FOP lib directory, it will be automatically picked up by
-          <code>fop.sh</code>.  If you have JDK 1.3 or earlier don't forget to
-          install the JCE as well.
-        </li>
-        <li>
-          Open the <code>java.security</code> file and add<br/>
-          <code>security.provider.6=org.bouncycastle.jce.provider.BouncyCastleProvider</code>,<br/>
-          preferably at the end of the block defining the other crypto
-          providers. For JDK 1.4 this is detailed on <a href="http://java.sun.com/j2se/1.4/docs/guide/security/jce/JCERefGuide.html#InstallProvider">Sun's web site</a>.
-        </li>
-      </ol>
-      <p>
-        If you have any experience with Mozilla JSS or any other
-        cryptography provider, please post it to the fop-user list.
-      </p>
-    </section>
-  </body>
-</document>
diff --git a/src/documentation/content/xdocs/0.90/running.xml b/src/documentation/content/xdocs/0.90/running.xml
deleted file mode 100644 (file)
index 3eccf68..0000000
+++ /dev/null
@@ -1,277 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Running Apache FOP</title>
-    <version>$Revision$</version>
-  </header>
-
-  <body>
-    <section id="require">
-      <title>System Requirements</title>
-      <p>The following software must be installed:</p>
-      <ul>
-        <li>Java 1.3.x or later Runtime Environment.</li>
-        <li>
-          Apache FOP. The <a href="../download.html">FOP distribution</a> includes all libraries that you will 
-          need to run a basic FOP installation. These can be found in the [fop-root]/lib directory. These 
-          libraries include the following:
-          <ul>
-            <li>
-              A JAXP-compatible XML Parser (FOP comes with <a class="fork" href="ext:xerces">Apache Xerces-J</a>).
-            </li>
-            <li>
-              A JAXP-compatible XSLT Processor (FOP comes with <a class="fork" href="ext:xalan">Apache Xalan-J</a>).
-            </li>
-            <li><a class="fork" href="ext:batik">Apache Batik</a>, an SVG library.</li>
-            <li><a class="fork" href="ext:jakarta/commons/logging">Apache Jakarta Commons Logging</a>, a logger abstraction kit.</li>
-            <li><a class="fork" href="ext:jakarta/commons/io">Apache Jakarta Commons IO</a>, a library with I/O utilities.</li>
-            <li><a class="fork" href="ext:excalibur/framework">Apache Excalibur/Avalon Framework</a>, for XML configuration handling.</li>
-          </ul>
-        </li>
-      </ul>
-      <p>The following software is optional, depending on your needs:</p>
-      <ul>
-        <li>
-          Graphics libraries. Support for some graphics formats requires additional packages. See 
-          <a href="graphics.html">FOP: Graphics Formats</a> for details.
-        </li>
-        <li>
-          PDF encryption. See <a href="pdfencryption.html">FOP: PDF Encryption</a> for details.
-        </li>
-      </ul>
-      <p>In addition, the following system requirements apply:</p>
-      <ul>
-        <li>
-          If you will be using FOP to process SVG, you must do so in a graphical environment. 
-          See <a href="graphics.html#batik">FOP: Graphics (Batik)</a> for details.
-        </li>
-      </ul>
-    </section>
-    <section id="install">
-      <title>Installation</title>
-      <section id="install-instruct">
-        <title>Instructions</title>
-        <p>
-          Basic FOP installation consists of first unzipping the <code>.gz</code> file that is the 
-          distribution medium, then unarchiving the resulting <code>.tar</code> file in a 
-          directory/folder that is convenient on your system. Please consult your operating system 
-          documentation or Zip application software documentation for instructions specific to your 
-          site.
-        </p>
-      </section>
-      <section id="install-problems">
-        <title>Problems</title>
-        <p>
-          Some Mac OSX users have experienced filename truncation problems using Stuffit to unzip 
-          and unarchive their distribution media. This is a legacy of older Mac operating systems, 
-          which had a 31-character pathname limit. Several Mac OSX users have recommended that 
-          Mac OSX users use the shell command <code>tar -xzf</code> instead.
-        </p>
-      </section>
-    </section>
-    <section id="standalone-start">
-      <title>Starting FOP as a Standalone Application</title>
-      <p>
-        The usual and recommended practice for starting FOP from the command line is to run the 
-        batch file fop.bat (Windows) or the shell script fop (Unix/Linux).
-        If you write your own scripts, be sure to review these standard scripts to make sure that 
-        you get your environment properly configured.
-      </p>
-      <p>
-        The standard scripts for starting FOP require that the environment variable JAVA_HOME be 
-        set to a path pointing to the appropriate Java installation on your system. Macintosh OSX 
-        includes a Java environment as part of its distribution. We are told by Mac OSX users that 
-        the path to use in this case is <code>/Library/Java/Home</code>. <strong>Caveat:</strong>
-        We suspect that, as Apple releases new Java environments and as FOP upgrades the minimum 
-        Java requirements, the two will inevitably not match on some systems. Please see 
-        <a href="http://developer.apple.com/java/faq">Java on Mac OSX FAQ</a> for information as 
-        it becomes available.
-      </p>
-      <p>
-        As an alternative to the start scripts you can run "java -jar build/fop.jar" in which case
-        FOP tries to build the classpath for running FOP dynamically. Please note, that this might
-        not always work as expected.
-      </p>
-      <source><![CDATA[
-USAGE
-Fop [options] [-fo|-xml] infile [-xsl file] [-awt|-pdf|-mif|-rtf|-tiff|-png|-pcl|-ps|-txt|-at|-print] <outfile>
- [OPTIONS]
-  -d          debug mode
-  -x          dump configuration settings
-  -q          quiet mode
-  -c cfg.xml  use additional configuration file cfg.xml
-  -l lang     the language to use for user information
-  -r          relaxed/less strict validation (where available)
-  -dpi xxx    resolution in dots per inch (dpi) where xxx is a number
-  -s          for area tree XML, down to block areas only
-  -v          to show FOP version being used
-
- [INPUT]
-  infile            xsl:fo input file (the same as the next)
-  -fo  infile       xsl:fo input file
-  -xml infile       xml input file, must be used together with -xsl
-  -xsl stylesheet   xslt stylesheet
-
-  -param name value <value> to use for parameter <name> in xslt stylesheet
-                    (repeat '-param name value' for each parameter)
-
- [OUTPUT]
-  outfile           input will be rendered as pdf file into outfile
-  -pdf outfile      input will be rendered as pdf file (outfile req'd)
-  -awt              input will be displayed on screen
-  -mif outfile      input will be rendered as mif file (outfile req'd)
-  -rtf outfile      input will be rendered as rtf file (outfile req'd)
-  -tiff outfile     input will be rendered as tiff file (outfile req'd)
-  -png outfile      input will be rendered as png file (outfile req'd)
-  -pcl outfile      input will be rendered as pcl file (outfile req'd)
-  -ps outfile       input will be rendered as PostScript file (outfile req'd)
-  -txt outfile      input will be rendered as text file (outfile req'd)
-  -svg outfile      input will be rendered as an svg slides file (outfile req'd)
-  -at outfile       representation of area tree as XML (outfile req'd)
-  -print            input file will be rendered and sent to the printer
-                    see options with "-print help"
-  -out mime outfile input will be rendered using the given MIME type
-                    (outfile req'd) Example: "-out application/pdf D:\out.pdf"
-                    (Tip: "-out list" prints the list of supported MIME types)
-                    
-  -foout outfile    input will only be XSL transformed. The intermediate
-                    XSL-FO file is saved and no rendering is performed.
-                    (Only available if you use -xml and -xsl parameters)
-
- [Examples]
-  Fop foo.fo foo.pdf
-  Fop -fo foo.fo -pdf foo.pdf (does the same as the previous line)
-  Fop -xml foo.xml -xsl foo.xsl -pdf foo.pdf
-  Fop -xml foo.xml -xsl foo.xsl -foout foo.fo
-  Fop foo.fo -mif foo.mif
-  Fop foo.fo -rtf foo.rtf
-  Fop foo.fo -print or Fop -print foo.fo
-  Fop foo.fo -awt]]></source>
-      <p>
-        PDF encryption is only available if FOP was compiled with encryption support 
-        <strong>and</strong> if compatible encryption support is availabe at run time. 
-        Currently, only the JCE is supported. Check the <a href="pdfencryption.html">Details</a>.
-      </p>
-    </section>
-    <section id="check-input">
-      <title>Using Xalan to Check XSL-FO Input</title>
-      <p>
-        FOP sessions that use -xml and -xsl input instead of -fo input are actually 
-        controlling two distinct conversions: Tranforming XML to XSL-FO, then formatting 
-        the XSL-FO to PDF (or another FOP output format).
-        Although FOP controls both of these processes, the first is included merely as 
-        a convenience and for performance reasons.
-        Only the second is part of FOP's core processing.
-        If a user has a problem running FOP, it is important to determine which of these 
-        two processes is causing the problem.
-        If the problem is in the first process, the user's stylesheet is likely the cause.
-        The FOP development team does not have resources to help with stylesheet issues, 
-        although we have included links to some useful 
-        <a href="../resources.html#specs">Specifications</a> and 
-        <a href="../resources.html#articles">Books/Articles</a>.
-        If the problem is in the second process, FOP may have a bug or an unimplemented 
-        feature that does require attention from the FOP development team.
-      </p>
-      <note>The user is always responsible to provide correct XSL-FO code to FOP.</note>
-      <p>
-        In the case of using -xml and -xsl input, although the user is responsible for 
-        the XSL-FO code that is FOP's input, it is not visible to the user. To make the 
-        intermediate FO file visible, the FOP distribution includes the "-foout" option 
-        which causes FOP to run only the first (transformation) step, and write the 
-        results to a file. (See also the Xalan command-line below)
-      </p>
-      <note>
-        When asking for help on the FOP mailing lists, <em>never</em> attach XML and 
-        XSL to illustrate the issue. Always run the XSLT step (-foout) and send the 
-        resulting XSL-FO file instead. Of course, be sure that the XSL-FO file is 
-        correct before sending it.
-      </note>
-      <p>
-        The -foout option works the same way as if you would call the 
-        <a href="http://xml.apache.org/xalan-j/commandline.html">Xalan command-line</a>:
-      </p>
-      <p>
-        <code>java org.apache.xalan.xslt.Process -IN xmlfile -XSL file -OUT outfile</code>
-      </p>
-      <p>
-        Note that there are some subtle differences between the FOP and Xalan command-lines.
-      </p>
-    </section>
-    <section id="memory">
-      <title>Memory Usage</title>
-      <p>
-        FOP can consume quite a bit of memory, even though this has been continually improved.
-        This is partly inherent to the formatting process and partly caused by implementation choices.
-        All FO processors currently on the market have memory problems with certain layouts.
-      </p>
-      <p>
-        If you are running out of memory when using FOP, here are some ideas that may help:
-      </p>
-      <ul>
-        <li>
-          Increase memory available to the JVM. See 
-          <a href="http://java.sun.com/j2se/1.3/docs/tooldocs/solaris/java.html">the -Xmx option</a> 
-          for more information.
-          <warning>
-            It is usually unwise to increase the memory allocated to the JVM beyond the amount of 
-            physical RAM, as this will generally cause significantly slower performance.
-          </warning>
-        </li>
-        <li>
-          Avoid forward references.
-          Forward references are references to some later part of a document.
-          Examples include page number citations which refer to pages which follow the citation, 
-          tables of contents at the beginning of a document, and page numbering schemes that 
-          include the total number of pages in the document 
-          (<a href="../faq.html#pagenum">"page N of TOTAL"</a>).
-          Forward references cause all subsequent pages to be held in memory until the reference 
-          can be resolved, i.e. until the page with the referenced element is encountered.
-          Forward references may be required by the task, but if you are getting a memory 
-          overflow, at least consider the possibility of eliminating them.
-          A table of contents could be replaced by PDF bookmarks instead or moved to the end of 
-          the document (reshuffle the paper could after printing).
-        </li>
-        <li>
-          Avoid large images, especially if they are scaled down.
-          If they need to be scaled, scale them in another application upstream from FOP.
-          For many image formats, memory consumption is driven mainly by the size of the image 
-          file itself, not its dimensions (width*height), so increasing the compression rate 
-          may help.
-        </li>
-        <li>
-          Use multiple page sequences.
-          FOP starts rendering after the end of a page sequence is encountered.
-          While the actual rendering is done page-by-page, some additional memory is 
-          freed after the page sequence has been rendered.
-          This can be substantial if the page sequence contains lots of FO elements.
-        </li>
-      </ul>
-      <p>
-        One of FOP's stated design goals is to be able to process input of arbitrary size.
-        Addressing this goal is one of the prime motivations behind the 
-        <a href="../dev/index.html">FOP Redesign</a>.
-      </p>
-    </section>
-    <section id="problems">
-      <title>Problems</title>
-      <p>If you have problems running FOP, please see the <a href="../gethelp.html">"How to get Help" page</a>.</p>
-    </section>
-  </body>
-</document>
diff --git a/src/documentation/content/xdocs/0.90/servlets.xml b/src/documentation/content/xdocs/0.90/servlets.xml
deleted file mode 100644 (file)
index 7a3f649..0000000
+++ /dev/null
@@ -1,255 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Copyright 1999-2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Servlets</title>
-    <subtitle>How to use Apache FOP in a Servlet</subtitle>
-    <version>$Revision$</version>
-  </header>
-  <body>
-    <section id="overview">
-      <title>Overview</title>
-      <p>
-        This page discusses topic all around using Apache FOP in a servlet environment.
-      </p>
-    </section>
-    <section id="example-servlets">
-      <title>Example Servlets in the FOP distribution</title>
-      <p>
-        In the directory {fop-dir}/src/java/org/apache/fop/servlet, you'll find a working example
-        of a FOP-enabled servlet.
-      </p>
-      <p>
-        The servlet is automatically built when you build Apache FOP using the supplied Ant script. After building 
-        the servlet, drop fop.war into the webapps directory of Apache Tomcat (or any other web container). Then, you can use 
-        URLs like the following to generate PDF files:
-      </p>
-      <ul>
-        <li>http://localhost:8080/fop/fop?fo=/home/path/to/fofile.fo</li>
-        <li>http://localhost:8080/fop/fop?xml=/home/path/to/xmlfile.xml&amp;xsl=/home/path/to/xslfile.xsl</li>
-      </ul>
-      <p/>
-      <p>The source code for the servlet can be found under {fop-dir}/src/java/org/apache/fop/servlet/FopServlet.java.</p>
-    </section>
-    <section id="servlet">
-      <title>Create your own Servlet</title>
-      <note>
-        This section assumes you are familiar with <a href="embedding.html">embedding FOP</a>.
-      </note>
-      <section id="minimal-servlet">
-        <title>A minimal Servlet</title>
-        <p>
-          Here is a minimal code snippet to demonstrate the basics:
-        </p>
-        <source>public void doGet(HttpServletRequest request,
-                   HttpServletResponse response) throws ServletException {
-    try {
-        response.setContentType("application/pdf");
-        Fop fop = new Fop(Constants.RENDER_PDF);
-        fop.setOutputStream(response.getOutputStream());
-        TransformerFactory factory = TransformerFactory.newInstance();
-        Transformer transformer = factory.newTransformer();
-        Source src = new StreamSource("foo.fo");
-        Result res = new SAXResult(fop.getDefaultHandler());
-        transformer.transform(src, res);
-    } catch (Exception ex) {
-        throw new ServletException(ex);
-    }
-}</source>
-        <note>
-          There are numerous problems with the code snippet above.
-          Its purpose is only to demonstrate the basic concepts.
-          See below for details.
-        </note>
-      </section>
-      <section id="xslt">
-        <title>Adding XSL tranformation (XSLT)</title>
-        <p>
-          A common requirement is the to transform an XML source to
-          XSL-FO using an XSL transformation. It is recommended to use
-          JAXP for this task. The following snippet shows the basic
-          code:
-        </p>
-        <source>
-protected TransformerFactory transformerFactory;
-
-public void init() throws ServletException {
-    this.transformerFactory = TransformerFactory.newInstance();
-}
-
-[..]
-
-    //Setup FOP
-    Fop fop = new Fop(Constants.RENDER_PDF);
-
-    //Setup a buffer to obtain the content length
-    ByteArrayOutputStream out = new ByteArrayOutputStream();
-    fop.setOutputStream(out);
-
-    //Setup Transformer
-    Source xsltSrc = new StreamSource(new File("foo-xml2fo.xsl"));
-    Transformer transformer = this.transformerFactory.newTransformer(xsltSrc);
-
-    //Make sure the XSL transformation's result is piped through to FOP
-    Result res = new SAXResult(driver.getDefaultHandler());
-
-    //Setup input
-    Source src = new StreamSource(new File("foo.xml"));
-
-    //Start the transformation and rendering process
-    transformer.transform(src, res);
-
-    //Prepare response
-    response.setContentType("application/pdf");
-    response.setContentLength(out.size());
-    
-    //Send content to Browser
-    response.getOutputStream().write(out.toByteArray());
-    response.getOutputStream().flush();</source>
-        <note>
-          Buffering the generated PDF in a ByteArrayOutputStream is done to avoid potential 
-          problems with the Acrobat Reader Plug-in in Microsoft Internet Explorer.
-        </note>
-        <p>
-          The <code>Source</code> instance used above is simply an
-          example.  If you have to read the XML from a string, supply
-          a <code>new StreamSource(new
-          StringReader(xmlstring))</code>. Constructing and reparsing
-          an XML string is generally less desirable than using a
-          SAXSource if you generate your XML.  You can alternatively
-          supply a DOMSource as well.  You may also use dynamically
-          generated XSL if you like.
-        </p>
-        <p>
-          Because you have an explicit <code>Transformer</code> object, you can also use it to 
-          explicitly set parameters for the transformation run.
-        </p>
-      </section>
-      <section id="cfg">
-        <title>Custom configuration</title>
-        <p>
-          You can easily set up your own FOUserAgent as demonstrated on the <a href="embedding.html">Embedding page</a>.
-        </p>
-      </section>
-      <section id="performance">
-        <title>Improving performance</title>
-        <p>
-          There are several options to consider:
-        </p>
-        <ul>
-          <li>
-            Instead of java.io.ByteArrayOutputStream consider using the ByteArrayOutputStream
-            implementation from the <a href="ext:jakarta/commons/io">Jakarta Commons IO project</a> which allocates less memory.
-            The full class name is: <code>org.apache.commons.io.output.ByteArrayOutputStream</code>
-          </li>
-          <li>
-            In certain cases it can help to write the generated PDF to a temporary file so
-            you can quickly reuse the file. This is especially useful, if Internet Explorer
-            calls the servlet multiple times with the same request or if you often generate
-            equal PDFs.
-          </li>
-        </ul>
-        <p>
-          Of course, the 
-          <a href="embedding.html#performance">performance hints from the Embedding page</a>
-          apply here, too.
-        </p>
-      </section>
-    </section>
-    <section id="ie">
-      <title>Notes on Microsoft Internet Explorer</title>
-      <p>
-        Some versions of Internet Explorer will not automatically show the PDF or call the servlet multiple times.
-        These are well-known limitations of Internet Explorer and are not a problem of the servlet.
-        However, Internet Explorer can still be used to download the PDF so that it can be viewed later. 
-        Here are some suggestions in this context:
-      </p>
-      <ul>
-        <li>
-          Use an URL ending in <code>.pdf</code>, like
-          <code>http://myserver/servlet/stuff.pdf</code>. Yes, the servlet can
-          be configured to handle this. If the URL has to contain parameters,
-          try to have <strong>both</strong> the base URL as well as the last parameter end in
-          <code>.pdf</code>, if necessary append a dummy parameter, like
-          <code>http://myserver/servlet/stuff.pdf?par1=a&amp;par2=b&amp;d=.pdf</code>. The
-          effect may depend on IEx version.
-        </li>
-        <li>
-          Give IEx the opportunity to cache. In particular, ensure the
-          server does not set any headers causing IEx not to cache the
-          content. This may be a real problem if the document is sent
-          over HTTPS, because most IEx installations will by default
-          <em>not</em> cache any content retrieved over HTTPS.
-          Setting the <code>Expires</code> header entry may help in
-          this case:<br/> <code>response.setDateHeader("Expires",
-          System.currentTimeMillis() + cacheExpiringDuration *
-          1000);</code><br/> Consult your server manual and the
-          relevant RFCs for further details on HTTP headers and
-          caching.
-        </li>
-        <li>
-          Cache in the server. It may help to include a parameter in
-          the URL which has a timestamp as the value min order to
-          decide whether a request is repeated. IEx is reported to
-          retrieve a document up to three times, but never more often.
-        </li>
-      </ul>
-    </section>
-    <section id="servlet-engine">
-      <title>Servlet Engines</title>
-      <p>
-        When using a servlet engine, there are potential CLASSPATH issues, and potential conflicts 
-        with existing XML/XSLT libraries. Servlet containers also often use their own classloaders 
-        for loading webapps, which can cause bugs and security problems.
-      </p>
-      <section id="tomcat">
-        <title>Tomcat</title>
-        <p>
-          Check Tomcat's documentation for detailed instructions about installing FOP and Cocoon.
-          There are known bugs that must be addressed, particularly for Tomcat 4.0.3.
-        </p>
-      </section>
-      <section id="websphere">
-        <title>WebSphere 3.5</title>
-        <p>
-          Put a copy of a working parser in some directory where WebSphere can access it.
-          For example, if /usr/webapps/yourapp/servlets is the CLASSPATH for your servlets, 
-          copy the Xerces jar into it (any other directory would also be fine).
-          Do not add the jar to the servlet CLASSPATH, but add it to the CLASSPATH of the 
-          application server which contains your web application.
-          In the WebSphere administration console, click on the "environment" button in the 
-          "general" tab. In the "variable name" box, enter "CLASSPATH".
-          In the "value" box, enter the correct path to the parser jar file 
-          (/usr/webapps/yourapp/servlets/Xerces.jar in our example here).
-          Press "OK", then apply the change and restart the application server.
-        </p>
-      </section>
-    </section>
-    <section id="complex-usecases">
-      <title>Handling complex use cases</title>
-      <p>
-        Sometimes the requirements for a servlet get quite sophisticated: SQL data sources, 
-        multiple XSL transformations, merging of several datasources etc. In such a case 
-        consider using <a class="fork" href="ext:cocoon">Apache Cocoon</a> instead 
-        of a custom servlet to accomplish your goal.
-      </p>
-    </section>
-  </body>
-</document>
-<!-- Last Line of $RCSfile$ -->
diff --git a/src/documentation/content/xdocs/0.90/upgrading.xml b/src/documentation/content/xdocs/0.90/upgrading.xml
deleted file mode 100644 (file)
index 60ba541..0000000
+++ /dev/null
@@ -1,114 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Copyright 2005 The Apache Software Foundation
-
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!-- $Id$ -->
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
-<document>
-  <header>
-    <title>Upgrading from an Earlier Version of Apache FOP</title>
-    <version>$Revision$</version>
-  </header>
-  <body>
-    <section id="important">
-      <title>Important!</title>
-      <p>
-        If you're planning to upgrade to the latest FOP version there are a few very important things 
-        to consider:
-      </p>
-      <ul>
-        <li>
-          More than half of the codebase has been rewritten over the last three years. The code is 
-          new and not as stable as version 0.20.5.
-        </li>
-        <li>
-          The API of FOP has changed considerably and is not backwards-compatible with version 0.20.5.
-        </li>
-        <li>
-          The new API is not stable, yet. Please be aware that further changes might still occur!
-        </li>
-        <li>
-          The configuration file format has changed (see the <a href="configuration.html">Configuration page</a> for details).
-        </li>
-        <li>
-          <p>
-            The new code is much more strict about the interpretation of the XSL-FO 1.0 specification.
-            Things that worked fine in version 0.20.5 might start to produce warnings or even errors
-            now. FOP 0.20.5 contains many bugs which have been corrected in the new code.
-          </p>
-          <note label="An example">
-            While FOP 0.20.5 allowed you to have empty <code>fo:table-cell</code> elements, the new code
-            will complain about that (unless relaxed validation is enabled) because the specification
-            demands at least one block-level element (<code>(%block;)+</code>, see XSL-FO 1.0, 6.7.10)
-            inside an <code>fo:table-cell</code> element.
-          </note>
-        </li>
-        <li>
-          Extensions written for version 0.20.5 will not work with the new code!
-        </li>
-        <li>
-          The PCL Renderer and the MIF Handler have not been resurrected, yet! They are currently non-functional
-          and hope for someone to step up and reimplement them.
-        </li>
-        <li>
-          By looking at the <a href="../compliance.html">Compliance page</a> you might get the impression
-          that the new code is much more advanced than version 0.20.5. That's true but there are still
-          a few things that may not be handled as gracefully by the new code as by version 0.20.5.
-        </li>
-      </ul>
-      <p>
-        So, please evaluate carefully before messing up your production environment! Actually we do 
-        recommend against using the FOP development version in a production system.
-      </p>
-    </section>
-    <section id="issues">
-      <title>What you need to know when you upgrade!</title>
-      <p>
-        When you use your existing FO files or XML/XSL files which work fine with FOP version
-        0.20.5 against this FOP version some things may not work as expected. The following
-        list will hopefully help you to identify and correct those problems.
-      </p>
-      <ul>
-        <li>
-          Check the <a href="../compliance.html">Compliance page</a> for the feature causing
-          trouble. It may contain the necessary information to understand and resolve the problem.
-        </li>
-        <li>
-          Not all 0.20.5 output formats are supported. PDF and Postscript should be fully supported.
-          See <a href="output.html">Output Targets</a> for a more complete description.
-        </li>
-        <li>
-          As stated above empty table cells <code>&lt;fo:table-cell&gt;&lt;/fo:table-cell&gt;</code>
-          are not allowed.
-        </li>
-        <li>
-          0.20.5 is not XSL-FO compliant with respect to sizing images or <code>instream-foreign-object</code>
-          objects. If images or SVGs are sized differently in your outputs with the new FOP version
-          check <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=37136">Bug 37136</a>
-          as it contains some hints on what to.
-        </li>
-        <li>
-          The <code>fox:outline</code> extension not implemented in this version anymore. 
-          It has been superseded by the new bookmark elements from XSL-FO 1.1.
-        </li>
-        <li>
-          The <code>fox:destination</code> extension is also not implemented in this version
-          although it may be added in the future. See also
-          <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=37157">Bug 37157</a>.
-        </li>
-      </ul>
-    </section>
-  </body>
-</document>
diff --git a/src/documentation/content/xdocs/0.91/anttask.xml b/src/documentation/content/xdocs/0.91/anttask.xml
new file mode 100644 (file)
index 0000000..fd8a7e0
--- /dev/null
@@ -0,0 +1,183 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Ant task</title>
+    <version>$Revision$</version>
+  </header>
+  <body>
+    <p>
+      Apache FOP provides an Ant task for automating the document build process.
+    </p>
+    <section id="basics">
+      <title>Description</title>
+      <p>
+        The FOP Ant task will convert XSL-FO documents to PDF, PS, PCL etc. output
+        (see <a href="output.html">Output formats</a> for available formats).
+      </p>
+      <p>
+        To call FOP tasks within Ant, first add a FOP task definition to your Ant build file.
+        One method of defining the task is as follows:
+      </p>
+      <source><![CDATA[
+<property name="fop.dir" value="....path to your FOP jar files..."/>
+
+<taskdef name="fop" 
+         classname="org.apache.fop.tools.anttasks.Fop">
+         <classpath>
+            <pathelement location="${fop.dir}\fop.jar"/>
+            <pathelement location="${fop.dir}\batik.jar"/>
+            <pathelement location="${fop.dir}\avalon-framework.jar"/>
+            <pathelement location="${fop.dir}\commons-logging.jar"/>
+            <pathelement location="${fop.dir}\commons-io.jar"/>
+         </classpath>
+</taskdef>
+    ]]></source>
+<p>
+    Then create FOP tasks within your Ant build file, using the FOP task parameters listed below.</p>
+    </section>
+    <!-- TODO: Installation/Configuration -->
+    <section id="parameters"><title>Parameters for FOP Ant task</title>
+     <table><caption>Parameters specified as attributes</caption> 
+      <tr> 
+       <th>Attribute</th> 
+       <th>Description</th> 
+       <th>Required</th> 
+      </tr> 
+      <tr> 
+       <td>fofile</td> 
+       <td>XSL-FO file to be rendered</td> 
+       <td>Yes, if no fileset nested element is used</td> 
+      </tr> 
+      <tr> 
+       <td>outfile</td> 
+       <td>Output filename</td> 
+       <td>Yes, when fofile is used.  (This attribute is not valid for filesets.)</td> 
+      </tr> 
+      <tr> 
+       <td>format</td> 
+       <td>Possible output formats:<br/>
+         <code>application/pdf</code><br/>
+         <code>application/postscript</code><br/>
+         <code>application/vnd.mif</code><br/>
+         <code>application/rtf</code><br/>
+         <code>application/vnd.hp-PCL</code><br/>
+         <code>text/plain</code><br/>
+         <code>text/xml</code><br/>
+       </td> 
+       <td>No, defaults to <code>application/pdf</code></td> 
+      </tr> 
+      <tr> 
+       <td>outdir</td> 
+       <td>Output directory</td> 
+       <td>Required if a fileset is used to specify the files to render; optional for fofile. (Can alternatively specify the full path in the fofile value.)</td> 
+      </tr> 
+      <tr> 
+       <td>force</td> 
+       <td>Recreate target files, even if they are newer than their corresponding
+            source files. Note: This attribute is available in post-0.20.5 
+            versions (0.20.x nightly build and 1.0dev) only; target files are 
+            always generated (i.e., force=true) in 0.20.5 release.
+       </td> 
+       <td>No, default is <code>false</code></td> 
+      </tr> 
+      <tr> 
+       <td>basedir</td> 
+       <td>Base directory to resolve relative references (e.g., graphics files) within the 
+            FO document.
+       </td> 
+       <td>No, for single FO File entry, default is to use the location 
+            of that FO file.
+       </td> 
+      </tr> 
+      <tr> 
+       <td>relativebase</td> 
+       <td>For fileset usage only.  A value of <code>true</code> specifies using the location
+        of each .fo file as the base directory for resolving relative file references located
+        within that .fo file.  A value of <code>false</code> specifies using the value of 
+        basedir for all files within the fileset, or just the current working directory
+        if basedir is not specified.
+       </td> 
+       <td>No, default is <code>false</code>.
+       </td> 
+      </tr> 
+      <tr> 
+       <td>userconfig</td> 
+       <td>User configuration file (same as the FOP "-c" command line option). <strong>Currently doesn't work in FOP Trunk!!!</strong></td> 
+       <td>No</td> 
+      </tr> 
+      <tr> 
+       <td>messagelevel</td> 
+       <td>Logging level<br/>
+       Possible values: <code>error</code>, <code>warn</code>, <code>info</code>, <code>verbose</code>, <code>debug</code>. <strong>Currently doesn't work in FOP Trunk!!!</strong></td> 
+       <td>No, defaults to <code>verbose</code></td> 
+      </tr> 
+      <tr> 
+       <td>logFiles</td> 
+       <td>Controls whether the names of the files that are processed are logged 
+            (<code>true</code>) or not (<code>false</code>). <strong>Currently doesn't work in FOP Trunk!!!</strong></td> 
+       <td>No, default is <code>true</code></td> 
+      </tr> 
+     </table>
+     <p/>
+     <table><caption>Parameters specified as nested elements</caption>
+      <tr> 
+       <th>Attribute</th> 
+       <th>Description</th> 
+       <th>Required</th> 
+      </tr> 
+      <tr> 
+       <td>fileset</td> 
+       <td><a href="http://ant.apache.org/manual/CoreTypes/fileset.html">FileSets</a> 
+            are used to specify multiple XSL-FO files to be rendered.</td> 
+       <td>Yes, if no fofile attribute is supplied</td> 
+      </tr> 
+      </table>
+    </section>
+    <section id="examples">
+    <title>Examples</title>
+    <p>
+    The following example converts a single XSL-FO file to a PDF document:
+    </p>
+
+    <source><![CDATA[
+<target name="generate-pdf" description="Generates a single PDF file">
+   <fop format="application/pdf" 
+        fofile="c:\working\foDirectory\foDocument.fo"
+        outfile="c:\working\pdfDirectory\pdfDocument.pdf" />
+</target>
+    ]]></source>
+    <p>
+    This example converts all XSL-FO files within an entire directory to PostScript:
+    </p>
+    <source><![CDATA[
+<target name="generate-multiple-ps" 
+        description="Generates multiple PostScript files">
+   <fop format="application/postscript" 
+        outdir="${build.dir}" messagelevel="debug">
+        <fileset dir="${fo.examples.dir}">
+           <include name="*.fo"/>
+        </fileset>
+   </fop>
+</target>
+    ]]></source>
+    </section>
+    </body>
+</document>
+
diff --git a/src/documentation/content/xdocs/0.91/compiling.xml b/src/documentation/content/xdocs/0.91/compiling.xml
new file mode 100644 (file)
index 0000000..ad02f30
--- /dev/null
@@ -0,0 +1,139 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Apache FOP: Building from Source Code</title>
+    <version>$Revision$</version>
+  </header>
+  <body>
+    <section id="build-needed">
+      <title>Do You Need To Build?</title>
+      <p>
+        FOP distributions are either pre-compiled binary or source.
+        If you are using a binary distribution, it is already built and there is no need to build it again. 
+        See the <a href="../download.html">Download Instructions</a> for information about whether a 
+        binary or source distribution is best for your needs.
+      </p>
+      <p>
+        If you got the source code from a repository snapshot or via Subversion you will need to build FOP
+        in any case.
+      </p>
+    </section>
+    <section id="env">
+      <title>Set Up Your Environment</title>
+      <section id="env-jdk">
+        <title>JDK</title>
+        <p>
+          Building FOP requires a minimum Java Development Kit (JDK/SDK) of 1.3
+          (A Java Runtime Environment is not sufficient).
+        </p>
+      </section>
+      <section id="env-classpath">
+        <title>CLASSPATH</title>
+        <p>
+          There is generally no need to setup a classpath. All libraries needed to compile FOP are included 
+          in the source distribution and are referenced by the build script.
+          You will only need to adjust the classpath if you build FOP in some other way. See the build 
+          script build.xml for details.
+        </p>
+      </section>
+      <section id="env-java-home">
+        <title>JAVA_HOME</title>
+        <p>
+          The build script uses <a href="ext:ant">Apache Ant</a>, a popular 
+          Java-based build tool, which usually requires that the environment variable JAVA_HOME point to 
+          your local JDK root directory. This is true even if you use JDK 1.2 or above, which normally 
+          does not need this setting.
+        </p>
+      </section>
+      <section id="env-ant">
+        <title>Apache Ant</title>
+        <p>
+          <a href="ext:ant">Apache Ant</a> must be installed in order to
+          build FOP. Following best practices we don't include Ant with FOP anymore. You can find the
+          <a href="ext:ant/manual/">instructions to install Ant in the Ant manual</a> on the web.
+        </p>
+      </section>
+    </section>
+    <section id="build-script">
+      <title>Run the Build Script</title>
+      <p>
+        Change to the FOP root directory and build FOP by executing the build script (build.xml)
+        using the "ant" command.
+      </p>
+      <note>
+        The "ant" command is only available on your system if you've properly 
+        <a href="ext:ant/manual/">installed Apache Ant</a> and added Ant's location to the PATH 
+        environment variable.
+      </note>
+      <p>
+        The file build.xml in the FOP root directory is the blueprint that Ant uses for the build. It 
+        contains information for numerous build targets, many of which are building blocks to more 
+        useful target, and others which are primarily used by the FOP developers.
+        You may benefit from looking through this file to learn more about the various build targets.
+        To obtain a complete list of useful build targets:
+      </p>
+      <source>ant -projecthelp</source>
+      <p>The most useful targets are:</p>
+      <ul>
+        <li>
+          <strong>package</strong>: Generates the JAR files (default). This is the normal build that 
+          produces a jar file usable for running FOP.
+        </li>
+        <li>
+          <strong>clean </strong>: Cleans the build directory. This is useful for making sure that 
+          any build errors are cleaned up before starting a new build. It should not ordinarily be 
+          needed, but may be helpful if you are having problems with the build process itself.
+        </li>
+        <li>
+          <strong>javadocs</strong>: Generates javadocs. This creates the FOP API documentation.
+        </li>
+      </ul>
+      <p>To run the build:</p>
+      <source>ant [target ...]</source>
+      <p>For example to do a normal build for the "all" target (which is the default):</p>
+      <source>ant</source>
+      <p>OR</p>
+      <source>ant all</source>
+      <p>To clean the build directory first:</p>
+      <source>ant clean all</source>
+      <note>
+        If you want to shorten the build time you can just call the "package" target which
+        doesn't perform any automated tests during the build.
+      </note>
+    </section>
+    <section id="problems">
+      <title id="Troubleshooting">Troubleshooting</title>
+      <p>If you have problems building FOP, please try the following:</p>
+      <ul>
+        <li>Run the build with the target of "clean", then rerun the build.</li>
+        <li>Delete the build directory completely, then rerun the build.</li>
+        <li>
+          Make sure you do not have a non-FOP version of xerces.jar, xalan.jar, batik.jar, 
+          or another dependency product somewhere in your CLASSPATH.
+        </li>
+        <li>
+          If the build still fails, see the <a href="../gethelp.html">Getting Help</a> 
+          page for further help.
+        </li>
+      </ul>
+    </section>
+  </body>
+</document>
+
diff --git a/src/documentation/content/xdocs/0.91/configuration.xml b/src/documentation/content/xdocs/0.91/configuration.xml
new file mode 100644 (file)
index 0000000..0b845bc
--- /dev/null
@@ -0,0 +1,184 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Apache FOP: Configuration</title>
+    <version>$Revision$</version>
+  </header>
+
+  <body>
+  <section id="general">
+    <title>Configuration File Basics</title>
+    <p>
+      The FOP configuration file is an XML file containing a variety of settings that are useful 
+      for controlling FOP's behavior, and for helping it find resources that you wish it to use.
+    </p>
+    <p>
+      The easiest way to get started using a FOP configuration file is to copy the sample found 
+      at <code>{fop-dir}/conf/fop.xconf</code> to a location of your choice, and then to 
+      edit it according to your needs.
+      It contains templates for the various configuration options, most of which are commented 
+      out. Remove the comments and change the settings for entries that you wish to use.
+      Be sure to follow any instructions, including comments which specify the value range.
+      Also, since the configuration file is XML, be sure to keep it well-formed.
+    </p>
+    <section id="general-available">
+      <title>Making Configuration Available to FOP</title>
+      <p>After creating your configuration file, you must tell FOP how to find it:</p>
+      <ul>
+        <li>
+          If running FOP from the command-line, see the "-c" command-line option in 
+          <a href="running.html">Running FOP</a>.
+        </li>
+        <li>
+          If running FOP as an embedded application, see 
+          <a href="embedding.html#config-external">Embedding, Using a Configuration File</a>.
+        </li>
+      </ul>
+      <p>
+        See <a href="embedding.html#config-internal">Setting the Configuration Programmatically</a>
+        for instructions on how to do so in an embedded environment.
+      </p>
+    </section>
+  </section>
+  <section id="general-elements">
+    <title>Summary of the General Configuration Options</title>
+    <table>
+      <tr>
+        <th>Element</th>
+        <th>Data Type (for the value)</th>
+        <th>Default Value</th>
+      </tr>
+      <tr>
+        <td>base</td>
+        <td>URL</td>
+        <td>Specifies the base URL based on which relative URL will be resolved.</td>
+      </tr>
+      <tr>
+        <td>source-resolution</td>
+        <td>Integer, dpi</td>
+        <td>
+          Resolution in dpi (dots per inch) which is used internally to determine the pixel 
+          size for SVG images and bitmap images without resolution information.
+        </td>
+      </tr>
+      <tr>
+        <td>target-resolution</td>
+        <td>Integer, dpi</td>
+        <td>
+          Resolution in dpi (dots per inch) used to specify the output resolution for bitmap
+          images generated by bitmap renderers (such as the TIFF renderer) and by bitmaps
+          generated by Apache Batik for filter effects and such.
+        </td>
+      </tr>
+      <tr>
+        <td>strict-validation</td>
+        <td>Boolean (true, false)</td>
+        <td>
+          Setting this option to 'false' causes FOP to be more forgiving about XSL-FO validity, 
+          for example, you're allowed to specify a border on a region-body which is supported 
+          by some FO implementations but is non-standard. Note that such a border would 
+          currently have no effect in Apache FOP.</td>
+      </tr>
+      <tr>
+        <td>break-indent-inheritance</td>
+        <td>Boolean (true, false)</td>
+        <td>
+          Setting this option to 'true' causes FOP to use an alternative rule set to determine
+          text indents specified through margins, start-indent and end-indent. Many commercial
+          FO implementations have chosen to break the XSL specification in this aspect. This
+          option tries to mimic their behaviour. Please note that Apache FOP may still not
+          behave exactly like those implementations either because FOP has not fully matched
+          the desired behaviour and because the behaviour among the commercial implementations
+          varies. The default for this option (i.e. false) is to behave exactly like the 
+          specification describes.</td>
+      </tr>
+      <tr>
+        <td>default-page-settings</td>
+        <td>n/a</td>
+        <td>
+          Specifies the default width and height of a page if "auto" is specified 
+          for either or both values. Use "height" and "width" attributes on the 
+          default-page-settings element to specify the two values.</td>
+      </tr>
+      <tr>
+        <td>renderers</td>
+        <td>(see text below)</td>
+        <td>Contains the configuration for each renderer. See below.</td>
+      </tr>
+    </table>
+    <p>
+      This is an excerpt from the example configuration file coming with FOP:
+    </p>
+    <source><![CDATA[
+<fop version="1.0">
+
+  <!-- Base URL for resolving relative URLs -->
+  <base>./</base>
+
+  <!-- Source resolution in dpi (dots/pixels per inch) for determining the size of pixels in SVG and bitmap images, default: 72dpi -->
+  <source-resolution>72</source-resolution>
+  <!-- Target resolution in dpi (dots/pixels per inch) for specifying the target resolution for generated bitmaps, default: 72dpi -->
+  <target-resolution>72</target-resolution>
+
+  <!-- default page-height and page-width, in case
+       value is specified as auto -->
+  <default-page-settings height="11in" width="8.26in"/>
+  
+  <!-- etc. etc..... -->
+</fop>]]></source>
+  </section>
+  <section id="renderers">
+    <title>Renderer configuration</title>
+    <p>
+      Each Renderer has its own configuration section which is identified by the
+      MIME type the Renderer is written for, ex. "application/pdf" for the PDF Renderer.
+    </p>
+    <p>
+      The configuration for the PDF Renderer could look like this:
+    </p>
+    <source><![CDATA[
+  <renderers>
+    <renderer mime="application/pdf">
+      <filterList>
+        <!-- provides compression using zlib flate (default is on) -->
+        <value>flate</value>
+      </filterList>
+      <fonts>
+        <font metrics-url="arial.xml" kerning="yes" embed-url="arial.ttf">
+          <font-triplet name="Arial" style="normal" weight="normal"/>
+          <font-triplet name="ArialMT" style="normal" weight="normal"/>
+        </font>
+        <font metrics-url="arialb.xml" kerning="yes" embed-url="arialb.ttf">
+          <font-triplet name="Arial" style="normal" weight="bold"/>
+          <font-triplet name="ArialMT" style="normal" weight="bold"/>
+        </font>
+      </fonts>
+    </renderer>
+    
+    <renderer mime="application/postscript">
+    <!-- etc. etc..... -->]]></source>
+    <p>
+      The details on the font configuration can be found on the separate <a href="fonts.html">Fonts</a> page.
+      Note especially the section entitled <a href="fonts.html#register">Register Fonts with FOP</a>.
+    </p>
+  </section>
+  </body>
+</document>
+
diff --git a/src/documentation/content/xdocs/0.91/embedding.xml b/src/documentation/content/xdocs/0.91/embedding.xml
new file mode 100644 (file)
index 0000000..9833faa
--- /dev/null
@@ -0,0 +1,619 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<!-- Embedding FOP -->
+<document>
+  <header>
+    <title>Apache FOP: Embedding</title>
+    <subtitle>How to Embed FOP in a Java application</subtitle>
+    <version>$Revision$</version>
+  </header>
+
+  <body>
+  <section id="overview">
+    <title>Overview</title>
+    <p>
+      Review <a href="running.html">Running FOP</a> for important information that applies 
+      to embedded applications as well as command-line use, such as options and performance.
+    </p>
+    <p>
+      To embed Apache FOP in your application, instantiate org.apache.fop.apps.Fop.
+      You'll tell FOP in the constructor which output format (i.e. Renderer) to use.
+      Afterwards, you'll set the OutputStream to use to output the results of the
+      rendering (where applicable). You can customize FOP's behaviour by supplying
+      your own FOUserAgent instance. The FOUserAgent can, for example, be used to
+      set your own Renderer instance (details below). Finally, you retrieve a SAX 
+      DefaultHandler instance from the Fop instance to which you can send your
+      FO file.
+    </p>
+  </section>
+  <section id="basics">
+    <title>Basic Usage Pattern</title>
+    <p>
+      Apache FOP relies heavily on JAXP. It uses SAX events exclusively to receive the XSL-FO 
+      input document. It is therefore a good idea that you know a few things about JAXP (which
+      is a good skill anyway). Let's look at the basic usage pattern for FOP...
+    </p>
+    <p>Here is the basic pattern to render an XSL-FO file to PDF:
+    </p>
+    <source><![CDATA[
+import org.apache.fop.apps.Fop;
+import org.apache.fop.apps.MimeConstants;
+
+/*..*/
+
+// Step 1: Construct fop with desired output format
+Fop fop = new Fop(MimeConstants.MIME_PDF);
+
+// Step 2: Setup output stream.
+// Note: Using BufferedOutputStream for performance reasons (helpful with FileOutputStreams).
+OutputStream out = new BufferedOutputStream(new FileOutputStream(new File("C:/Temp/myfile.pdf")));
+try {
+  fop.setOutputStream(out);
+
+  // Step 3: Setup JAXP using identity transformer
+  TransformerFactory factory = TransformerFactory.newInstance();
+  Transformer transformer = factory.newTransformer(); // identity transformer
+           
+  // Step 4: Setup input and output for XSLT transformation 
+  // Setup input stream
+  Source src = new StreamSource(new File("C:/Temp/myfile.fo"));
+
+  // Resulting SAX events (the generated FO) must be piped through to FOP
+  Result res = new SAXResult(fop.getDefaultHandler());
+            
+  // Step 5: Start XSLT transformation and FOP processing
+  transformer.transform(src, res);
+
+} finally {
+  //Clean-up
+  out.close();
+}]]></source>
+    <p>
+      Let's discuss these 5 steps in detail:
+    </p>
+    <ul>
+      <li>
+        <strong>Step 1:</strong> You create a new Fop instance and set it up for PDF 
+        output.
+      </li>
+      <li>
+        <strong>Step 2:</strong> You tell FOP where to save the generated PDF file 
+        later. It's a good idea to buffer the OutputStream as demonstrated to improve 
+        performance.
+      </li>
+      <li>
+        <strong>Step 3:</strong> We recommend that you use JAXP Transformers even 
+        if you don't do XSLT transformations to generate the XSL-FO file. This way 
+        you can always use the same basic pattern. The example here sets up an 
+        "identity transformer" which just passes the input (Source) unchanged to the 
+        output (Result). You don't have to work with a SAXParser if you don't do any 
+        XSLT transformations.
+      </li>
+      <li>
+        <strong>Step 4:</strong> Here you set up the input and output for the XSLT 
+        transformation. The Source object is set up to load the "myfile.fo" file. 
+        The Result is set up so the output of the XSLT transformation is sent to FOP. 
+        The FO file is sent to FOP in the form of SAX events which is the most efficient 
+        way. Please always avoid saving intermediate results to a file or a memory buffer 
+        because that affects performance negatively.
+      </li>
+      <li>
+        <strong>Step 5:</strong> Finally, we start the XSLT transformation by starting 
+        the JAXP Transformer. As soon as the JAXP Transformer starts to send its output 
+        to FOP, FOP itself starts its processing in the background. When the 
+        <code>transform()</code> method returns FOP will also have finished converting 
+        the FO file to a PDF file and you can close the OutputStream.
+        <note label="Tip!">
+          It's a good idea to enclose the whole conversion in a try..finally statement. If
+          you close the OutputStream in the finally section, this will make sure that the
+          OutputStream is properly closed even if an exception occurs during the conversion.
+        </note>
+      </li>
+    </ul>
+    <p>
+      If you're not totally familiar with JAXP Transformers, please have a look at the 
+      <a href="#examples">Embedding examples</a> below. The section contains examples
+      for all sorts of use cases. If you look at all of them in turn you should be able
+      to see the patterns in use and the flexibility this approach offers without adding
+      too much complexity.
+    </p>
+    <p>
+      This may look complicated at first, but it's really just the combination of an 
+      XSL transformation and a FOP run. It's also easy to comment out the FOP part
+      for debugging purposes, for example when you're tracking down a bug in your 
+      stylesheet. You can easily write the XSL-FO output from the XSL transformation
+      to a file to check if that part generates the expected output. An example for that
+      can be found in the <a href="#examples">Embedding examples</a> (See "ExampleXML2FO").
+    </p>
+    <note>
+      Please be aware that you should not reuse a Fop instance for additional rendering runs.
+      Recreate a new instance for each rendering run. This is a relatively inexpensive 
+      operation and will be further optimized shortly.
+    </note>
+    <section id="basic-logging">
+      <title>Logging</title>
+      <p>
+        Logging is now a little different than it was in FOP 0.20.5. We've switched from
+        Avalon Logging to <a href="ext:jakarta/commons/logging">Jakarta Commons Logging</a>.
+        While with Avalon Logging the loggers were directly given to FOP, FOP now retrieves
+        its logger(s) through a statically available LogFactory. This is similar to the
+        general pattern that you use when you work with Apache Log4J directly, for example.
+        We call this "static logging" (Commons Logging, Log4J) as opposed to "instance logging" 
+        (Avalon Logging). This has a consequence: You can't give FOP a logger for each
+        processing run anymore. The log output of multiple, simultaneously running FOP instances
+        is sent to the same logger.
+      </p>
+      <note>
+        We know this may be an issue in multi-threaded server environments if you'd like to 
+        know what's going on in every single FOP processing run. We're planning to add an
+        additional feedback facility to FOP which can be used to obtain all sorts of specific
+        feedback (validation messages, layout problems etc.). "Static logging" is mainly 
+        interesting for a developer working on FOP and for advanced users who are debugging 
+        FOP. We don't consider the logging output to be useful to normal FOP users. Please
+        have some patience until we can add this feature or jump in and help us build it. We've
+        set up a <a href="http://wiki.apache.org/xmlgraphics-fop/ProcessingFeedback">Wiki page</a>
+        which documents what we're going to build.
+      </note>
+      <p>
+        By default, <a href="ext:jakarta/commons/logging">Jakarta Commons Logging</a> uses
+        JDK logging (available in JDKs 1.4 or higher) as its backend. You can configure Commons
+        Logging to use an alternative backend, for example Log4J. Please consult the
+        <a href="ext:jakarta/commons/logging">documentation for Jakarta Commons Logging</a> on
+        how to configure altentive backends.
+      </p>
+    </section>
+  
+    <section id="render">
+      <title>Processing XSL-FO</title>
+      <p>
+        Once the Fop instance is set up, call <code>getDefaultHandler()</code> to obtain a SAX 
+        DefaultHandler instance to which you can send the SAX events making up the XSL-FO 
+        document you'd like to render. FOP processing starts as soon as the DefaultHandler's
+        <code>startDocument()</code> methods is called. Processing stops again when the
+        DefaultHandler's <code>endDocument()</code> method is called. Please refer to the basic
+        usage pattern shown above to render a simply XSL-FO document.
+      </p>
+    </section>
+
+    <section id="render-with-xslt">
+      <title>Processing XSL-FO generated from XML+XSLT</title>
+      <p>
+        If you want to process XSL-FO generated from XML using XSLT we recommend 
+        again using standard JAXP to do the XSLT part and piping the generated SAX 
+        events directly through to FOP. The only thing you'd change to do that 
+        on the basic usage pattern above is to set up the Transformer differently:
+      </p>
+      <source><![CDATA[
+  //before (without XSLT):
+  //Transformer transformer = factory.newTransformer(); // identity transformer
+  
+  //after (with XSLT):
+  Source xslt = new StreamSource(new File("mystylesheet.xsl"));
+  Transformer transformer = factory.newTransformer(xslt);]]></source>
+    </section>
+  </section>
+  <section id="input">
+    <title>Input Sources</title>
+    <p>
+      The input XSL-FO document is always handled internally as SAX (see the 
+      <a href="../dev/design/parsing.html">Parsing Design Document</a> for the rationale).
+    </p>
+    <p>
+      However, you may not always have your input document available as a SAX stream. 
+      But with JAXP it's easy to convert different input sources to a SAX stream so you
+      can pipe it into FOP. That sounds more difficult than it is. You simply have
+      to set up the right Source instance as input for the JAXP transformation. 
+      A few examples:
+    </p>
+    <ul>
+      <li>
+        <strong>URL:</strong> <code>Source src = new StreamSource("http://localhost:8080/testfile.xml");</code>
+      </li>
+      <li>
+        <strong>File:</strong> <code>Source src = new StreamSource(new File("C:/Temp/myinputfile.xml"));</code>
+      </li>
+      <li>
+        <strong>String:</strong> <code>Source src = new StreamSource(new StringReader(myString)); //myString is a String</code>
+      </li>
+      <li>
+        <strong>InputStream:</strong> <code>Source src = new StreamSource(new MyInputStream(something));</code>
+      </li>
+      <li>
+        <strong>Byte Array:</strong> <code>Source src = new StreamSource(new ByteArrayInputStream(myBuffer)); //myBuffer is a byte[] here</code>
+      </li>
+      <li>
+        <strong>DOM:</strong> <code>Source src = new DOMSource(myDocument); //myDocument is a Document or a Node</code>
+      </li>
+      <li>
+        <strong>Java Objects:</strong> Please have a look at the <a href="#examples">Embedding examples</a> which contains an example for this.
+      </li>
+    </ul>
+    <p>
+      There are a variety of upstream data manipulations possible.
+      For example, you may have a DOM and an XSL stylesheet; or you may want to
+      set variables in the stylesheet. Interface documentation and some cookbook 
+      solutions to these situations are provided in 
+      <a href="http://xml.apache.org/xalan-j/usagepatterns.html">Xalan Basic Usage Patterns</a>.
+    </p>
+  </section>
+  <section id="config-internal">
+    <title>Configuring Apache FOP Programmatically</title>
+    <p>
+      Apache FOP provides a class called FOUserAgent which is used to customize FOP's
+      behaviour. If you wish to do that, the first step is to create your own instance
+      of FOUserAgent and pass that to the Fop constructor:
+    </p>
+    <source><![CDATA[
+FOUserAgent userAgent = new FOUserAgent();
+Fop fop = new Fop(MimeConstants.MIME_POSTSCRIPT, userAgent);]]></source>
+    <p>
+      You can do all sorts of things on the user agent:
+    </p>
+    <ul>
+      <li>
+        <p>
+          The <strong>base URL</strong> to use when resolving relative URLs. Example:
+        </p>
+        <source>userAgent.setBaseURL("file:///C:/Temp/");</source>
+      </li>
+      <li>
+        <p>
+          Disable <strong>strict validation</strong>. When disabled FOP is less strict about the rules established by the XSL-FO specification. Example:
+        </p>
+        <source>userAgent.setStrictValidation(false);</source>
+      </li>
+      <li>
+        <p>
+          Set the <strong>producer</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. The default producer is "Apache FOP". Example:
+        </p>
+        <source>userAgent.setProducer("MyKillerApplication");</source>
+      </li>
+      <li>
+        <p>
+          Set the <strong>creating user</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
+        </p>
+        <source>userAgent.setCreator("John Doe");</source>
+      </li>
+      <li>
+        <p>
+          Set the <strong>author</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
+        </p>
+        <source>userAgent.setAuthor("John Doe");</source>
+      </li>
+      <li>
+        <p>
+          Override the <strong>creation date and time</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
+        </p>
+        <source>userAgent.setCreationDate(new Date());</source>
+      </li>
+      <li>
+        <p>
+          Set the <strong>title</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
+        </p>
+        <source>userAgent.setTitle("Invoice No 138716847");</source>
+      </li>
+      <li>
+        <p>
+          Set the <strong>keywords</strong> of the document. This is metadata information that can be used for certain output formats such as PDF. Example:
+        </p>
+        <source>userAgent.setKeywords("XML XSL-FO");</source>
+      </li>
+      <li>
+        <p>
+          Set the <strong>source resolution</strong> for the document. This is used internally to determine the pixel 
+          size for SVG images and bitmap images without resolution information. Default: 72 dpi. Example:
+        </p>
+        <source>userAgent.setSourceResolution(96); //=96dpi (dots/pixels per Inch)</source>
+      </li>
+      <li>
+        <p>
+          Set the <strong>target resolution</strong> for the document. This is used to 
+          specify the output resolution for bitmap images generated by bitmap renderers 
+          (such as the TIFF renderer) and by bitmaps generated by Apache Batik for filter 
+          effects and such. Default: 72 dpi. Example:
+        </p>
+        <source>userAgent.setTargetResolution(300); //=300dpi (dots/pixels per Inch)</source>
+      </li>
+      <li>
+        <p>
+          Set <strong>your own Renderer instance</strong>. If you want to supply your own renderer or 
+          configure a Renderer in a special way you can give the instance to the FOUserAgent. Normally,
+          the Renderer instance is created by FOP. Example:
+        </p>
+        <source>userAgent.setRendererOverride(myRenderer); //myRenderer is an org.apache.fop.render.Renderer</source>
+      </li>
+      <li>
+        <p>
+          Set <strong>your own FOEventHandler instance</strong>. If you want to supply your own FOEventHandler or 
+          configure an FOEventHandler subclass in a special way you can give the instance to the FOUserAgent. Normally, 
+          the FOEventHandler instance is created by FOP. Example:
+        </p>
+        <source>userAgent.setFOEventHandlerOverride(myFOEventHandler); //myFOEventHandler is an org.apache.fop.fo.FOEventHandler</source>
+      </li>
+      <li>
+        <p>
+          Manually add a <strong>ElementMapping instance</strong>. If you want to supply a special FOP extension
+          you can give the instance to the FOUserAgent. Normally, the FOP extensions can be automatically detected 
+          (see the documentation on extension for more info).
+        </p>
+        <source>userAgent.addElementMapping(myElementMapping); //myElementMapping is a org.apache.fop.fo.ElementMapping</source>
+      </li>
+      <li>
+        <p>
+          Set a <strong>URIResolver</strong> for custom URI resolution. By supplying a JAXP URIResolver you can add
+          custom URI resolution functionality to FOP. For example, you can use 
+          <a href="ext:xml.apache.org/commons/resolver">Apache XML Commons Resolver</a> to make use of XCatalogs.
+        </p>
+        <source>userAgent.setURIResolver(myResolver); //myResolver is a javax.xml.transform.URIResolver</source>
+      </li>
+      <li>
+        <p>
+          Set the <strong>parameters for PDF encryption</strong> for the document. If you create PDF files you can 
+          instantiate and set an org.apache.fop.pdf.PDFEncryptionParams object. Example:
+        </p>
+        <source>userAgent.setPDFEncryptionParams(new PDFEncryptionParams(null, "owner", false, false, true, true));</source>
+      </li>
+      <li>
+        <p>
+          Enable an <strong>alternative set of rules for text indents</strong> that tries to mimic the behaviour of many commercial 
+          FO implementations that chose to break the specification in this aspect. The default of this option is 
+          'false' which causes Apache FOP to behave exactly as describes in the specification. To enable the 
+          alternative behaviour, call:
+        </p>
+        <source>userAgent.setBreakIndentInheritanceOnReferenceAreaBoundary(true);</source>
+      </li>
+    </ul>
+    <note>
+      You should not reuse an FOUserAgent instance between FOP rendering runs although you can. Especially
+      in multi-threaded environment, this is a bad idea.
+    </note>
+  </section>
+  <section id="config-external">
+    <title>Using a Configuration File</title>
+    <p>
+      Instead of setting the parameters manually in code as shown above you can also set 
+      many values from an XML configuration file:
+    </p>
+    <source><![CDATA[
+import org.apache.avalon.framework.configuration.Configuration;
+import org.apache.avalon.framework.configuration.DefaultConfigurationBuilder;
+
+/*..*/
+
+DefaultConfigurationBuilder cfgBuilder = new DefaultConfigurationBuilder();
+Configuration cfg = cfgBuilder.buildFromFile(new File("C:/Temp/mycfg.xml"));
+userAgent.setUserConfig(cfg);]]></source>
+    <p>
+      The layout of the configuration file is described on the <a href="configuration.html">Configuration page</a>.
+    </p>
+  </section>
+  <section id="hints">
+    <title>Hints</title>
+    <section id="object-reuse">
+      <title>Object reuse</title>
+      <p>
+        At the moment, the Fop instances shouldn't be reused. Please recreate
+        Fop and FOUserAgent instances for each rendering run until further notice.
+        We will likely add an additional object which will carry information
+        and configuration which can be reused between rendering runs to further
+        optimize this.
+     </p>
+    </section>
+    <section id="awt">
+      <title>AWT issues</title>
+      <p>
+        If your XSL-FO files contain SVG then Apache Batik will be used. When Batik is
+        initialised it uses certain classes in <code>java.awt</code> that
+        intialise the Java AWT classes. This means that a daemon thread
+        is created by the JVM and on Unix it will need to connect to a
+        DISPLAY.
+      </p>
+      <p>
+        The thread means that the Java application may not automatically quit
+        when finished, you will need to call <code>System.exit()</code>. These
+        issues should be fixed in the JDK 1.4.
+      </p>
+      <p>
+        If you run into trouble running FOP on a head-less server, please see the
+        <a href="graphics.html#batik">notes on Batik</a>.
+      </p>
+    </section>
+    <section id="render-info">
+      <title>Getting information on the rendering process</title>
+      <p>
+        To get the number of pages that were rendered by FOP you can call 
+        <code>Fop.getResults()</code>. This returns a <code>FormattingResults</code> object 
+        where you can lookup the number of pages produced. It also gives you the 
+        page-sequences that were produced along with their id attribute and their 
+        number of pages. This is particularly useful if you render multiple 
+        documents (each enclosed by a page-sequence) and have to know the number of 
+        pages of each document.
+      </p>
+    </section>
+  </section>
+  <section id="performance">
+    <title>Improving performance</title>
+    <p>
+      There are several options to consider:
+    </p>
+    <ul>
+      <li>
+        Whenever possible, try to use SAX to couple the individual components involved 
+        (parser, XSL transformer, SQL datasource etc.).
+      </li>
+      <li>
+        Depending on the target OutputStream (in case of an FileOutputStream, but not 
+        for a ByteArrayOutputStream, for example) it may improve performance considerably 
+        if you buffer the OutputStream using a BufferedOutputStream: 
+        <code>fop.setOutputStream(new java.io.BufferedOutputStream(out));</code>
+        <br/>
+        Make sure you properly close the OutputStream when FOP is finished.
+      </li>
+      <li>
+        Cache the stylesheet. If you use the same stylesheet multiple times 
+        you can setup a JAXP <code>Templates</code> object and reuse it each time you do
+        the XSL transformation.  (More information can be found
+        <a class="fork" href="http://www.javaworld.com/javaworld/jw-05-2003/jw-0502-xsl.html">here</a>.)
+      </li>
+      <li>
+        Use an XSLT compiler like <a class="fork" href="http://xml.apache.org/xalan-j/xsltc_usage.html">XSLTC</a>
+        that comes with Xalan-J.
+      </li>
+    </ul>
+  </section>
+  <section id="multithreading">
+    <title>Multithreading FOP</title>
+    <p>
+      Apache FOP may currently not be completely thread safe.
+      FOP uses some static variables (for example for the image cache). This code 
+      has not been fully tested for multi-threading issues, yet.
+    </p>
+    <p>
+      There is also a known issue with fonts being jumbled between threads when using 
+      the Java2D/AWT renderer (which is used by the -awt and -print output options).
+      In general, you cannot safely run multiple threads through the AWT renderer.
+    </p>
+  </section>
+<section id="examples">
+  <title>Examples</title>
+  <p>
+   The directory "{fop-dir}/examples/embedding" contains several working examples. 
+   In contrast to the examples above the examples here primarily use JAXP for 
+   XML access. This may be easier to understand for people familiar with JAXP.
+  </p>
+  <section id="ExampleFO2PDF">
+    <title>ExampleFO2PDF.java</title>
+    <p>This
+        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleFO2PDF.java?view=markup">
+            example</a>
+demonstrates the basic usage pattern to transform an XSL-FO
+file to PDF using FOP.
+    </p>
+    <figure src="images/EmbeddingExampleFO2PDF.png" alt="Example XSL-FO to PDF"/>
+  </section>
+  <section id="ExampleXML2FO">
+    <title>ExampleXML2FO.java</title>
+    <p>This 
+        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleXML2FO.java?view=markup">
+            example</a>
+has nothing to do with FOP. It is there to show you how an XML 
+file can be converted to XSL-FO using XSLT. The JAXP API is used to do the
+transformation. Make sure you've got a JAXP-compliant XSLT processor in your 
+classpath (ex. <a href="http://xml.apache.org/xalan-j">Xalan</a>).
+    </p>
+    <figure src="images/EmbeddingExampleXML2FO.png" alt="Example XML to XSL-FO"/>
+  </section>
+  <section id="ExampleXML2PDF">
+    <title>ExampleXML2PDF.java</title>
+    <p>This 
+        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleXML2PDF.java?view=markup">
+        example</a>
+demonstrates how you can convert an arbitrary XML file to PDF 
+using XSLT and XSL-FO/FOP. It is a combination of the first two examples 
+above. The example uses JAXP to transform the XML file to XSL-FO and FOP to 
+transform the XSL-FO to PDF.
+    </p>
+    <figure src="images/EmbeddingExampleXML2PDF.png" alt="Example XML to PDF (via XSL-FO)"/>
+    <p>
+The output (XSL-FO) from the XSL transformation is piped through to FOP using 
+SAX events. This is the most efficient way to do this because the 
+intermediate result doesn't have to be saved somewhere. Often, novice users 
+save the intermediate result in a file, a byte array or a DOM tree. We 
+strongly discourage you to do this if it isn't absolutely necessary. The 
+performance is significantly higher with SAX.
+    </p>
+  </section>
+  <section id="ExampleObj2XML">
+    <title>ExampleObj2XML.java</title>
+    <p>This 
+    <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleObj2XML.java?view=markup">
+        example</a>
+is a preparatory example for the next one. It's an example that 
+shows how an arbitrary Java object can be converted to XML. It's an often 
+needed task to do this. Often people create a DOM tree from a Java object and 
+use that. This is pretty straightforward. The example here however shows how
+to do this using SAX which will probably be faster and not even more 
+complicated once you know how this works.
+    </p>
+    <figure src="images/EmbeddingExampleObj2XML.png" alt="Example Java object to XML"/>
+    <p>
+For this example we've created two classes: ProjectTeam and ProjectMember 
+(found in xml-fop/examples/embedding/java/embedding/model). They represent 
+the same data structure found in 
+xml-fop/examples/embedding/xml/xml/projectteam.xml. We want to serialize a 
+project team with several members which exist as Java objects to XML. 
+Therefore we created the two classes: ProjectTeamInputSource and 
+ProjectTeamXMLReader (in the same place as ProjectTeam above).
+    </p>
+    <p>
+The XMLReader implementation (regard it as a special kind of XML parser)is 
+responsible for creating SAX events from the Java object. The InputSource 
+class is only used to hold the ProjectTeam object to be used.
+    </p>
+    <p>
+Have a look at the source of ExampleObj2XML.java to find out how this is 
+used. For more detailed information see other resources on JAXP (ex. 
+<a class="fork" href="http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/xslt/3_generate.html">An older JAXP tutorial</a>).
+    </p>
+  </section>
+  <section id="ExampleObj2PDF">
+    <title>ExampleObj2PDF.java</title>
+    <p>This 
+        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleObj2PDF.java?view=markup">
+            example</a>
+combines the previous and the third to demonstrate 
+how you can transform a Java object to a PDF directly in one smooth run
+by generating SAX events from the Java object that get fed to an XSL 
+transformation. The result of the transformation is then converted to PDF 
+using FOP as before.
+    </p>
+    <figure src="images/EmbeddingExampleObj2PDF.png" alt="Example Java object to PDF (via XML and XSL-FO)"/>
+  </section>
+  <section id="ExampleDOM2PDF">
+    <title>ExampleDOM2PDF.java</title>
+    <p>This 
+        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleDOM2PDF.java?view=markup">
+            example</a>
+has FOP use a DOMSource instead of a StreamSource in order to 
+use a DOM tree as input for an XSL transformation.
+    </p>
+  </section>
+  <section id="ExampleSVG2PDF">
+    <title>ExampleSVG2PDF.java (PDF Transcoder example)</title>
+    <p>This 
+        <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/embedding/java/embedding/ExampleSVG2PDF.java?view=markup">
+            example</a>
+shows use of the PDF Transcoder, a sub-application within FOP.  
+It is used to generate a PDF document from an SVG file.
+    </p>
+  </section>
+  <section id="example-notes">
+    <title>Final notes</title>
+    <p>
+These examples should give you an idea of what's possible. It should be easy 
+to adjust these examples to your needs. Also, if you have other examples that you
+think should be added here, please let us know via either the fop-users or fop-dev
+mailing lists.  Finally, for more help please send your questions to the fop-users
+mailing list.
+    </p>
+  </section>
+</section>
+  </body>
+</document>
+
diff --git a/src/documentation/content/xdocs/0.91/extensions.xml b/src/documentation/content/xdocs/0.91/extensions.xml
new file mode 100644 (file)
index 0000000..71fff1e
--- /dev/null
@@ -0,0 +1,106 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Standard FOP Extensions</title>
+    <version>$Revision$</version>
+  </header>
+  <body>
+    <p>
+      By "extension", we mean any data that can be placed in the input XML document that 
+      is not addressed by the XSL-FO standard.
+      By having a mechanism for supporting extensions, FOP is able to add features that 
+      are not covered in the specification.
+    </p>
+    <p>
+      The extensions documented here are included with FOP, and are automatically available 
+      to you. If you wish to add an extension of your own to FOP, please see the 
+      <a href="../dev/extensions.html">Developers' Extension Page</a>.
+    </p>
+    <note>All extensions required the correct use of an appropriate namespace in your input document.</note>
+    <section id="svg">
+      <title>SVG</title>
+      <p>
+        Please see the <a href="graphics.html#svg">SVG documentation</a> for more details.
+      </p>
+    </section>
+    <section id="fo-extensions">
+      <title>FO Extensions</title>
+      <section id="fox-namespace">
+        <title>Namespace</title>
+        <p>
+          By convention, FO extensions in FOP use the "fox" namespace prefix.
+          To use any of the FO extensions, add a namespace entry for 
+          <code>http://xml.apache.org/fop/extensions</code> to the root element:
+        </p>
+        <source><![CDATA[<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
+               xmlns:fox="http://xml.apache.org/fop/extensions">]]></source>
+        <note>Currently, no extensions are implemented in FOP Trunk which use the FOP extension namespace.</note>
+      </section>
+      <section id="bookmarks">
+        <title>PDF Bookmarks</title>
+        <p>
+          In previous versions of Apache FOP there was a <code>fox:outline</code> element
+          which was used to create outlines in PDF files. The redesigned code makes use
+          of the new <a href="http://www.w3.org/TR/xsl11/#fo_bookmark-tree">bookmark feature defined in the latest XSL 1.1 working draft</a>.
+        </p>
+      </section>
+      <section id="named-destinations">
+        <title>Anchors or Named Destinations</title>
+        <p>This extension element hasn't been reimplemented for the redesigned code, yet.</p>
+        <!--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".
+fox:destination elements can be placed almost anywhere in the fo document, including a child of
+root, a block-level element, or an inline-level element.
+For the destination to actually work, it must correspond to an "id" attribute on some fo element
+within the document. In other words, the "id" attribute actually creates the "view" within the
+PDF document. The fox:destination simply gives that view an independent name.
+</p>
+        <source><![CDATA[<fox:destination internal-destination="table-of-contents"/>
+...
+<fo:block id="table-of-contents">Table of Contents</fo:block>]]></source>
+        <warning>It is possible that in some future release of FOP, <em>all </em>elements with
+"id" attributes will generate named-destinations, which will eliminate the need for
+fox:destination.</warning-->
+      </section>
+      <section id="table-continue-label">
+        <title>Table Continuation Label</title>
+        <p>This extension element hasn't been reimplemented for the redesigned code, yet.</p>
+        <!--p>Use the fox:continued-label element to create content in table-header and
+table-footer cells that will appear only on pages after the first page that the table
+appears. fox:continued-label is itself inline content, and is a container of fo:inline
+content. This content will be laid out only if the table does not fit on a single page and flows
+to following pages. Here is an example of FO code creating such a table-header:</p>
+<source><![CDATA[<fo:table-header>
+  <fo:table-row>
+    <fo:table-cell>
+      <fo:block>Header column 1 with continued label
+          <fox:continued-label><fo:inline> (cont.)</fo:inline></fox:continued-label>
+      </fo:block>
+    </fo:table-cell>
+    <fo:table-cell>
+      <fo:block>Header column 2 with no continued label</fo:block>
+    </fo:table-cell>
+  </fo:table-row>
+</fo:table-header>]]></source-->
+      </section>
+    </section>
+  </body>
+</document>
+
diff --git a/src/documentation/content/xdocs/0.91/fonts.xml b/src/documentation/content/xdocs/0.91/fonts.xml
new file mode 100644 (file)
index 0000000..993fa04
--- /dev/null
@@ -0,0 +1,273 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Apache FOP: Fonts</title>
+    <version>$Revision$</version>
+    <authors>
+      <person name="Jeremias Märki" email=""/>
+      <person name="Tore Engvig" email=""/>
+    </authors>
+  </header>
+  <body>
+    <section id="intro">
+      <title>Summary</title>
+      <note>The FOP Font subsystem is currently undergoing a significant change.
+        The details provided here especially related to the generation of FOP Font
+        Metrics files and the FOP Font configuration are likely to change substantially
+        in the future.
+      </note>
+      <p>The following table summarizes the font capabilities of the various FOP renderers:</p>
+      <table>
+        <tr>
+          <th>Renderer</th>
+          <th>Base-14</th>
+          <th>AWT/OS</th>
+          <th>Custom</th>
+          <th>Custom Embedding</th>
+        </tr>
+        <tr>
+          <td>PDF</td>
+          <td>yes</td>
+          <td>no</td>
+          <td>yes</td>
+          <td>yes</td>
+        </tr>
+        <tr>
+          <td>PostScript</td>
+          <td>yes</td>
+          <td>no</td>
+          <td>yes</td>
+          <td>yes</td>
+        </tr>
+        <!--tr> NOT AVAILABLE YET!!!
+          <td>PCL</td>
+          <td>yes (modified)</td>
+          <td>no</td>
+          <td>no</td>
+          <td>no</td>
+        </tr-->
+        <tr>
+          <td>TXT</td>
+          <td>yes (used for layout but not for output)</td>
+          <td>no</td>
+          <td>yes (used for layout but not for output)</td>
+          <td>no</td>
+        </tr>
+        <tr>
+          <td>AWT</td>
+          <td>if available from OS</td>
+          <td>yes</td>
+          <td>yes</td>
+          <td>n/a (display only)</td>
+        </tr>
+        <tr>
+          <td>Print</td>
+          <td>if available from OS</td>
+          <td>yes</td>
+          <td>yes</td>
+          <td>controlled by OS printer driver</td>
+        </tr>
+        <tr>
+          <td>RTF</td>
+          <td>n/a (font metrics not needed)</td>
+          <td>n/a</td>
+          <td>n/a</td>
+          <td>n/a</td>
+        </tr>
+        <tr>
+          <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>
+          <td>SVG</td>
+          <td>if available from OS</td>
+          <td>yes</td>
+          <td>no</td>
+          <td>no</td>
+        </tr>
+        <tr>
+          <td>XML</td>
+          <td>yes</td>
+          <td>no</td>
+          <td>yes</td>
+          <td>n/a</td>
+        </tr>
+      </table>
+    </section>
+    <section>
+      <title>Base-14 Fonts</title>
+      <p>The Adobe PDF Specification specifies a set of 14 fonts that must be available to every PDF reader: Helvetica (normal, bold, italic, bold italic), Times (normal, bold, italic, bold italic), Courier (normal, bold, italic, bold italic), Symbol and ZapfDingbats.</p>
+    </section>
+    <section id="awt">
+      <title>AWT/Operating System Fonts</title>
+      <p>The AWT family of renderers (AWT, Print, SVG), use the Java AWT libraries for font metric information. Through operating system registration, the AWT libraries know what fonts are available on the system, and the font metrics for each one.</p>
+    </section>
+    <section id="custom">
+      <title>Custom Fonts</title>
+      <p>Support for custom fonts is added by creating font metric files (written in XML) from the actual font files, and registering them with FOP. Currently only Type 1 and TrueType fonts can be added.
+More information about fonts can be found at:</p>
+      <ul>
+        <li><a href="http://partners.adobe.com/asn/developer/type/ftypes.html">Adobe font types</a></li>
+        <li><a href="http://partners.adobe.com/asn/developer/technotes/fonts.html">Adobe Font Technote</a>
+</li>
+      </ul>
+      <section id="type1-metrics">
+        <title>Type 1 Font Metrics</title>
+        <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>
+        <p>Windows (on JDK 1.4 and later):</p>
+        <source>java -cp build\fop.jar;lib\avalon-framework.jar;lib\commons-logging.jar;lib\commons-io.jar
+           org.apache.fop.fonts.apps.PFMReader [options] pfm-file xml-file</source>
+        <p>Windows (on JDK 1.3.x):</p>
+        <source>java -cp build\fop.jar;lib\avalon-framework.jar;lib\commons-logging.jar;lib\commons-io.jar;lib\xml-apis.jar;
+         lib\xercesImpl.jar;lib\xalan.jar;lib\serializer.jar
+           org.apache.fop.fonts.apps.PFMReader [options] pfm-file xml-file</source>
+        <p>Unix (on JDK 1.4 and later):</p>
+        <source>java -cp build/fop.jar:lib/avalon-framework.jar:lib/commons-logging.jar:lib/commons-io.jar
+           org.apache.fop.fonts.apps.PFMReader [options] pfm-file xml-file</source>
+        <p>Unix (on JDK 1.3.1):</p>
+        <source>java -cp build/fop.jar:lib/avalon-framework.jar:lib/commons-logging.jar:lib/commons-io.jar:lib/xml-apis.jar:
+         lib/xercesImpl.jar:lib/xalan.jar:lib/serializer.jar
+           org.apache.fop.fonts.apps.PFMReader [options] pfm-file xml-file</source>
+        <p>PFMReader [options]:</p>
+        <ul>
+          <li><strong>-fn &lt;fontname&gt;</strong> By default, FOP uses the fontname from the
+.pfm file when embedding the font. Use the "-fn" option to override this name with one you have
+chosen. This may be useful in some cases to ensure that applications using the output document
+(Acrobat Reader for example) use the embedded font instead of a local font with the same
+name.</li>
+        </ul>
+        <note>The classpath in the above example has been simplified for readability.
+You will have to adjust the classpath to the names of the actual JAR files in the lib directory.
+xml-apis.jar, xercesImpl.jar, xalan.jar and serializer.jar are not necessary for JDK version 1.4 or later.</note>
+        <note>The tool will construct some values (FontBBox, StemV and ItalicAngle) based on assumptions and calculations which are only an approximation to the real values.
+FontBBox and Italic Angle can be found in the human-readable part of the PFB file or in the AFM file.
+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.</note>
+      </section>
+      <section id="truetype-metrics">
+        <title>TrueType Font Metrics</title>
+        <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.
+For example, to create such a metrics file in Windows from the TrueType font at c:\myfonts\cmr10.ttf:</p>
+        <source>java -cp build\fop.jar;lib\avalon-framework.jar;lib\commons-logging.jar;lib\commons-io.jar
+           org.apache.fop.fonts.apps.TTFReader [options]
+             C:\myfonts\cmr10.ttf ttfcm.xml</source>
+        <p>TTFReader [options]:</p>
+        <ul>
+          <li><strong>-d &lt;DEBUG | INFO &gt;</strong> Sets the debug level (default is
+INFO).</li>
+          <li><strong>-fn &lt;fontname&gt;</strong> Same as for PFMReader.</li>
+          <li><strong>-ttcname &lt;fontname&gt;</strong> If you're reading data from a
+TrueType Collection (.ttc file) you must specify which font from the collection you will read
+metrics from.
+If you read from a .ttc file without this option, the fontnames will be listed for you.</li>
+          <li><strong>-enc ansi</strong> Creates a WinAnsi-encoded font metrics file.
+Without this option, a CID-keyed font metrics file is created.
+The table below summarizes the differences between these two encoding options as currently
+used within FOP.
+Please note that this information only applies to TrueType fonts and TrueType collections:</li>
+        </ul>
+        <table id="ttf-encoding">
+          <tr>
+            <th>Issue</th>
+            <th>WinAnsi</th>
+            <th>CID-keyed</th>
+          </tr>
+          <tr>
+            <td>Usable Character Set</td>
+            <td>Limited to WinAnsi character set, which is roughly equivalent to iso-8889-1.</td>
+            <td>Limited only by the characters in the font itself.</td>
+          </tr>
+          <tr>
+            <td>Character Encoding in the Output Document.</td>
+            <td>Correct.</td>
+            <td>Never correct. Search, index, and cut-and-paste operations in the output document
+will produce incorrect results.</td>
+          </tr>
+          <tr>
+            <td>Character Display</td>
+            <td>Correct.</td>
+            <td>Correct if and only if the font is embedded in the output. (This is possible
+because, although the underlying characters are encoded incorrectly, the embedded font is
+also encoded incorrectly).</td>
+          </tr>
+        </table>
+        <warning id="cid-keyed-encoding-ttf">As shown in the above table, regardless of
+whether the font is embedded or not, text generated from a CID-keyed font metrics file
+will <em>never </em>be encoded properly.
+Further, if the related font is not embedded, it cannot even be displayed properly.
+Obviously, this behavior is not desirable, and we hope to correct it in upcoming releases.</warning>
+      </section>
+      <section id="truetype-collections-metrics">
+        <title>TrueType Collections Font Metrics</title>
+        <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>
+        <p>To get a list of the fonts in a collection, just start the TTFReader as if it were a normal TrueType file (without the -ttcname option).
+It will display all of the font names and exit with an Exception.</p>
+        <p>Here is an example of generating a metrics file for a .ttc file:</p>
+        <source>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>
+      </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 <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>
+        <source><![CDATA[<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>]]></source>
+        <note>Review the documentation for <a href="configuration.html">FOP Configuration</a> for instructions on making the FOP configuration available to FOP when it runs. Otherwise, FOP has no way of finding your custom font information.</note>
+        <ul>
+          <li>
+            URLs are used to access the font metric and font files.
+            <!--Relative URLs are resolved relative to the fontBaseDir property (or baseDir) if available.-->
+            See <a href="configuration.html">FOP: Configuration</a> for more information.
+            <note>Relative font URLs are currently not possible. You need to specify absolute URLs. Patches are welcome! :-)</note>
+          </li>
+          <li>The "kerning" and "embed-url" attributes are optional. Kerning is currently not used at all. If embedding is off, the output will position the text correctly (from the metrics file), but it will not be displayed or printed correctly unless the viewer has the applicable font available to their local system.</li>
+          <li>When setting the embed-url attribute for Type 1 fonts, be sure to specify the PFB (actual font data), not PFM (font metrics) file that you used to generate the XML font metrics file.</li>
+        </ul>
+        <!--note>Cocoon users will need to setup the config, see FOPSerializer for more information.</note-->
+      </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>
+        <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.
+Currently, this embedded font contains only the minimum data needed to be embedded in a pdf document, and does not contain any codepage information.
+The PDF document contains indexes to the glyphs in the font instead of to encoded characters.
+While the document will be displayed correctly, the net effect of this is that searching, indexing, and cut-and-paste will not work properly.</p>
+        <p>One workaround for this behavior is to use the "-enc ansi" option when generating metrics with TTFReader.
+This will cause the whole font to be embedded in the pdf document.
+Characters will be WinAnsi encoded (as specified in the PDF spec), so you lose the ability to use characters from other character sets.
+See <a href="#ttf-encoding">Table of TTF Encoding Options</a> for more details.</p>
+      </section>
+    </section>
+  </body>
+</document>
diff --git a/src/documentation/content/xdocs/0.91/graphics.xml b/src/documentation/content/xdocs/0.91/graphics.xml
new file mode 100644 (file)
index 0000000..e52f257
--- /dev/null
@@ -0,0 +1,343 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Apache FOP: Graphics Formats</title>
+    <version>$Revision$</version>
+  </header>
+  <body>
+    <section id="support-overview">
+      <title>Overview of Graphics Support</title>
+      <p>
+        The table below summarizes the <em>theoretical</em> support for graphical formats within FOP. In other words, within the constraints of the limitations listed here, these formats <em>should</em> work. However, many of them have not been tested, and there may be limitations that have not yet been discovered or documented. The packages needed to support some formats are not included in the FOP distribution and must be installed separately. Follow the links in the "Support Thru" column for more details.
+      </p>
+      <table>
+        <tr>
+          <th>Format</th>
+          <th>Type</th>
+          <th><a href="#native">FOP native support</a></th>
+          <th><a href="#batik">Batik SVG</a></th>
+          <th><a href="#batik-codecs">Batik codecs</a></th>
+          <th><a href="#imageio">Image I/O</a></th>
+          <th><a href="#jai">JAI</a></th>
+          <th><a href="#jimi">JIMI</a></th>
+        </tr>
+        <tr>
+          <td><a href="#bmp">BMP</a> (Microsoft Windows Bitmap)</td>
+          <td>bitmap</td>
+          <td>X</td>
+          <td></td>
+          <td></td>
+          <td></td>
+          <td></td>
+          <td></td>
+        </tr>
+        <tr>
+          <td><a href="#eps">EPS</a> (Encapsulated PostScript)</td>
+          <td>metafile (both bitmap and vector), probably most frequently used for vector drawings</td>
+          <td>(X)</td>
+          <td></td>
+          <td></td>
+          <td></td>
+          <td></td>
+          <td></td>
+        </tr>
+        <tr>
+          <td>GIF (Graphics Interchange Format)</td>
+          <td>bitmap</td>
+          <td>X</td>
+          <td></td>
+          <td></td>
+          <td>X</td>
+          <td>X</td>
+          <td>X</td>
+        </tr>
+        <tr>
+          <td><a href="#jpeg">JPEG</a> (Joint Photographic Experts Group)</td>
+          <td>bitmap</td>
+          <td>(X)</td>
+          <td></td>
+          <td></td>
+          <td></td>
+          <td></td>
+          <td></td>
+        </tr>
+        <tr>
+          <td><a href="#png">PNG</a> (Portable Network Graphic)</td>
+          <td>bitmap</td>
+          <td></td>
+          <td></td>
+          <td>X</td>
+          <td></td>
+          <td></td>
+          <td></td>
+        </tr>
+        <tr>
+          <td><a href="#svg">SVG</a> (Scalable Vector Graphics)</td>
+          <td>vector (with embedded bitmaps)</td>
+          <td></td>
+          <td>X</td>
+          <td></td>
+          <td></td>
+          <td></td>
+          <td></td>
+        </tr>
+        <tr>
+          <td><a href="#tiff">TIFF</a> (Tag Image Format File)</td>
+          <td>bitmap</td>
+          <td>(X)</td>
+          <td></td>
+          <td>X</td>
+          <td></td>
+          <td>X</td>
+          <td></td>
+          <!--td><a href="#native">FOP native</a> or <a href="#jai">JAI</a>, depending on the subformat. See <a href="#tiff">TIFF</a> for more details.(JIMI also supports TIFF, but this has not been implemented within FOP).</td-->
+        </tr>
+      </table>
+      <note>"(X)" means restricted support. Please see the details below.</note>
+    </section>
+    <section id="packages">
+      <title>Graphics Packages</title>
+      <section id="native">
+        <title>FOP Native</title>
+        <p>
+          FOP has native ability to handle some graphic file formats.
+        </p>
+      </section>
+      <section id="batik-codecs">
+        <title>Batik codecs</title>
+        <p>
+          Apache Batik contains codecs for PNG and TIFF access. FOP can use these.
+        </p>
+      </section>
+      <section id="imageio">
+        <title>Image I/O (JDK 1.4 or higher)</title>
+        <p>
+          For JDKs 1.4 or higher, FOP provides a wrapper to load images through the 
+          <a class="fork" 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="fork" href="http://java.sun.com/products/java-media/jai/">JAI Image I/O Tools</a> available from Sun.
+        </p>
+      </section>
+      <section id="jimi">
+        <title>JIMI</title>
+        <p>
+          Because of licensing issues, the JIMI image library is not included in the FOP distribution. First, <a class="fork" href="http://java.sun.com/products/jimi">download</a> and install it.
+Then, copy the file "JimiProClasses.zip" from the archive to {fop-install-dir}/lib/jimi-1.0.jar. Please note that FOP binary distributions are compiled with JIMI support, so there is no need for you to build FOP to add the support. If jimi-1.0.jar is installed in the right place, it will automatically be used by FOP, otherwise it will not.
+        </p>
+      </section>
+      <section id="jai">
+        <title>JAI (Java Advanced Imaging API)</title>
+        <warning>JAI support is available for Release 0.20.5 and later. The comments in this section do not apply to releases earlier than 0.20.5.</warning>
+        <p>
+          FOP has been compiled with JAI support, but JAI is not included in the FOP distribution.
+To use it, install <a href="http://java.sun.com/products/java-media/jai">JAI</a>, then copy the jai_core.jar and the jai_codec.jar files to {fop-install-dir}/lib.
+JAI is much faster than JIMI, but is not available for all platforms. See <a href="http://java.sun.com/products/java-media/jai/forDevelopers/jaifaq.html#platforms">What platforms are supported?</a> on the JAI FAQ page for more details.
+        </p>
+      </section>
+      <section id="batik">
+        <title>Batik</title>
+        <p>Current FOP distributions include a distribution of the Apache <a class="fork" href="ext:batik">Batik</a> version 1.6.
+It is automatically installed with FOP.
+Because Batik's API changes frequently, it is highly recommended that you use the version that ships with FOP, at least when running FOP.</p>
+        <warning>Batik must be run in a graphical environment.</warning>
+        <p>Batik must be run in a graphical environment.
+It uses AWT classes for rendering SVG, which in turn require an X server on Unixish systems.
+If you run a server without X, or if you can't connect to the X server due to security restrictions or policies (a so-called "headless" environment), SVG rendering will fail.</p>
+        <p>Here are some workarounds:</p>
+        <ul>
+          <li>If you are using JDK 1.4, start it with the <code>-Djava.awt.headless=true</code> command line option.</li>
+          <li>Install an X server which provides an in-memory framebuffer without actually using a screen device or any display hardware. One example is Xvfb.</li>
+          <li>Install a toolkit which emulates AWT without the need for an underlying X server. One example is the <a href="http://www.eteks.com/pja/en">PJA toolkit</a>, which is free and comes with detailed installation instructions.</li>
+        </ul>
+      </section>
+    </section>
+    <section id="bmp">
+      <title>BMP</title>
+      <p>FOP native support for BMP images is limited to the RGB color-space.</p>
+    </section>
+    <section id="eps">
+      <title>EPS</title>
+      <p>FOP provides support for two output targets:</p>
+      <ul>
+        <li>PostScript (full support).</li>
+        <li>
+          PDF (partial support). Due to the lack of a built-in PostScript interpreter, FOP 
+          can only embed the EPS file into the PDF. Acrobat Reader will not currently display 
+          the EPS (it doesn't have a PostScript interpreter, either) but it will be shown 
+          correctly when you print the PDF on a PostScript-capable printer. PostScript devices 
+          (including GhostScript) will render the EPS correctly.
+        </li>
+      </ul>
+      <p>
+        Other output targets can't be supported at the moment because
+        FOP lacks a PostScript interpreter. Furthermore, FOP is not able
+        to parse the preview bitmaps sometimes contained in EPS files.
+      </p>
+    </section>
+    <section id="jpeg">
+      <title>JPEG</title>
+      <p>FOP native support of JPEG does not include all variants, especially those containing unusual color lookup tables and color profiles.
+If you have trouble with a JPEG image in FOP, try opening it with an image processing program (such as Photoshop or Gimp) and then saving it.
+Specifying 24-bit color output may also help.
+For the PDF and PostScript renderers most JPEG images can be passed through without decompression.
+User reports indicate that grayscale, RGB, and CMYK color-spaces are all rendered properly.
+      </p>
+    </section>
+    <section id="png">
+      <title>PNG</title>
+      <p>If using JAI for PNG support, only RGB and RGBA color-spaces are supported for FOP rendering.</p>
+    </section>
+    <section id="svg">
+      <title>SVG</title>
+      <section id="svg-intro">
+        <title>Introduction</title>
+        <p>FOP uses <a href="#batik">Batik</a> for SVG support.
+This format can be handled as an <code>fo:instream-foreign-object</code> or in a separate
+file referenced with <code>fo:external-graphic</code>.</p>
+      <note>   
+Batik's SVG Rasterizer utility may also be used to convert standalone SVG
+documents into PDF.  For more information please see the
+<a href="http://xml.apache.org/batik/svgrasterizer.html">SVG Rasterizer documentation</a>
+on the Batik site.
+      </note>
+      </section>
+      <section id="svg-pdf-graphics">
+        <title>Placing SVG Graphics into PDF</title>
+        <p>
+The SVG is rendered into PDF by using PDF commands to draw and fill
+lines and curves. This means that the graphical objects created with
+this remain as vector graphics.
+        </p>
+        <p>
+There are a number of SVG things that cannot be converted directly into
+PDF. Parts of the graphic such as effects, patterns and images are inserted
+into the PDF as a raster graphic. The resolution of this graphic may not
+be ideal depending on the FOP dpi (72dpi) and the scaling for that graphic.
+We hope to improve this in the future.</p>
+        <p>
+Currently transparency is not supported in PDF so many svg images that
+contain effects or graphics with transparent areas will not be displayed
+correctly.
+        </p>
+      </section>
+      <section id="svg-pdf-text">
+        <title>Placing SVG Text into PDF</title>
+        <p>If possible, Batik will use normal PDF text when inserting text. It does
+this by checking if the text can be drawn normally and the font is
+supported. This example svg <a href="../dev/svg/text.svg">text.svg</a> /
+<!--link href="../dev/svg/text.pdf"-->text.pdf<!--/link-->
+shows how various types and effects with text are handled.
+Note that tspan and outlined text are not yet implemented.</p>
+        <p>
+Otherwise, text is converted and drawn as a set of shapes by batik, using the stroking text painter.
+This means that a typical character will
+have about 10 curves (each curve consists of at least 20 characters).
+This can make the pdf files large and when the pdf is viewed the
+viewer does not normally draw those fine curves very well (turning on
+Smooth Line Art in the Acrobat preferences will fix this).
+If the text is inserted into the PDF using the inbuilt text commands
+for PDF it will use a single character.
+        </p>
+        <p>
+For PDF output, there is a <a href="configuration.html#svg-strokeSVGText">configuration option to force SVG text to be rendered as text</a>.
+The drawback to this approach is that it is effective only for available fonts (including embedded fonts).
+Font sizes are rounded to the next integer point size.
+This will be improved in the future.
+        </p>
+        <p>Note that because SVG text can be rendered as either text or a vector graphic, you may need to consider settings in your viewer for both.
+The Acrobat viewer has both "smooth line art" and "smooth text" settings that may need to be set for SVG images 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>
+      </section>
+      <section id="svg-scaling">
+        <title>Scaling</title>
+        <p>Currently, SVG images are rendered with the dimensions specified <em>in the SVG file</em>, within the viewport specified in the fo:external-graphic element.
+For everything to work properly, the two should be equal.
+The SVG standard leaves this issue as an implementation detail.
+FOP will probably implement a scaling mechanism in the future.</p>
+      </section>
+      <section id="svg-problems">
+        <title>Known Problems</title>
+        <ul>
+          <li>
+soft mask transparency is combined with white so that it looks better
+on pdf 1.3 viewers but this causes the soft mask to be slightly lighter
+or darker on pdf 1.4 viewers
+          </li>
+          <li>
+there is some problem with a gradient inside a pattern causing a pdf
+error when viewed in acrobat 5
+          </li>
+          <li>
+text is not always handled correctly, it may select the wrong font
+especially if characters have multiple fonts in the font list
+          </li>
+          <li>
+more pdf text handling could be implemented
+It could draw the string using the attributed character iterator
+to handle tspans and other simple changes of text.
+          </li>
+          <li>
+JPEG images are not inserted directly into the pdf document
+This area has not been implemented yet since the appropriate
+method in batik is static
+          </li>
+          <li>
+Uniform transparency for images and other svg elements that are converted
+into a raster graphic are not drawn properly in PDF. The image is opaque.
+          </li>
+        </ul>
+      </section>
+    </section>
+    <section id="tiff">
+      <title>TIFF</title>
+      <p>FOP-native TIFF support is limited to PDF and PostScript output only. Also, according to user reports, FOP's native support for TIFF is limited to images with the following characteristics (all must be true for successful rendering):</p>
+      <ul>
+        <li>single channel images (i.e., bi-level and grayscale only)</li>
+        <li>uncompressed images, or images using CCITT T.4, CCITT T.6, or JPEG compression</li>
+        <li>images using white-is-zero encoding in the TIFF PhotometricInterpretation tag</li>
+      </ul>
+      <p><em>JAI:</em> Supports RGB and RGBA only for FOP rendering.</p>
+    </section>
+    <section id="resolution">
+      <title>Graphics Resolution</title>
+      <p>Some bitmapped image file formats store a dots-per-inch (dpi) or other resolution value. Since PDF and most output formats do not have a concept of resolution, but only of absolute image units (i.e. pixels) FOP ignores the resolution values as well. Instead, FOP uses the dimensions of the image as specified in the fo:external-graphic element to render the image:</p>
+      <ul>
+        <li>If no dimensions are given, FOP uses a default value of 72 dpi to compute the graphic's dimensions. For example, suppose a graphic 300 pixels wide and 400 pixels high. FOP will render the graphic at 4.167 inches wide, 5.555 inches high, with an apparent resolution of 72 dpi.</li>
+        <li>If only one dimension is given, FOP by default uses the same aspect ratio to compute the other dimension (to avoid the appearance of stretching). For example, suppose a graphic 300 pixels wide and 400 pixels high, for which content-width = ".5in". FOP will compute the content-height = .667 inches, and will render the graphic at that size, with an apparent resolution of 600 dpi.</li>
+        <li>If both dimensions are given, FOP simply renders the image in that space. For example, suppose a graphic 300 pixels wide and 400 pixels high, for which content-width = "3in" and content-height = "4in". FOP will render the graphic at that size, with an apparent resolution of 100 dpi.</li>
+      </ul>
+      <p>If you need a higher apparent output resolution for bitmapped images, first make sure that at least one dimension of the image is defined in your XSL-FO input. Apart from that, resolution problems are in the image file itself, and must be corrected there: use or create a higher-resolution image file.</p>
+      <note>The explanation above describes only the basic default behavior. There are other attributes of the fo:external-graphic element that can affect the behavior described above.</note>
+    </section>
+    <section id="caching">
+      <title>Image caching</title>
+      <p>
+        FOP caches images between runs. The URL is used as a key to identify images which means that when
+        a particular URL appears again, the image is taken from the cache. If you have a servlet that
+        generates a different image each time it is called with the same URL you need to use a constantly 
+        changing dummy parameter on the URL to avoid caching.
+      </p>
+      <p>
+        The image cache has been improved considerably in the redesigned code. Therefore, a resetCache() method
+        has become unnecessary. If you still experience OutOfMemoryErrors, please notify us.
+      </p>
+    </section>
+  </body>
+</document>
diff --git a/src/documentation/content/xdocs/0.91/hyphenation.xml b/src/documentation/content/xdocs/0.91/hyphenation.xml
new file mode 100644 (file)
index 0000000..3340f9c
--- /dev/null
@@ -0,0 +1,236 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Apache FOP: Hyphenation</title>
+    <version>$Revision$</version>
+  </header>
+  <body>
+    <section id="support">
+    <title>Hyphenation Support</title>
+    <section id="intro">
+      <title>Introduction</title>
+      <p>FOP uses Liang's hyphenation algorithm, well known from TeX. It needs
+       language specific pattern and other data for operation.</p>
+      <p>Because of <a href="#license-issues">licensing issues</a> (and for 
+       convenience), all hyphenation patterns for FOP are made available through 
+       the <a class="fork" href="http://offo.sourceforge.net/hyphenation/index.html">Objects For 
+       Formatting Objects</a> project.</p>
+      <note>If you have made improvements to an existing FOP hyphenation pattern, 
+       or if you have created one from scratch, please consider contributing these 
+       to OFFO so that they can benefit other FOP users as well. 
+       Please inquire on the <a href="../maillist.html#fop-user">FOP User
+       mailing list</a>.</note>
+    </section>
+    <section id="license-issues">
+      <title>License Issues</title>
+      <p>Many of the hyphenation files distributed with TeX and its offspring are
+       licenced under the <a class="fork" href="http://www.latex-project.org/lppl.html">LaTeX
+       Project Public License (LPPL)</a>, which prevents them from being
+       distributed with Apache software. The LPPL puts restrictions on file names
+       in redistributed derived works which we feel can't guarantee. Some
+       hyphenation pattern files have other or additional restrictions, for
+       example against use for commercial purposes.</p>
+      <p>Although Apache FOP cannot redistribute hyphenation pattern files that do
+       not conform with its license scheme, that does not necessarily prevent users
+       from using such hyphenation patterns with FOP. However, it does place on
+       the user the responsibility for determining whether the user can rightly use
+       such hyphenation patterns under the hyphenation pattern license.</p>
+      <warning>The user is responsible to settle license issues for hyphenation
+       pattern files that are obtained from non-Apache sources.</warning>
+    </section>
+    <section id="sources">
+      <title>Sources of Custom Hyphenation Pattern Files</title>
+      <p>The most important source of hyphenation pattern files is the
+       <a class="fork" href="http://www.ctan.org/tex-archive/language/hyphenation/">CTAN TeX
+        Archive</a>.</p>
+    </section>
+    <section id="install">
+      <title>Installing Custom Hyphenation Patterns</title>
+      <p>To install a custom hyphenation pattern for use with FOP:</p>
+      <ol>
+        <li>Convert the TeX hyphenation pattern file to the FOP format. The FOP
+         format is an xml file conforming to the DTD found at
+         <code>{fop-dir}/hyph/hyphenation.dtd</code>.</li>
+        <li>Name this new file following this schema:
+         <code>languageCode_countryCode.xml</code>. The country code is
+          optional, and should be used only if needed. For example:
+          <ul>
+            <li><code>en_US.xml</code> would be the file name for American
+             English hyphenation patterns.</li>
+            <li><code>it.xml</code> would be the file name for Italian
+             hyphenation patterns.</li>
+          </ul>
+          The language and country codes must match the XSL-FO input, which
+          follows <a href="http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt">ISO
+          639</a> (languages) and <a href="http://www.ics.uci.edu/pub/ietf/http/related/iso3166.txt">ISO
+          3166</a> (countries). NOTE: The ISO 639/ISO 3166 convention is that
+          language names are written in lower case, while country codes are written
+          in upper case. FOP does not check whether the language and country specified
+          in the FO source are actually from the current standard, but it relies
+          on it being two letter strings in a few places. So you can make up your
+          own codes for custom hyphenation patterns, but they should be two
+          letter strings too (patches for proper handling extensions are welcome)</li>
+        <li>There are basically three ways to make the FOP-compatible hyphenation pattern 
+          file(s) accessible to FOP:
+          <ul>
+            <li>Download the precompiled JAR from <a class="fork" href="http://offo.sourceforge.net/hyphenation/index.html">OFFO
+            </a> and place it either in the <code>{fop-dir}/lib</code> directory, or 
+             in a directory of your choice (and append the full path to the JAR to 
+             the environment variable <code>FOP_HYPHENATION_PATH</code>).</li>
+            <li>Download the desired FOP-compatible hyphenation pattern file(s) from 
+             <a class="fork" href="http://offo.sourceforge.net/hyphenation/index.html">OFFO</a>,
+             and/or take your self created hyphenation pattern file(s), 
+             <ul>
+                <li>place them in the directory <code>{fop-dir}/hyph</code>, </li>
+                <li>or place them in a directory of your choice and set the Ant variable
+                <code>user.hyph.dir</code> to point to that directory (in
+                <code>build-local.properties</code>),</li>
+             </ul>
+             and run Ant with build target
+             <code>jar-hyphenation</code>. This will create a JAR containing the 
+             compiled patterns in <code>{fop-dir}/build</code> that will be added to the 
+             classpath on the next run.
+             (When FOP is built from scratch, and there are pattern source file(s) 
+             present in the directory pointed to by the
+             <code>user.hyph.dir</code> variable, this JAR will automatically 
+             be created from the supplied pattern(s)).</li>
+            <li>Put the pattern source file(s) into a directory of your choice and 
+             configure FOP to look for custom patterns in this directory, by setting the
+             <a href="configuration.html#hyphenation-dir">&lt;hyphenation-dir&gt;</a> 
+             configuration option.</li>
+          </ul>
+        </li>
+      </ol>
+      <warning>
+        Either of these three options will ensure hyphenation is working when using
+        FOP from the command-line. If FOP is being embedded, remember to add the location(s)
+        of the hyphenation JAR(s) to the CLASSPATH (option 1 and 2) or to set the 
+        <a href="configuration.html#hyphenation-dir">&lt;hyphenation-dir&gt;</a> 
+        configuration option programmatically (option 3).
+      </warning>
+    </section>
+  </section>
+  <section id="patterns">
+    <title>Hyphenation Patterns</title>
+    <p>If you would like to build your own hyphenation pattern files, or modify
+     existing ones, this section will help you understand how to do so. Even
+     when creating a pattern file from scratch, it may be beneficial to start
+     with an existing file and modify it. See <a class="fork" href="http://offo.sourceforge.net/hyphenation/index.html">
+     OFFO's Hyphenation page</a> for examples. 
+     Here is a brief explanation of the contents of FOP's hyphenation patterns:</p>
+    <warning>The remaining content of this section should be considered "draft"
+     quality. It was drafted from theoretical literature, and has not been
+     tested against actual FOP behavior. It may contain errors or omissions.
+     Do not rely on these instructions without testing everything stated here.
+     If you use these instructions, please provide feedback on the
+     <a href="../maillist.html#fop-user">FOP User mailing list</a>, either
+     confirming their accuracy, or raising specific problems that we can
+     address.</warning>
+    <ul>
+      <li>The root of the pattern file is the &lt;hyphenation-info> element.</li>
+      <li>&lt;hyphen-char>: its attribute "value" contains the character signalling
+       a hyphen in the &lt;exceptions> section. It has nothing to do with the
+       hyphenation character used in FOP, use the XSLFO hyphenation-character
+       property for defining the hyphenation character there. At some points
+       a dash U+002D is hardwired in the code, so you'd better use this too
+       (patches to rectify the situation are welcome). There is no default,
+       if you declare exceptions with hyphenations, you must declare the
+       hyphen-char too.</li>
+      <li>&lt;hyphen-min> contains two attributes:
+        <ul>
+          <li>before: the minimum number of characters in a word allowed to exist
+           on a line immediately preceding a hyphenated word-break.</li>
+          <li>after: the minimum number of characters in a word allowed to exist
+           on a line immediately after a hyphenated word-break.</li>
+        </ul>
+        This element is unused and not even read. It should be considered a
+        documentation for parameters used during pattern generation.
+      </li>
+      <li>&lt;classes> contains whitespace-separated character sets. The members
+       of each set should be treated as equivalent for purposes of hyphenation,
+       usually upper and lower case of the same character. The first character
+       of the set is the canonical character, the patterns and exceptions
+       should only contain these canonical representation characters (except
+       digits for weight, the period (.) as word delimiter in the patterns and
+       the hyphen char in exceptions, of course).</li>
+      <li>&lt;exceptions> contains whitespace-separated words, each of which
+       has either explicit hyphen characters to denote acceptable breakage
+       points, or no hyphen characters, to indicate that this word should
+       never be hyphenated, or contain explicit &lt;hyp> elements for specifying
+       changes of spelling due to hyphenation (like backen -> bak-ken or
+       Stoffarbe -> Stoff-farbe in the old german spelling). Exceptions override
+       the patterns described below. Explicit &lt;hyp> declarations don't work
+       yet (patches welcome). Exceptions are generally a bit brittle, test
+       carefully.</li>
+      <li>&lt;patterns> includes whitespace-separated patterns, which are what
+       drive most hyphenation decisions. The characters in these patterns are
+       explained as follows:
+        <ul>
+          <li>non-numeric characters represent characters in a sub-word to be
+           evaluated</li>
+          <li>the period character (.) represents a word boundary, i.e. either
+           the beginning or ending of a word</li>
+          <li>numeric characters represent a scoring system for indicating the
+           acceptability of a hyphen in this location. Odd numbers represent an
+           acceptable location for a hyphen, with higher values overriding lower
+           inhibiting values. Even numbers indicate an unacceptable location, with
+           higher values overriding lower values indicating an acceptable position.
+           A value of zero (inhibiting) is implied when there is no number present.
+           Generally patterns are constructed so that valuse greater than 4 are rare.
+           Due to a bug currently patterns with values of 8 and greater don't
+           have an effect, so don't wonder.</li>
+        </ul>
+        Here are some examples from the English patterns file:
+        <ul>
+          <li>Knuth (<em>The TeXBook</em>, Appendix H) uses the example <strong>hach4</strong>, which indicates that it is extremely undesirable to place a hyphen after the substring "hach", for example in the word "toothach-es".</li>
+          <li><strong>.leg5e</strong> indicates that "leg-e", when it occurs at the beginning of a word, is a very good place to place a hyphen, if one is needed. Words like "leg-end" and "leg-er-de-main" fit this pattern.</li>
+        </ul>
+        Note that the algorithm that uses this data searches for each of the word's substrings in the patterns, and chooses the <em>highest</em> value found for letter combination.
+      </li>
+    </ul>
+    <p>If you want to convert a TeX hyphenation pattern file, you have to undo
+     the TeX encoding for non-ASCII text. FOP uses Unicode, and the patterns
+     must be proper Unicode too. You should be aware of the XML encoding issues,
+     preferably use a good Unicode editor.</p>
+    <p>Note that FOP does not do Unicode character normalization. If you use
+     combining chars for accents and other character decorations, you must
+     declare character classes for them, and use the same sequence of base character
+     and combining marks in the XSLFO source, otherwise the pattern wouldn't match.
+     Fortunately, Unicode provides precomposed characters for all important cases
+     in common languages, until now nobody run seriously into this issue. Some dead
+     languages and dialects, especially ancient ones, may pose a real problem
+     though.</p>
+    <p>If you want to generate your own patterns, an open-source utility called
+     patgen is available on many Unix/Linux distributions and every TeX
+     distribution which can be used to assist in
+     creating pattern files from dictionaries. Pattern creation for languages like
+     english or german is an art. If you can, read Frank Liang's original paper
+     "Word Hy-phen-a-tion by Com-pu-ter" (yes, with hyphens). It is not available
+     online. The original patgen.web source, included in the TeX source distributions,
+     contains valuable comments, unfortunately technical details obscure often the
+     high level issues. Another important source is
+     <a class="fork" href="http://www.ctan.org/tex-archive/systems/knuth/tex/texbook.tex">The
+     TeX Book</a>, appendix H (either read the TeX source, or run it through
+     TeX to typeset it). Secondary articles, for example the works by Petr Sojka,
+     may also give some much needed insight into problems arising in automated
+     hyphenation.</p>
+  </section>
+  </body>
+</document>
diff --git a/src/documentation/content/xdocs/0.91/index.xml b/src/documentation/content/xdocs/0.91/index.xml
new file mode 100644 (file)
index 0000000..4d5e12b
--- /dev/null
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Apache FOP 0.91 beta</title>
+    <version>$Revision: 201586 $</version>
+  </header>
+  <body>
+    <section id="intro">
+      <title>Introduction</title>
+      <p>
+        The Apache FOP team is proud to present to you the largely rewritten codebase which is 
+        finally in a state where you can start to use it. It has taken over three years to get this
+        far and over two years without a new release from the FOP project. We would like to encourage 
+        you to download the code and to play with it. We're still in the process of adding new major
+        features and stabilizing the code. We welcome any feedback you might have and even more, any
+        other form of help to get the project forward.
+      </p>
+      <p>
+        This second release is mostly a bug fix release but also contains a few new features compared
+        to 0.90alpha1. To see what has changed since the last release, please visit the 
+        <a href="../changes.html">Changes Page</a> and the <a href="../relnotes.html">Release Notes</a>.
+      </p>
+    </section>
+    <section id="upgrading">
+      <title>Upgrading from an earlier version</title>
+      <p>
+        If you're upgrading to this version from an earlier version of FOP, please read the 
+        information contained on the <a href="upgrading.html">Upgrading page</a>!
+      </p>
+    </section>
+    <section id="download">
+      <title>Download</title>
+      <p>
+        To download this version, please visit the <a href="../download.html">download page</a>.
+      </p>
+    </section>
+  </body>
+</document>
diff --git a/src/documentation/content/xdocs/0.91/output.xml b/src/documentation/content/xdocs/0.91/output.xml
new file mode 100644 (file)
index 0000000..d2aed60
--- /dev/null
@@ -0,0 +1,378 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<!-- Output Formats: Renderers -->
+<document>
+  <header>
+    <title>Apache FOP Output Formats</title>
+    <version>$Revision$</version>
+    <authors>
+      <person name="Keiron Liddle" email="keiron@aftexsw.com"/>
+      <person name="Art Welch" email=""/>
+    </authors>
+  </header>
+
+  <body>
+    <p>
+      FOP supports multiple output formats by using a different renderer for each format.
+      The renderers do not all have the same set of capabilities, sometimes because of 
+      the output format itself, sometimes because some renderers get more development 
+      attention than others.
+    </p>
+    <section id="general">
+      <title>General Information</title>
+      <section id="general-fonts">
+        <title>Fonts</title>
+        <p>
+          Most FOP renderers use a FOP-specific system for font registration.
+          However, the Java2D/AWT and print renderers use the Java AWT package, which gets its 
+          font information from the operating system registration.
+          This can result in several differences, including actually using different fonts, 
+          and having different font metrics for the same font.
+          The net effect is that the layout of a given FO document can be quite different between 
+          renderers that do not use the same font information.
+        </p>
+      </section>
+      <section id="general-direct-output">
+        <title>Output to a Printer or Other Device</title>
+        <p>
+          The most obvious way to print your document is to use the FOP 
+          <a href="#print">print renderer</a>, which uses the Java2D API (AWT).
+          However, you can also send output from the Postscript renderer directly to a Postscript 
+          device, or output from the PCL renderer directly to a PCL device.
+        </p>
+        <p>
+          Here are Windows command-line examples for Postscript and PCL:
+        </p>
+        <source><![CDATA[fop ... -ps \\computername\printer]]></source>
+        <source><![CDATA[fop ... -pcl \\computername\printer]]></source>
+        <p>
+          Here is some Java code to accomplish the task in UNIX:
+        </p>
+        <source><![CDATA[proc = Runtime.getRuntime().exec("lp -d" + print_queue + " -o -dp -");
+out = proc.getOutputStream();]]></source>
+        <p>
+          Set the OutputStream (out) to the PCLRenderer and it happily sends the
+          PCL to the UNIX printer queue.
+        </p>
+      </section>
+    </section>
+    <section id="pdf">
+      <title>PDF</title>
+      <p>
+        PDF is the best supported output format. It is also the most accurate
+        with text and layout. This creates a PDF document that is streamed out
+        as each page is rendered. This means that the internal page index
+        information is stored near the end of the document.
+        The PDF version supported is 1.4. PDF versions are forwards/backwards
+        compatible.
+      </p>
+      <p>
+        Note that FOP does not currently support "tagged PDF", PDF/X or PDF/A.
+      </p>
+      <section id="pdf-fonts">
+        <title>Fonts</title>
+        <p>
+          PDF has a set of fonts that are always available to all PDF viewers,
+          to quote from the PDF Specification:
+
+          <em>"PDF prescribes a set of 14 standard fonts that can be used without prior
+          definition.
+          These include four faces each of three Latin text typefaces (Courier,
+          Helvetica, and Times), as well as two symbolic fonts (Symbol and ITC Zapf
+          Dingbats). These fonts, or suitable substitute fonts with the same metrics, are
+          guaranteed to be available in all PDF viewer applications."</em>
+        </p>
+      </section>
+      <section id="pdf-postprocess">
+        <title>Post-processing</title>
+        <p>
+          FOP does not currently support several desirable PDF features: XMP metadata and watermarks. 
+          One workaround is to use Adobe Acrobat (the full version, not the Reader) to process 
+          the file manually or with scripting that it supports.
+        </p>
+        <p>
+          Another popular post-processing tool is <a href="http://www.lowagie.com/iText">iText</a>, 
+          which has tools for adding security features, document properties, watermarks, and many 
+          other features to PDF files.
+        </p>
+        <warning>
+          Caveat: iText may swallow PDF bookmarks. But 
+          <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=37589">Jens Stavnstrup tells us</a>
+          that this doesn't happen if you use iText's PDFStamper.
+        </warning>
+        <p>
+          Here is some sample code that uses iText to encrypt a FOP-generated PDF. (Note that FOP now 
+          supports <a href="pdfencryption.html">PDF encryption</a>. However the principles for using 
+          iText for other PDF features are similar.)
+        </p>
+        <source><![CDATA[public static void main(String args[]) {
+  try {
+    ByteArrayOutputStream fopout = new ByteArrayOutputStream();
+    FileOutputStream outfile = new FileOutputStream(args[2]);
+    Fop fop = new Fop(Constants.RENDER_PDF);
+    fop.setOutputStream(fopout);
+    
+    Transformer transformer = TransformerFactory.newInstance().newTransformer(
+        new StreamSource(new File(args[1])));
+    transformer.transform(new StreamSource(new File(args[0])),
+        new SAXResult(fop.getDefaultHandler()));
+    PdfReader reader = new PdfReader(fopout.toByteArray());
+    int n = reader.getNumberOfPages();
+    Document document = new Document(reader.getPageSizeWithRotation(1));
+    PdfWriter writer = PdfWriter.getInstance(document, outfile);
+    writer.setEncryption(PdfWriter.STRENGTH40BITS, "pdf", null,
+      PdfWriter.AllowCopy);
+    document.open();
+    PdfContentByte cb = writer.getDirectContent();
+    PdfImportedPage page;
+    int rotation;
+    int i = 0;
+    while (i < n) {
+      i++;
+      document.setPageSize(reader.getPageSizeWithRotation(i));
+      document.newPage();
+      page = writer.getImportedPage(reader, i);
+      rotation = reader.getPageRotation(i);
+      if (rotation == 90 || rotation == 270) {
+        cb.addTemplate(page, 0, -1f, 1f, 0, 0,
+        reader.getPageSizeWithRotation(i).height());
+      } else {
+        cb.addTemplate(page, 1f, 0, 0, 1f, 0, 0);
+      }
+      System.out.println("Processed page " + i);
+    }
+    document.close();
+  } catch( Exception e) {
+    e.printStackTrace();
+  }
+}]]></source>
+    <p>
+      Check the iText tutorial and documentation for setting access flags, password, 
+      encryption strength and other parameters.
+    </p>
+  </section>
+  <section id="pdf-watermark">
+    <title>Watermarks</title>
+    <p>
+      In addition to the <a href="#pdf-postprocess">PDF Post-processing</a> options, consider the following workarounds:
+    </p>
+    <ul>
+      <li>
+        Use a background image for the body region.
+      </li>
+      <li>
+        (submitted by Trevor Campbell) Place an image in a
+        region that overlaps the flowing text. For example, make
+        region-before large enough to contain your image. Then include a
+        block (if necessary, use an absolutely positioned block-container)
+        containing the watermark image in the static-content for the
+        region-before. Note that the image will be drawn on top of the
+        normal content.
+      </li>
+    </ul>
+  </section>
+</section>
+<section id="ps">
+  <title>PostScript</title>
+  <p>
+    The PostScript renderer has been brought up to a similar quality as the 
+    PDF renderer, but may still be missing certain features. It provides good 
+    support for most text and layout.
+    Images and SVG are not fully supported, yet. Currently, the PostScript
+    renderer generates PostScript Level 3 with most DSC comments. Actually,
+    the only Level 3 feature used is FlateDecode, everything else is Level 2.
+  </p>
+  <section id="ps-limitations">
+    <title>Limitations</title>
+    <ul>
+      <li>Images and SVG may not be display correctly. SVG support is far from being complete. No image transparency is available.</li>
+      <li>Only Type 1 fonts are supported.</li>
+      <li>Multibyte characters are not supported.</li>
+      <li>PPD support is still missing.</li>
+      <li>The renderer is not yet configurable.</li>
+    </ul>
+  </section>
+</section>
+<section id="rtf">
+  <title>RTF</title>
+  <p>
+    JFOR, an open source XSL-FO to RTF converter has been integrated into Apache FOP.
+    This will create an RTF (rich text format) document that will
+    attempt to contain as much information from the fo document as
+    possible. The RTF output follows Microsoft's RTF specifications
+    and produces best results on Microsoft Word.
+  </p>
+</section>
+<section id="xml">
+  <title>XML (Area Tree XML)</title>
+  <p>
+    This is for testing and verification. The XML created is simply
+    a representation of the internal area tree put into XML. It does
+    not perform any other purpose.
+  </p>
+</section>
+<section id="awt">
+  <title>Java2D/AWT</title>
+    <warning>The Java2D/AWT, Print and Bitmap renderers may not yet fully work as expected. There are some known bugs and missing features.</warning>
+    <p>
+      The AWT viewer shows a window with the pages displayed inside a
+      Java graphic. It displays one page at a time.
+      The fonts used for the formatting and viewing depend on the fonts
+      available to your JRE.
+    </p>
+</section>
+<section id="print">
+  <title>Print</title>
+  <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>
+</section>
+<section id="bitmap">
+  <title>Bitmap (TIFF/PNG)</title>
+  <p>
+    It is possible to directly create bitmap images from the individual 
+    pages generated by the layout engine.
+    This is done with the same code that renders to the Java2D/AWT renderer.
+  </p>
+  <p>
+    Currently, two output formats are supported: PNG and TIFF. TIFF produces
+    one file with multiple pages, while PNG output produces one file per
+    page. The quality of the bitmap depends on the resolution setting on the
+    FOUserAgent.
+  </p>
+</section>
+<section id="txt">
+  <title>TXT</title>
+  <p>
+    The text renderer produces plain ASCII text output
+    that attempts to match the output of the PDFRenderer as closely as
+    possible. This was originally developed to accommodate an archive system
+    that could only accept plain text files, and is primarily useful for getting
+    a quick-and-dirty view of the document text. The renderer is very limited,
+    so do not be surprised if it gives unsatisfactory results.
+  </p>
+  <p>
+    The Text renderer works with a fixed size page buffer. The size of this
+    buffer is controlled with the textCPI and textLPI public variables.
+    The textCPI is the effective horizontal characters per inch to use.
+    The textLPI is the vertical lines per inch to use. From these values
+    and the page width and height the size of the buffer is calculated.
+    The formatting objects to be rendered are then mapped to this grid.
+    Graphic elements (lines, borders, etc) are assigned a lower priority
+    than text, so text will overwrite any graphic element representations.
+  </p>
+  <p>
+    Because FOP lays the text onto a grid during layout, there are frequently 
+    extra or missing spaces between characters and lines, which is generally 
+    unsatisfactory.
+    Users have reported that the optimal settings to avoid such spacing problems are:
+  </p>
+  <ul>
+    <li>font-family="Courier"</li>
+    <li>font-size="7.3pt"</li>
+    <li>line-height="10.5pt"</li>
+  </ul>
+</section>
+<section id="sandbox">
+  <title>Output Formats in the Sandbox</title>
+  <p>
+    Due to the state of certain renderers we moved some of them to a "sandbox" area until 
+    they are ready for more serious use. The renderers and FOEventHandlers in the sandbox
+    can be found under src/sandbox and are compiled into build/fop-sandbox.jar during the
+    main build. The output formats in the sandbox are marked as such below.
+  </p>
+  <section id="pcl">
+    <title>PCL</title>
+    <warning>The PCL Renderer is in the sandbox and not yet functional in FOP Trunk!!! Please help us ressurrect this feature.</warning>
+    <p>
+      This format is for the Hewlett-Packard PCL printers.
+      It should produce output as close to identical as possible to the
+      printed output of the PDFRenderer within the limitations of the
+      renderer, and output device.
+    </p>
+    <!--p>
+      The output created by the PCLRenderer is generic PCL 5 as documented
+      in the "HP PCL 5 Printer Language Technical Reference Manual" (copyright 1990).
+      This should allow any device fully supporting PCL 5 to be able to
+      print the output generated by the PCLRenderer.
+    </p>
+    <section id="pcl-limitations">
+      <title>Limitations</title>
+      <ul>
+        <li>Text or graphics outside the left or top of the printable area are not rendered properly. In general things that should print to the left of the printable area are shifted to the right so that they start at the left edge of the printable area and an error message is generated.</li>
+        <li>The Helvetica and Times fonts are not well supported among PCL printers so Helvetica is mapped to Arial and Times is mapped to Times New. This is done in the PCLRenderer, no changes are required in the FO's. The metrics and appearance for Helvetica/Arial and Times/Times New are nearly identical, so this has not been a problem so far.</li>
+        <li>Only the original fonts built into FOP are supported.</li>
+        <li>For the non-symbol fonts, the ISO 8859/1 symbol set is used (PCL set "0N").</li>
+        <li>Multibyte characters are not supported.</li>
+        <li>SVG is not supported.</li>
+        <li>Images print black and white only (not dithered). When the renderer prints a color image it uses a threshold value, colors above the threshold are printed as white and below are black. If you need to print a non-monochrome image you should dither it first.</li>
+        <li>Image scaling is accomplished by modifying the effective resolution of the image data. The available resolutions are 75, 100, 150, 300, and 600 DPI.</li>
+        <li>Color printing is not supported. Colors are rendered by mapping the color intensity to one of the PCL fill shades (from white to black in 9 steps).</li>
+      </ul>
+    </section>
+
+    <section id="pcl-additional">
+      <title>Additional Features</title>
+      <p>There are some special features that are controlled by some public variables on the PCLRenderer class.</p>
+
+      <dl>
+        <dt>orientation</dt>
+        <dd>The logical page orientation is controlled by the public orientation variable. Legal values are:-->
+          <!--ul>
+            <li>0 Portrait</li>
+            <li>1 Landscape</li>
+            <li>2 Reverse Portrait</li>
+            <li>3 Reverse Landscape</li>
+          </ul-->
+        <!--/dd>
+        <dt>curdiv, paperheight</dt>
+        <dd>The curdiv and paperheight variables allow multiple virtual pages to be printed on a piece of paper. This allows a standard laser printer to use perforated paper where every perforation will represent an individual page. The paperheight sets the height of a piece of paper in decipoints. This will be divided by the page.getHeight() to determine the number of equal sized divisions (pages) that will fit on the paper. The curdiv variable may be read/written to get/set the current division on the page (to set the starting division and read the ending division for multiple invocations).</dd>
+        <dt>topmargin, leftmargin</dt>
+        <dd>The topmargin and leftmargin may be used to increase the top and left margins for printing.</dd>
+      </dl>
+    </section-->
+  </section>
+  <section id="mif">
+    <title>MIF</title>
+    <warning>The MIF handler is in the sandbox and not yet functional in FOP Trunk!!! Please help us ressurrect this feature.</warning>
+    <p>
+      This format is the Maker Interchange Format which is used by
+      Adobe Framemaker.
+    </p>
+   </section>
+   <section id="svg">
+     <title>SVG</title>
+     <warning>The SVG renderer is in the sandbox and may not work as expected in FOP Trunk!!! Please help us improve this feature.</warning>
+     <p>
+       This format creates an SVG document that has links between the pages.
+       This is primarily for slides and creating svg images of pages.
+       Large documents will create SVG files that are far too large for
+       and SVG viewer to handle. Since FO documents usually have text the
+       SVG document will have a large number of text elements.
+       The font information for the text is obtained from the JVM in the
+       same way as the AWT viewer, if the SVG is view where the fonts are
+       different, such as another platform, then the page may appear wrong.
+     </p>
+   </section>
+</section>
+
+  </body>
+</document>
+
diff --git a/src/documentation/content/xdocs/0.91/pdfencryption.xml b/src/documentation/content/xdocs/0.91/pdfencryption.xml
new file mode 100755 (executable)
index 0000000..f0d717f
--- /dev/null
@@ -0,0 +1,221 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>PDF encryption.</title>
+    <version>$Revision$</version>
+    <authors>
+      <person name="J.Pietschmann" email="pietsch@apache.org"/>
+      <person name="Jeremias Märki" email="jeremias@apache.org"/>
+    </authors>
+  </header>
+  <body>
+    <section>
+      <title>Overview</title>
+      <warning>
+        PDF Encryption is available in Release 0.20.5 and later. The comments on this page do 
+        not apply to releases earlier than 0.20.5.
+      </warning>
+      <p>
+        FOP supports encryption of PDF output, thanks to Patrick
+        C. Lankswert. This feature is commonly used to prevent
+        unauthorized viewing, printing, editing, copying text from the
+        document and doing annotations. It is also possible to ask the
+        user for a password in order to view the contents. Note that
+        there already exist third party applications which can decrypt
+        an encrypted PDF without effort and allow the aforementioned
+        operations, therefore the degree of protection is limited.
+      </p>
+      <p>
+        For further information about features and restrictions regarding PDF
+        encryption, look at the documentation coming with Adobe Acrobat or the
+        technical documentation on the Adobe web site.
+      </p>
+    </section>
+    <section>
+      <title>Usage (command line)</title>
+      <p>
+        Encryption is enabled by supplying any of the encryption related
+        options.
+      </p>
+      <p>
+        An owner password is set with the <code>-o</code> option. This
+        password is actually used as encryption key. Many tools for
+        PDF processing ask for this password to disregard any
+        restriction imposed on the PDF document.
+      </p>
+      <p>
+        If no owner password has been supplied but FOP was asked to apply some
+        restrictions, a random password is used. In this case it is obviously
+        impossiible to disregard restrictions in PDF processing tools.
+      </p>
+      <p>
+        A user password, supplied with the <code>-u</code> option, will
+        cause the PDF display software to ask the reader for this password in
+        order to view the contents of the document. If no user password was
+        supplied, viewing the content is not restricted.
+      </p>
+      <p>
+        Further restrictions can be imposed by using the <code>-noprint</code>,
+        <code>-nocopy</code>, <code>-noedit</code> and
+        <code>-noannotations</code> options, which disable printing, copying
+        text, editing in Adobe Acrobat and making annotations, respectively.
+      </p>
+    </section>
+    <section>
+      <title>Usage (embedded)</title>
+      <p>
+        When FOP is embedded in another Java application you need to set an 
+        options map on the renderer. These are the supported options:
+      </p>
+      <table>
+        <tr>
+          <th>Option</th>
+          <th>Description</th>
+          <th>Values</th>
+          <th>Default</th>
+        </tr>
+        <tr>
+          <td>ownerPassword</td>
+          <td>The owner password</td>
+          <td>String</td>
+          <td/>
+        </tr>
+        <tr>
+          <td>userPassword</td>
+          <td>The user password</td>
+          <td>String</td>
+          <td/>
+        </tr>
+        <tr>
+          <td>allowPrint</td>
+          <td>Allows/disallows printing of the PDF</td>
+          <td>"TRUE" or "FALSE"</td>
+          <td>"TRUE"</td>
+        </tr>
+        <tr>
+          <td>allowCopyContent</td>
+          <td>Allows/disallows copy/paste of content</td>
+          <td>"TRUE" or "FALSE"</td>
+          <td>"TRUE"</td>
+        </tr>
+        <tr>
+          <td>allowEditContent</td>
+          <td>Allows/disallows editing of content</td>
+          <td>"TRUE" or "FALSE"</td>
+          <td>"TRUE"</td>
+        </tr>
+        <tr>
+          <td>allowEditAnnotations</td>
+          <td>Allows/disallows editing of annotations</td>
+          <td>"TRUE" or "FALSE"</td>
+          <td>"TRUE"</td>
+        </tr>
+      </table>
+      <note>
+        Encryption is enabled as soon as one of these options is set.
+      </note>
+      <p>
+        An example to enable PDF encryption in Java code:
+      </p>
+      <source><![CDATA[
+import org.apache.fop.pdf.PDFEncryptionParams;
+
+[..]
+
+FOUserAgent userAgent = new FOUserAgent();
+useragent.setPDFEncryptionParams(new PDFEncryptionParams(
+    null, "password", false, false, true, true));
+Fop fop = new Fop(Constants.RENDER_PDF, userAgent);
+driver.setOutputStream(...]]></source>
+      <p>
+        The parameters for the constructor of PDFEncryptionParams are:
+      </p>
+      <ol>
+        <li>userPassword: String, may be null</li>
+        <li>ownerPassword: String, may be null</li>
+        <li>allowPrint: true if printing is allowed</li>
+        <li>allowCopyContent: true if copying content is allowed</li>
+        <li>allowEditContent: true if editing content is allowed</li>
+        <li>allowEditAnnotations: true if editing annotations is allowed</li>
+      </ol>
+    </section>
+    <section>
+      <title>Environment</title>
+      <p>
+        In order to use PDF encryption, FOP has to be compiled with
+        cryptography support. Currently, only <a
+        href="http://java.sun.com/j2se/1.4/docs/guide/security/jce/JCERefGuide.html">JCE</a>
+        is supported. JCE is part of JDK 1.4. For earlier JDKs, it can
+        be installed separately. The build process automatically
+        detects JCE presence and installs PDF encryption support if
+        possible, otherwise a stub is compiled in.
+      </p>
+      <p>
+        Cryptography support must also be present at run time. In particular, a
+        provider for the RC4 cipher is needed. Unfortunately, the sample JCE
+        provider in Sun's JDK 1.4 does <strong>not</strong> provide RC4. If you
+        get a message saying
+      </p>
+      <source>"Cannot find any provider supporting RC4"</source>
+      <p>
+        then you don't have the needed infrastructure.
+      </p>
+      <p>
+        There are several commercial and a few Open Source packages which
+        provide RC4. A pure Java implementation is produced by <a
+        href="http://www.bouncycastle.org/">The Legion of the Bouncy
+        Castle</a>. <a
+        href="http://www.mozilla.org/projects/security/pki/jss/">Mozilla
+        JSS</a> is an interface to a native implementation.
+      </p>
+    </section>
+    <section id="install_crypto">
+      <title>Installing a crypto provider</title>
+      <p>
+        The pure Java implementation from <a
+        href="http://www.bouncycastle.org/">Bouncy Castle</a> is easy to
+        install.
+      </p>
+      <ol>
+        <li>
+          Download the binary distribution for your JDK version. If you have JDK
+          1.3 or earlier you must also download a JCE from the same page.
+        </li>
+        <li>
+          Unpack the distribution. Add the jar file to your classpath. A
+          convenient way to use the jar on Linux is to simply drop it into the
+          FOP lib directory, it will be automatically picked up by
+          <code>fop.sh</code>.  If you have JDK 1.3 or earlier don't forget to
+          install the JCE as well.
+        </li>
+        <li>
+          Open the <code>java.security</code> file and add<br/>
+          <code>security.provider.6=org.bouncycastle.jce.provider.BouncyCastleProvider</code>,<br/>
+          preferably at the end of the block defining the other crypto
+          providers. For JDK 1.4 this is detailed on <a href="http://java.sun.com/j2se/1.4/docs/guide/security/jce/JCERefGuide.html#InstallProvider">Sun's web site</a>.
+        </li>
+      </ol>
+      <p>
+        If you have any experience with Mozilla JSS or any other
+        cryptography provider, please post it to the fop-user list.
+      </p>
+    </section>
+  </body>
+</document>
diff --git a/src/documentation/content/xdocs/0.91/running.xml b/src/documentation/content/xdocs/0.91/running.xml
new file mode 100644 (file)
index 0000000..1827563
--- /dev/null
@@ -0,0 +1,277 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Running Apache FOP</title>
+    <version>$Revision$</version>
+  </header>
+
+  <body>
+    <section id="require">
+      <title>System Requirements</title>
+      <p>The following software must be installed:</p>
+      <ul>
+        <li>Java 1.3.x or later Runtime Environment.</li>
+        <li>
+          Apache FOP. The <a href="../download.html">FOP distribution</a> includes all libraries that you will 
+          need to run a basic FOP installation. These can be found in the [fop-root]/lib directory. These 
+          libraries include the following:
+          <ul>
+            <li>
+              A JAXP-compatible XML Parser (FOP comes with <a class="fork" href="ext:xerces">Apache Xerces-J</a>).
+            </li>
+            <li>
+              A JAXP-compatible XSLT Processor (FOP comes with <a class="fork" href="ext:xalan">Apache Xalan-J</a>).
+            </li>
+            <li><a class="fork" href="ext:batik">Apache Batik</a>, an SVG library.</li>
+            <li><a class="fork" href="ext:jakarta/commons/logging">Apache Jakarta Commons Logging</a>, a logger abstraction kit.</li>
+            <li><a class="fork" href="ext:jakarta/commons/io">Apache Jakarta Commons IO</a>, a library with I/O utilities.</li>
+            <li><a class="fork" href="ext:excalibur/framework">Apache Excalibur/Avalon Framework</a>, for XML configuration handling.</li>
+          </ul>
+        </li>
+      </ul>
+      <p>The following software is optional, depending on your needs:</p>
+      <ul>
+        <li>
+          Graphics libraries. Support for some graphics formats requires additional packages. See 
+          <a href="graphics.html">FOP: Graphics Formats</a> for details.
+        </li>
+        <li>
+          PDF encryption. See <a href="pdfencryption.html">FOP: PDF Encryption</a> for details.
+        </li>
+      </ul>
+      <p>In addition, the following system requirements apply:</p>
+      <ul>
+        <li>
+          If you will be using FOP to process SVG, you must do so in a graphical environment. 
+          See <a href="graphics.html#batik">FOP: Graphics (Batik)</a> for details.
+        </li>
+      </ul>
+    </section>
+    <section id="install">
+      <title>Installation</title>
+      <section id="install-instruct">
+        <title>Instructions</title>
+        <p>
+          Basic FOP installation consists of first unzipping the <code>.gz</code> file that is the 
+          distribution medium, then unarchiving the resulting <code>.tar</code> file in a 
+          directory/folder that is convenient on your system. Please consult your operating system 
+          documentation or Zip application software documentation for instructions specific to your 
+          site.
+        </p>
+      </section>
+      <section id="install-problems">
+        <title>Problems</title>
+        <p>
+          Some Mac OSX users have experienced filename truncation problems using Stuffit to unzip 
+          and unarchive their distribution media. This is a legacy of older Mac operating systems, 
+          which had a 31-character pathname limit. Several Mac OSX users have recommended that 
+          Mac OSX users use the shell command <code>tar -xzf</code> instead.
+        </p>
+      </section>
+    </section>
+    <section id="standalone-start">
+      <title>Starting FOP as a Standalone Application</title>
+      <p>
+        The usual and recommended practice for starting FOP from the command line is to run the 
+        batch file fop.bat (Windows) or the shell script fop (Unix/Linux).
+        If you write your own scripts, be sure to review these standard scripts to make sure that 
+        you get your environment properly configured.
+      </p>
+      <p>
+        The standard scripts for starting FOP require that the environment variable JAVA_HOME be 
+        set to a path pointing to the appropriate Java installation on your system. Macintosh OSX 
+        includes a Java environment as part of its distribution. We are told by Mac OSX users that 
+        the path to use in this case is <code>/Library/Java/Home</code>. <strong>Caveat:</strong>
+        We suspect that, as Apple releases new Java environments and as FOP upgrades the minimum 
+        Java requirements, the two will inevitably not match on some systems. Please see 
+        <a href="http://developer.apple.com/java/faq">Java on Mac OSX FAQ</a> for information as 
+        it becomes available.
+      </p>
+      <p>
+        As an alternative to the start scripts you can run "java -jar build/fop.jar" in which case
+        FOP tries to build the classpath for running FOP dynamically. Please note, that this might
+        not always work as expected.
+      </p>
+      <source><![CDATA[
+USAGE
+Fop [options] [-fo|-xml] infile [-xsl file] [-awt|-pdf|-mif|-rtf|-tiff|-png|-pcl|-ps|-txt|-at|-print] <outfile>
+ [OPTIONS]
+  -d          debug mode
+  -x          dump configuration settings
+  -q          quiet mode
+  -c cfg.xml  use additional configuration file cfg.xml
+  -l lang     the language to use for user information
+  -r          relaxed/less strict validation (where available)
+  -dpi xxx    target resolution in dots per inch (dpi) where xxx is a number
+  -s          for area tree XML, down to block areas only
+  -v          to show FOP version being used
+
+ [INPUT]
+  infile            xsl:fo input file (the same as the next)
+  -fo  infile       xsl:fo input file
+  -xml infile       xml input file, must be used together with -xsl
+  -xsl stylesheet   xslt stylesheet
+
+  -param name value <value> to use for parameter <name> in xslt stylesheet
+                    (repeat '-param name value' for each parameter)
+
+ [OUTPUT]
+  outfile           input will be rendered as pdf file into outfile
+  -pdf outfile      input will be rendered as pdf file (outfile req'd)
+  -awt              input will be displayed on screen
+  -mif outfile      input will be rendered as mif file (outfile req'd)
+  -rtf outfile      input will be rendered as rtf file (outfile req'd)
+  -tiff outfile     input will be rendered as tiff file (outfile req'd)
+  -png outfile      input will be rendered as png file (outfile req'd)
+  -pcl outfile      input will be rendered as pcl file (outfile req'd)
+  -ps outfile       input will be rendered as PostScript file (outfile req'd)
+  -txt outfile      input will be rendered as text file (outfile req'd)
+  -svg outfile      input will be rendered as an svg slides file (outfile req'd)
+  -at outfile       representation of area tree as XML (outfile req'd)
+  -print            input file will be rendered and sent to the printer
+                    see options with "-print help"
+  -out mime outfile input will be rendered using the given MIME type
+                    (outfile req'd) Example: "-out application/pdf D:\out.pdf"
+                    (Tip: "-out list" prints the list of supported MIME types)
+                    
+  -foout outfile    input will only be XSL transformed. The intermediate
+                    XSL-FO file is saved and no rendering is performed.
+                    (Only available if you use -xml and -xsl parameters)
+
+ [Examples]
+  Fop foo.fo foo.pdf
+  Fop -fo foo.fo -pdf foo.pdf (does the same as the previous line)
+  Fop -xml foo.xml -xsl foo.xsl -pdf foo.pdf
+  Fop -xml foo.xml -xsl foo.xsl -foout foo.fo
+  Fop foo.fo -mif foo.mif
+  Fop foo.fo -rtf foo.rtf
+  Fop foo.fo -print or Fop -print foo.fo
+  Fop foo.fo -awt]]></source>
+      <p>
+        PDF encryption is only available if FOP was compiled with encryption support 
+        <strong>and</strong> if compatible encryption support is availabe at run time. 
+        Currently, only the JCE is supported. Check the <a href="pdfencryption.html">Details</a>.
+      </p>
+    </section>
+    <section id="check-input">
+      <title>Using Xalan to Check XSL-FO Input</title>
+      <p>
+        FOP sessions that use -xml and -xsl input instead of -fo input are actually 
+        controlling two distinct conversions: Tranforming XML to XSL-FO, then formatting 
+        the XSL-FO to PDF (or another FOP output format).
+        Although FOP controls both of these processes, the first is included merely as 
+        a convenience and for performance reasons.
+        Only the second is part of FOP's core processing.
+        If a user has a problem running FOP, it is important to determine which of these 
+        two processes is causing the problem.
+        If the problem is in the first process, the user's stylesheet is likely the cause.
+        The FOP development team does not have resources to help with stylesheet issues, 
+        although we have included links to some useful 
+        <a href="../resources.html#specs">Specifications</a> and 
+        <a href="../resources.html#articles">Books/Articles</a>.
+        If the problem is in the second process, FOP may have a bug or an unimplemented 
+        feature that does require attention from the FOP development team.
+      </p>
+      <note>The user is always responsible to provide correct XSL-FO code to FOP.</note>
+      <p>
+        In the case of using -xml and -xsl input, although the user is responsible for 
+        the XSL-FO code that is FOP's input, it is not visible to the user. To make the 
+        intermediate FO file visible, the FOP distribution includes the "-foout" option 
+        which causes FOP to run only the first (transformation) step, and write the 
+        results to a file. (See also the Xalan command-line below)
+      </p>
+      <note>
+        When asking for help on the FOP mailing lists, <em>never</em> attach XML and 
+        XSL to illustrate the issue. Always run the XSLT step (-foout) and send the 
+        resulting XSL-FO file instead. Of course, be sure that the XSL-FO file is 
+        correct before sending it.
+      </note>
+      <p>
+        The -foout option works the same way as if you would call the 
+        <a href="http://xml.apache.org/xalan-j/commandline.html">Xalan command-line</a>:
+      </p>
+      <p>
+        <code>java org.apache.xalan.xslt.Process -IN xmlfile -XSL file -OUT outfile</code>
+      </p>
+      <p>
+        Note that there are some subtle differences between the FOP and Xalan command-lines.
+      </p>
+    </section>
+    <section id="memory">
+      <title>Memory Usage</title>
+      <p>
+        FOP can consume quite a bit of memory, even though this has been continually improved.
+        This is partly inherent to the formatting process and partly caused by implementation choices.
+        All FO processors currently on the market have memory problems with certain layouts.
+      </p>
+      <p>
+        If you are running out of memory when using FOP, here are some ideas that may help:
+      </p>
+      <ul>
+        <li>
+          Increase memory available to the JVM. See 
+          <a href="http://java.sun.com/j2se/1.3/docs/tooldocs/solaris/java.html">the -Xmx option</a> 
+          for more information.
+          <warning>
+            It is usually unwise to increase the memory allocated to the JVM beyond the amount of 
+            physical RAM, as this will generally cause significantly slower performance.
+          </warning>
+        </li>
+        <li>
+          Avoid forward references.
+          Forward references are references to some later part of a document.
+          Examples include page number citations which refer to pages which follow the citation, 
+          tables of contents at the beginning of a document, and page numbering schemes that 
+          include the total number of pages in the document 
+          (<a href="../faq.html#pagenum">"page N of TOTAL"</a>).
+          Forward references cause all subsequent pages to be held in memory until the reference 
+          can be resolved, i.e. until the page with the referenced element is encountered.
+          Forward references may be required by the task, but if you are getting a memory 
+          overflow, at least consider the possibility of eliminating them.
+          A table of contents could be replaced by PDF bookmarks instead or moved to the end of 
+          the document (reshuffle the paper could after printing).
+        </li>
+        <li>
+          Avoid large images, especially if they are scaled down.
+          If they need to be scaled, scale them in another application upstream from FOP.
+          For many image formats, memory consumption is driven mainly by the size of the image 
+          file itself, not its dimensions (width*height), so increasing the compression rate 
+          may help.
+        </li>
+        <li>
+          Use multiple page sequences.
+          FOP starts rendering after the end of a page sequence is encountered.
+          While the actual rendering is done page-by-page, some additional memory is 
+          freed after the page sequence has been rendered.
+          This can be substantial if the page sequence contains lots of FO elements.
+        </li>
+      </ul>
+      <p>
+        One of FOP's stated design goals is to be able to process input of arbitrary size.
+        Addressing this goal is one of the prime motivations behind the 
+        <a href="../dev/index.html">FOP Redesign</a>.
+      </p>
+    </section>
+    <section id="problems">
+      <title>Problems</title>
+      <p>If you have problems running FOP, please see the <a href="../gethelp.html">"How to get Help" page</a>.</p>
+    </section>
+  </body>
+</document>
diff --git a/src/documentation/content/xdocs/0.91/servlets.xml b/src/documentation/content/xdocs/0.91/servlets.xml
new file mode 100644 (file)
index 0000000..7a3f649
--- /dev/null
@@ -0,0 +1,255 @@
+<?xml version="1.0" standalone="no"?>
+<!--
+  Copyright 1999-2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Servlets</title>
+    <subtitle>How to use Apache FOP in a Servlet</subtitle>
+    <version>$Revision$</version>
+  </header>
+  <body>
+    <section id="overview">
+      <title>Overview</title>
+      <p>
+        This page discusses topic all around using Apache FOP in a servlet environment.
+      </p>
+    </section>
+    <section id="example-servlets">
+      <title>Example Servlets in the FOP distribution</title>
+      <p>
+        In the directory {fop-dir}/src/java/org/apache/fop/servlet, you'll find a working example
+        of a FOP-enabled servlet.
+      </p>
+      <p>
+        The servlet is automatically built when you build Apache FOP using the supplied Ant script. After building 
+        the servlet, drop fop.war into the webapps directory of Apache Tomcat (or any other web container). Then, you can use 
+        URLs like the following to generate PDF files:
+      </p>
+      <ul>
+        <li>http://localhost:8080/fop/fop?fo=/home/path/to/fofile.fo</li>
+        <li>http://localhost:8080/fop/fop?xml=/home/path/to/xmlfile.xml&amp;xsl=/home/path/to/xslfile.xsl</li>
+      </ul>
+      <p/>
+      <p>The source code for the servlet can be found under {fop-dir}/src/java/org/apache/fop/servlet/FopServlet.java.</p>
+    </section>
+    <section id="servlet">
+      <title>Create your own Servlet</title>
+      <note>
+        This section assumes you are familiar with <a href="embedding.html">embedding FOP</a>.
+      </note>
+      <section id="minimal-servlet">
+        <title>A minimal Servlet</title>
+        <p>
+          Here is a minimal code snippet to demonstrate the basics:
+        </p>
+        <source>public void doGet(HttpServletRequest request,
+                   HttpServletResponse response) throws ServletException {
+    try {
+        response.setContentType("application/pdf");
+        Fop fop = new Fop(Constants.RENDER_PDF);
+        fop.setOutputStream(response.getOutputStream());
+        TransformerFactory factory = TransformerFactory.newInstance();
+        Transformer transformer = factory.newTransformer();
+        Source src = new StreamSource("foo.fo");
+        Result res = new SAXResult(fop.getDefaultHandler());
+        transformer.transform(src, res);
+    } catch (Exception ex) {
+        throw new ServletException(ex);
+    }
+}</source>
+        <note>
+          There are numerous problems with the code snippet above.
+          Its purpose is only to demonstrate the basic concepts.
+          See below for details.
+        </note>
+      </section>
+      <section id="xslt">
+        <title>Adding XSL tranformation (XSLT)</title>
+        <p>
+          A common requirement is the to transform an XML source to
+          XSL-FO using an XSL transformation. It is recommended to use
+          JAXP for this task. The following snippet shows the basic
+          code:
+        </p>
+        <source>
+protected TransformerFactory transformerFactory;
+
+public void init() throws ServletException {
+    this.transformerFactory = TransformerFactory.newInstance();
+}
+
+[..]
+
+    //Setup FOP
+    Fop fop = new Fop(Constants.RENDER_PDF);
+
+    //Setup a buffer to obtain the content length
+    ByteArrayOutputStream out = new ByteArrayOutputStream();
+    fop.setOutputStream(out);
+
+    //Setup Transformer
+    Source xsltSrc = new StreamSource(new File("foo-xml2fo.xsl"));
+    Transformer transformer = this.transformerFactory.newTransformer(xsltSrc);
+
+    //Make sure the XSL transformation's result is piped through to FOP
+    Result res = new SAXResult(driver.getDefaultHandler());
+
+    //Setup input
+    Source src = new StreamSource(new File("foo.xml"));
+
+    //Start the transformation and rendering process
+    transformer.transform(src, res);
+
+    //Prepare response
+    response.setContentType("application/pdf");
+    response.setContentLength(out.size());
+    
+    //Send content to Browser
+    response.getOutputStream().write(out.toByteArray());
+    response.getOutputStream().flush();</source>
+        <note>
+          Buffering the generated PDF in a ByteArrayOutputStream is done to avoid potential 
+          problems with the Acrobat Reader Plug-in in Microsoft Internet Explorer.
+        </note>
+        <p>
+          The <code>Source</code> instance used above is simply an
+          example.  If you have to read the XML from a string, supply
+          a <code>new StreamSource(new
+          StringReader(xmlstring))</code>. Constructing and reparsing
+          an XML string is generally less desirable than using a
+          SAXSource if you generate your XML.  You can alternatively
+          supply a DOMSource as well.  You may also use dynamically
+          generated XSL if you like.
+        </p>
+        <p>
+          Because you have an explicit <code>Transformer</code> object, you can also use it to 
+          explicitly set parameters for the transformation run.
+        </p>
+      </section>
+      <section id="cfg">
+        <title>Custom configuration</title>
+        <p>
+          You can easily set up your own FOUserAgent as demonstrated on the <a href="embedding.html">Embedding page</a>.
+        </p>
+      </section>
+      <section id="performance">
+        <title>Improving performance</title>
+        <p>
+          There are several options to consider:
+        </p>
+        <ul>
+          <li>
+            Instead of java.io.ByteArrayOutputStream consider using the ByteArrayOutputStream
+            implementation from the <a href="ext:jakarta/commons/io">Jakarta Commons IO project</a> which allocates less memory.
+            The full class name is: <code>org.apache.commons.io.output.ByteArrayOutputStream</code>
+          </li>
+          <li>
+            In certain cases it can help to write the generated PDF to a temporary file so
+            you can quickly reuse the file. This is especially useful, if Internet Explorer
+            calls the servlet multiple times with the same request or if you often generate
+            equal PDFs.
+          </li>
+        </ul>
+        <p>
+          Of course, the 
+          <a href="embedding.html#performance">performance hints from the Embedding page</a>
+          apply here, too.
+        </p>
+      </section>
+    </section>
+    <section id="ie">
+      <title>Notes on Microsoft Internet Explorer</title>
+      <p>
+        Some versions of Internet Explorer will not automatically show the PDF or call the servlet multiple times.
+        These are well-known limitations of Internet Explorer and are not a problem of the servlet.
+        However, Internet Explorer can still be used to download the PDF so that it can be viewed later. 
+        Here are some suggestions in this context:
+      </p>
+      <ul>
+        <li>
+          Use an URL ending in <code>.pdf</code>, like
+          <code>http://myserver/servlet/stuff.pdf</code>. Yes, the servlet can
+          be configured to handle this. If the URL has to contain parameters,
+          try to have <strong>both</strong> the base URL as well as the last parameter end in
+          <code>.pdf</code>, if necessary append a dummy parameter, like
+          <code>http://myserver/servlet/stuff.pdf?par1=a&amp;par2=b&amp;d=.pdf</code>. The
+          effect may depend on IEx version.
+        </li>
+        <li>
+          Give IEx the opportunity to cache. In particular, ensure the
+          server does not set any headers causing IEx not to cache the
+          content. This may be a real problem if the document is sent
+          over HTTPS, because most IEx installations will by default
+          <em>not</em> cache any content retrieved over HTTPS.
+          Setting the <code>Expires</code> header entry may help in
+          this case:<br/> <code>response.setDateHeader("Expires",
+          System.currentTimeMillis() + cacheExpiringDuration *
+          1000);</code><br/> Consult your server manual and the
+          relevant RFCs for further details on HTTP headers and
+          caching.
+        </li>
+        <li>
+          Cache in the server. It may help to include a parameter in
+          the URL which has a timestamp as the value min order to
+          decide whether a request is repeated. IEx is reported to
+          retrieve a document up to three times, but never more often.
+        </li>
+      </ul>
+    </section>
+    <section id="servlet-engine">
+      <title>Servlet Engines</title>
+      <p>
+        When using a servlet engine, there are potential CLASSPATH issues, and potential conflicts 
+        with existing XML/XSLT libraries. Servlet containers also often use their own classloaders 
+        for loading webapps, which can cause bugs and security problems.
+      </p>
+      <section id="tomcat">
+        <title>Tomcat</title>
+        <p>
+          Check Tomcat's documentation for detailed instructions about installing FOP and Cocoon.
+          There are known bugs that must be addressed, particularly for Tomcat 4.0.3.
+        </p>
+      </section>
+      <section id="websphere">
+        <title>WebSphere 3.5</title>
+        <p>
+          Put a copy of a working parser in some directory where WebSphere can access it.
+          For example, if /usr/webapps/yourapp/servlets is the CLASSPATH for your servlets, 
+          copy the Xerces jar into it (any other directory would also be fine).
+          Do not add the jar to the servlet CLASSPATH, but add it to the CLASSPATH of the 
+          application server which contains your web application.
+          In the WebSphere administration console, click on the "environment" button in the 
+          "general" tab. In the "variable name" box, enter "CLASSPATH".
+          In the "value" box, enter the correct path to the parser jar file 
+          (/usr/webapps/yourapp/servlets/Xerces.jar in our example here).
+          Press "OK", then apply the change and restart the application server.
+        </p>
+      </section>
+    </section>
+    <section id="complex-usecases">
+      <title>Handling complex use cases</title>
+      <p>
+        Sometimes the requirements for a servlet get quite sophisticated: SQL data sources, 
+        multiple XSL transformations, merging of several datasources etc. In such a case 
+        consider using <a class="fork" href="ext:cocoon">Apache Cocoon</a> instead 
+        of a custom servlet to accomplish your goal.
+      </p>
+    </section>
+  </body>
+</document>
+<!-- Last Line of $RCSfile$ -->
diff --git a/src/documentation/content/xdocs/0.91/upgrading.xml b/src/documentation/content/xdocs/0.91/upgrading.xml
new file mode 100644 (file)
index 0000000..e1a812f
--- /dev/null
@@ -0,0 +1,119 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Upgrading from an Earlier Version of Apache FOP</title>
+    <version>$Revision$</version>
+  </header>
+  <body>
+    <section id="important">
+      <title>Important!</title>
+      <p>
+        If you're planning to upgrade to the latest FOP version there are a few very important things 
+        to consider:
+      </p>
+      <ul>
+        <li>
+          More than half of the codebase has been rewritten over the last three years. The code is 
+          relatively new and possibly not as stable as version 0.20.5 in every regard.
+        </li>
+        <li>
+          The API of FOP has changed considerably and is not backwards-compatible with version 0.20.5.
+        </li>
+        <li>
+          The new API is not stable, yet. Please be aware that further changes might still occur!
+        </li>
+        <li>
+          <p>
+            The new code is much more strict about the interpretation of the XSL-FO 1.0 specification.
+            Things that worked fine in version 0.20.5 might start to produce warnings or even errors
+            now. FOP 0.20.5 contains many bugs which have been corrected in the new code.
+          </p>
+          <note label="An example">
+            While FOP 0.20.5 allowed you to have empty <code>fo:table-cell</code> elements, the new code
+            will complain about that (unless relaxed validation is enabled) because the specification
+            demands at least one block-level element (<code>(%block;)+</code>, see 
+            <a href="http://www.w3.org/TR/xsl/slice6.html#fo_table-cell">XSL-FO 1.0, 6.7.10</a>)
+            inside an <code>fo:table-cell</code> element.
+          </note>
+        </li>
+        <li>
+          Extensions and Renderers written for version 0.20.5 will not work with the new code! The new FOP 
+          extension for <a href="http://barcode4j.krysalis.org">Barcode4J</a> will be available in 
+          January 2006.
+        </li>
+        <li>
+          The PCL Renderer and the MIF Handler have not been resurrected, yet! They are currently non-functional
+          and hope for someone to step up and reimplement them.
+        </li>
+        <li>
+          By looking at the <a href="../compliance.html">Compliance page</a> you might get the impression
+          that the new code is much more advanced than version 0.20.5. That's true but there are still
+          a few things that may not be handled as gracefully by the new code as by version 0.20.5.
+        </li>
+      </ul>
+      <p>
+        So, please evaluate carefully before messing up your production environment! Actually we do 
+        recommend against using the FOP development version in a production system.
+      </p>
+    </section>
+    <section id="issues">
+      <title>What you need to know when you upgrade!</title>
+      <p>
+        When you use your existing FO files or XML/XSL files which work fine with FOP version
+        0.20.5 against this FOP version some things may not work as expected. The following
+        list will hopefully help you to identify and correct those problems.
+      </p>
+      <ul>
+        <li>
+          Check the <a href="../compliance.html">Compliance page</a> for the feature causing
+          trouble. It may contain the necessary information to understand and resolve the problem.
+        </li>
+        <li>
+          Not all 0.20.5 output formats are supported. PDF and Postscript should be fully supported.
+          See <a href="output.html">Output Targets</a> for a more complete description.
+        </li>
+        <li>
+          As stated above empty table cells <code>&lt;fo:table-cell&gt;&lt;/fo:table-cell&gt;</code>
+          are not allowed by the specification. The same applies to empty <code>static-content</code>
+          and <code>block-container</code> elements, for example.
+        </li>
+        <li>
+          0.20.5 is not XSL-FO compliant with respect to sizing images (<code>external-graphic</code>) 
+          or <code>instream-foreign-object</code>
+          objects. If images or SVGs are sized differently in your outputs with the new FOP version
+          check <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=37136">Bug 37136</a>
+          as it contains some hints on what to. The file 
+          <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/trunk/examples/fo/basic/images.fo?view=markup">
+          <code>"examples/fo/basic/images.fo"</code></a> has
+          a number of good examples that shows the new, more correct behaviour.
+        </li>
+        <li>
+          The <code>fox:outline</code> extension not implemented in this version anymore. 
+          It has been superseded by the new bookmark elements from XSL-FO 1.1.
+        </li>
+        <li>
+          The <code>fox:destination</code> extension is also not implemented in this version
+          although it may be added in the future. See also
+          <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=37157">Bug 37157</a>.
+        </li>
+      </ul>
+    </section>
+  </body>
+</document>
index 045082c455a1cecf821dae26a88939c7a3737dd4..3366914d662dd450410419f411cdea8c8bedfe78 100644 (file)
         0.20.5 (current stable)
       </th>
       <th align="center">
-        0.90alpha1 (unstable)
+        0.91 beta (unstable)
       </th>
     </tr>
     <tr>
             [0.20.5] For absolute positioning, use 'position="absolute"' (as 'absolute-position="absolute"' is not implemented), and specify all four of "left", "top", "width" and "height"
           </li>
           <li>
-            [0.90alpha1] No known restrictions.
+            [0.91 beta] No known restrictions.
           </li>
         </ul>
       </td>
             [0.20.5] Only works for table of contents without any problems. The case where the page number doesn't fit on a line isn't handled, and any text on the same line and after the page-number might not appear exactly where you want it to.
           </li>
           <li>
-            [0.90alpha1] After the page number is known, no relayout is performed. The appearance may be suboptimal depending on the use case.
+            [0.91 beta] After the page number is known, no relayout is performed. The appearance may be suboptimal depending on the use case.
           </li>
         </ul>
       </td>
       <td align="left">
         <ul>
           <li>
-            [0.90alpha1] Only border-collapse="separate" is supported and there's no support for automatic column widths.
+            [0.91 beta] Only border-collapse="separate" is supported and there's no support for automatic column widths.
           </li>
         </ul>
       </td>
       </td>
       <td align="left">
         <ul>
-          <li>[0.90alpha1] Restrictions with multi-column documents.</li>
+          <li>[0.91 beta] Restrictions with multi-column documents.</li>
         </ul>
       </td>
     </tr>
         0.20.5 (current stable)
       </th>
       <th align="center">
-        0.90alpha1 (unstable)
+        0.91 beta (unstable)
       </th>
     </tr>
     <tr>
             [0.20.5] Use shorthand position="absolute" as a workaround.
           </li>
           <li>
-            [0.90alpha1] No restrictions. The 0.20.5 work-around is not supported.
+            [0.91 beta] No restrictions. The 0.20.5 work-around is not supported.
           </li>
         </ul>
       </td>
       <td align="left">
         <ul>
           <li>
-            [0.90alpha1] not yet implemented on table-body, table-header and table-footer.
+            [0.91 beta] not yet implemented on table-body, table-header and table-footer.
           </li>
         </ul>
       </td>
       <td align="partial">
         <ul>
           <li>
-            [0.90alpha1] not yet implemented on table-body, table-header and table-footer.
+            [0.91 beta] not yet implemented on table-body, table-header and table-footer.
           </li>
         </ul>
       </td>
             [0.20.5] "normal", "bolder" and "lighter" are not supported
           </li>
           <li>
-            [0.90alpha1] TODO &lt;relative&gt; font weights
+            [0.91 beta] TODO &lt;relative&gt; font weights
           </li>
         </ul>
       </td>
             [0.20.5] space-before.optimum supported
           </li>
           <li>
-            [0.90alpha1] Space adjustment may not fully work everywhere, yet.
+            [0.91 beta] Space adjustment may not fully work everywhere, yet.
           </li>
         </ul>
       </td>
             [0.20.5] space-after.optimum supported
           </li>
           <li>
-            [0.90alpha1] Space adjustment may not fully work everywhere, yet.
+            [0.91 beta] Space adjustment may not fully work everywhere, yet.
           </li>
         </ul>
       </td>
             [0.20.5] For table-cell, the "height" attribute must be set for the parent table-row; setting the height of the table or the table-cell results in vertical centering having no effect. 
           </li>
           <li>
-            [0.90alpha1] TODO Check e-g, i-f-o.
+            [0.91 beta] TODO Check e-g, i-f-o.
           </li>
         </ul>
       </td>
       <td align="left">
         <ul>
           <li>
-            [0.90alpha1] value "line-height" not supported
+            [0.91 beta] value "line-height" not supported
           </li>
         </ul>
       </td>
       <td align="left">
         <ul>
           <li>
-            [0.90alpha1] Value "treat-as-zero-width-space" not supported
+            [0.91 beta] Value "treat-as-zero-width-space" not supported
           </li>
         </ul>
       </td>
       <td align="left">
         <ul>
           <li>
-            [0.90alpha1] Only the values "ignore" and "ignore-if-surrounding-linefeed" work reliably
+            [0.91 beta] Only the values "ignore" and "ignore-if-surrounding-linefeed" work reliably
           </li>
         </ul>
       </td>
       <td align="left">
         <ul>
           <li>
-            [0.90alpha1] Only supported on fo:block.
+            [0.91 beta] Only supported on fo:block.
           </li>
         </ul>
       </td>
             [0.20.5] works only in table rows
           </li>
           <li>
-            [0.90alpha1] works on all implemented FOs.
+            [0.91 beta] works on all implemented FOs.
           </li>
           <li>
-            [0.90alpha1] &lt;integer&gt; values are not supported.
+            [0.91 beta] &lt;integer&gt; values are not supported.
           </li>
         </ul>
       </td>
             [0.20.5] works only in table rows
           </li>
           <li>
-            [0.90alpha1] works on all implemented FOs.
+            [0.91 beta] works on all implemented FOs.
           </li>
           <li>
-            [0.90alpha1] &lt;integer&gt; values are not supported.
+            [0.91 beta] &lt;integer&gt; values are not supported.
           </li>
         </ul>
       </td>
             [0.20.5] works only in table rows
           </li>
           <li>
-            [0.90alpha1] works on all implemented FOs, except list- and table-related FOs.
+            [0.91 beta] works on all implemented FOs, except list- and table-related FOs.
           </li>
           <li>
-            [0.90alpha1] &lt;integer&gt; values are not supported.
+            [0.91 beta] &lt;integer&gt; values are not supported.
           </li>
         </ul>
       </td>
       <td class="no">
         no
       </td>
-      <td class="partial">
-        partial
+      <td class="yes">
+        yes
       </td>
       <td align="center">
-        <ul>  
-          <li>[0.90alpha1] TODO TBD</li>
-        </ul>
+        &nbsp;
       </td>
     </tr>
     <tr>
             [0.20.5] not value "page"
           </li>
           <li>
-            [0.90alpha1] Not uspported
+            [0.91 beta] Not uspported
           </li>
         </ul>
       </td>
             [0.20.5] not value "use-content"
           </li>
           <li>
-            [0.90alpha1] Value "use-content" does not work in all circumstances.
+            [0.91 beta] Value "use-content" does not work in all circumstances.
           </li>
         </ul>
       </td>
       </td>
       <td align="left">
         <ul>
-          <li>[0.90alpha1] IDs on table-header, table-footer, table-body, table-row, table-and-caption, table-caption, inline-container and bidi-override are not available, yet.</li>
+          <li>[0.91 beta] IDs on table-header, table-footer, table-body, table-row, table-and-caption, table-caption, inline-container and bidi-override are not available, yet.</li>
         </ul>
       </td>
     </tr>
index 3981729aeefbae97c48bf5c3332946f409ef8bba..e74bfb780cc163c818c550595ec054a01a705735 100644 (file)
@@ -41,7 +41,7 @@
       W3C Recommendation</link>.
     </p>
     <p>
-      The latest unstable version of FOP (<link href="0.90/">0.90 alpha 1</link>) is the first preview release 
+      The latest unstable version of FOP (<link href="0.91/">0.91 beta</link>) is the first preview release 
       after a large redesign effort and implements a larger subset than 0.20.5 of the 
       <link href="http://www.w3.org/TR/2001/REC-xsl-20011015/">XSL-FO Version 1.0 W3C Recommendation</link>
       as well as some parts of the <link href="http://www.w3.org/TR/xsl11">XSL-FO Version 1.1 Working Draft</link>.
index d97bb33108eadf89953ecb7f05aa20a044276e8f..375f7c85b57fedea4456208a1f402fa782b9dc09 100644 (file)
@@ -85,9 +85,9 @@
   -->
   
   <!--
-  BEGIN Version 0.90 documentation tab
+  BEGIN Version 0.91 documentation tab
   -->
-  <trunk label="FOP 0.90 alpha 1" href="0.90/" tab="currentversion">
+  <trunk label="FOP 0.91 beta" href="0.91/" tab="currentversion">
     <about label="About" href="index.html"/>
     <upgrading label="Upgrading" href="upgrading.html"/>
     
     
   </trunk>
   <!--
-  END Version 0.90 documentation tab
+  END Version 0.91 documentation tab
   -->
   
   <!--
index 1f74aef7db3f4a17d750cead591429ea23288c97..3a8d432a7b289aa4f23de9ea7a4635a4837b82b9 100644 (file)
@@ -21,7 +21,7 @@
 <tabs software="FOP" title="FOP" copyright="@year@ The Apache Software Foundation" xmlns:xlink="http://www.w3.org/1999/xlink">
   <tab label="Home" dir=""/>
   <tab label="Version 0.20.5" dir="0.20.5/"/>
-  <tab label="Version 0.90 alpha 1" dir="0.90/"/>
+  <tab label="Version 0.91 beta" dir="0.91/"/>
   <tab label="FOP Trunk" dir="trunk/"/>
   <tab label="Development" dir="dev/"/>
   <!--