diff options
author | Keiron Liddle <keiron@apache.org> | 2001-11-01 12:03:22 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2001-11-01 12:03:22 +0000 |
commit | 30a93701bf42a2f2ccce3453363458ffaa3e2703 (patch) | |
tree | 7e0d236314676ca264c6ab3beb8590112613ac5b /docs/xml-docs/build.xml | |
parent | ff1e921c8d093574053b8aa82b592c336ba6f5f5 (diff) | |
download | xmlgraphics-fop-30a93701bf42a2f2ccce3453363458ffaa3e2703.tar.gz xmlgraphics-fop-30a93701bf42a2f2ccce3453363458ffaa3e2703.zip |
no longer needed, docs done from main build
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194532 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/xml-docs/build.xml')
-rw-r--r-- | docs/xml-docs/build.xml | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/docs/xml-docs/build.xml b/docs/xml-docs/build.xml deleted file mode 100644 index a5baec012..000000000 --- a/docs/xml-docs/build.xml +++ /dev/null @@ -1,55 +0,0 @@ -<?xml version="1.0"?> -<!-- =========================================================================== - - -Build targets -============= - -These are the meaningful targets for this build file: - - - pdf [default] -> creates ./fop.pdf - - clean -> deletes all files produced by this script - ---> -<project default="pdf" basedir="."> - <!-- =================================================================== --> - <!-- Initialization target --> - <!-- =================================================================== --> - <target name="init"> - <tstamp/> - <property name="src.dir" value="./fop"/> - <property name="allfiles.xml" value="fop-doc.xml"/> - <property name="outfile.fo" value="fop.fo"/> - <property name="outfile.pdf" value="fop.pdf"/> - <taskdef name="fop" classname="org.apache.fop.tools.anttasks.Fop"/> - <taskdef name="xslt" classname="org.apache.fop.tools.anttasks.Xslt"/> - </target> - <!-- =================================================================== --> - <!-- copies all xml files into one. the infile is a dummy, because the --> - <!-- source files are defined in the stylesheet --> - <!-- =================================================================== --> - <target name="prepare-files" depends="init"> - <xslt infile="fop.xml" xsltfile="xml2xml.xsl" outfile="${allfiles.xml}" smart="yes"/> - </target> - <!-- =================================================================== --> - <!-- Generates the fo file --> - <!-- =================================================================== --> - <target name="fo" depends="prepare-files"> - <xslt infile="${allfiles.xml}" xsltfile="xml2pdf.xsl" outfile="${outfile.fo}" smart="yes"/> - </target> - <!-- =================================================================== --> - <!-- Generates the pdf file --> - <!-- =================================================================== --> - <target name="pdf" depends="fo"> - <fop fofile="${outfile.fo}" outfile="${outfile.pdf}"/> - </target> - <!-- =================================================================== --> - <!-- Clean targets --> - <!-- =================================================================== --> - <target name="clean"> - <delete file="${allfiles.xml}"/> - <delete file="${outfile.fo}"/> - <delete file="${outfile.pdf}"/> - </target> -</project> -<!-- End of file --> |