diff options
author | fotis <fotis@unknown> | 2000-11-14 15:15:56 +0000 |
---|---|---|
committer | fotis <fotis@unknown> | 2000-11-14 15:15:56 +0000 |
commit | 0189ae943779e53e257a58bcd5ecb9196f4f4bf0 (patch) | |
tree | 51896f871d595a9a7ced445ff8b307e730fbaec1 /docs/xml-docs | |
parent | b6099d61a1ab38a0591608e3744dd68b839b3bfd (diff) | |
download | xmlgraphics-fop-0189ae943779e53e257a58bcd5ecb9196f4f4bf0.tar.gz xmlgraphics-fop-0189ae943779e53e257a58bcd5ecb9196f4f4bf0.zip |
updating docs for v 0.15
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193801 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/xml-docs')
-rw-r--r-- | docs/xml-docs/fop/compiling.xml | 94 | ||||
-rw-r--r-- | docs/xml-docs/fop/examples.xml | 20 | ||||
-rw-r--r-- | docs/xml-docs/fop/implemented.xml | 17 |
3 files changed, 61 insertions, 70 deletions
diff --git a/docs/xml-docs/fop/compiling.xml b/docs/xml-docs/fop/compiling.xml index 108b05575..0c7209f86 100644 --- a/docs/xml-docs/fop/compiling.xml +++ b/docs/xml-docs/fop/compiling.xml @@ -4,65 +4,49 @@ <!-- Compiling FOP --> <s1 title="Compiling FOP"> - <s2 title="Prerequisites"> - <s3 title="Java 1.1.x or later"> - <p>If you use Java 1.1.x you must also seperately include the swing classes, which can - be found at the <jump href="http://java.sun.com/products/jfc/#download-swing"> - Sun website</jump>. From Java 1.2 on (aka Java 2) they are part of the standard - distribution. - </p> - </s3> - <s3 title="An XML parser"> - <p>An XML parser which supports Sax and DOM like - <jump href="http://xml.apache.org/xerces-j/index.html">Xerces-J</jump>. - The parser must be in your classpath</p> - </s3> - <s3 title="The xslt processor Xalan "> - <p>Some of the Java source code in FOP is generated from XML using - XSLT. Xalan must be used to generate this code.</p> - <p>Xalan is an XSL stylesheet processor written in java. At the moment you - can't use any other processor, because the make process makes use of some - proprietary features of Xalan which allow to write output in more - then one document. You can find Xalan also at <jump href="http://xml.apache.org/xalan/overview.html"> - xml.apache.org</jump>. You have to use Xalan version 0.19.5 or later. - Xalan.jar must be in your classpath and also the file bsf.jar, which comes with Xalan.</p> - </s3> - <s3 title="Setting of JAVA_HOME"> - <p>You have to set the enviroment variable JAVA_HOME. It must point to your local JDK - root directory. This is true, even if you use JDK 1.2 or above, which don't need this - setting. It is used by the compilation software.</p> - </s3> - <s3 title="Settings in your classpath"> - <p>If you want Fop to use the image library jimi, it should be in your classpath during - compilation. - </p> - <p>A CLASSPATH for a complete compilation of Fop could look like this, if all these jar files are in + <p>Compilation is started by executing build, either as a batch file on win32 (build.bat) or as a shell script on unix. Before you + can start one of these scripts, you have to setup your classpath and the environment variable JAVA_HOME (see below).</p> + <p> The compilation uses Ant, + a replacement of make (you can find more information about Ant at + <jump href="http://jakarta.apache.org/ant/">jakarte.apache.org</jump>). + build.xml is the replacement of makefile. Look there for detailed information on the build + process and different targets. </p> + <p>A help screen is shown by calling "build usage".</p> + <p>If you only want to use Fop, you don't need to build it. A fop.jar comes with the distribution.</p> + <s2 title="Setting up your classpath"> + <p>The build process relies on finding following libraries in your classpath (the version numbers indicate that building with them has been successfully tested, other, later versions may work too:</p> + <ul> + <li><jump href="http://xml.apache.org/xerces-j/index.html">Xerces-J</jump> version 1.2.1 (xml parser)</li> + <li><jump href="http://xml.apache.org/xalan/index.html">Xalan</jump> version 1.2 (xslt processor)</li> + <li>bsf.jar (comes with Xalan)</li> + <li>jimi.jar (image processing library) this file is optional </li> + </ul> + <p>Other needed libraries and classes come with Fop (in xml-fop/lib), but the build script sets the path to + them, so you only need to care about them, if you build Fop in any other way. See build.bat/build.sh for + details. + </p> + <p>A classpath for a complete compilation of Fop could look like this, if all these jar files are in a directory called jars (example uses windows syntax): </p> - <p><code>set CLASSPATH=\jars\xalan.jar;\jars\xerces.jar;\jars\bsf.jar;\jars\jimi.jar; + <p><code>set CLASSPATH=\jars\xalan.jar; \jars\xerces.jar; \jars\bsf.jar; \jars\jimi.jar; </code></p> - </s3> </s2> - <s2 title="Compiling"> - <p>Compilation is started by executing build, either as a batch file on win32 (build.bat) or as a shell script on unix. The compilation uses Ant, - a replacement of make (you can find more information about Ant at - <jump href="http://jakarta.apache.org/ant/">jakarte.apache.org</jump>). - build.xml is the replacement of makefile. Look there for further information. </p> - <p>A help screen is shown by calling "build usage". - </p> - </s2> + <s2 title="Setting of JAVA_HOME"> + <p>You have to set the enviroment variable JAVA_HOME. It must point to your local JDK + root directory. This is true, even if you use JDK 1.2 or above, which normally don't need this + setting. It is used by Ant, the compilation software.</p> + </s2> <s2 title="Problems"> - <p>If you have problems compiling Fop, please try this first: delete the build directory completely and - try a new build from scratch. Check, whether you have all necessary libraries in your classpath: - xerces.jar, xalan.jar, bsf.jar, jimi.jar (optional). If you still have problems, please look at the - page <jump href="bugs.html">bugs</jump>, for further help. - </p> - </s2> - - <s2 title="Compiling FOP on MacOS"> - <!-- contributed by Arved Sandstrom who also manages the webpage the jump points to --> - <p>We strongly recommend the use of Codewarrior Java. You will find - a link to more information in the near future. - </p> + <p>If you have problems compiling Fop, please try this first: </p> + <ul> + <li>delete the build directory completely and try a new build from scratch</li> + <li>check, whether you have all necessary libraries in your classpath: + xerces.jar, xalan.jar, bsf.jar, jimi.jar (optional)</li> + <li>check, whether you have the required versions of Xerces (>= 1.2.1) and Xalan (>=1.2) </li> + <li>check, whether you have an older version of xerces.jar, xalan.jar, w3c.jar somewhere in + you classpath.</li> + </ul> + <p>If you still have problems, please look at the + page <jump href="bugs.html">bugs</jump>, for further help.</p> </s2> </s1> diff --git a/docs/xml-docs/fop/examples.xml b/docs/xml-docs/fop/examples.xml index 33fd84af8..25fb4899c 100644 --- a/docs/xml-docs/fop/examples.xml +++ b/docs/xml-docs/fop/examples.xml @@ -6,16 +6,21 @@ <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. + files by starting xml-fop/docs/examples/runtests. 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> - <li>normal.fo - a very simple file showing the use of a 2 level of headings, normal text and a header. + <li>simple.fo - a very simple file which gives use a first impression of the structure of an fo file + </li> + <li>normal.fo - a simple file showing the use of a 2 level of headings, normal text and a header. </li> <li>table.fo - a simple table </li> <li>list.fo - a simple list </li> + <li>list2.fo - some list examples + </li> <li>images.fo - shows how to embed gif and jpg images into the xsl:fo file using external-graphic. </li> <li>border.fo - a not so simple example how to use borders in tables @@ -25,6 +30,17 @@ </li> <li>leader.fo - a very simple example of a rule </li> + <li>normalex.fo - shows the use of computed property values + </li> + <li>inhprop.fo - shows the use of inherited property values + </li> + <li>instream.fo - shows the use of fo:instream-foreign-object together with svg + </li> + <li>inhprop.fo - shows the use of inherited property values + </li> + <li>textdeko.fo - shows the use of the property textdecoration + </li> + <li>Look also into the directory examples/svg. There you find some very extensive svg examples. Just start makedoc. </li> diff --git a/docs/xml-docs/fop/implemented.xml b/docs/xml-docs/fop/implemented.xml index 2693363b4..982611348 100644 --- a/docs/xml-docs/fop/implemented.xml +++ b/docs/xml-docs/fop/implemented.xml @@ -92,7 +92,7 @@ <s2 title="2) Properties"> - <p>Property values can be computed</p> + <p>Property values can be computed. Compound properties are also understood by Fop.</p> <ul> <li>background-color </li> <li>blank-or-not-blank</li> @@ -144,7 +144,7 @@ <li>id</li> <li>initial-page-number</li> <li>internal-destination</li> - <li>keep-with-next</li> + <li>keep-with-next (broken)</li> <li>left</li> <li>line-height </li> <li>margin-bottom (only on pages and regions) </li> @@ -181,10 +181,11 @@ <li>text-align-last </li> <li>text-indent </li> <li>top</li> - <li>white-space-treatment </li> + <li>white-space-treatment (broken)</li> <li>width</li> <li>wrap-option</li> </ul> + <p>All other properties are not implemented.</p> </s2> <s2 title="3) SVG elements supported"> @@ -259,13 +260,3 @@ </s2> </s1> - - - - - - - - - - |