annotate docs/xslt/content.xslt @ 4067:da811964e37c

XSLT regeneration for the previous commit.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 05 Sep 2011 09:33:54 +0000
parents 131adbb6c82d
children e922cc1755fa
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
4067
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
4 <xsl:template match="section[@id and @name]">
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
5
4067
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
6 <a name="{@id}"/>
3996
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>
4067
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
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/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
14 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
15
4067
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
16 <xsl:template match="section[not(@id) and @name]">
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
17
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
18 <center>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
19 <h4>
4067
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
20 <xsl:value-of select="@name"/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
21 </h4>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
22 </center>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
23
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
24 <xsl:apply-templates/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
25 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
26
4067
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
27 <xsl:template match="section[not(@id) and not(@name)]">
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
28 <xsl:apply-templates/>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
29 </xsl:template>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
30
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
31 <xsl:template match="para">
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
32 <p>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
33 <xsl:apply-templates/>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
34 </p>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
35 </xsl:template>
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
36
4067
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
37 <xsl:template match="c-def">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
38 <code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
39 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
40 </code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
41 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
42
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
43 <xsl:template match="c-func">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
44 <code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
45 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
46 <xsl:text>()</xsl:text>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
47 </code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
48 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
49
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
50 <xsl:template match="code">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
51 <code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
52 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
53 </code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
54 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
55
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
56 <xsl:template match="command">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
57 <code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
58 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
59 </code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
60 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
61
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
62 <xsl:template match="example">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
63 <blockquote>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
64 <pre>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
65 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
66 </pre>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
67 </blockquote>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
68 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
69
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
70 <xsl:template match="emphasis">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
71 <strong>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
72 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
73 </strong>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
74 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
75
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
76 <xsl:template match="header">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
77 <code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
78 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
79 </code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
80 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
81
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
82 <xsl:template match="http-error">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
83
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
84 <i>
4067
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
85 <xsl:text>"</xsl:text>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
86 <xsl:value-of select="@text"/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
87 <xsl:text>"</xsl:text>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
88 </i>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
89
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
90 <xsl:text> (</xsl:text>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
91 <xsl:value-of select="@code"/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
92 <xsl:text>)</xsl:text>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
93 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
94
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
95 <xsl:template match="link[@id and not(@doc)]">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
96 <a href="#{@id}">
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
97 <xsl:apply-templates/>
4067
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
98 </a>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
99 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
100
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
101 <xsl:template match="link">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
102 <u>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
103 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
104 </u>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
105 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
106
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
107 <xsl:template match="list[@type='bullet']">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
108 <ul>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
109 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
110 </ul>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
111 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
112
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
113 <xsl:template match="list[@type='enum']">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
114 <ol>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
115 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
116 </ol>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
117 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
118
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
119 <xsl:template match="listitem">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
120 <li>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
121 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
122 </li>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
123 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
124
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
125 <xsl:template match="argument">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
126 <code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
127 <i>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
128 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
129 </i>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
130 </code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
131 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
132
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
133 <xsl:template match="parameter">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
134 <code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
135 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
136 </code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
137 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
138
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
139 <xsl:template match="value">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
140 <code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
141 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
142 </code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
143 </xsl:template>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
144
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
145 <xsl:template match="var">
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
146 <code>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
147 <xsl:apply-templates/>
da811964e37c XSLT regeneration for the previous commit.
Ruslan Ermilov <ru@nginx.com>
parents: 3998
diff changeset
148 </code>
3996
fc808f006ff4 skeleton for documentation processing
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
149 </xsl:template>
3998
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
150
131adbb6c82d Regen after makefile changes.
Ruslan Ermilov <ru@nginx.com>
parents: 3996
diff changeset
151 </xsl:stylesheet>