aboutsummaryrefslogtreecommitdiffstats
path: root/docs/xml-docs/build.xml
blob: b66a9310f19c868d30ae17b6cc7eaef122a6bbd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?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}"   pdffile="${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 -->