> nd          2002/09/22 20:40:12
> 
>   Modified:    docs/manual sitemap.html.en sitemap.xml
>                docs/manual/mod directives.xml index.xml quickreference.xml
>                docs/manual/style modulesynopsis.dtd
>                docs/manual/style/xsl common.xsl directiveindex.xsl
>                         moduleindex.xsl quickreference.xsl sitemap.xsl
>   Removed:     docs/manual/mod allmodules.xml
>   Log:
>   move module list into sitemap.xml
>   allmodules.xml is no longer needed.

This requires a patch of build.xml

- Because of reasons I really don't understand the processor otherwise
  runs out of memory (!?).
- sitemap.xml can't be validated any longer, because it's included as
  Entity

nd
-- 
Real programmers confuse Christmas and Halloween because
DEC 25 = OCT 31.  -- Unknown

                                      (found in ssl_engine_mutex.c)
Index: build.xml
===================================================================
RCS file: /home/cvspublic/site-tools/httpd-docs-build/build.xml,v
retrieving revision 1.11
diff -u -r1.11 build.xml
--- build.xml   19 Sep 2002 18:24:09 -0000      1.11
+++ build.xml   23 Sep 2002 03:32:38 -0000
@@ -88,7 +88,6 @@
             <mapper type="glob" from="*.xml" to="*.html.en" />
             <patternset>
               <include name="mod/directives.xml" />
-              <include name="mod/quickreference.xml" />
               <include name="mod/index.xml" />
             </patternset>
         </style>
@@ -96,6 +95,16 @@
         <style basedir="../"
                destdir="../"
                style="../style/manual.en.xsl">
+
+            <mapper type="glob" from="*.xml" to="*.html.en" />
+            <patternset>
+              <include name="mod/quickreference.xml" />
+            </patternset>
+        </style>
+
+        <style basedir="../"
+               destdir="../"
+               style="../style/manual.en.xsl">
             <mapper type="glob" from="*.xml" to="*.html.en" />
             <depth min="1" max="1" />
             <patternset refid="en-allxml" />
@@ -148,7 +157,6 @@
             <mapper type="glob" from="*.xml.ja" to="*.html.ja.jis" />
             <patternset>
               <include name="mod/directives.xml.ja" />
-              <include name="mod/quickreference.xml.ja" />
               <include name="mod/index.xml.ja" />
             </patternset>
         </style>
@@ -156,6 +164,16 @@
         <style basedir="../"
                destdir="../"
                style="../style/manual.ja.xsl">
+
+            <mapper type="glob" from="*.xml.ja" to="*.html.ja.jis" />
+            <patternset>
+              <include name="mod/quickreference.xml.ja" />
+            </patternset>
+        </style>
+
+        <style basedir="../"
+               destdir="../"
+               style="../style/manual.ja.xsl">
             <mapper type="glob" from="*.xml.ja" to="*.html.ja.jis" />
             <depth min="1" max="1" />
             <patternset refid="ja.jis-allxml" />
@@ -192,7 +210,6 @@
             <mapper type="glob" from="*.xml.de" to="*.html.de" />
             <patternset>
               <include name="mod/directives.xml.de" />
-              <include name="mod/quickreference.xml.de" />
               <include name="mod/index.xml.de" />
             </patternset>
         </style>
@@ -200,6 +217,16 @@
         <style basedir="../"
                destdir="../"
                style="../style/manual.de.xsl">
+
+            <mapper type="glob" from="*.xml.de" to="*.html.de" />
+            <patternset>
+              <include name="mod/quickreference.xml.de" />
+            </patternset>
+        </style>
+
+        <style basedir="../"
+               destdir="../"
+               style="../style/manual.de.xsl">
             <mapper type="glob" from="*.xml.de" to="*.html.de" />
             <depth min="1" max="1" />
             <patternset refid="de-allxml" />
@@ -234,7 +261,6 @@
             <mapper type="glob" from="*.xml.pt-br" to="*.html.pt-br" />
             <patternset>
               <include name="mod/directives.xml.pt-br" />
-              <include name="mod/quickreference.xml.pt-br" />
               <include name="mod/index.xml.pt-br" />
             </patternset>
         </style>
@@ -242,6 +268,16 @@
         <style basedir="../"
                destdir="../"
                style="../style/manual.pt-br.xsl">
+
+            <mapper type="glob" from="*.xml.pt-br" to="*.html.pt-br" />
+            <patternset>
+              <include name="mod/quickreference.xml.pt-br" />
+            </patternset>
+        </style>
+
+        <style basedir="../"
+               destdir="../"
+               style="../style/manual.pt-br.xsl">
             <mapper type="glob" from="*.xml.pt-br" to="*.html.pt-br" />
             <depth min="1" max="1" />
             <patternset refid="pt-br-allxml" />
@@ -276,7 +312,6 @@
             <mapper type="glob" from="*.xml.ru" to="*.html.ru.koi8-r" />
             <patternset>
               <include name="mod/directives.xml.ru" />
-              <include name="mod/quickreference.xml.ru" />
               <include name="mod/index.xml.ru" />
             </patternset>
         </style>
@@ -284,6 +319,16 @@
         <style basedir="../"
                destdir="../"
                style="../style/manual.ru.xsl">
+
+            <mapper type="glob" from="*.xml.ru" to="*.html.ru.koi8-r" />
+            <patternset>
+              <include name="mod/quickreference.xml.ru" />
+            </patternset>
+        </style>
+
+        <style basedir="../"
+               destdir="../"
+               style="../style/manual.ru.xsl">
             <mapper type="glob" from="*.xml.ru" to="*.html.ru.koi8-r" />
             <depth min="1" max="1" />
             <patternset refid="ru.koi8-r-allxml" />
@@ -309,7 +354,8 @@
     <target name="validate"
             description="Validate the XML source files">
         <xmlvalidate lenient="false" failonerror="false" warn="true">
-            <fileset dir="../">
+            <fileset dir="../"
+                     excludes="sitemap.xml">
                 <patternset refid="allxml" />
             </fileset>
         </xmlvalidate>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to