comparison xslt/security.xslt @ 722:91dd4a7fadbb

Regenerated.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 12 Oct 2012 09:10:49 +0000
parents 1507ec5ba69a
children f9c687ab1fd2
comparison
equal deleted inserted replaced
721:81ad082bc837 722:91dd4a7fadbb
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
4 <xsl:output indent="no" version="4.0" encoding="utf-8" method="html"/>
5
6 <xsl:strip-space elements="*"/>
7
8 <xsl:param select="'../xml'" name="XML"/>
9
10 <xsl:param name="YEAR"/>
11
12 <xsl:variable select="/article/@link" name="LINK"/>
13
14 <xsl:include href="dirname.xslt"/>
15
16 <xsl:include href="link.xslt"/>
17
18 <xsl:include href="style.xslt"/>
19
20 <xsl:include href="body.xslt"/>
21
22 <xsl:include href="menu.xslt"/>
23
24 <xsl:include href="ga.xslt"/>
25
26 <xsl:include href="content.xslt"/>
27
28 <xsl:template match="/article">
29
30 <html>
31 <head>
32
33 <title>
34 <xsl:value-of select="@name"/>
35 </title>
36
37 <xsl:call-template name="style">
38 <xsl:with-param select="@lang" name="lang"/>
39 </xsl:call-template>
40
41 <xsl:call-template name="ga"/>
42
43 </head>
44
45 <xsl:call-template name="body">
46 <xsl:with-param select="@lang" name="lang"/>
47 </xsl:call-template>
48
49 </html>
50 </xsl:template>
51 3
52 <xsl:template match="security"> 4 <xsl:template match="security">
53 <ul> 5 <ul>
54 <xsl:apply-templates/> 6 <xsl:apply-templates/>
55 </ul> 7 </ul>