1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-26 19:01:35 +03:00
Files
apache/docs/manual/style/build.xml
2002-02-14 00:48:04 +00:00

30 lines
732 B
XML

<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.xsl"
excludes="empty.xml"
includes="*.xml">
<param name="relative-path" expression="."/>
</style>
</target>
</project>