diff options
-rw-r--r-- | src/documentation/content/xdocs/anttask.xml | 40 | ||||
-rw-r--r-- | src/documentation/content/xdocs/book.xml | 1 | ||||
-rw-r--r-- | src/documentation/content/xdocs/news.xml | 13 | ||||
-rw-r--r-- | src/documentation/content/xdocs/resources.xml | 18 |
4 files changed, 72 insertions, 0 deletions
diff --git a/src/documentation/content/xdocs/anttask.xml b/src/documentation/content/xdocs/anttask.xml new file mode 100644 index 000000000..ba2b2a25c --- /dev/null +++ b/src/documentation/content/xdocs/anttask.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" + "http://cvs.apache.org/viewcvs.cgi/*checkout*/xml-forrest/src/resources/schema/dtd/document-v11.dtd"> + +<document> + <header> + <title>Ant task</title> + </header> + <body> + <p> + FOP has also an ANT task for integration into your build process. + </p> + <section><title>Parameter</title> + </section> + <section> + <title>Examples</title> + <p> + + </p> + <source><![CDATA[ + <target name="examples" depends="package" description="Generates example PDF files"> + <taskdef name="fop" classname="org.apache.fop.tools.anttasks.Fop" + classpathref="libs-run-classpath"/> + <mkdir dir="${build.examples.dir}"/> + <fop format="${build.property.examples.mime.type}" outdir="${build.examples.dir}" + messagelevel="debug" basedir="${fo.examples.dir}"> + <fileset dir="${fo.examples.dir}"> + <include name="**/*.fo"/> + </fileset> + </fop> + </target> + ]]></source> + <p> + See the full text of the <link + href="http://archives.apache.org/eyebrowse/ReadMsg?listName=fop-dev@xml.apache.org&msgNo=4509">announcement</link>. + </p> + </section> + </body> +</document> + diff --git a/src/documentation/content/xdocs/book.xml b/src/documentation/content/xdocs/book.xml index 2edad2e51..1d592d004 100644 --- a/src/documentation/content/xdocs/book.xml +++ b/src/documentation/content/xdocs/book.xml @@ -28,6 +28,7 @@ <menu label="Using FOP"> <menu-item label="Running" href="running.html"/> <menu-item label="Embedding" href="embedding.html"/> + <menu-item label="Ant task" href="anttask.html"/> <menu-item label="Output Formats" href="output.html"/> <menu-item label="Compliance" href="compliance.html"/> <menu-item label="Implemented" href="implemented.html"/> diff --git a/src/documentation/content/xdocs/news.xml b/src/documentation/content/xdocs/news.xml index fa689168c..a5b703e21 100644 --- a/src/documentation/content/xdocs/news.xml +++ b/src/documentation/content/xdocs/news.xml @@ -8,6 +8,19 @@ </header> <body> <section> + <title>18 Februar 2003 - FOP 0.20.5 Release Candidate 2 available</title> + <p> + See the full text of the <link + href="http://archives.apache.org/eyebrowse/ReadMsg?listName=fop-dev@xml.apache.org&msgNo=4509">announcement</link>. + </p> + </section> + <section> + <title>2 Frebruar 2002 - New XML PMC</title> + <p> + Jeremias Maerki and Peter B. West are now representing FOP on the XML PMC. + </p> + </section> + <section> <title>28 January 2003 - FOP logo contest</title> <p>We are looking for a new logo. FOP <link href="logocontest.html">logo contest</link> is started!</p> diff --git a/src/documentation/content/xdocs/resources.xml b/src/documentation/content/xdocs/resources.xml index d83145499..bff864235 100644 --- a/src/documentation/content/xdocs/resources.xml +++ b/src/documentation/content/xdocs/resources.xml @@ -171,6 +171,24 @@ PJ is an open source product that can be used to modify PDF documents: iText is a library that can edit PDF files, it is possible to do post processing of the generated PDF files: <link href="http://www.lowagie.com/iText/">http://www.lowagie.com/iText/</link>. </li> + <li> + html2fo is a converter from html to xsl:fo: + <link href="http://html2fo.sourceforge.net/">http://html2fo.sourceforge.net/</link>. + </li> + <li> + FOA is a XSL-FO Authoring tool: + <link href="http://foa.sourceforge.net/">http://foa.sourceforge.net/</link>. + </li> + <li> + TIFFRenderer is a renderer for outputting multi-page TIFF: + <link href="http://www.tkachenko.com/fop/tiffrenderer.html"> + http://www.tkachenko.com/fop/tiffrenderer.html</link>. + </li> + <li> + AFP Renderer / Batch Assembler for FOP: + <link href="http://mypage.bluewin.ch/huanderegg/"> + http://mypage.bluewin.ch/huanderegg/</link>. + </li> </ul> </section> </section> |