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 2004/05/05 01:14:15 UTC

cvs commit: httpd-2.0/docs/manual/style/latex common.xsl directiveindex.xsl latex.xsl moduleindex.xsl quickreference.xsl

nd          2004/05/04 16:14:15

  Modified:    docs/manual/style/latex common.xsl directiveindex.xsl
                        latex.xsl moduleindex.xsl quickreference.xsl
  Log:
  allmodules.xml references were removed
  
  Revision  Changes    Path
  1.12      +4 -3      httpd-2.0/docs/manual/style/latex/common.xsl
  
  Index: common.xsl
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/style/latex/common.xsl,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -u -r1.11 -r1.12
  --- common.xsl	3 May 2004 20:18:46 -0000	1.11
  +++ common.xsl	4 May 2004 23:14:15 -0000	1.12
  @@ -1,7 +1,4 @@
   <?xml version="1.0"?>
  -<xsl:stylesheet version="1.0"
  -              xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  -                  xmlns="http://www.w3.org/1999/xhtml">
   
   <!--
    Copyright 2003-2004 The Apache Software Foundation
  @@ -18,6 +15,10 @@
    See the License for the specific language governing permissions and
    limitations under the License.
   -->
  +
  +<xsl:stylesheet version="1.0"
  +              xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  +                  xmlns="http://www.w3.org/1999/xhtml">
   
   <!-- Constants used for case translation -->
   <xsl:variable name="lowercase" select="'abcdefghijklmnopqrstuvwxyz'" />
  
  
  
  1.6       +1 -1      httpd-2.0/docs/manual/style/latex/directiveindex.xsl
  
  Index: directiveindex.xsl
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/style/latex/directiveindex.xsl,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -u -r1.5 -r1.6
  --- directiveindex.xsl	9 Feb 2004 20:22:53 -0000	1.5
  +++ directiveindex.xsl	4 May 2004 23:14:15 -0000	1.6
  @@ -27,7 +27,7 @@
   <xsl:template match="directiveindex">
   
       <xsl:variable name="directives"
  -        select="document(modulefilelist/modulefile)
  +        select="document(document($allmodules)/modulefilelist/modulefile)
                   /modulesynopsis[status!='Obsolete']
                   /directivesynopsis[not(@location)]" />
   
  
  
  
  1.14      +2 -0      httpd-2.0/docs/manual/style/latex/latex.xsl
  
  Index: latex.xsl
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/style/latex/latex.xsl,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -u -r1.13 -r1.14
  --- latex.xsl	3 May 2004 20:18:46 -0000	1.13
  +++ latex.xsl	4 May 2004 23:14:15 -0000	1.14
  @@ -28,6 +28,8 @@
   <!-- Read the localized messages from the specified language file -->
   <xsl:variable name="message" select="document('../lang/en.xml')
                                        /language/messages/message"/>
  +<xsl:variable name="allmodules" select="document('../xsl/util/allmodules.xml')
  +                                        /items/item[@lang='en']"/>
   
   <!-- Get the guts of the stylesheets -->
   <xsl:include href="manualpage.xsl" />
  
  
  
  1.7       +8 -8      httpd-2.0/docs/manual/style/latex/moduleindex.xsl
  
  Index: moduleindex.xsl
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/style/latex/moduleindex.xsl,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -u -r1.6 -r1.7
  --- moduleindex.xsl	3 May 2004 20:18:46 -0000	1.6
  +++ moduleindex.xsl	4 May 2004 23:14:15 -0000	1.7
  @@ -40,31 +40,31 @@
   
   \begin{description}
   \item[</xsl:text>
  -    <xsl:apply-templates select="document(modulefilelist/modulefile
  +    <xsl:apply-templates select="document(document($allmodules)/modulefilelist/modulefile
                                 [starts-with(., 'core.xml')])
                                 /modulesynopsis/name"/>
       <xsl:text>] (p.\ \pageref{/mod/</xsl:text>
  -    <xsl:value-of select="document(modulefilelist/modulefile
  +    <xsl:value-of select="document(document($allmodules)/modulefilelist/modulefile
                                 [starts-with(., 'core.xml')])
                                 /modulesynopsis/name"/>
       <xsl:text>}) </xsl:text>
   
  -    <xsl:apply-templates select="document(modulefilelist/modulefile
  +    <xsl:apply-templates select="document(document($allmodules)/modulefilelist/modulefile
                                    [starts-with(., 'core.xml')])
                                    /modulesynopsis/description" />
   
       <xsl:text>
   \item[</xsl:text>
   
  -    <xsl:apply-templates  select="document(modulefilelist/modulefile
  +    <xsl:apply-templates  select="document(document($allmodules)/modulefilelist/modulefile
                                     [starts-with(., 'mpm_common.xml')])
                                     /modulesynopsis/name" />
       <xsl:text>] (p.\ \pageref{/mod/</xsl:text>
  -    <xsl:value-of select="document(modulefilelist/modulefile
  +    <xsl:value-of select="document(document($allmodules)/modulefilelist/modulefile
                                      [starts-with(., 'mpm_common.xml')])
                                      /modulesynopsis/name"/>
       <xsl:text>}) </xsl:text>
  -    <xsl:apply-templates select="document(modulefilelist/modulefile
  +    <xsl:apply-templates select="document(document($allmodules)/modulefilelist/modulefile
                                            [starts-with(., 'mpm_common.xml')])
                                            /modulesynopsis/description" />
   
  @@ -72,7 +72,7 @@
   
       <!-- and now the remaining MPMs -->
       <xsl:variable name="mpmmodules"
  -         select="document(modulefilelist/modulefile)
  +         select="document(document($allmodules)/modulefilelist/modulefile)
                    /modulesynopsis[status='MPM' and name != 'mpm_common']" />
       <xsl:variable name="translist">
         <xsl:call-template name="module-translist">
  @@ -109,7 +109,7 @@
   </xsl:text>
               
       <xsl:variable name="modules"
  -         select="document(modulefilelist/modulefile)
  +         select="document(document($allmodules)/modulefilelist/modulefile)
                    /modulesynopsis[status!='MPM' and status!='Core']" />
   
       <xsl:call-template name="mindex-of-letter">
  
  
  
  1.5       +1 -1      httpd-2.0/docs/manual/style/latex/quickreference.xsl
  
  Index: quickreference.xsl
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/style/latex/quickreference.xsl,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -u -r1.4 -r1.5
  --- quickreference.xsl	9 Feb 2004 20:22:53 -0000	1.4
  +++ quickreference.xsl	4 May 2004 23:14:15 -0000	1.5
  @@ -35,7 +35,7 @@
     <xsl:apply-templates select="legend"/>
   
     <xsl:variable name="directives"
  -       select="document(modulefilelist/modulefile)
  +       select="document(document($allmodules)/modulefilelist/modulefile)
            /modulesynopsis/directivesynopsis[not(@location)]" />
   
     <xsl:text>\footnotesize