annotate docs/xslt/directive.xslt @ 3999:36ce2e430bdd

Don't ignore xmllint errors.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 09 Aug 2011 15:18:07 +0000
parents 131adbb6c82d
children da811964e37c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
3
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
4 <xsl:template match="directive">
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
5
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
6 <a name="{@name}"/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
7 <center>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
8 <h4>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
9 <xsl:value-of select="@name"/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
10 </h4>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
11 </center>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
12
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
13 <xsl:apply-templates select="syntax"/>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
14
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
15 <xsl:apply-templates select="default"/>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
16
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
17 <xsl:apply-templates select="context"/>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
18
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
19 <xsl:apply-templates select="para"/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
20 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
21
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
22 <xsl:template match="syntax">
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
23 <xsl:text>syntax: </xsl:text>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
24 <xsl:apply-templates/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
25 <br/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
26 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
27
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
28 <xsl:template match="default">
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
29 <xsl:text>default: </xsl:text>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
30 <xsl:apply-templates/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
31 <br/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
32 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
33
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
34 <xsl:template match="context">
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
35 <xsl:text>context: </xsl:text>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
36 <xsl:apply-templates/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
37 <br/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
38 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
39
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
40 </xsl:stylesheet>