view xsls/error.xsls @ 1200:333eccb8a7f6

Moved dir.map postprocessing into template.
author Maxim Dounin <mdounin@mdounin.ru>
date Wed, 21 May 2014 21:37:27 +0400
parents 81ad082bc837
children e6f3391df2ea
line wrap: on
line source

<!--
  Copyright (C) Igor Sysoev
  Copyright (C) Nginx, Inc.
  -->

X:stylesheet {

X:output method="html" version="4.0" indent="no" encoding="utf-8";

X:strip-space elements = "*";

<!--
  -- 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
  -->
X:param XML = "'../xml'";
X:param YEAR;
X:param TRANS;

X:var LINK = "/error/@link";
X:var LANG = "/error/@lang";

X:include href = "dirname.xslt";
X:include href = "menu.xslt";
X:include href = "ga.xslt";


X:template = "/error" {
    <html><head><title> !{@name} </title>

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

    !ga ()

    </head>

    <body>
    <table width="100%">
    <tr>
        <td width="70%"><center><h1> !{@name} </h1></center></td>
        <td rowspan="2" align="right" valign="top">
            <img src="/nginx.gif" alt="nginx"/><br/>

            <br/>
            <br/>

            !! "document(concat($XML, '/menu.xml'))
                         /menus/menu[@lang = current()/@lang]/item";
        </td>
    </tr>
    </table>
    </body>
    </html>
}

}