view xsls/article.xsls @ 271:4c6d2c614d2c

Cleaned up XML tag mess: - all of <parameter> and <code>, and some of <dirname>, <value>, and <command> were replaced by <literal>; - the rest of <dirname> were replaced by links; - <argument> were replaced by <value>; - <value> is now rendered in HTML in italic; - <literal> and <path> can now contain <value>. Cleaned up terminology mess: - directives take "parameters".
author Ruslan Ermilov <ru@nginx.com>
date Fri, 23 Dec 2011 17:29:59 +0000
parents b7b82f978b1d
children 9085f0c59dc6
line wrap: on
line source

X:stylesheet {

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

X:strip-space elements = "article section";

<!--
  -- 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 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 | /module" {
    <html>

    <head>

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

    !style (lang="@lang")

    </head>

    !body (lang="@lang")

    </html>
}


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

    <head>

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

    !style (lang="@lang")

    </head>

    !body (lang="@lang")

    </html>
}


}