comparison docs/xslt/directive.xslt @ 3998:131adbb6c82d

Regen after makefile changes.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 09 Aug 2011 15:15:36 +0000
parents fc808f006ff4
children da811964e37c
comparison
equal deleted inserted replaced
3997:cb90f030acfd 3998:131adbb6c82d
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 3
4
5 <xsl:template match="directive"> 4 <xsl:template match="directive">
6 5
7 <a name="{@name}"/> 6 <a name="{@name}"/>
8 <center> 7 <center>
9 <h4> 8 <h4>
10 <xsl:value-of select="@name"/> 9 <xsl:value-of select="@name"/>
11 </h4> 10 </h4>
12 </center> 11 </center>
12
13 <xsl:apply-templates select="syntax"/> 13 <xsl:apply-templates select="syntax"/>
14
14 <xsl:apply-templates select="default"/> 15 <xsl:apply-templates select="default"/>
16
15 <xsl:apply-templates select="context"/> 17 <xsl:apply-templates select="context"/>
18
16 <xsl:apply-templates select="para"/> 19 <xsl:apply-templates select="para"/>
17 </xsl:template> 20 </xsl:template>
18 21
19 <xsl:template match="syntax"> 22 <xsl:template match="syntax">
20 <xsl:text>syntax: </xsl:text> 23 <xsl:text>syntax: </xsl:text>
21 <xsl:apply-templates/> 24 <xsl:apply-templates/>
22 <br/> 25 <br/>
23 </xsl:template> 26 </xsl:template>
24 27
25 <xsl:template match="default"> 28 <xsl:template match="default">
26 <xsl:text>default: </xsl:text> 29 <xsl:text>default: </xsl:text>
27 <xsl:apply-templates/> 30 <xsl:apply-templates/>
28 <br/> 31 <br/>
29 </xsl:template> 32 </xsl:template>
30 33
31 <xsl:template match="context"> 34 <xsl:template match="context">
32 <xsl:text>context: </xsl:text> 35 <xsl:text>context: </xsl:text>
33 <xsl:apply-templates/> 36 <xsl:apply-templates/>
34 <br/> 37 <br/>
35 </xsl:template> 38 </xsl:template>
39
36 </xsl:stylesheet> 40 </xsl:stylesheet>