You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by vh...@apache.org on 2010/08/25 18:49:40 UTC

svn commit: r989216 [4/19] - in /xmlgraphics/fop/branches/Temp_TrueTypeInPostScript: ./ examples/plan/src/org/apache/fop/plan/ lib/ src/codegen/java/org/apache/fop/tools/ src/codegen/unicode/data/ src/codegen/unicode/java/org/apache/fop/hyphenation/ sr...

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/dev/extensions.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/dev/extensions.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/dev/extensions.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/dev/extensions.xml Wed Aug 25 16:49:26 2010
@@ -45,8 +45,8 @@ To add your own extension you need to do
 </p>
         <ol>
           <li>Write code that implements your extension functionality. The easiest place to
-start is by looking at the code in org.apache.fop.extension, and by looking at the examples in the <code>examples</code> directory.</li>
-          <li>Create a class that implements the org.apache.fop.fo.ElementMapping interface. ElementMapping is a hashmap of all of the elements in a particular namespace, which makes it easier for FOP to create a different object for each element.
+start is by looking at the code in org.apache.fop.fo.extensions, and by looking at the examples in the <code>examples</code> directory.</li>
+          <li>Create a class that extends the abstract org.apache.fop.fo.ElementMapping class. ElementMapping is a hashmap of all of the elements in a particular namespace, which makes it easier for FOP to create a different object for each element.
 ElementMapping objects are static to save on memory.
 They are loaded by FOP when parsing starts to validate input.</li>
           <li>Create the following file: "/META-INF/services/org.apache.fop.fo.ElementMapping", which should contain the fully qualified classname of your ElementMapping implementation class.</li>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/dev/release.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/dev/release.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/dev/release.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/dev/release.xml Wed Aug 25 16:49:26 2010
@@ -37,16 +37,26 @@ The purpose of documenting it here is to
         <li>Determine whether further testing is required.</li>
         <li>Commit any outstanding changes</li>
         <li>Create a branch called <code>branches/fop-v_vv</code></li>
-        <li>Edit release notes (<code>README</code> and <code>status.xml</code> in the root).</li>
-        <li>Update the <code>index.xml</code>, <code>site.xml</code> and <code>download.xml</code> for the new version.</li>
+        <li>Edit release notes (<code>README</code> and
+		<code>status.xml</code> in the root).</li>
+		<li>Add the release to <code>news-data.xml</code>;
+		remove links to release notes of older versions from this file.</li>
+		<li>Update the FAQ (<code>faq.xml</code>) to the new release.</li>
+		<li>Check and update the copyright year in NOTICE and build.xml.</li>
+        <li>Update the file <code>doap.rdf</code>, and the files
+		<code>index.xml</code>, <code>site.xml</code>,
+		<code>download.xml</code>, <code>fo.xml</code>,
+		<code>maillist.xml</code>, <code>quickstartguide.xml</code>,
+		<code>faq.xml</code> and <code>status.xml</code>
+		in directory <code>xdocs</code> for the new version.</li>
         <li>Update the version numbers in the release column on the
         compliance page (<code>compliance.xml</code>); update the compliance in the release column
         to the current state (development column).</li>
         <li>Update version number in <code>build.xml</code> (not to be merged back
         into trunk).</li>
         <li>Copy trunk documentation directory to a new directory with
-        the version number, and update any links and the .htaccess
-        file for redirections.</li>
+		the new version number, and update the .htaccess file for
+		redirections.</li>
         <li>Copy <code>test/fotree/disabled-testcases.xml</code> and
         <code>test/layoutengine/disabled-testcases.xml</code> to the
         new version directory
@@ -54,17 +64,20 @@ The purpose of documenting it here is to
         <code>&lt;version>/layoutengine/disabled-testcases.xml</code>.
         Copy <code>known-issues.xml</code> to the new version
         directory. Copy <code>knownissues-overview.xml</code> from the
-        previous to the new version directory.</li>
+        current to the new version directory, and update the <code>xi:include</code>
+        links in it.</li>
+        <li>Update the tab names and directories in tabs.xml</li>
         <li>Delete the previous version directory.</li>
+		<li>Update index.xml in the new version directory.</li>
         <li>Build the dist files (<code>build[.sh] dist</code>)
         and upload them to your web directory on
         <code>people.apache.org</code></li>
         <li>Ask on fop-dev to check the branch and the generated dist
         files for errors.</li>
-        <li>Tag the source tree with the release ID. For example, if the release is 0.94:
-          <code>svn copy https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_94 https://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-0_94</code></li>
+        <li>Tag the source tree with the release ID. For example, if the release is 1.0:
+          <code>svn copy https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-1_0 https://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-1_0</code></li>
         <li>Make a fresh checkout with the just created tag:
-          <code>svn co https://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-0_94</code></li>
+          <code>svn co https://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-1_0</code></li>
         <li>Copy jimi and jai to lib/ (jimi-1.0.jar, jai_core.jar, jai_codec.jar)</li>
         <li>Copy jce-jdk13-119.jar from <link href="http://www.bouncycastle.org/latest_releases.html">
           from http://www.bouncycastle.org/latest_releases.html</link> to lib/</li>
@@ -74,15 +87,15 @@ The purpose of documenting it here is to
         <li>Alternatively, create a build-local.properties file that points to the above libs.</li>
         <li>Run build[.sh] dist. Do this using Sun JDK 1.4.2_08 or later. A Forrest installation is needed.</li>
         <li>Create signatures. Don't forget to upload your KEY:
-          <code>gpg -a -b --force-v3-sigs fop-0.94-src.tar.gz</code> etc.</li>
+          <code>gpg -a -b --force-v3-sigs fop-1.0-src.tar.gz</code> etc.</li>
         <li>Upload the dist and signature files to your web directory
           on people.apache.org (An account on minotaur is needed):
-          <code>scp fop-0.94*.tar.gz*
+          <code>scp fop-1.0*.tar.gz*
           chrisg@people.apache.org:public_html/</code></li>
         <li>Check permissions:
           <code>chmod 664 ... ; chgrp xmlgraphics ...</code></li>
-        <li>Add MD5 sums: <code>md5 fop-0.94-src.tar.gz &gt;
-          fop-0.94-src.tar.gz.md5</code> etc.</li>
+        <li>Add MD5 sums: <code>md5 fop-1.0-src.tar.gz &gt;
+          fop-1.0-src.tar.gz.md5</code> etc.</li>
         <li>Make a test download.</li>
         <li>Start a vote for the release on
         <code>general@xmlgraphics.a.o</code>. The message should point

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/download.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/download.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/download.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/download.xml Wed Aug 25 16:49:26 2010
@@ -91,16 +91,16 @@
         <tr>
           <td>Repository URL</td>
           <td>
-            <link href="http://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-0_95/">
-              <code>http://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-0_95/</code>
+            <link href="http://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-1_0/">
+              <code>http://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-1_0/</code>
             </link>
           </td>
         </tr>
         <tr>
           <td>Web view</td>
           <td>
-            <link href="http://svn.apache.org/viewvc/xmlgraphics/fop/tags/fop-0_95/">
-              <code>http://svn.apache.org/viewvc/xmlgraphics/fop/tags/fop-0_95/</code>
+            <link href="http://svn.apache.org/viewvc/xmlgraphics/fop/tags/fop-1_0/">
+              <code>http://svn.apache.org/viewvc/xmlgraphics/fop/tags/fop-1_0/</code>
             </link>
           </td>
         </tr>
