home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 May / PCWorld_2004-05_cd.bin / komunikace / apache / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252967_directiveindex.xsl (.txt) < prev    next >
LaTeX Document  |  2003-06-30  |  4KB  |  77 lines

  1. <?xml version="1.0"?><!--
  2. /* ====================================================================
  3.  * The Apache Software License, Version 1.1
  4.  * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in
  13.  *    the documentation and/or other materials provided with the
  14.  *    distribution.
  15.  * 3. The end-user documentation included with the redistribution,
  16.  *    if any, must include the following acknowledgment:
  17.  *       "This product includes software developed by the
  18.  *        Apache Software Foundation (http://www.apache.org/)."
  19.  *    Alternately, this acknowledgment may appear in the software itself,
  20.  *    if and wherever such third-party acknowledgments normally appear.
  21.  * 4. The names "Apache" and "Apache Software Foundation" must
  22.  *    not be used to endorse or promote products derived from this
  23.  *    software without prior written permission. For written
  24.  *    permission, please contact apache@apache.org.
  25.  * 5. Products derived from this software may not be called "Apache",
  26.  *    nor may "Apache" appear in their name, without prior written
  27.  *    permission of the Apache Software Foundation.
  28.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  31.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  32.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  33.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  34.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  35.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  36.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  37.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  38.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  39.  * SUCH DAMAGE.
  40.  * ====================================================================
  41.  * This software consists of voluntary contributions made by many
  42.  * individuals on behalf of the Apache Software Foundation.  For more
  43.  * information on the Apache Software Foundation, please see
  44.  * <http://www.apache.org/>.
  45.  */ -->
  46. <xsl:stylesheet version="1.0"
  47.               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  48.                   xmlns="http://www.w3.org/1999/xhtml">
  49. <!-- ==================================================================== -->
  50. <!-- <directiveindex>                                                     -->
  51. <!-- Builds the directive index page                                      -->
  52. <!-- ==================================================================== -->
  53. <xsl:template match="directiveindex">
  54.     <xsl:variable name="directives"
  55.         select="document(modulefilelist/modulefile)
  56.                 /modulesynopsis[status!='Obsolete']
  57.                 /directivesynopsis[not(@location)]" />
  58.   <xsl:call-template name="section-title"/>
  59.   <xsl:apply-templates select="summary" />
  60.   <xsl:call-template name="seealso"/>
  61.   <xsl:text>\begin{itemize}
  62. </xsl:text>
  63.   <xsl:for-each select="$directives">
  64.   <xsl:sort select="name" />
  65.   <xsl:text>
  66. \item </xsl:text>
  67.   <xsl:apply-templates select="name" mode="simple"/>
  68.   <xsl:text> (p.\ \pageref{/mod/</xsl:text>
  69.   <xsl:value-of select="../name"/><xsl:text>:</xsl:text>
  70.   <xsl:value-of select="translate(name, $uppercase, $lowercase)"/>
  71.   <xsl:text>})</xsl:text>
  72. </xsl:for-each>
  73.   <xsl:text>\end{itemize}</xsl:text>
  74. </xsl:template>
  75. <!-- /directiveindex -->
  76. </xsl:stylesheet>
  77.