build.xml revision 6da407b2e43a613ec833f14d8c05d4494a27f17a
<project name="manual" default="xslt" basedir=".">
<!-- Initialization properties -->
<path id="classpath">
<fileset dir="/lib">
<include name="**/*.jar"/>
</fileset>
</path>
<!-- This target is for output of HTML pages via XSLT -->
<!-- Requires JAXP/1.1 (all three JARs) or Xerces+Xalan -->
<target name="xslt"
description="Render HTML Pages via XSLT">
<!-- Transform the modules directory -->
<style basedir="/mod/"
destdir="/mod/"
extension=".html"
style="/manual.en.xsl"
includes="*.xml">
<mapper type="glob" from="*.xml" to="*.html.en"/>
<param name="relative-path" expression="."/>
</style>
<style basedir="/mod/"
destdir="/mod/"
extension=".html"
style="/manual.ja.xsl"
includes="*.xml.ja">
<mapper type="glob" from="*.xml.ja" to="*.html.ja.jis"/>
<param name="relative-path" expression="."/>
</style>
<!-- Transform the root directory of the manual -->
<style basedir="../"
destdir="../"
extension=".html"
style="/manual.en.xsl"
includes="*.xml">
<mapper type="glob" from="*.xml" to="*.html.en"/>
<param name="relative-path" expression="."/>
</style>
</target>
</project>