@@ -110,16 +110,16 @@
         <tr>
           <td>Repository URL</td>
           <td>
-            <link href="http://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-0_94/">
-              <code>http://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-0_94/</code>
+            <link href="http://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-0_95/">
+              <code>http://svn.apache.org/repos/asf/xmlgraphics/fop/tags/fop-0_95/</code>
             </link>
           </td>
         </tr>
         <tr>
           <td>Web view</td>
           <td>
-            <link href="http://svn.apache.org/viewvc/xmlgraphics/fop/tags/fop-0_94/">
-              <code>http://svn.apache.org/viewvc/xmlgraphics/fop/tags/fop-0_94/</code>
+            <link href="http://svn.apache.org/viewvc/xmlgraphics/fop/tags/fop-0_95/">
+              <code>http://svn.apache.org/viewvc/xmlgraphics/fop/tags/fop-0_95/</code>
             </link>
           </td>
         </tr>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/examples.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/examples.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/examples.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/examples.xml Wed Aug 25 16:49:26 2010
@@ -82,7 +82,7 @@
       </p>
       <p>
 Developers will find the first steps to a test suite for all implemented
-formatting objects and properties in xml-fop/test/xml/.
+formatting objects and properties in test/xml in the source distribution.
       </p>
     </section>
           <section>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/faq.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/faq.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/faq.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/faq.xml Wed Aug 25 16:49:26 2010
@@ -136,14 +136,13 @@
       <question>When is the next released planned?</question>
       <answer>
         <p>
-          When it's ready and the committers have enough time to go through
-          the time-consuming process of creating a release. We
-          released version 0.95 on August 6th, 2008, and intend to
-          release version 1.0 once we consider it "feature complete", major
-          work is still in progress regarding page flows with changing page width
-          (changing IPD, to be precise). If you
-          want to speed up the process, consider
-          <link href="dev/index.html#involved">contributing</link> to FOP.</p>
+          When it's ready and the committers have enough time to go
+          through the time-consuming process of creating a release. We
+          released version 1.0 on 21 July 2010, and will release version
+          1.1 when we accumulated enough additions and bug fixes. If
+          you want to speed up the process, consider <link
+          href="dev/index.html#involved">contributing</link> to
+          FOP.</p>
       </answer>
     </faq>
     <faq id="redesign">
@@ -198,10 +197,8 @@
         <p>If you are running FOP from the command line:</p>
         <ul>
           <li>
-            Use the <code>fop.bat</code>, <code>fop</code> or <code>fop.sh</code> command file from the FOP
-            distribution. If you have a FOP version older than 0.20.5,
-            ensure the directory where FOP and these files have been
-            installed is the current working directory.
+            Use the command file <code>fop.bat</code>, <code>fop.cmd</code> or <code>fop.js</code> on MS Windows, or <code>fop</code> on Unix/Linux from the FOP
+            distribution. 
           </li>
           <li>
             If this doesn't help, check whether still all the jar files
@@ -213,7 +210,7 @@
           If you run FOP embedded in your servlet, web application or
           other Java application, check the classpath of the
           application. Check the also the information pertaining to <link
-          href="0.95/servlets.html#servlet-engine">servlet engines</link>
+          href="1.0/servlets.html#servlet-engine">servlet engines</link>
           for further hints.
         </p>
         <p>
@@ -243,7 +240,7 @@
       <question>I get an OutOfMemoryException.</question>
       <answer>
         <p>
-          See <link href="0.95/running.html#memory">FOP Memory</link>.
+          See <link href="1.0/running.html#memory">FOP Memory</link>.
         </p>
       </answer>
     </faq>
@@ -304,7 +301,7 @@
         <p>
           If you use XSLT, problems in your style sheet and in your
           source XML also can produce a NullPointerException. <link
-          href="0.95/running.html#check-input">Run the transformation
+          href="1.0/running.html#check-input">Run the transformation
           separately</link> to check for this, usually you'll get a
           detailed error message from the XSLT processor.
         </p>
@@ -382,7 +379,7 @@
         </p>
         <p>
           Try also setting the <link
-          href="0.95/configuration.html#general-elements">font-base
+          href="1.0/configuration.html#general-elements">font-base
           configuration</link>.
         </p>
       </answer>
@@ -443,7 +440,7 @@ public class DefaultErrorListener implem
         <p>
           To avoid the warning you can simply delete the
           old Font Cache file, which lives in ${base}\conf\font.cache (see <link
-          href="0.95/configuration.html#general-elements">font-base
+          href="1.0/configuration.html#general-elements">font-base
           configuration</link>). Or you can disable Font Caching altogether using
           the option "use-cache."
         </p>
@@ -453,7 +450,7 @@ public class DefaultErrorListener implem
   <part id="part-output">
     <title>Problems with FOP output</title>
     <faq id="leader-expansion">
-      <question>Leaders don't work anymore in 0.94 or later. Instead of
+      <question>Leaders don't work in current FOP. Instead of
       filling the line, only three dots or a short ruler is
       output.</question>
       <answer>
@@ -534,7 +531,7 @@ Check the following:</p>
         <p>Other possibilities:</p>
         <ul>
           <li>The image format is not supported or not supported completely.
-          See <link href="0.95/graphics.html">FOP Graphics Formats</link> for a
+          See <link href="1.0/graphics.html">FOP Graphics Formats</link> for a
           list of supported formats and related issues.</li>
           <li>The graphic may be too large to fit into the intended space.</li>
           <li>There may be something (static content) that is obscuring the
@@ -546,14 +543,14 @@ Check the following:</p>
     <faq id="png-fails">
       <question>My graphical images do not work properly.</question>
       <answer>
-        <p>See <link href="0.95/graphics.html">FOP Graphics Formats</link> for a
+        <p>See <link href="1.0/graphics.html">FOP Graphics Formats</link> for a
         list of supported graphics formats and related issues.</p>
       </answer>
     </faq>
     <faq id="graphic-resolution">
       <question>Why is my graphic rendered at a different resolution than it was created?</question>
       <answer>
-        <p>See <link href="0.95/graphics.html#resolution">Graphics Resolution</link>.</p>
+        <p>See <link href="1.0/graphics.html#resolution">Graphics Resolution</link>.</p>
       </answer>
     </faq>
     <faq id="keep-with">
@@ -561,17 +558,12 @@ Check the following:</p>
       don't work.</question>
       <answer>
         <p>
-          These properties are not implemented on version 0.20.5 and earlier,
-          except on table rows. More recent FOP releases have extensive support for
-          these properties. The current release, FOP 0.95, still supports the
+		  Current FOP releases have extensive support for
+          these properties. The current release, FOP 1.0, still supports the
           values "always" and "never" only, no numerical values. There may be
           a few places where keep-* still don't work, this should be very rare.
         </p>
         <p>
-          If you still have to use FOP 0.20.5, you have to nest stuff to be
-          kept together in a table.
-        </p>
-        <p>
           The concept is called &#8220;blind table&#8221;. The table is used for
           pure layout reasons and is not obvious in the output.
         </p>
@@ -604,9 +596,7 @@ Check the following:</p>
       <question>My tables are missing, or missing their content.</question>
       <answer>
         <p>
