diff xslt/article.xslt @ 170:cd2698ea00ab

Added generated XSLTs.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 02 Nov 2011 19:31:11 +0000
parents
children 2681cad309d2
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xslt/article.xslt	Wed Nov 02 19:31:11 2011 +0000
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+
+   <xsl:output indent="no" version="4.0" encoding="utf-8" method="html"/>
+
+   <xsl:strip-space elements="*"/>
+
+   <xsl:param select="'../xml'" name="XML"/>
+
+   <xsl:param name="YEAR"/>
+
+   <xsl:variable select="/article/@link | /module/@link" name="LINK"/>
+
+   <xsl:variable select="/article/@lang | /module/@lang" name="LANG"/>
+
+   <xsl:include href="dirname.xslt"/>
+
+   <xsl:include href="link.xslt"/>
+
+   <xsl:include href="style.xslt"/>
+
+   <xsl:include href="body.xslt"/>
+
+   <xsl:include href="menu.xslt"/>
+
+   <xsl:include href="donate.xslt"/>
+
+   <xsl:include href="directive.xslt"/>
+
+   <xsl:include href="content.xslt"/>
+
+   <xsl:include href="versions.xslt"/>
+
+   <xsl:template match="/article | /module">
+
+      <html>
+
+         <head>
+
+            <title>
+               <xsl:value-of select="@name"/>
+            </title>
+
+            <xsl:call-template name="style">
+               <xsl:with-param select="@lang" name="lang"/>
+            </xsl:call-template>
+
+         </head>
+
+         <xsl:call-template name="body">
+            <xsl:with-param select="@lang" name="lang"/>
+         </xsl:call-template>
+
+      </html>
+   </xsl:template>
+
+   <xsl:template match="/article[@lang='he'] | /module[@lang='he']">
+
+      <html dir="rtl">
+
+         <head>
+
+            <title>
+               <xsl:value-of select="@name"/>
+            </title>
+
+            <xsl:call-template name="style">
+               <xsl:with-param select="@lang" name="lang"/>
+            </xsl:call-template>
+
+         </head>
+
+         <xsl:call-template name="body">
+            <xsl:with-param select="@lang" name="lang"/>
+         </xsl:call-template>
+
+      </html>
+   </xsl:template>
+
+</xsl:stylesheet>