nginx-quic/docs/xslt/directive.xslt

41 lines
903 B
HTML
Raw Normal View History

2011-08-05 05:25:34 -04:00
<?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">
2011-08-09 11:15:36 -04:00
2011-08-05 05:25:34 -04:00
<a name="{@name}"/>
<center>
<h4>
2011-08-09 11:15:36 -04:00
<xsl:value-of select="@name"/>
2011-08-05 05:25:34 -04:00
</h4>
</center>
2011-08-09 11:15:36 -04:00
2011-08-05 05:25:34 -04:00
<xsl:apply-templates select="syntax"/>
2011-08-09 11:15:36 -04:00
2011-08-05 05:25:34 -04:00
<xsl:apply-templates select="default"/>
2011-08-09 11:15:36 -04:00
2011-08-05 05:25:34 -04:00
<xsl:apply-templates select="context"/>
2011-08-09 11:15:36 -04:00
2011-08-05 05:25:34 -04:00
<xsl:apply-templates select="para"/>
</xsl:template>
2011-08-09 11:15:36 -04:00
2011-08-05 05:25:34 -04:00
<xsl:template match="syntax">
<xsl:text>syntax: </xsl:text>
2011-08-09 11:15:36 -04:00
<xsl:apply-templates/>
2011-08-05 05:25:34 -04:00
<br/>
</xsl:template>
2011-08-09 11:15:36 -04:00
2011-08-05 05:25:34 -04:00
<xsl:template match="default">
<xsl:text>default: </xsl:text>
2011-08-09 11:15:36 -04:00
<xsl:apply-templates/>
2011-08-05 05:25:34 -04:00
<br/>
</xsl:template>
2011-08-09 11:15:36 -04:00
2011-08-05 05:25:34 -04:00
<xsl:template match="context">
<xsl:text>context: </xsl:text>
2011-08-09 11:15:36 -04:00
<xsl:apply-templates/>
2011-08-05 05:25:34 -04:00
<br/>
</xsl:template>
2011-08-09 11:15:36 -04:00
</xsl:stylesheet>