-          Check for <code>fo:table-body</code> around the rows. FOP up to 0.20.4 doesn't
-          raise an error if it is omitted, it just drops the content. More
-          recent releases will catch this problem.
+          Check for <code>fo:table-body</code> around the rows. Usually FOP will catch this problem.
         </p>
         <p>
           Also, the <code>fo:table-with-caption</code> element is not implemented, tables
@@ -656,7 +646,7 @@ Check the following:</p>
       </answer>
     </faq>
     <faq id="keep-together">
-      <question>FOP 0.95 and FOP 0.94 behave differently when <code>keep-together="always"</code>
+      <question>FOP behaves differently from earlier versions when <code>keep-together="always"</code>
         is set on table cells</question>
       <answer>
         <p>Support for inline-level keeps has been added in FOP 0.95, and setting
@@ -712,7 +702,7 @@ Check the following:</p>
       <answer>
         <p>Make sure you have set the language and optionally the country attributes for an appropriate XSL-FO element (fo:page-sequence, fo:block or fo:character):</p>
         <source><![CDATA[<fo:page-sequence language="fi">]]></source>
-        <p>See <link href="0.95/hyphenation.html#support">Hyphenation Support</link> for details and instructions on using hyphenation with FOP.</p>
+        <p>See <link href="1.0/hyphenation.html#support">Hyphenation Support</link> for details and instructions on using hyphenation with FOP.</p>
         <p>Explicitly enable hyphenation for an appropriate XSL-FO element (fo:block, fo:character):</p>
         <source><![CDATA[<fo:block hyphenate="true">]]></source>
       </answer>
@@ -721,7 +711,6 @@ Check the following:</p>
       <question>When I use margins, my content in a nested table or block-containers gets indented twice. Is this a bug?</question>
       <answer>
         <p>
-          (Applies to version 0.90 and later)
           No, although you might easily think so. The problem has to do
           with property inheritance of the start-indent and end-indent
           properties to which the margin properties are mapped. Apache
@@ -747,7 +736,7 @@ Check the following:</p>
           than Java2D. These can lead to different layout decisions when the same document is
           rendered with different renderers. An alternative approach to fix this problem might be
           available but it hasn't been tested, yet. See also the
-          <link href="0.95/output.html#general-fonts">notes on fonts in the various output formats</link>.
+          <link href="1.0/output.html#general-fonts">notes on fonts in the various output formats</link>.
         </p>
       </answer>
     </faq>
@@ -758,7 +747,7 @@ Check the following:</p>
       <question>How do I use FOP in a servlet?</question>
       <answer>
         <p>
-          See <link href="0.95/servlets.html">Using FOP in a Servlet</link>.
+          See <link href="1.0/servlets.html">Using FOP in a Servlet</link>.
         </p>
       </answer>
     </faq>
@@ -767,7 +756,7 @@ Check the following:</p>
       transformation?</question>
       <answer>
         <p>
-          See <link href="0.95/servlets.html#xslt">Using FOP in a Servlet with XSLT Transformation</link>.
+          See <link href="1.0/servlets.html#xslt">Using FOP in a Servlet with XSLT Transformation</link>.
         </p>
       </answer>
     </faq>
@@ -775,7 +764,7 @@ Check the following:</p>
       <question>How do I pass parameters to the XSLT transformation?</question>
       <answer>
         <p>
-          See <link href="0.95/servlets.html#xslt">Using FOP in a Servlet with XSLT Transformation</link>.
+          See <link href="1.0/servlets.html#xslt">Using FOP in a Servlet with XSLT Transformation</link>.
         </p>
       </answer>
     </faq>
@@ -793,7 +782,7 @@ Check the following:</p>
       <question>How do I set the baseDir property in a servlet environment?</question>
       <answer>
         <p>
-          See <link href="0.95/embedding.html#config-internal">Setting the Configuration Programmatically</link>.
+          See <link href="1.0/embedding.html#config-internal">Setting the Configuration Programmatically</link>.
         </p>
       </answer>
     </faq>
@@ -801,7 +790,7 @@ Check the following:</p>
       <question>How do I use a user configuration file from a servlet?</question>
       <answer>
         <p>
-          See <link href="0.95/embedding.html#config-external">Using a Configuration File in an Embedded App</link>.
+          See <link href="1.0/embedding.html#config-external">Using a Configuration File in an Embedded App</link>.
         </p>
       </answer>
     </faq>
@@ -810,7 +799,7 @@ Check the following:</p>
         get FOP working for various servlet engines?</question>
       <answer>
         <p>
-          See <link href="0.95/servlets.html#servlet-engine">Servlet Engines</link>.
+          See <link href="1.0/servlets.html#servlet-engine">Servlet Engines</link>.
         </p>
       </answer>
     </faq>
@@ -818,7 +807,7 @@ Check the following:</p>
       <question>Can FOP be used in multithreaded environments?</question>
       <answer>
         <p>
-          See <link href="0.95/embedding.html#multithreading">Multithreading FOP</link>.
+          See <link href="1.0/embedding.html#multithreading">Multithreading FOP</link>.
         </p>
       </answer>
     </faq>
@@ -829,13 +818,13 @@ Check the following:</p>
       <question>The rendering of SVG text in my PDF is of poor quality.
 Can I control this?</question>
       <answer>
-        <p>See <link href="0.95/graphics.html#svg-pdf-text">Placing SVG Text into PDF</link>.</p>
+        <p>See <link href="1.0/graphics.html#svg-pdf-text">Placing SVG Text into PDF</link>.</p>
       </answer>
     </faq>
     <faq id="svg-headless">
       <question>How do I use FOP with SVG on headless servers?</question>
       <answer>
-        <p>See <link href="0.95/graphics.html#batik">FOP: Graphics (Batik)</link>.</p>
+        <p>See <link href="1.0/graphics.html#batik">FOP: Graphics (Batik)</link>.</p>
       </answer>
     </faq>
     <faq id="svghangs">
@@ -898,14 +887,14 @@ Can I control this?</question>
     <faq id="svg-scaling">
       <question>Why is my SVG rendered at a size different from that specified in my fo:external-graphic element?</question>
       <answer>
-        <p>See <link href="0.95/graphics.html#svg-scaling">SVG Scaling</link>.</p>
+        <p>See <link href="1.0/graphics.html#svg-scaling">SVG Scaling</link>.</p>
       </answer>
     </faq>
     <faq id="svg-attribute-required">
       <question>FOP fails with something like "The attribute "width" of the element &lt;rect&gt; is required". What's wrong?</question>
       <answer>
         <p>
-          This phenomenon occurs since FOP 0.92 beta. It surfaced due to a change in the handling of non-FO namespaces. It's not a
+          This phenomenon is not a
           bug in FOP, but rather in the dependent packages: Apache Batik, Apache Xalan-J and SAXON. The bug in Apache Batik will be
           fixed in the next release. In the latest release of Apache Xalan-J, the bug is already fixed. It only occurs in the Xalan
           version bundled with Sun's JVM, because Sun uses a rather old version.
@@ -931,7 +920,7 @@ Can I control this?</question>
       <question>How do I embed fonts in PDF?</question>
       <answer>
         <p>
-          See the <link href="0.95/fonts.html">Fonts</link> page for information
+          See the <link href="1.0/fonts.html">Fonts</link> page for information
           about embedding fonts.
         </p>
       </answer>
@@ -950,7 +939,7 @@ Can I control this?</question>
           set. For a variety of reasons, even those are not completely
           guaranteed to work, for example you can't use the fi
           ligature from the standard serif font. Check the <link
