1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
<?xml version="1.0"?>
<!--
Copyright 2002-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE xsl:stylesheet [
<!ENTITY lf SYSTEM "util/lf.xml">
]>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<!-- If we use document() in the context of this xsl file, the contextual -->
<!-- CWD is the xsl file containing directory. $basedir reflects the -->
<!-- manual root for that case. -->
<xsl:variable name="basedir" select="'../../'" />
<!-- ==================================================================== -->
<!-- <sitemap> -->
<!-- Process an entire document into an HTML page -->
<!-- ==================================================================== -->
<xsl:template match="/sitemap">
<html xml:lang="{$messages/@lang}" lang="{$messages/@lang}">
<xsl:call-template name="head" />&lf;
<body id="manual-page">&lf;
<xsl:call-template name="top" />&lf;
<div id="page-content">
<div id="preamble">
<h1>
<xsl:value-of select="title" />
</h1>&lf;
<xsl:call-template name="langavail" />&lf;
<xsl:apply-templates select="summary" />
</div>&lf; <!-- /#preamble -->
<xsl:if test="(not($is-chm) and count(category) > 1) or seealso">
<div id="quickview">
<xsl:if test="not($is-chm) and count(category) > 1">
<ul id="toc">&lf;
<xsl:for-each select="category">
<xsl:choose>
<xsl:when test="@id">
<li>
<img src="{$path}/images/down.gif" alt="" />
<xsl:text> </xsl:text>
<a href="#{@id}">
<xsl:apply-templates
select="title" mode="print" />
</a>
</li>&lf;
</xsl:when>
<xsl:otherwise>
<li>
<img src="{$path}/images/down.gif" alt="" />
<xsl:text> </xsl:text>
<xsl:apply-templates
select="title" mode="print" />
</li>&lf;
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</ul>&lf;
</xsl:if>
<xsl:if test="seealso">
<h3>
<xsl:value-of select="$messages/message
[@name='seealso']" />
</h3>&lf;
<ul class="seealso">&lf;
<xsl:for-each select="seealso">
<li>
<xsl:apply-templates />
</li>&lf;
</xsl:for-each>
</ul>&lf;
</xsl:if>
</div>&lf; <!-- /#quickview -->
</xsl:if> <!-- have sidebar -->
<xsl:apply-templates select="category" />
</div>&lf; <!-- /#page-content -->
<xsl:call-template name="bottom" />&lf;
</body>
</html>
</xsl:template>
<!-- /sitemap -->
<!-- ==================================================================== -->
<!-- category/page -->
<!-- ==================================================================== -->
<xsl:template match="sitemap/category/page">
<li>
<xsl:if test="@separate='yes'">
<xsl:attribute name="class">separate</xsl:attribute>
</xsl:if>
<xsl:choose>
<xsl:when test="@href">
<a href="{@href}">
<xsl:call-template name="helper.uri.fix">
<xsl:with-param name="uri" select="@href" />
</xsl:call-template>
<xsl:value-of select="." />
</a>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="." />
</xsl:otherwise>
</xsl:choose>
</li>&lf;
</xsl:template>
<!-- /category/page -->
<!-- ==================================================================== -->
<!-- Process a sitemap category -->
<!-- ==================================================================== -->
<xsl:template match="sitemap/category">
<xsl:call-template name="toplink" />&lf;
<div class="section">
<!-- Category title -->
<h2>
<xsl:choose>
<xsl:when test="@id">
<a id="{@id}" name="{@id}">
<xsl:apply-templates select="title" mode="print" />
</a>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="title" mode="print" />
</xsl:otherwise>
</xsl:choose>
</h2>&lf;
<!-- category body -->
<ul>
<xsl:apply-templates select="page" />
</ul>
<!-- optional ... -->
<xsl:apply-templates select="modulefilelist" />&lf;
</div> <!-- /.section -->
</xsl:template>
<!-- /category -->
<!-- ==================================================================== -->
<!-- category/modulefilelist -->
<!-- insert module list into sitemap -->
<!-- ==================================================================== -->
<xsl:template match="sitemap/category/modulefilelist">
<xsl:variable name="translist">
<xsl:text>-</xsl:text>
<xsl:for-each select="modulefile">
<xsl:variable name="current"
select="document(concat($basedir,'mod/',.))/modulesynopsis" />
<xsl:text> </xsl:text>
<xsl:value-of select="$current/name" />
<xsl:text> </xsl:text>
<xsl:call-template name="module-translatename">
<xsl:with-param name="name" select="$current/name" />
</xsl:call-template>
<xsl:text> -</xsl:text>
</xsl:for-each>
</xsl:variable>
<ul>
<li>
<a href="mod/core.html">
<xsl:value-of select="$messages/message[@name='apachecore']" />
</a>
</li>&lf;
<li>
<a href="mod/mpm_common.html">
<xsl:value-of select="$messages/message[@name='apachempmcommon']" />
</a>
</li>&lf;
<xsl:for-each select="modulefile">
<xsl:sort select="substring-before(substring-after($translist, concat('- ',
document(concat($basedir,'mod/',.))/modulesynopsis/name, ' ')), ' -')" />
<xsl:variable name="current" select="document(concat($basedir, 'mod/', .))
/modulesynopsis" />
<xsl:if test="$current/status='MPM' and $current/name!='mpm_common'">
<xsl:variable name="name" select="substring-before(substring-after(
$translist, concat('- ', $current/name, ' ')), ' -')" />
<li>
<a href="mod/{$current/name}.html">
<xsl:value-of select="$messages/message[@name='apachempm']" />
<xsl:text> </xsl:text>
<xsl:value-of select="$name" />
</a>
</li>&lf;
</xsl:if>
</xsl:for-each>
</ul>
<ul>
<xsl:for-each select="modulefile">
<xsl:sort select="substring-before(substring-after($translist, concat('- ',
document(concat($basedir,'mod/',.))/modulesynopsis/name, ' ')), ' -')"/>
<xsl:variable name="current" select="document(concat($basedir,'mod/',.))
/modulesynopsis" />
<xsl:if test="$current/status!='MPM' and $current/status!='Core'">
<li>
<a href="mod/{$current/name}.html">
<xsl:value-of select="$messages/message[@name='apachemodule']"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$current/name"/>
</a>
</li>&lf;
</xsl:if>
</xsl:for-each>
</ul>
</xsl:template>
<!-- /category/modulefilelist -->
</xsl:stylesheet>
|