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:21:29 UTC

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

nd          2004/05/04 16:21:29

  Modified:    docs/manual/style/latex Tag: APACHE_2_0_BRANCH
                        directiveindex.xsl latex.xsl moduleindex.xsl
                        quickreference.xsl
  Log:
  references to allmodules.xml were removed
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.2.2.5   +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.2.2.4
  retrieving revision 1.2.2.5
  diff -u -u -r1.2.2.4 -r1.2.2.5
  --- directiveindex.xsl	9 Feb 2004 20:47:31 -0000	1.2.2.4
  +++ directiveindex.xsl	4 May 2004 23:21:29 -0000	1.2.2.5
  @@ -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.9.2.6   +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.9.2.5
  retrieving revision 1.9.2.6
  diff -u -u -r1.9.2.5 -r1.9.2.6
  --- latex.xsl	3 May 2004 20:41:16 -0000	1.9.2.5
  +++ latex.xsl	4 May 2004 23:21:29 -0000	1.9.2.6
  @@ -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.2.2.6   +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.2.2.5
  retrieving revision 1.2.2.6
  diff -u -u -r1.2.2.5 -r1.2.2.6
  --- moduleindex.xsl	3 May 2004 20:41:16 -0000	1.2.2.5
  +++ moduleindex.xsl	4 May 2004 23:21:29 -0000	1.2.2.6
  @@ -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.1.2.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.1.2.4
  retrieving revision 1.1.2.5
  diff -u -u -r1.1.2.4 -r1.1.2.5
  --- quickreference.xsl	9 Feb 2004 20:47:32 -0000	1.1.2.4
  +++ quickreference.xsl	4 May 2004 23:21:29 -0000	1.1.2.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