home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 September
/
PCWorld_2002-09_cd.bin
/
Komunik
/
apache
/
apache_2.0.39-win32-x86-no_ssl.msi
/
Data.Cab
/
F208919_build.xml
< prev
next >
Wrap
Text File
|
2002-05-23
|
1KB
|
35 lines
<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>
</target>
</project>