diff xsls/article.xsls @ 28:02fc5e96a305

Moving decision logic from Makefile to XSLT because there is no simple way to force Gmake to use the $(OUT)/%_module.html target instead of $(OUT)/%.html target.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 29 Sep 2011 14:14:55 +0000
parents 61e04fc01027
children 1d315ef37215
line wrap: on
line diff
--- a/xsls/article.xsls
+++ b/xsls/article.xsls
@@ -12,7 +12,7 @@ X:param XML = "'../xml'";
 X:param YEAR;
 
 X:var SITE = "'http://nginx.org'";
-X:var LINK = "/article/@link";
+X:var LINK = "/article/@link | /module/@link";
 
 X:include href = "dirname.xslt";
 X:include href = "link.xslt";
@@ -20,6 +20,7 @@ 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";
 
@@ -54,4 +55,34 @@ X:template = "/article[@lang='he']" {
 }
 
 
+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>
+}
+
+
+}