-          href="0.95/output.html#pdf-fonts">overview</link> for the default
+          href="1.0/output.html#pdf-fonts">overview</link> for the default
           PDF fonts.
         </p>
         <p>
@@ -958,7 +947,7 @@ Can I control this?</question>
           the desired character. Furthermore the font must be
           available on the machine where the PDF is viewed or it must
           have been embedded in the PDF file. See <link
-          href="0.95/fonts.html">embedding fonts</link>.
+          href="1.0/fonts.html">embedding fonts</link>.
         </p>
         <p>
           For most symbols, it is better to select the symbol font
@@ -976,7 +965,7 @@ Can I control this?</question>
     <faq id="pdf-postprocess">
       <question>What tools are available for post-processing my PDF document?</question>
       <answer>
-        <p>See <link href="0.95/output.html#pdf-postprocess">PDF Post-processing</link>.</p>
+        <p>See <link href="1.0/output.html#pdf-postprocess">PDF Post-processing</link>.</p>
       </answer>
     </faq>
     <faq id="pdf-security">
@@ -984,8 +973,8 @@ Can I control this?</question>
       to my PDF document?</question>
       <answer>
         <p>
-          See <link href="0.95/pdfencryption.html">PDF Encryption</link>.
-          See also <link href="0.95/output.html#pdf-postprocess">PDF Post-processing</link>.
+          See <link href="1.0/pdfencryption.html">PDF Encryption</link>.
+          See also <link href="1.0/output.html#pdf-postprocess">PDF Post-processing</link>.
         </p>
       </answer>
     </faq>
@@ -993,13 +982,13 @@ Can I control this?</question>
       <question>How do I add document properties (title, author, etc.) to my
       PDF document?</question>
       <answer>
-        <p>See <link href="0.95/output.html#pdf-postprocess">PDF Post-processing</link>.</p>
+        <p>See <link href="1.0/metadata.html">Metadata</link>.</p>
       </answer>
     </faq>
     <faq id="pdf-watermark">
       <question>How do I add watermarks to my PDF document?</question>
       <answer>
-        <p>See <link href="0.95/output.html#pdf-watermark">PDF Watermarks</link>.</p>
+        <p>See <link href="1.0/output.html#pdf-watermark">PDF Watermarks</link>.</p>
       </answer>
     </faq>
     <faq id="pdf-print-contortion">
@@ -1018,7 +1007,7 @@ Can I control this?</question>
       <question>How do I control the Acrobat bookmark display?</question>
       <answer>
         <p>
-          FOP versions 0.93 and later support the starting-state property of the XSL 1.1
+          FOP supports the starting-state property of the XSL 1.1
           <link href="http://www.w3.org/TR/xsl11/#fo_bookmark">fo:bookmark</link>
           element which can be used for this. The color, font-style and
           font-weight properties on
@@ -1035,7 +1024,7 @@ Can I control this?</question>
       <answer>
         <p>
           This is a problem of Internet Explorer requesting the content several
-          times. Please see the <link href="0.95/servlets.html#ie">notes on Internet Explorer</link>
+          times. Please see the <link href="1.0/servlets.html#ie">notes on Internet Explorer</link>
           for more information.
         </p>
       </answer>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/fo.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/fo.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/fo.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/fo.xml Wed Aug 25 16:49:26 2010
@@ -519,7 +519,7 @@ This applies similarly to the extent of 
       <section id="external-resources">
         <title>External Resources</title>
         <p>Resources needed by an XSL-FO file that are external to it (graphics, for example), are defined in the XSL-FO standard as being of type "uri-specification". This is defined in the standard at <jump href="http://www.w3.org/TR/xsl11/#datatype">Section 5.11 Property Datatypes</jump>, which includes a link to the URI standard itself. Refer to the XSL-FO and URI standards themselves for more detailed instructions.</p>
-        <p>URIs may be either absolute or relative to a base URI. (See <link href="0.94/configuration.html">FOP: Configuration</link> for information on setting the base URI for a FOP session). Here is an example referencing an external-graphic that is relative to the base URI:</p>
+        <p>URIs may be either absolute or relative to a base URI. (See <link href="1.0/configuration.html">FOP: Configuration</link> for information on setting the base URI for a FOP session). Here is an example referencing an external-graphic that is relative to the base URI:</p>
         <source><![CDATA[<fo:external-graphic src="url('images/logo.jpg')"/>]]></source>
         <p>Here is an example referencing an external-graphic that is an absolute URI on a local filesystem:</p>
         <source><![CDATA[fo:external-graphic src="url('file:d:///images/logo.jpg')"/>]]></source>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/index.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/index.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/index.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/index.xml Wed Aug 25 16:49:26 2010
@@ -29,13 +29,13 @@
       <p>Apache FOP (Formatting Objects Processor) is a print formatter driven by XSL
         formatting objects (XSL-FO) and an output independent formatter. It is a Java
         application that reads a formatting object (FO) tree and renders the resulting
-        pages to a specified output. <link href="0.95/output.html">Output formats</link>
+        pages to a specified output. <link href="1.0/output.html">Output formats</link>
         currently supported include PDF, PS, PCL, AFP, XML (area tree representation),
         Print, AWT and PNG, and to a lesser extent, RTF and TXT. The primary output target is PDF.
       </p>
         <figure width="480" height="260" src="images/document.jpg" alt="Render Diagram" />
     <p>
-      A stable release of the latest version of FOP (<link href="0.95/">0.95</link>) is
+      A stable release of the latest version of FOP (<link href="1.0/">1.0</link>) is
       available. It's the third
       stable release after the large redesign effort and implements a large subset of the
       <link href="http://www.w3.org/TR/xsl11/">XSL-FO Version 1.1 W3C
@@ -69,7 +69,7 @@ The most common method is to convert sem
       Portable Document Format Specification (Version 1.4) from Adobe Systems.
     </p>
 
-    <p>Conformance to the XML 1.0 Recommendation, XSLT 1.0 Recommendation and the XML Namespaces Recommendation is
+    <p>Conformance to the XML 1.0 and 1.1 Recommendations, XSLT 1.0 and 2.0 Recommendations and the XML Namespaces Recommendation is
        understood. Other relevant documents, such as the XPath and XLink Working Drafts, are referenced as necessary. The FOP
        Project will attempt to use the latest version of evolving specifications.
     </p>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/maillist.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/maillist.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/maillist.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/maillist.xml Wed Aug 25 16:49:26 2010
@@ -84,7 +84,7 @@ href="dev/index.html#mail-fop-dev">Devel
             source, or other semantic XML? If so, the question is <em>almost certainly not
               appropriate to this list</em>. In general, the only input documents that are
             appropriate on this list are XSL-FO snippets. See <link
-              href="0.94/running.html#check-input">Running Xalan</link> for instructions about capturing the XSL-FO document that is actually submitted to FOP. If you haven't examined the XSL-FO document yourself, then you are not yet prepared to formulate a FOP-specific question.</li>
+              href="1.0/running.html#check-input">Running Xalan</link> for instructions about capturing the XSL-FO document that is actually submitted to FOP. If you haven't examined the XSL-FO document yourself, then you are not yet prepared to formulate a FOP-specific question.</li>
           <li>If you are providing one or more XSL-FO snippets:
             <ul>
               <li>Have you reduced them to the shortest possible complete, <strong>self-contained</strong> document that demonstrates the problem? Please do so.</li>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/news-data.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/news-data.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/news-data.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/news-data.xml Wed Aug 25 16:49:26 2010
