diff options
author | Keiron Liddle <keiron@apache.org> | 2000-08-02 04:38:28 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2000-08-02 04:38:28 +0000 |
commit | eecef24471b668622c68daf2ef31165e649c1799 (patch) | |
tree | 6094dbf3a333b867111c84d6c43dacd84098cc60 /docs | |
parent | a3392f4df6c0ec61b85a76e0823df28bfe0a915a (diff) | |
download | xmlgraphics-fop-eecef24471b668622c68daf2ef31165e649c1799.tar.gz xmlgraphics-fop-eecef24471b668622c68daf2ef31165e649c1799.zip |
added w3c.jar to classpath info
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193575 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/xml-docs/fop/running.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/xml-docs/fop/running.xml b/docs/xml-docs/fop/running.xml index 9acdedd5d..4eedf1a19 100644 --- a/docs/xml-docs/fop/running.xml +++ b/docs/xml-docs/fop/running.xml @@ -36,14 +36,14 @@ <p>Classpath settings: You will need to include FOP and your XML Parser in your classpath and so you might invoke FOP, if Xerces-J is your xml parser: </p> - <p><code>java -cp fop.jar;xerces.jar </code></p> + <p><code>java -cp fop.jar;xerces.jar;w3c.jar </code></p> <p><code>org.apache.fop.apps.CommandLine fo-file pdf-file</code></p> <p>If you want to use another sax parser, you will need to set the property org.xml.sax.parser to any other SAX Parser class to use. The following example shows the command line, if you use XP from James Clark: </p> <p><code>java -Dorg.xml.sax.parser=com.jclark.xml.sax.Driver</code></p> - <p><code>-cp fop.jar;xerces.jar;xp.jar</code></p> + <p><code>-cp fop.jar;xerces.jar;xp.jar;w3c.jar</code></p> <p><code>org.apache.fop.apps.CommandLine fo-file pdf-file</code></p> <p>Note: The xerces jar file must be included, because xp has no dom support.</p> </s3> @@ -54,7 +54,7 @@ source XML file name, XSL file name and PDF file name as arguments. You will need to include XT in your classpath and so you might invoke </p> - <p><code>java -cp fop.jar;xt.jar;xerces.jar</code></p> + <p><code>java -cp fop.jar;xt.jar;xerces.jar;w3c.jar</code></p> <p><code>org.apache.fop.apps.XTCommandLine xml-file xsl-file pdf-file</code></p> <p>Again, if your SAX Parser is other than Xerces, you will need to set the property org.xml.sax.parser to the SAX Parser class to use. @@ -65,7 +65,7 @@ transformation without using any pdf viewer by invoking FOP with the viewer application. You will need to include FOP and your XML Parser in your classpath </p> - <p><code>java -cp fop.jar;xerces.jar</code></p> + <p><code>java -cp fop.jar;xerces.jar;w3c.jar</code></p> <p><code>org.apache.fop.apps.AWTCommandLine fo-file </code></p> <p>The viewer uses the swing classes.</p> <p>Note: If you are using java 2 or later (i.e. jdk 1.2. or later) you can put all |