view xsls/error.xsls @ 107:ee725af08951

Two unrelated changes were erroneously committed simultaneously: - Making the rest of HTML valid. - Updating the "Converting rewrite rules" howto examples to utilize the new power of the "return" directive.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 19 Oct 2011 12:39:11 +0000
parents 61e04fc01027
children f31230984540
line wrap: on
line source

X:stylesheet {

X:output method="html" indent="no" encoding="utf-8"
    doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN";

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:template = "/error" {
    <html><head><title> !{@title} </title>

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

    <body>
    <table width="100%">
    <tr>
        <td width="70%"><center><h1> !{@title} </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>
}


X:template = "menu/item" {
    <a href="{@href}"> !{ normalize-space(text()) } </a> <br/>
}


X:template = "menu/item[not(@href)]" {
    !{ normalize-space(text()) } <br/>
}

}