annotate xsls/content.xsls @ 3072:7f493ec56c12

Renamed news page.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 09 Apr 2024 18:14:16 +0300
parents b459b643bf5a
children
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]" {
1900
939116ee92b4 Increased nested section head size.
Vladimir Homutov <vl@nginx.com>
parents: 1897
diff changeset
14 <a name="{@id}" /> <center><h4> !{@name} </h4></center>
607
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]" {
1900
939116ee92b4 Increased nested section head size.
Vladimir Homutov <vl@nginx.com>
parents: 1897
diff changeset
29 <center><h4> !{@name} </h4></center>
607
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
1684
ac9fa096b685 Added the module/para/@id attribute.
Ruslan Ermilov <ru@nginx.com>
parents: 778
diff changeset
33 X:template = "para[@id]" {
ac9fa096b685 Added the module/para/@id attribute.
Ruslan Ermilov <ru@nginx.com>
parents: 778
diff changeset
34 <a name="{@id}" />
ac9fa096b685 Added the module/para/@id attribute.
Ruslan Ermilov <ru@nginx.com>
parents: 778
diff changeset
35 <p> !!; </p>
ac9fa096b685 Added the module/para/@id attribute.
Ruslan Ermilov <ru@nginx.com>
parents: 778
diff changeset
36 }
ac9fa096b685 Added the module/para/@id attribute.
Ruslan Ermilov <ru@nginx.com>
parents: 778
diff changeset
37
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
38 X:template = "para" { <p> !!; </p> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
39
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
40 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
41
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
42 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
43
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
44
354
4e3b681cae20 Unified the padding and margins of examples and notes blocks.
Ruslan Ermilov <ru@nginx.com>
parents: 271
diff changeset
45 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
46
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
47 X:template = "para/programlisting" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
48 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
49 <blockquote class="example"><pre> !!; </pre></blockquote>
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
50 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
51 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
52
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
53
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
54 X:template = "note" { <blockquote class="note"> !!; </blockquote> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
55
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
56 X:template = "para/note" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
57 X:text disable-output-escaping="yes" {&lt;/p&gt; }
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
58 <blockquote class="note"> !!; </blockquote>
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
59 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
60 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
61
473
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
62 X:template = "list[@type='bullet']" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
63 X:if "@compact = 'yes'" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
64 <ul class="compact"> !!; </ul>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
65 } else {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
66 <ul> !!; </ul>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
67 }
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
68 }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
69 X:template = "para/list[@type='bullet']" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
70 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
71 X:if "@compact = 'yes'" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
72 <ul class="compact"> !!; </ul>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
73 } else {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
74 <ul> !!; </ul>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
75 }
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
76 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
77 }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
78
473
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
79 X:template = "list[@type='enum']" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
80 X:if "@compact = 'yes'" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
81 <ol class="compact"> !!; </ol>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
82 } else {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
83 <ol> !!; </ol>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
84 }
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
85 }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
86 X:template = "para/list[@type='enum']" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
87 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
88 X:if "@compact = 'yes'" {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
89 <ol class="compact"> !!; </ol>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
90 } else {
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
91 <ol> !!; </ol>
cac48e2d0d9b Added the "compact" attribute to the "list" element.
Ruslan Ermilov <ru@nginx.com>
parents: 461
diff changeset
92 }
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
93 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
94 }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
95
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
96 X:template = "listitem" { <li> !!; </li> }
757
7b8d659687b8 Use the "id" attribute instead of placing "a name" in the wrong place,
Ruslan Ermilov <ru@nginx.com>
parents: 753
diff changeset
97 X:template = "listitem[@id]" { <li id="{@id}"> !!; </li> }
1897
364a04c4f761 Style: removed trailing spaces.
Vladimir Homutov <vl@nginx.com>
parents: 1684
diff changeset
98
496
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
99 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
100 X:if "@compact = 'yes'" {
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
101 <dl class="compact"> !!; </dl>
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
102 } else {
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
103 <dl> !!; </dl>
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
104 }
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
105 }
92
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
106 X:template = "para/list[@type='tag']" {
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; }
496
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
108 X:if "@compact = 'yes'" {
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
109 <dl class="compact"> !!; </dl>
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
110 } else {
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
111 <dl> !!; </dl>
a57994ede438 Added the notion of compactness to the tag type lists.
Ruslan Ermilov <ru@nginx.com>
parents: 481
diff changeset
112 }
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
113 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
114 }
4b0182b7b1e5 Fixed HTML for <list> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 90
diff changeset
115
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
116 X:template = "tag-name" { <dt> !!; </dt> }
758
9155b937f8c1 Allow to create anchors in list items of module-type documents.
Ruslan Ermilov <ru@nginx.com>
parents: 757
diff changeset
117 X:template = "tag-name[@id]" { <dt id="{@id}"> !!; </dt> }
9155b937f8c1 Allow to create anchors in list items of module-type documents.
Ruslan Ermilov <ru@nginx.com>
parents: 757
diff changeset
118
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
119 X:template = "tag-desc" { <dd> !!; </dd> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
120
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
121 X:template = "table[@note and @width]" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
122 <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
123 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
124 X:template = "table[@note and not(@width)]" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
125 <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
126 }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
127 X:template = "table[not(@note) and @width]" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
128 <table width="{@width}"> !!; </table>
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
129 }
778
cd73f6e9aaf3 Donation page refactored: multi-column layout, donated sums ranges.
Maxim Konovalov <maxim@nginx.com>
parents: 758
diff changeset
130 X:template = "table" {
cd73f6e9aaf3 Donation page refactored: multi-column layout, donated sums ranges.
Maxim Konovalov <maxim@nginx.com>
parents: 758
diff changeset
131 <table width="100%">
cd73f6e9aaf3 Donation page refactored: multi-column layout, donated sums ranges.
Maxim Konovalov <maxim@nginx.com>
parents: 758
diff changeset
132 X:if "@class" {
cd73f6e9aaf3 Donation page refactored: multi-column layout, donated sums ranges.
Maxim Konovalov <maxim@nginx.com>
parents: 758
diff changeset
133 X:attribute "class" { !{@class} }
cd73f6e9aaf3 Donation page refactored: multi-column layout, donated sums ranges.
Maxim Konovalov <maxim@nginx.com>
parents: 758
diff changeset
134 }
cd73f6e9aaf3 Donation page refactored: multi-column layout, donated sums ranges.
Maxim Konovalov <maxim@nginx.com>
parents: 758
diff changeset
135 !!;
cd73f6e9aaf3 Donation page refactored: multi-column layout, donated sums ranges.
Maxim Konovalov <maxim@nginx.com>
parents: 758
diff changeset
136 </table>
cd73f6e9aaf3 Donation page refactored: multi-column layout, donated sums ranges.
Maxim Konovalov <maxim@nginx.com>
parents: 758
diff changeset
137 }
cd73f6e9aaf3 Donation page refactored: multi-column layout, donated sums ranges.
Maxim Konovalov <maxim@nginx.com>
parents: 758
diff changeset
138
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
139 X:template = "tr" { <tr> !!; </tr> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
140 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
141 X:template = "td" { <td> !!; </td> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
142
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
143 X:template = "c-def" { <code> !!; </code> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
144
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
145 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
146
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
147 X:template = "command" { <code> !!; </code> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
148
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
149 X:template = "emphasis" { <strong> !!; </strong> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
150
354
4e3b681cae20 Unified the padding and margins of examples and notes blocks.
Ruslan Ermilov <ru@nginx.com>
parents: 271
diff changeset
151 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
152
90
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
153 X:template = "para/example" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
154 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
155 <blockquote class="example"><pre> !!; </pre></blockquote>
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
156 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
157 }
e4e9f7bc885f Fixed HTML for <example> inside <para>.
Ruslan Ermilov <ru@nginx.com>
parents: 71
diff changeset
158
271
4c6d2c614d2c Cleaned up XML tag mess:
Ruslan Ermilov <ru@nginx.com>
parents: 148
diff changeset
159 X:template = "literal" { <code> !!; </code> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
160
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
161 X:template = "header" {
132
1ebe107b3d7e Expanded tabs into spaces.
Ruslan Ermilov <ru@nginx.com>
parents: 126
diff changeset
162 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
163 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
164
52
666e85596e3c Added support for <link url="..."> which should eventually replace
Ruslan Ermilov <ru@nginx.com>
parents: 32
diff changeset
165 X:template = "http-status" {
666e85596e3c Added support for <link url="..."> which should eventually replace
Ruslan Ermilov <ru@nginx.com>
parents: 32
diff changeset
166 !{@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
167 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
168
271
4c6d2c614d2c Cleaned up XML tag mess:
Ruslan Ermilov <ru@nginx.com>
parents: 148
diff changeset
169 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
170
126
d4133c439eeb 'registered' element added
Sergey Budnevitch <sb@waeme.net>
parents: 121
diff changeset
171 X:template = "registered" { !!; <sup> X:text {&#174;} </sup> }
d4133c439eeb 'registered' element added
Sergey Budnevitch <sb@waeme.net>
parents: 121
diff changeset
172
57
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
173 X:template = "var" { <code> !!; </code> }
12f1de4539b4 Initial English translation of ngx_http_core_module.
Ruslan Ermilov <ru@nginx.com>
parents: 52
diff changeset
174
148
682163f2b298 Unified article/path and module/pathname into a single "path".
Ruslan Ermilov <ru@nginx.com>
parents: 147
diff changeset
175 X:template = "path" { <code> !!; </code> }
22
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
176 X:template = "i" { <i> !!; </i> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
177 X:template = "b" { <b> !!; </b> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
178 X:template = "nobr" { <nobr> !!; </nobr> }
9d3403f5204d nginx-1.1.3, ngx_http_mp4_module
Igor Sysoev <igor@sysoev.ru>
parents: 17
diff changeset
179 X:template = "br" { <br/> }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
180
2261
b459b643bf5a Added "video" element to include YouTube videos.
Valentin Bartenev <vbart@nginx.com>
parents: 1900
diff changeset
181 X:template = "video[@id]" {
b459b643bf5a Added "video" element to include YouTube videos.
Valentin Bartenev <vbart@nginx.com>
parents: 1900
diff changeset
182 <div class="video">
b459b643bf5a Added "video" element to include YouTube videos.
Valentin Bartenev <vbart@nginx.com>
parents: 1900
diff changeset
183 <iframe type="text/html"
b459b643bf5a Added "video" element to include YouTube videos.
Valentin Bartenev <vbart@nginx.com>
parents: 1900
diff changeset
184 src="https://www.youtube.com/embed/{@id}?modestbranding=1&amp;rel=0&amp;showinfo=0&amp;color=white"
b459b643bf5a Added "video" element to include YouTube videos.
Valentin Bartenev <vbart@nginx.com>
parents: 1900
diff changeset
185 frameborder="0" allowfullscreen="1">
b459b643bf5a Added "video" element to include YouTube videos.
Valentin Bartenev <vbart@nginx.com>
parents: 1900
diff changeset
186 </iframe>
b459b643bf5a Added "video" element to include YouTube videos.
Valentin Bartenev <vbart@nginx.com>
parents: 1900
diff changeset
187 </div>
b459b643bf5a Added "video" element to include YouTube videos.
Valentin Bartenev <vbart@nginx.com>
parents: 1900
diff changeset
188 }
0
61e04fc01027 Initial import of the nginx.org website.
Ruslan Ermilov <ru@nginx.com>
parents:
diff changeset
189 }