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 ch...@apache.org on 2002/07/04 22:54:12 UTC

cvs commit: xml-fop/docs/xml-docs/fop examples.xml fonts.xml implemented.xml readme.xml relnotes.xml

chrisg      2002/07/04 13:54:11

  Modified:    docs/xml-docs/fop examples.xml fonts.xml implemented.xml
                        readme.xml relnotes.xml
  Log:
  updated docs for 0.20.4 release
  
  Revision  Changes    Path
  1.11      +2 -2      xml-fop/docs/xml-docs/fop/examples.xml
  
  Index: examples.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/xml-docs/fop/examples.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- examples.xml	13 Jul 2001 12:17:48 -0000	1.10
  +++ examples.xml	4 Jul 2002 20:54:11 -0000	1.11
  @@ -6,8 +6,8 @@
   <s1 title="Examples">
       <p>Examples for the use of xsl:fo can be found in the Fop distribution in 
          the subdirectory xml-fop/docs/examples/fo. You can start transformation of all fo files into pdf
  -       files by starting xml-fop/docs/examples/runtests. The resulting test files can be found in 
  -       xml-fop/docs/examples/tests
  +       files by starting xml-fop/docs/examples/runtests (only source distribution). The resulting test
  +       files can be found in xml-fop/docs/examples/tests
       </p>
       <p>At the moment the following files are part of the distribution:</p>
       <ul>
  
  
  
  1.8       +4 -4      xml-fop/docs/xml-docs/fop/fonts.xml
  
  Index: fonts.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/xml-docs/fop/fonts.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- fonts.xml	18 Feb 2002 09:01:50 -0000	1.7
  +++ fonts.xml	4 Jul 2002 20:54:11 -0000	1.8
  @@ -22,12 +22,12 @@
   			</p>
   			<p>Windows:</p>
                           <p>
  -			<code>java -cp build\fop.jar;lib\xerces.jar;lib\xalan.jar;lib\batik.jar
  +			<code>java -cp build\fop.jar;lib\xercesImpl-2.0.1.jar;lib\xml-apis.jar;lib\xalan-2.3.1.jar;lib\batik.jar
   			org.apache.fop.fonts.apps.PFMReader pfm-file xml-file</code>
   			</p>
   			<p>Unix:</p>
   			<p>
  -                        <code>java -cp build/fop.jar:lib/xerces.jar:lib/xalan.jar:lib/batik.jar
  +                        <code>java -cp build/fop.jar:lib/xercesImpl-2.0.1.jar:lib/xml-apis.jar:lib/xalan-2.3.1.jar:lib/batik.jar
                           org.apache.fop.fonts.apps.PFMReader pfm-file xml-file</code>
   			</p>
   			<note><p>The tool will construct some values (FontBBox, StemV and ItalicAngle) based on assumptions and
  @@ -78,7 +78,7 @@
               the name cmr10.ttf and exists in c:\myfonts\):            
   			</p>
   			<p>
  -	    <code>java org.apache.fop.fonts.apps.TTFReader C:\myfonts\cmr10.ttf C:\myfonts\cmr10.ttf ttfcm.xml</code></p>
  +	    <code>java -cp build\fop.jar;lib\xercesImpl-2.0.1.jar;lib\xml-apis.jar;lib\xalan-2.3.1.jar;lib\batik.jar org.apache.fop.fonts.apps.TTFReader C:\myfonts\cmr10.ttf C:\myfonts\cmr10.ttf ttfcm.xml</code></p>
   	    </s3>
   	    <s3 title="TrueType collections">
   			<p>
  @@ -98,7 +98,7 @@
   			</p>
           <p>
   	    <code>
  -	    java org.apache.fop.fonts.apps.TTFReader -ttcname "MS Mincho" msmincho.ttc msminch.xml
  +	    java -cp build\fop.jar;lib\xercesImpl-2.0.1.jar;lib\xml-apis.jar;lib\xalan-2.3.1.jar;lib\batik.jar org.apache.fop.fonts.apps.TTFReader -ttcname "MS Mincho" msmincho.ttc msminch.xml
   	    </code>
           </p>
   		</s3>
  
  
  
  1.19      +3 -0      xml-fop/docs/xml-docs/fop/implemented.xml
  
  Index: implemented.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/xml-docs/fop/implemented.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- implemented.xml	17 Mar 2002 17:43:55 -0000	1.18
  +++ implemented.xml	4 Jul 2002 20:54:11 -0000	1.19
  @@ -106,6 +106,7 @@
     <p>Property values can be computed. Compound properties are also understood by Fop.</p>
       <ul>
         <li>background-color </li>
  +      <li>background-image </li>
         <li>blank-or-not-blank</li>
         <li>border-after-color</li>
         <li>border-after-style</li>
  @@ -170,7 +171,9 @@
         <li>leader-pattern (not value "use-content")</li>
         <li>leader-pattern-width</li>
         <li>left</li>
  +      <li>letter-spacing</li>
         <li>line-height </li>
  +      <li>margin (only on pages and regions) </li>
         <li>margin-bottom (only on pages and regions) </li>
         <li>margin-left (only on pages and regions) </li>
         <li>margin-right (only on pages and regions) </li>
  
  
  
  1.22      +1 -1      xml-fop/docs/xml-docs/fop/readme.xml
  
  Index: readme.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/xml-docs/fop/readme.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- readme.xml	12 Jun 2002 14:14:32 -0000	1.21
  +++ readme.xml	4 Jul 2002 20:54:11 -0000	1.22
  @@ -26,7 +26,7 @@
   <p>
           <figure width="480" height="260" src="document.jpg" alt="Render Diagram" />
   </p>
  -    <p>The latest version of Fop is 0.20.3 and it supports the
  +    <p>The latest version of Fop is 0.20.4 and it supports the
          <jump href="http://www.w3.org/TR/2001/REC-xsl-20011015/">XSL-FO Version 1.0
          W3C Recommendation</jump>.
          You can <jump href="download.html">download</jump> 
  
  
  
  1.4       +11 -0     xml-fop/docs/xml-docs/fop/relnotes.xml
  
  Index: relnotes.xml
  ===================================================================
  RCS file: /home/cvs/xml-fop/docs/xml-docs/fop/relnotes.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- relnotes.xml	12 Jun 2002 19:54:05 -0000	1.3
  +++ relnotes.xml	4 Jul 2002 20:54:11 -0000	1.4
  @@ -31,6 +31,17 @@
         <li>Logging has been changed from LogKit to Avalon's Logger Interface.
           (see <jump href="embedding.html">Embedding</jump> for details).
         </li>
  +      <li>Building under JDK 1.4:
  +        <p>You need to add a method in
  +         <code>src/org/apache/fop/svg/PDFGraphics2D.java</code>
  +         (search for jdk1.4 and remove the comments)
  +        </p> 
  +      </li>
  +      <li>To decrease the size of the distributions, ant, xml-docs, design-docs
  +        and the hyphenation sources have been removed from the binary distribution.
  +        Javadocs have been removed from the source distribution (use
  +        <code>build javadocs</code> to generate them).
  +      </li>
         <li>
           <p>For a more detailed list of changes, see the CHANGES file in the root of the FOP distribution.</p>
         </li>
  
  
  

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