diff options
author | Christian Geisert <chrisg@apache.org> | 2003-03-10 18:09:13 +0000 |
---|---|---|
committer | Christian Geisert <chrisg@apache.org> | 2003-03-10 18:09:13 +0000 |
commit | c0b6faa587e4fd81c3cc7a71c9b75fc269b6d48d (patch) | |
tree | 78d5b041b56e95afe3abfcab85c4e06396b7f4e5 /src/documentation/content/xdocs/anttask.xml | |
parent | dd345c64a4e1b6bd15de82b2f5820fd187df97ad (diff) | |
download | xmlgraphics-fop-c0b6faa587e4fd81c3cc7a71c9b75fc269b6d48d.tar.gz xmlgraphics-fop-c0b6faa587e4fd81c3cc7a71c9b75fc269b6d48d.zip |
added info about Ant task
added info about FOP related products
added news
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196055 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation/content/xdocs/anttask.xml')
-rw-r--r-- | src/documentation/content/xdocs/anttask.xml | 40 |
1 files changed, 40 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> + |