@@ -17,6 +17,15 @@
 -->
 <!-- $Id$ -->
 <news>
+  <item date="2010-07-21" title="Apache FOP 1.0 Released">
+    <p>
+      The Apache FOP team is delighted to present you a production grade
+      release of the new FOP codebase. This release
+      contains many bug fixes and new features. See the <a
+        href="1.0/releaseNotes_1.0.html">Release Notes</a> for a list of
+      the most important changes.
+    </p>
+  </item>
   <item date="2009-12-14" title="New committer">
     <p>Welcome Pascal Sancho!</p>
   </item>
@@ -47,8 +56,7 @@
   <item date="2007-08-24" title="Apache FOP 0.94 Released">
     <p>The Apache FOP team is pleased to present you the second production
       grade release of the new FOP codebase. This release contains many bug
-      fixes and new features. See the <a
-        href="0.94/releaseNotes_0.94.html">Release Notes</a> for a list of
+      fixes and new features. See the Release Notes for a list of
       the most important changes.</p>
   </item>
   <item date="2007-01-26" title="New Committer">

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/quickstartguide.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/quickstartguide.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/quickstartguide.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/quickstartguide.xml Wed Aug 25 16:49:26 2010
@@ -29,15 +29,15 @@
       <p>The goal of this <strong>Quick Start Guide</strong> is to help novice users get Apache FOP up and running quickly. Typically, you'll need to:</p>
       <ol>
         <li><link href="download.html">Download FOP</link></li>
-        <li><link href="0.95/compiling.html">Build FOP</link> (you can skip this step if you download the binary distribution!)</li>
-        <li><link href="0.95/configuration.html">Configure FOP</link></li>
-        <li><link href="0.95/running.html">Run FOP</link></li>
+        <li><link href="1.0/compiling.html">Build FOP</link> (you can skip this step if you download the binary distribution!)</li>
+        <li><link href="1.0/configuration.html">Configure FOP</link></li>
+        <li><link href="1.0/running.html">Run FOP</link></li>
       </ol>
       <p>Here are some links to help you find out what FOP can do, as well as how and where to get help:</p>
       <ul>
