view xsls/article.xsls @ 11:621e499d1fea

nginx-1.1.1 CHANGES
author Igor Sysoev <igor@sysoev.ru>
date Mon, 22 Aug 2011 14:07:35 +0000
parents 61e04fc01027
children 02fc5e96a305
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";

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 = "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>
}


}