]> granicus.if.org Git - apache/blob - docs/manual/style/build.xml
We are going to need to use the file.xml.ja order, because multiviews will not
[apache] / docs / manual / style / build.xml
1 <project name="manual" default="xslt" basedir=".">
2
3     <!-- Initialization properties -->
4     <path id="classpath">
5         <fileset dir="./lib">
6             <include name="**/*.jar"/>
7         </fileset>
8     </path>
9
10
11 <!-- This target is for output of HTML pages via XSLT -->
12   <!-- Requires JAXP/1.1 (all three JARs) or Xerces+Xalan -->
13   <target name="xslt"
14    description="Render HTML Pages via XSLT">
15
16     <!-- Transform the modules directory -->
17     <style   basedir="../mod/"
18              destdir="../mod/"
19            extension=".html"
20                style="./manual.en.xsl"
21             excludes="*.xml.ja"
22             includes="*.xml">
23       <param name="relative-path" expression="."/>
24     </style>
25     <style   basedir="../mod/"
26              destdir="../mod/"
27            extension=".html"
28                style="./manual.ja.xsl"
29             includes="*.xml.ja">
30       <param name="relative-path" expression="."/>
31     </style>
32   </target>
33
34
35
36 </project>