diff xslt/error.xslt @ 1085:c454373427ef

Regenerated.
author Maxim Dounin <mdounin@mdounin.ru>
date Fri, 28 Feb 2014 20:12:47 +0400
parents 91dd4a7fadbb
children f03f057e12ff
line wrap: on
line diff
--- a/xslt/error.xslt	Fri Feb 21 20:15:37 2014 +0400
+++ b/xslt/error.xslt	Fri Feb 28 20:12:47 2014 +0400
@@ -1,77 +1,58 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright (C) Igor Sysoev
+  Copyright (C) Nginx, Inc.
+  -->
+
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-   <xsl:output indent="no" version="4.0" encoding="utf-8" method="html"/>
-
-   <xsl:strip-space elements="*"/>
-
-   <xsl:param select="'../xml'" name="XML"/>
-
-   <xsl:param name="YEAR"/>
+<xsl:output method="html" version="4.0" indent="no" encoding="utf-8"/>
 
-   <xsl:param name="TRANS"/>
-
-   <xsl:variable select="/error/@link" name="LINK"/>
-
-   <xsl:variable select="/error/@lang" name="LANG"/>
-
-   <xsl:include href="dirname.xslt"/>
+<xsl:strip-space elements="*"/>
 
-   <xsl:include href="menu.xslt"/>
-
-   <xsl:include href="ga.xslt"/>
-
-   <xsl:template match="/error">
+<!--
+  .. a current directory of a XSLT script is where the script is stored,
+  .. but not where XSLT processor has been started to run the script
+  -->
+<xsl:param select="'../xml'" name="XML"/>
+<xsl:param name="YEAR"/>
+<xsl:param name="TRANS"/>
 
-      <html>
-         <head>
-            <title>
-               <xsl:value-of select="@name"/>
-            </title>
+<xsl:variable select="/error/@link" name="LINK"/>
+<xsl:variable select="/error/@lang" name="LANG"/>
 
-            <style type="text/css">
-               <xsl:value-of select=" normalize-space('         body  { font-family:  Georgia, serif; }         ')"/>
+<xsl:include href="dirname.xslt"/>
+<xsl:include href="menu.xslt"/>
+<xsl:include href="ga.xslt"/>
 
-            </style>
 
-            <xsl:call-template name="ga"/>
+<xsl:template match="/error">
+    <html><head><title> <xsl:value-of select="@name"/> </title>
 
-         </head>
-
-         <body>
-
-            <table width="100%">
-
-               <tr>
+    <style type="text/css"><xsl:value-of select=" normalize-space('
+        body  { font-family:  Georgia, serif; }
+        ') "/>
+    </style>
 
-                  <td width="70%">
-                     <center>
-                        <h1>
-                           <xsl:value-of select="@name"/>
-                        </h1>
-                     </center>
-                  </td>
-
-                  <td rowspan="2" align="right" valign="top">
+    <xsl:call-template name="ga"/></head>
 
-                     <img src="/nginx.gif" alt="nginx"/>
-                     <br/>
-
-                     <br/>
-
-                     <br/>
-
-                     <xsl:apply-templates select="document(concat($XML, '/menu.xml'))                          /menus/menu[@lang = current()/@lang]/item"/>
+    <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/>
 
-                  </td>
-
-               </tr>
+            <br/>
+            <br/>
 
-            </table>
-
-         </body>
-
-      </html>
-   </xsl:template>
+            <xsl:apply-templates select="document(concat($XML, '/menu.xml'))
+                         /menus/menu[@lang = current()/@lang]/item"/>
+        </td>
+    </tr>
+    </table>
+    </body>
+    </html>
+</xsl:template>
 
 </xsl:stylesheet>