view docs/xsls/module.xsls @ 4078:e922cc1755fa

Regenerate after previous commit.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 06 Sep 2011 10:42:17 +0000
parents ac19e755a132
children 5e2103cffd80
line wrap: on
line source

X:stylesheet {

X:output method="html" 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:var ID = "/module/@id";

X:include href = "directive.xslt";
X:include href = "content.xslt";


X:template = "/module" {
    <html><head>

    <title> !{@name} </title>

    </head>
    <body>

    !!;

    </body>
    </html>
}

}