mirror of
https://github.com/apache/httpd.git
synced 2026-01-26 19:01:35 +03:00
docs. Details will be at http://httpd.apache.org/docs-project/docsformat.html shortly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93398 13f79535-47bb-0310-9956-ffa450edef68
30 lines
732 B
XML
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>
|