summaryrefslogtreecommitdiffhomepage
path: root/docs/xslt/directive.xslt
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2011-08-09 15:15:36 +0000
committerRuslan Ermilov <ru@nginx.com>2011-08-09 15:15:36 +0000
commitb0067b68537de308656799f795ab74401125b7e2 (patch)
tree8344c105ac5d1a3a32c2cf53fdf990e9e4aa31fc /docs/xslt/directive.xslt
parentaa64c39b20c2e4d77392d9de4abf79a4c242a579 (diff)
downloadnginx-b0067b68537de308656799f795ab74401125b7e2.tar.gz
nginx-b0067b68537de308656799f795ab74401125b7e2.tar.bz2
Regen after makefile changes.
Diffstat (limited to 'docs/xslt/directive.xslt')
-rw-r--r--docs/xslt/directive.xslt24
1 files changed, 14 insertions, 10 deletions
diff --git a/docs/xslt/directive.xslt b/docs/xslt/directive.xslt
index bfadfd29b..786beb90a 100644
--- a/docs/xslt/directive.xslt
+++ b/docs/xslt/directive.xslt
@@ -1,36 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-
<xsl:template match="directive">
-
+
<a name="{@name}"/>
<center>
<h4>
- <xsl:value-of select="@name"/>
+ <xsl:value-of select="@name"/>
</h4>
</center>
+
<xsl:apply-templates select="syntax"/>
+
<xsl:apply-templates select="default"/>
+
<xsl:apply-templates select="context"/>
+
<xsl:apply-templates select="para"/>
</xsl:template>
-
+
<xsl:template match="syntax">
<xsl:text>syntax: </xsl:text>
- <xsl:apply-templates/>
+ <xsl:apply-templates/>
<br/>
</xsl:template>
-
+
<xsl:template match="default">
<xsl:text>default: </xsl:text>
- <xsl:apply-templates/>
+ <xsl:apply-templates/>
<br/>
</xsl:template>
-
+
<xsl:template match="context">
<xsl:text>context: </xsl:text>
- <xsl:apply-templates/>
+ <xsl:apply-templates/>
<br/>
</xsl:template>
-</xsl:stylesheet> \ No newline at end of file
+
+</xsl:stylesheet>