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 / F252982_manualpage.xsl < prev    next >
Extensible Markup Language  |  2003-05-29  |  5KB  |  123 lines

  1. <?xml version="1.0"?><!--
  2. /* ====================================================================
  3.  * The Apache Software License, Version 1.1
  4.  *
  5.  * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  6.  * reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  *
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  *
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  *
  20.  * 3. The end-user documentation included with the redistribution,
  21.  *    if any, must include the following acknowledgment:
  22.  *       "This product includes software developed by the
  23.  *        Apache Software Foundation (http://www.apache.org/)."
  24.  *    Alternately, this acknowledgment may appear in the software itself,
  25.  *    if and wherever such third-party acknowledgments normally appear.
  26.  *
  27.  * 4. The names "Apache" and "Apache Software Foundation" must
  28.  *    not be used to endorse or promote products derived from this
  29.  *    software without prior written permission. For written
  30.  *    permission, please contact apache@apache.org.
  31.  *
  32.  * 5. Products derived from this software may not be called "Apache",
  33.  *    nor may "Apache" appear in their name, without prior written
  34.  *    permission of the Apache Software Foundation.
  35.  *
  36.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  37.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  38.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  39.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  40.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  42.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  43.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  44.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  45.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  46.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  47.  * SUCH DAMAGE.
  48.  * ====================================================================
  49.  *
  50.  * This software consists of voluntary contributions made by many
  51.  * individuals on behalf of the Apache Software Foundation.  For more
  52.  * information on the Apache Software Foundation, please see
  53.  * <http://www.apache.org/>.
  54.  */ -->
  55. <!DOCTYPE xsl:stylesheet [
  56.     <!ENTITY lf SYSTEM "util/lf.xml">
  57. ]>
  58. <xsl:stylesheet version="1.0"
  59.               xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  60.                   xmlns="http://www.w3.org/1999/xhtml">
  61.  
  62. <!-- ==================================================================== -->
  63. <!-- <manualpage>                                                         -->
  64. <!-- Process an entire document into an HTML page                         -->
  65. <!-- ==================================================================== -->
  66. <xsl:template match="manualpage">
  67. <html xml:lang="{$messages/@lang}" lang="{$messages/@lang}">
  68.     <xsl:call-template name="head" />&lf;
  69.  
  70.     <body id="manual-page">
  71.         <!-- unsqueeze if there's no sidebar -->
  72.         <xsl:if test="not(count(section) > 1 or seealso)">
  73.           <xsl:attribute name="class">no-sidebar</xsl:attribute>
  74.         </xsl:if>
  75.  
  76.         <xsl:call-template name="top"/>          
  77.  
  78.         <div id="page-content">
  79.             <div id="preamble">        
  80.                 <h1>
  81.                     <xsl:value-of select="title"/>
  82.                 </h1>&lf;
  83.  
  84.                 <xsl:call-template name="langavail" />&lf;
  85.  
  86.                 <xsl:apply-templates select="summary" />
  87.             </div>&lf; <!-- /#preamble -->
  88.           
  89.             <xsl:if test="(not($is-chm) and count(section) > 1) or seealso">
  90.                 <div id="quickview">
  91.                     <xsl:if test="not($is-chm) and count(section) > 1">
  92.                         <ul id="toc">
  93.                         <xsl:apply-templates select="section" mode="index" />
  94.                         </ul>
  95.                     </xsl:if>
  96.  
  97.                     <xsl:if test="seealso">
  98.                         <h3>
  99.                             <xsl:value-of
  100.                                 select="$messages/message[@name='seealso']" />
  101.                         </h3>
  102.                         <ul class="seealso">
  103.                         <xsl:for-each select="seealso">
  104.                             <li>
  105.                                 <xsl:apply-templates />
  106.                             </li>
  107.                         </xsl:for-each>
  108.                         </ul>
  109.                     </xsl:if>
  110.                 </div>&lf; <!-- /#quickview -->
  111.             </xsl:if>
  112.  
  113.             <xsl:apply-templates select="section" />
  114.         </div>&lf; <!-- /#page-content -->
  115.  
  116.         <xsl:call-template name="bottom" />&lf;
  117.     </body>
  118. </html>
  119. </xsl:template>
  120. <!-- /manualpage -->
  121.  
  122. </xsl:stylesheet>
  123.