You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2005/07/23 23:02:08 UTC

svn commit: r224538 - /httpd/docs-build/trunk/build.xml

Author: nd
Date: Sat Jul 23 14:02:04 2005
New Revision: 224538

URL: http://svn.apache.org/viewcvs?rev=224538&view=rev
Log:
add basic target to build the convenience map (directive -> url)
dependencies are not correct yet

Modified:
    httpd/docs-build/trunk/build.xml

Modified: httpd/docs-build/trunk/build.xml
URL: http://svn.apache.org/viewcvs/httpd/docs-build/trunk/build.xml?rev=224538&r1=224537&r2=224538&view=diff
==============================================================================
--- httpd/docs-build/trunk/build.xml (original)
+++ httpd/docs-build/trunk/build.xml Sat Jul 23 14:02:04 2005
@@ -67,6 +67,25 @@
 </target>
 
 
+<!-- convenience rewrite map                                              -->
+<!-- ==================================================================== -->
+<target name="convmap" depends="modulelists" unless="convmap.done"
+        description="- (re-)builds convenience map file if necessary">
+    <echo message="checking convenience map ..." />
+
+    <!-- <dependencies.convmap /> -->
+
+    <xslt style="../style/xsl/convmap.xsl"
+            in="${ap.docroot}/mod/allmodules.xml"
+            out="${ap.docroot}/convenience.map">
+        <xmlcatalog refid="w3c-catalog" />
+    </xslt>
+
+    <echo message="convenience map is up to date." />
+    <property name="convmap.done" value="yes!" />
+</target>
+
+
 <!-- XHTML validation.                                                    -->
 <!-- The resulting output is intended to be valid (X)HTML. Check it from  -->
 <!-- time to time...                                                      -->