annotate xsls/content.xsls @ 721:81ad082bc837

Simplified things by including books.xslt, download.xslt and security.xslt into article.xslt, and always using article.xslt to generate HTMLs. While here, moved versions.xml from common dependencies to article dependencies. Fixed menu in 404.html by applying templates from menu.xslt, and fixed its dependency on DTD.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 12 Oct 2012 09:10:31 +0000
parents a8f7b93b0a5f
children 3b0ea2ab2b24
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
580
be54c443235a Added copyright markers to documentation sources.
Ruslan Ermilov <ru@nginx.com>
parents: 496
diff changeset
1 <!--
be54c443235a Added copyright markers to documentation sources.
Ruslan Ermilov <ru@nginx.com>
parents: 496
diff changeset
2 Copyright (C) Igor Sysoev
be54c443235a Added copyright markers to documentation sources.
Ruslan Ermilov <ru@nginx.com>
parents: 496
diff changeset
3 Copyright (C) Nginx, Inc.
be54c443235a Added copyright markers to documentation sources.
Ruslan Ermilov <ru@nginx.com>
parents: 496
diff changeset
4 -->
be54c443235a Added copyright markers to documentation sources.
Ruslan Ermilov <ru@nginx.com>
parents: 496
diff changeset
5
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
6 X:stylesheet {
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
7
32
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
8 X:template = "section[@id and @name]" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
9 <a name="{@id}" /> <center><h4> !{@name} </h4></center>
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
10 !!;
32
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
11 }
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
12
607
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
13 X:template = "section/section[@id and @name]" {
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
14 <a name="{@id}" /> <center><h5> !{@name} </h5></center>
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
15 !!;
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
16 }
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
17
110
40eec261c2a6 Added proper support for anonymous sections, notably for the summary.
Ruslan Ermilov <ru@nginx.com>
parents: 103
diff changeset
18 X:template = "section[@id and not(@name)]" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
19 <a name="{@id}" />
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
20 !!;
32
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
21 }
2bcfb5f75e06 Supporting new format of <module> and <section>:
Igor Sysoev <igor@sysoev.ru>
parents: 22
diff changeset
22
121
49443032011c Unified <section> syntax for "article" and "module" documents.
Ruslan Ermilov <ru@nginx.com>
parents: 110
diff changeset
23 X:template = "section[not(@id) and @name]" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
24 <center><h4> !{@name} </h4></center>
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
25 !!;
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
26 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
27
607
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
28 X:template = "section/section[not(@id) and @name]" {
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
29 <center><h5> !{@name} </h5></center>
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
30 !!;
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
31 }
a8f7b93b0a5f Allow article sections to be nested.
Ruslan Ermilov <ru@nginx.com>
parents: 594
diff changeset
32
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
33 X:template = "para" { <p> !!; </p> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
34
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
35 X:template = "para[@align]" { <p align="{@align}"> !!; </p> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
36
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
37 X:template = "initial" { <span class="initial"><b> !!; </b></span> }
15
2f7420346aee Initial emphasizing support. Using it for "Q:" and "A:" letter in FAQ.
Igor Sysoev <igor@sysoev.ru>
parents: 0
diff changeset
38
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
39
354
4e3b681cae20 Unified the padding and margins of examples and notes blocks.
Ruslan Ermilov <ru@nginx.com>
parents: 271
diff changeset
40 X:template = "programlisting" { <blockquote class="example"><pre> !!; </pre></blockquote> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
41
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
42 X:template = "para/programlisting" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
43 X:text disable-output-escaping="yes" {&lt;/p&gt; }
354
4e3b681cae20 Unified the padding and margins of examples and notes blocks.
Ruslan Ermilov <ru@nginx.com>
parents: 271
diff changeset
44 <blockquote class="example"><pre> !!; </pre></blockquote>
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
45 X:text disable-output-escaping="yes" {&lt;p&gt; }
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
46 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
47
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
48
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
49 X:template = "note" { <blockquote class="note"> !!; </blockquote> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
50
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
51 X:template = "para/note" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
52 X:text disable-output-escaping="yes" {&lt;/p&gt; }
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
53 <blockquote class="note"> !!; </blockquote>
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
54 X:text disable-output-escaping="yes" {&lt;p&gt; }
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
55 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
56
473
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
57 X:template = "list[@type='bullet']" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
58 X:if "@compact = 'yes'" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
59 <ul class="compact"> !!; </ul>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
60 } else {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
61 <ul> !!; </ul>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
62 }
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
63 }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
64 X:template = "para/list[@type='bullet']" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
65 X:text disable-output-escaping="yes" {&lt;/p&gt; }
473
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
66 X:if "@compact = 'yes'" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
67 <ul class="compact"> !!; </ul>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
68 } else {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
69 <ul> !!; </ul>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
70 }
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
71 X:text disable-output-escaping="yes" {&lt;p&gt; }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
72 }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
73
473
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
74 X:template = "list[@type='enum']" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
75 X:if "@compact = 'yes'" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
76 <ol class="compact"> !!; </ol>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
77 } else {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
78 <ol> !!; </ol>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
79 }
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
80 }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
81 X:template = "para/list[@type='enum']" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
82 X:text disable-output-escaping="yes" {&lt;/p&gt; }
473
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
83 X:if "@compact = 'yes'" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
84 <ol class="compact"> !!; </ol>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
85 } else {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
86 <ol> !!; </ol>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
87 }
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
88 X:text disable-output-escaping="yes" {&lt;p&gt; }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
89 }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
90
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
91 X:template = "listitem" { <li> !!; </li> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
92
496
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
93 X:template = "list[@type='tag']" {
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
94 X:if "@compact = 'yes'" {
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
95 <dl class="compact"> !!; </dl>
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
96 } else {
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
97 <dl> !!; </dl>
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
98 }
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
99 }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
100 X:template = "para/list[@type='tag']" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
101 X:text disable-output-escaping="yes" {&lt;/p&gt; }
496
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
102 X:if "@compact = 'yes'" {
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
103 <dl class="compact"> !!; </dl>
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
104 } else {
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
105 <dl> !!; </dl>
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
106 }
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
107 X:text disable-output-escaping="yes" {&lt;p&gt; }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
108 }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
109
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
110 X:template = "tag-name" { <dt> !!; </dt> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
111 X:template = "tag-desc" { <dd> !!; </dd> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
112
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
113 X:template = "table[@note and @width]" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
114 <blockquote><table width="{@width}"> !!; </table></blockquote>
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
115 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
116 X:template = "table[@note and not(@width)]" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
117 <blockquote><table width="100%"> !!; </table></blockquote>
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
118 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
119 X:template = "table[not(@note) and @width]" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
120 <table width="{@width}"> !!; </table>
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
121 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
122 X:template = "table" { <table width="100%"> !!; </table> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
123 X:template = "tr" { <tr> !!; </tr> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
124 X:template = "td[@width]" { <td width="{@width}"> !!; </td> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
125 X:template = "td" { <td> !!; </td> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
126
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
127 X:template = "c-def" { <code> !!; </code> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
128
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
129 X:template = "c-func" { <code> !!; X:text{()} </code> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
130
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
131 X:template = "command" { <code> !!; </code> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
132
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
133 X:template = "emphasis" { <strong> !!; </strong> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
134
354
4e3b681cae20 Unified the padding and margins of examples and notes blocks.
Ruslan Ermilov <ru@nginx.com>
parents: 271
diff changeset
135 X:template = "example" { <blockquote class="example"><pre> !!; </pre></blockquote> }
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
136
90
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
137 X:template = "para/example" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
138 X:text disable-output-escaping="yes" {&lt;/p&gt; }
354
4e3b681cae20 Unified the padding and margins of examples and notes blocks.
Ruslan Ermilov <ru@nginx.com>
parents: 271
diff changeset
139 <blockquote class="example"><pre> !!; </pre></blockquote>
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
140 X:text disable-output-escaping="yes" {&lt;p&gt; }
90
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
141 }
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
142
271
4c6d2c614d2c Cleaned up XML tag mess:
Ruslan Ermilov <ru@nginx.com>
parents: 148
diff changeset
143 X:template = "literal" { <code> !!; </code> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
144
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
145 X:template = "header" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
146 X:text {&#8220;} !!; X:text {&#8221;}
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
147 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
148
52
666e85596e3c Added support for <link url="..."> which should eventually replace
Ruslan Ermilov <ru@nginx.com>
parents: 32
diff changeset
149 X:template = "http-status" {
666e85596e3c Added support for <link url="..."> which should eventually replace
Ruslan Ermilov <ru@nginx.com>
parents: 32
diff changeset
150 !{@code} X:text { (} !{@text} X:text{)}
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
151 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
152
271
4c6d2c614d2c Cleaned up XML tag mess:
Ruslan Ermilov <ru@nginx.com>
parents: 148
diff changeset
153 X:template = "value" { <code><i> !!; </i></code> }
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
154
126
d4133c439eeb 'registered' element added
Sergey Budnevitch <sb@waeme.net>
parents: 121
diff changeset
155 X:template = "registered" { !!; <sup> X:text {&#174;} </sup> }
d4133c439eeb 'registered' element added
Sergey Budnevitch <sb@waeme.net>
parents: 121
diff changeset
156
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
157 X:template = "var" { <code> !!; </code> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
158
148
682163f2b298 Unified article/path and module/pathname into a single "path".
Ruslan Ermilov <ru@nginx.com>
parents: 147
diff changeset
159 X:template = "path" { <code> !!; </code> }
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
160 X:template = "i" { <i> !!; </i> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
161 X:template = "b" { <b> !!; </b> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
162 X:template = "nobr" { <nobr> !!; </nobr> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
163 X:template = "br" { <br/> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
164
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
165
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
166 }