view xsls/article.xsls @ 102:c76a257f3fd4

The directive name is now automatically printed in <default> and <syntax>. Specifying <default> is made non-optional. Visible changes: - "types" and "proxy_set_header" get proper defaults (not yet displayed nicely); - "fastcgi_hide_header", "fastcgi_ignore_headers", "fastcgi_pass_header", "proxy_hide_header", "proxy_ignore_headers", and "proxy_pass_header" now have their (empty) defaults documented; - mentions of "fastcgi_redirect_errors" and "proxy_redirect_errors" which are long unsupported were removed.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 19 Oct 2011 05:15:24 +0000
parents 1d315ef37215
children 1aa4f50144e4
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:param YEAR;

X:var SITE = "'http://nginx.org'";
X:var LINK = "/article/@link | /module/@link";
X:var LANG = "/article/@lang | /module/@lang";

X:include href = "dirname.xslt";
X:include href = "link.xslt";
X:include href = "style.xslt";
X:include href = "body.xslt";
X:include href = "menu.xslt";
X:include href = "donate.xslt";
X:include href = "directive.xslt";
X:include href = "content.xslt";
X:include href = "versions.xslt";


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

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

    !style (lang="/article/@lang")

    </head>

    !body (lang="/article/@lang")

    </html>
}


X:template = "/article[@lang='he']" {
    <html dir="rtl"><head>

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

    !style (lang="/article/@lang")

    </head>

    !body (lang="/article/@lang")

    </html>
}


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

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

    !style (lang="/module/@lang")

    </head>

    !body (lang="/module/@lang")

    </html>
}


X:template = "/module[@lang='he']" {
    <html dir="rtl"><head>

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

    !style (lang="/module/@lang")

    </head>

    !body (lang="/module/@lang")

    </html>
}


}