-        <li><link href="0.95/embedding.html">Calling FOP from a Java Application</link></li>
-        <li><link href="0.95/servlets.html">Using FOP in Servlets</link></li>
-        <li><link href="0.95/anttask.html">Using FOP in an 'Ant' Build Script</link></li>
+        <li><link href="1.0/embedding.html">Calling FOP from a Java Application</link></li>
+        <li><link href="1.0/servlets.html">Using FOP in Servlets</link></li>
+        <li><link href="1.0/anttask.html">Using FOP in an 'Ant' Build Script</link></li>
         <li><link href="compliance.html" title="FOP Compliance">XSL-FO Compliance</link> (what FOP supports and what it doesn't)</li>
         <li><link href="faq.html">FAQs</link></li>
         <li><link href="gethelp.html">Getting Help</link></li>
@@ -45,7 +45,7 @@
       </ul>
       <p>
         Once you've familiarized yourself with the basics, you can get more detailed information,
-        in the detailed FOP <link href="0.95/index.html">product documentation</link>.
+        in the detailed FOP <link href="1.0/index.html">product documentation</link>.
       </p>
     </section>
     
@@ -65,7 +65,7 @@
         <li>
           Get a command prompt in the &lt;fop-home&gt; directory and write:<br/>
           Windows: <code>fop -fo examples/fo/basic/readme.fo -awt</code><br/>
-          Unix: <code>./fop.sh -fo examples/fo/basic/readme.fo -awt</code><br/>
+          Unix: <code>./fop -fo examples/fo/basic/readme.fo -awt</code><br/>
         </li>
         <li>
           If all went well, this should open a window showing you a "readme"-style document.
@@ -112,7 +112,7 @@
           Finally, let's put the previous two steps together: Go back to the command prompt and
           enter the following command:<br/>
           Windows: <code>fop -xml name.xml -xsl name2fo.xsl -pdf name.pdf</code><br/>
-          Unix: <code>./fop.sh -xml name.xml -xsl name2fo.xsl -pdf name.pdf</code><br/>
+          Unix: <code>./fop -xml name.xml -xsl name2fo.xsl -pdf name.pdf</code><br/>
         </li>
         <li>
           You've produced your first PDF with Apache FOP! Please open <code>name.pdf</code>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/resources.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/resources.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/resources.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/resources.xml Wed Aug 25 16:49:26 2010
@@ -37,24 +37,29 @@
       <section id="specs-xslt">
         <title>XSLT</title>
         <ul>
-          <li><jump href="http://www.w3.org/TR/xslt">XSLT Recommendation</jump></li>
+          <li><jump href="http://www.w3.org/TR/xslt">XSLT 1.0 Recommendation</jump></li>
+          <li><jump href="http://www.w3.org/TR/xslt20">XSLT 2.0 Recommendation</jump></li>
         </ul>
       </section>
       <section id="specs-xml">
         <title>XML</title>
         <ul>
-          <li><jump href="http://www.w3.org/TR/REC-xml">XML Recommendation</jump></li>
+          <li><jump href="http://www.w3.org/TR/xml">XML 1.0 </jump></li>
+          <li><jump href="http://www.w3.org/TR/xml11">XML 1.1 </jump></li>
           <li><jump href="http://sax.sourceforge.net/">Simple API for XML (SAX)</jump></li>
           <li><jump href="http://www.w3.org/TR/REC-DOM-Level-1">Document Object Model (DOM)</jump></li>
-          <li><jump href="http://www.w3.org/TR/REC-xml-names/">Namespaces in XML Recommendation</jump></li>
+		  <li><jump href="http://www.w3.org/TR/DOM-Level-2-Core">Document Object Model (DOM) Level 2 Core Specification</jump></li>
+		  <li><jump href="http://www.w3.org/TR/DOM-Level-3-Core">Document Object Model (DOM) Level 3 Core Specification</jump></li>
+          <li><jump href="http://www.w3.org/TR/xml-names/">Namespaces in XML 1.0 </jump></li>
+          <li><jump href="http://www.w3.org/TR/xml-names11/">Namespaces in XML 1.1</jump></li>
         </ul>
       </section>
       <section id="specs-java">
         <title>Java</title>
         <ul>
-          <li><jump href="http://java.sun.com/j2se/1.3/docs/api/index.html">Java JDK 1.3 Documentation</jump></li>
-          <li><jump href="http://java.sun.com/j2se/1.4/docs/api/index.html">Java JDK 1.4 Documentation</jump></li>
-          <li><jump href="http://java.sun.com/j2se/1.5/docs/api/index.html">Java JDK 1.5 Documentation</jump></li>
+          <li><jump href="http://java.sun.com/j2se/1.4/docs/api/index.html">Java 2 Platform, Standard Edition, v 1.4.2 API Specification</jump></li>
+          <li><jump href="http://java.sun.com/j2se/1.5/docs/api/index.html">Java 2 Platform Standard Edition 5.0 API Specification </jump></li>
+          <li><jump href="http://java.sun.com/javase/6/docs/api/index.html">Java Platform, Standard Edition 6 API Specification</jump></li>
         </ul>
       </section>
       <section id="specs-pdf">
@@ -83,13 +88,15 @@
         <title>XSL-FO</title>
         <ul>
           <li>[online book] <jump href="http://www.ibiblio.org/xml/books/bible2/chapters/ch18.html">The XML Bible</jump>, by Elliotte Rusty Harold. Chapter 18 of XSL Formatting Objects</li>
+<!--
           <li>[online article] <jump href="http://www.sun.com/software/xml/developers/slides-dtd/">Using Formatting Objects with the Slides DTD</jump>, by Paul Sandoz.</li>
+-->
           <li>[online article] <jump href="http://www.xml.com/pub/a/2001/01/17/xsl-fo/index.html">Using XSL Formatting Objects</jump>, by J. David Eisenberg.</li>
           <li>[online reference] <jump href="http://zvon.org/xxl/xslfoReference/Output/index.html">XSL FO reference</jump>, by Miloslav Nic.</li>
           <li>[online reference] <jump href="http://www.dpawson.co.uk/xsl/sect3/index.html">Dave Pawson's XSL-FO FAQ</jump>.</li>
           <li>[book] <jump href="http://www.oreilly.com/catalog/xslfo">XSL-FO</jump>, by Dave Pawson, O'Reilly &amp; Associates, 2002, ISBN 0-596-00355-2. See online version above.</li>
-          <li>[book] <jump href="http://www.phptr.com/browse/product.asp?product_id={CEA527AF-412D-49DA-8C1F-46E0A519B8D8}">Definitive XSL-FO</jump>, by G. Ken Holman, Prentice Hall PTR, 2003, ISBN 0-131-40374-5.</li>
-          <li>[book] <jump href="http://www.sams.com/catalog/product.asp?product_id={F7ADFA46-6AF1-497C-9163-0D6337F727B3}">XSL Formatting Objects Developer's Handbook</jump>, by Doug Lovell, Sams, 2002, ISBN 0-672-32281-1.</li>
+          <li>[book] <jump href="http://www.amazon.com/exec/obidos/ASIN/0131403745/ref=ase_cranesoftwrig-20">Definitive XSL-FO</jump>, by G. Ken Holman, Prentice Hall PTR, 2003, ISBN 0-131-40374-5.</li>
+          <li>[book] <jump href="http://www.amazon.com/XSL-Formatting-Objects-Developers-Handbook/dp/0672322811">XSL Formatting Objects Developer's Handbook</jump>, by Doug Lovell, Sams, 2002, ISBN 0-672-32281-1.</li>
           <li>[book] <jump href="http://www.cranesoftwrights.com/training/index.htm#pfux">Practical Formatting Using XSLFO</jump>, Crane Softwrights Ltd., 2003, ISBN 1-894049-11-X.</li>
         </ul>
       </section>
@@ -97,12 +104,13 @@
         <title>XSLT</title>
         <ul>
           <li>[online resource] <jump href="http://www.w3.org/Style/XSL/">Extensible Stylesheet Language Family (XSL)</jump>, W3C XSL Family page.</li>
-          <li>[book] <jump href="http://wrox.com/books/1861005067.htm">XSLT Programmer's Reference</jump>, by Michael H. Kay, Wrox Press, ISBN 1-861-00506-7.</li>
+          <li>[book] <jump href="http://www.amazon.com/XSLT-Programmers-Reference-2nd-Michael/dp/1861005067">XSLT Programmer's Reference</jump>, by Michael H. Kay, Wrox Press, ISBN 1-861-00506-7.</li>
+          <li>[book] <jump href="http://www.wrox.com/WileyCDA/WroxTitle/XSLT-2-0-and-XPath-2-0-Programmer-s-Reference-4th-Edition.productCd-0470192747.html">XSLT2 and XPath2 Programmer's Reference</jump>, by Michael H. Kay, Wrox Press, ISBN: 978-0-470-19274-0.</li>
           <li>[book] <jump href="http://www.oreilly.com/catalog/xslt">XSLT</jump>, by Doug Tidwell, O'Reilly &amp; Associates, 2001, ISBN 0-596-00053-7.</li>
           <li>[book] <jump href="http://www.oreilly.com/catalog/xsltckbk">XSLT Cookbook</jump>, by Sal Mangano, O'Reilly &amp; Associates, 2002, ISBN 0-596-00372-2.</li>
           <li>[article] <jump href="http://www.dpawson.co.uk/xsl/index.html">Dave Pawson's XSL FAQ</jump>.</li>
          <li>[book] <jump href="http://www.oreilly.com/catalog/xpathpointer">XPath and XPointer: Locating Content in XML Documents</jump>, by John E. Simpson, O'Reilly &amp; Associates, 2002, ISBN 0-596-00291-2.</li>
-          <li>[book] <jump href="http://www.wiley.com/cda/product/0,,0471416207,00.html">XSL Essentials</jump>, by Michael Fitzgerald, John Wiley &amp; Sons, 2001, ISBN 0-471-41620-7.</li>
+          <li>[book] <jump href="http://www.amazon.com/XSL-Essentials-Michael-Fitzgerald/dp/0471416207">XSL Essentials</jump>, by Michael Fitzgerald, John Wiley &amp; Sons, 2001, ISBN 0-471-41620-7.</li>
           <li>[book] <jump href="http://www.oreilly.com/catalog/javaxslt">Java and XSLT</jump>, by Eric M. Burke, O'Reilly &amp; Associates, 2001, ISBN 0-596-00143-6.</li>
         </ul>
       </section>
@@ -110,7 +118,7 @@
         <title>XML</title>
         <ul>
           <li>[online book] <jump href="http://www.ibiblio.org/xml/books/bible2">The XML Bible</jump>, by Elliotte Rusty Harold. See hardcopy version below.</li>
-          <li>[book] <jump href="http://www.wiley.com/cda/product/0,,0764547607,00.html">The XML Bible</jump>, by Elliotte Rusty Harold, John Wiley &amp; Sons, ISBN 0-764-54760-7. See online version above.</li>
+          <li>[book] <jump href="http://www.amazon.com/XML-Bible-Elliotte-Rusty-Harold/dp/0764547607">The XML Bible</jump>, by Elliotte Rusty Harold, John Wiley &amp; Sons, ISBN 0-764-54760-7. See online version above.</li>
           <li>[online resource] A great number of additional XML-related books and articles can be found at the <jump href="http://xml.oreilly.com">O'Reilly XML Site</jump>.</li>
         </ul>
       </section>
@@ -204,10 +212,9 @@
       <section id="products-pdf">
         <title>PDF post-processors</title>
         <ul>
-          <li>[software] <jump href="http://incubator.apache.org/pdfbox">Apache PDFBox</jump> (Incubating, Apache License V2.0)</li>
+          <li>[software] <jump href="http://pdfbox.apache.org">Apache PDFBox</jump> (Apache License V2.0)</li>
           <li>[software] <jump href="http://www.lowagie.com/iText">iText</jump> (MPL and LGPL)</li>
-          <li>[software] <jump href="http://www.etymon.com/pjc">PJ Classic</jump> by Etymon (GPL)</li>
-          <li>[software] <jump href="http://www.etymon.com/pjx">PJ Professional</jump> by Etymon (commercial)</li>
+          <li>[software] <jump href="http://www.etymon.com/epub.html">PJX</jump> by Etymon (GPL)</li>
           <li>[software] <jump href="http://www.accesspdf.com/pdftk/">pdftk</jump> the pdf toolkit</li>
         </ul>
       </section>
@@ -227,11 +234,13 @@
         <title>Other products</title>
         <ul>
           <li>[software] <jump href="http://foray.sourceforge.net/">FOray</jump> a renderer for converting XML files to PDF via XSL Formatting Object elements (FOP fork)</li>
+<!--
           <li>[software] <jump href="http://defoe.sourceforge.net/folio">Folio</jump> a renderer for XML files containing Formatting Object elements (aka FOP Alt.Design)</li>
+-->
           <li>[software] <jump href="http://xmlroff.org/">xmlroff</jump> an open source XSL-FO implementation written in C (BSD-style license)</li>
 
           <li>[commercial software developer] <jump href="http://antennahouse.com/product.htm">Antenna House</jump> - XSL Formatter, WordMLToFo, XML Editor...</li>
-          <li>[commercial software developer] <jump href="http://www.renderx.net/">RenderX</jump> XEP, EnMasse, Docbench...</li>
+          <li>[commercial software developer] <jump href="http://www.renderx.com/tools/index.html">RenderX</jump> XEP, EnMasse, Docbench...</li>
 
           <li>[software] <jump href="http://html2fo.sourceforge.net/">html2fo</jump> is a converter from HTML to XSL-FO (GPL).</li>
           <li>[software] <jump href="http://wh2fo.sourceforge.net/">wh2fo</jump> is a converter from Word HTML to XSL-FO (MPL).</li>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/site.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/site.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/site.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/site.xml Wed Aug 25 16:49:26 2010
@@ -56,14 +56,15 @@
   <!--
   END Home tab
   -->
-
+  
   <!--
-  BEGIN Version 0.94 documentation tab
+  BEGIN Version 0.95 documentation tab
   -->
-  <trunk label="FOP 0.94" href="0.94/" tab="previousversion">
+  <trunk label="FOP 0.95" href="0.95/" tab="previousversion">
     <about label="About" href="index.html"/>
-    <release label="Release Notes" href="releaseNotes_0.94.html"/>
-    <changes label="Changes" href="changes_0.94.html"/>
+    <release label="Release Notes" href="releaseNotes_0.95.html"/>
+    <changes label="Changes (0.95)" href="changes_0.95.html"/>
+    <changes-beta label="Changes (0.95beta)" href="changes_0.95beta.html"/>
     <knownissues label="Known Issues" href="knownissues_overview.html"/>
     <upgrading label="Upgrading" href="upgrading.html"/>
     
@@ -86,21 +87,21 @@
       <fonts label="Fonts" href="fonts.html"/>
       <hyphenation label="Hyphenation" href="hyphenation.html"/>    
       <extensions label="Extensions" href="extensions.html"/>
+      <metadata label="Metadata" href="metadata.html"/>
     </features>
     
   </trunk>
   <!--
-  END Version 0.94 documentation tab
+  END Version 0.95 documentation tab
   -->
   
   <!--
-  BEGIN Version 0.95 documentation tab
+  BEGIN Version 1.0 documentation tab
   -->
-  <trunk label="FOP 0.95" href="0.95/" tab="stableversion">
+  <trunk label="FOP 1.0" href="1.0/" tab="stableversion">
     <about label="About" href="index.html"/>
-    <release label="Release Notes" href="releaseNotes_0.95.html"/>
-    <changes label="Changes (0.95)" href="changes_0.95.html"/>
-    <changes-beta label="Changes (0.95beta)" href="changes_0.95beta.html"/>
+    <release label="Release Notes" href="releaseNotes_1.0.html"/>
+    <changes label="Changes (1.0)" href="changes_1.0.html"/>
     <knownissues label="Known Issues" href="knownissues_overview.html"/>
     <upgrading label="Upgrading" href="upgrading.html"/>
     
@@ -123,12 +124,14 @@
       <fonts label="Fonts" href="fonts.html"/>
       <hyphenation label="Hyphenation" href="hyphenation.html"/>    
       <extensions label="Extensions" href="extensions.html"/>
+      <events label="Events" href="events.html"/>
       <metadata label="Metadata" href="metadata.html"/>
+      <accessibility label="Accessibility" href="accessibility.html"/>
     </features>
     
   </trunk>
   <!--
-  END Version 0.95 documentation tab
+  END Version 1.0 documentation tab
   -->
 
   <!--
@@ -221,7 +224,7 @@
   <deploy label="Deploy" href="dev/" tab="development">
     <doc label="Doc Mgmt" href="doc.html"/>
     <release label="Release" href="release.html"/>
-    <bugs label="Bugs" href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Fop&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;order=bugs.component"/>
+    <bugs label="Bugs" href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Fop&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;order=bug_severity%2Cpriority%20DESC"/>
   </deploy>
 
   <resources label="Resources" href="dev/" tab="development">
@@ -245,8 +248,6 @@
     </xmlgraphics.apache.org>
     <svn-repo href="http://svn.apache.org/repos/asf/xmlgraphics/fop/">
       <trunk href="trunk/"/>
-      <stable href="tags/fop-0_94"/>
-      <maintenance href="branches/fop-0_20_2-maintain/"/>
     </svn-repo>
     <forrest.apache.org href="http://forrest.apache.org/"/>
     <xml.apache.org href="http://xml.apache.org/">

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/status.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/status.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/status.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/status.xml Wed Aug 25 16:49:26 2010
@@ -27,31 +27,27 @@
   <body>
     <section>
       <title>Status</title>
-      <p>[last updated 4 March 2008]</p>
-      <figure width="585" height="175" src="images/track.png" alt="Planning and branches of FOP development"/>
+      <p>[last updated 5 July 2010]</p>
       <p>
-        This is the development status of Apache FOP. Development on
-        the maintenance branch where FOP 0.20.5 came from has been
-        halted. The code base has been largely redesigned. The new
-        code base has reached release 0.95.
+        FOP version 0.95 was released on 5 August 2008. FOP version 1.0 was released on 21 July 2010.
       </p>
     </section>
     <section>
       <title>Development Status</title>
-      <p>The FOP code base has been largely rewritten, to address
-        design issues for layout and performance. The new design makes
-        it better possible to be conformant to the spec and be able to
-        handle large documents.</p>
-      <p>The redesign of the code base has largely been completed. The
-        new code reached production quality with release 0.93. In the
-        course of 2008 or 2009 we hope to release version 1.0.</p>
+
+	  <p>The FOP code base is gradually evolving, from version 0.90
+	  released on 22 November 2005, to version 1.0 released on 21 July
+	  2010. Further releases in the 1.x series may be expected.</p>
+      <p>FOP releases before version 0.90 were based on a different
+	  code base. The last release in that series was version 0.20.5,
+	  released on 18 July 2003. This series is no longer maintained.</p>
       <p>
         If you're looking for a long-term road-map we have to disappoint you. This is Open
         Source and we're mostly volunteers working in their free time. What we have
         is an idea where we want to go. How fast we get there depends on the 
         available time, on how well our ideas work out while developing and on you!
         There's a <a href="http://wiki.apache.org/xmlgraphics-fop/RoadMap">document in the Wiki</a>
-        where you can get a glimpse of what points we're currently focusing on.
+        where ideas for new developments may be registered and documented.
       </p>
       <section id="component-status">
         <title>Status of the individual components</title>
@@ -131,180 +127,5 @@
         </table>
       </section>
     </section>
-    <section>
-      <title>Maintenance Status</title>
-      <p>
-        The latest release of the maintenance branch is FOP 0.20.5, released on July 18th, 2003.
-        The maintenance branch has been frozen in 2004 so the team can concentrate on the new code
-        base.
-      </p>
-    </section>
-    <!--section id="stats">
-      <title>Statistics</title>
-      <table>
-        <tr>
-          <th>&#x00A0;</th>
-          <th>0.20.5</th>
-          <th>Development (aka trunk, redesign) as of August 1, 2003</th>
-        </tr>
-        <tr>
-          <td colspan="3">&#x00A0;</td>
-        </tr>
-        <tr>
-          <th colspan="3">Binaries</th>
-        </tr>
-        <tr>
-          <td>fop jar</td>
-          <td>1,485 kb</td>
-          <td>2,132 kb</td>
-        </tr>
-        <tr>
-          <td>hyphenation (in fop.jar)</td>
-          <td>348 kb</td>
-          <td>1,358 kb</td>
-        </tr>
-        <tr>
-          <td>ant jar</td>
-          <td>&#x00A0;</td>
-          <td>707 kb</td>
-        </tr>
-        <tr>
-          <td>avalon-framework jar</td>
-          <td>62 kb</td>
-          <td>72 kb</td>
-        </tr>
-        <tr>
-          <td>batik jar</td>
-          <td>2,063 kb</td>
-          <td>2,213 kb</td>
-        </tr>
-        <tr>
-          <td>commons-io-dev jar</td>
-          <td>&#x00A0;</td>
-          <td>71 kb</td>
-        </tr>
-        <tr>
-          <td>commons-lang jar</td>
-          <td>&#x00A0;</td>
-          <td>190 kb</td>
-        </tr>
-        <tr>
-          <td>servlet jar</td>
-          <td>&#x00A0;</td>
-          <td>39 kb</td>
-        </tr>
-        <tr>
-          <td>xalan jar</td>
-          <td>1,007 kb</td>
-          <td>1,007 kb</td>
-        </tr>
-        <tr>
-          <td>xerces jar</td>
-          <td>816 kb</td>
-          <td>816 kb</td>
-        </tr>
-        <tr>
-          <td>xml-apis jar</td>
-          <td>112 kb</td>
-          <td>112 kb</td>
-        </tr>
-        <tr>
-          <th colspan="3">Lines of Source Code, using "find . -iname "*.java" | xargs cat | wc -l"</th>
-        </tr>
-        <tr>
-          <td>org.apache.fop.fo.*</td>
-          <td>20,297</td>
-          <td>22,306</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.layout.*</td>
-          <td>9,444</td>
-          <td>4,238</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.layoutmgr.*</td>
-          <td>&#x00A0;</td>
-          <td>10,069</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.area.*</td>
-          <td>&#x00A0;</td>
-          <td>5,791</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.render.*</td>
-          <td>18,387</td>
-          <td>11,527</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.pdf.*</td>
-          <td>10,203</td>
-          <td>15,669</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.rtf.*</td>
-          <td>0</td>
-          <td>12,747</td>
-        </tr>
-        <tr>
-          <td>Other</td>
-          <td>29,821</td>
-          <td>32,543</td>
-        </tr>
-        <tr>
-          <td>Total</td>
-          <td>88,152</td>
-          <td>114,890</td>
-        </tr>
-        <tr>
-          <th colspan="3">Files, using "find . -iname "*.java" | wc -l"</th>
-        </tr>
-        <tr>
-          <td>org.apache.fop.fo.*</td>
-          <td>122</td>
-          <td>127</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.layout.*</td>
-          <td>49</td>
-          <td>24</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.layoutmgr.*</td>
-          <td>&#x00A0;</td>
-          <td>38</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.area.*</td>
-          <td>&#x00A0;</td>
-          <td>39</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.render.*</td>
-          <td>48</td>
-          <td>36</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.pdf.*</td>
-          <td>51</td>
-          <td>70</td>
-        </tr>
-        <tr>
-          <td>org.apache.fop.rtf.*</td>
-          <td>&#x00A0;</td>
-          <td>80</td>
-        </tr>
-        <tr>
-          <td>Other</td>
-          <td>129</td>
-          <td>140</td>
-        </tr>
-        <tr>
-          <td>Total</td>
-          <td>399</td>
-          <td>554</td>
-        </tr>
-      </table>
-    </section-->
   </body>
 </document>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/tabs.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/tabs.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/tabs.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/tabs.xml Wed Aug 25 16:49:26 2010
@@ -21,8 +21,8 @@
 
 <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.94" dir="0.94/"/>
   <tab label="Version 0.95" dir="0.95/"/>
+  <tab label="Version 1.0" dir="1.0/"/>
   <tab label="FOP Trunk" dir="trunk/"/>
   <tab label="Development" dir="dev/"/>
 </tabs>

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/team.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/team.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/team.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/team.xml Wed Aug 25 16:49:26 2010
@@ -40,8 +40,9 @@
             is a Java/VB Programmer from England.</li>
         <li id="jb"><link href="mailto:jay@bryantcs.com">Jay Bryant</link> (JB) is a
             freelance information architect in Austin, TX.</li>
-        <li id="ac"><link href="mailto:acumiskey@apache.org">Adrian Cumiskey</link> (AC),
-          is a Java and Perl Programmer from St Albans, United Kingdom.</li>
+        <li id="ac"><link href="mailto:acumiskey AT apache.org">Adrian Cumiskey</link> (AC)
+            is an XP/Agile practitioner with interests in open source content management and electronic
+            document generation.  He is a UK expat now residing in Singapore.</li>
         <li id="ad"><link href="mailto:adelmelle@apache.org">Andreas Delmelle</link> (AD)</li>
         <!-- Luca prefers the mail address with "AT", to stop spam, etc. -->
         <li id="lf"><link href="mailto:lfurini AT cs.unibo.it">Luca Furini</link> (LF)

Modified: xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/trunk/configuration.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/trunk/configuration.xml?rev=989216&r1=989215&r2=989216&view=diff
==============================================================================
--- xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/trunk/configuration.xml (original)
+++ xmlgraphics/fop/branches/Temp_TrueTypeInPostScript/src/documentation/content/xdocs/trunk/configuration.xml Wed Aug 25 16:49:26 2010
@@ -151,6 +151,7 @@
           default-page-settings element to specify the two values.</td>
         <td>"height" 11 inches, "width" 8.26 inches</td>
       </tr>
+      <!-- Disabled: no simultaneous Renderer and IF implementations at the moment
       <tr>
         <td>prefer-renderer</td>
         <td>boolean (true, false)</td>
@@ -163,6 +164,7 @@
         </td>
         <td>false</td>
       </tr>
+      -->
       <tr>
         <td>use-cache</td>
         <td>boolean (true, false)</td>
@@ -176,8 +178,7 @@
       <tr>
         <td>cache-file</td>
         <td>String</td>
-        <td>This options specifies the file/directory path of the fop cache file.
-        This option can also be specified on the command-line using the -cache option.
+        <td>This option specifies the file/directory path of the fop cache file.
         This file is currently only used to cache font triplet information for future reference.</td>
         <td>${base}/conf/fop.cache</td>
       </tr>



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