add basic target to build the convenience map (directive -> url)
dependencies are not correct yet


git-svn-id: https://svn.apache.org/repos/asf/httpd/docs-build/trunk@224538 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/build.xml b/build.xml
index d5755cd..deae427 100644
--- a/build.xml
+++ b/build.xml
@@ -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...                                                      -->