view xslt/error.xslt @ 721:81ad082bc837

Simplified things by including books.xslt, download.xslt and security.xslt into article.xslt, and always using article.xslt to generate HTMLs. While here, moved versions.xml from common dependencies to article dependencies. Fixed menu in 404.html by applying templates from menu.xslt, and fixed its dependency on DTD.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 12 Oct 2012 09:10:31 +0000
parents 1507ec5ba69a
children 91dd4a7fadbb
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

   <xsl:include href="ga.xslt"/>

   <xsl:output indent="no" version="4.0" encoding="utf-8" method="html"/>

   <xsl:strip-space elements="*"/>

   <xsl:param select="'../xml'" name="XML"/>

   <xsl:template match="/error">

      <html>
         <head>
            <title>
               <xsl:value-of select="@name"/>
            </title>

            <style type="text/css">
               <xsl:value-of select=" normalize-space('         body  { font-family:  Georgia, serif; }         ')"/>

            </style>

            <xsl:call-template name="ga"/>

         </head>

         <body>

            <table width="100%">

               <tr>

                  <td width="70%">
                     <center>
                        <h1>
                           <xsl:value-of select="@name"/>
                        </h1>
                     </center>
                  </td>

                  <td rowspan="2" align="right" valign="top">

                     <img src="/nginx.gif" alt="nginx"/>
                     <br/>

                     <br/>

                     <br/>

                     <xsl:apply-templates select="document(concat($XML, '/menu.xml'))                          /menus/menu[@lang = current()/@lang]/item"/>

                  </td>

               </tr>

            </table>

         </body>

      </html>
   </xsl:template>

   <xsl:template match="menu/item">

      <a href="{@href}">
         <xsl:value-of select=" normalize-space(text())"/>
      </a>
      <br/>
   </xsl:template>

   <xsl:template match="menu/item[not(@href)]">

      <xsl:value-of select=" normalize-space(text())"/> 
      <br/>
   </xsl:template>

</xsl:stylesheet>