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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
|
<?xml version="1.0"?>
<!--
Copyright 2004-2005 The Apache Software Foundation or its licensors,
as applicable.
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">
<!ENTITY xsl "http://www.w3.org/1999/XSL/Transform">
]>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="">
<xsl:output
method="xml"
encoding="utf-8"
indent="no"
/>
<xsl:param name="type" />
<xsl:param name="langs" />
<!-- ==================================================================== -->
<!-- / -->
<!-- bootstrap -->
<!-- ==================================================================== -->
<xsl:template match="/">
<xsl:choose>
<xsl:when test="$type = 'list'">
<language-list>
&lf;
<xsl:call-template name="language-list">
<xsl:with-param name="langs" select="normalize-space($langs)" />
</xsl:call-template>
</language-list>
&lf;
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="*" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- ==================================================================== -->
<!-- language-list -->
<!-- generate language list -->
<!-- ==================================================================== -->
<xsl:template name="language-list">
<xsl:param name="langs" />
<xsl:if test="string-length($langs)">
<lang>
<xsl:value-of select="substring-before(concat($langs, ' '),' ')" />
</lang>
&lf;
<xsl:call-template name="language-list">
<xsl:with-param name="langs" select="normalize-space(substring-after(
concat($langs, ' '), ' '))" />
</xsl:call-template>
</xsl:if>
</xsl:template>
<!-- ==================================================================== -->
<!-- <language-list> -->
<!-- generate stuff from language list -->
<!-- ==================================================================== -->
<xsl:template match="/language-list">
<xsl:choose>
<xsl:when test="$type = 'design'">
<items>
&lf;
<xsl:for-each select="lang">
<xsl:variable name="file" select="document(concat('../lang/', .,
'.xml'))/language" />
<item lang="{$file/@id}" charset="{$file/charset}" >
<xsl:value-of select="$file/target-ext" />
</item>
&lf;
</xsl:for-each>
</items>
&lf;
</xsl:when>
<xsl:when test="$type = 'targets'">
<xsl:apply-templates select="/language-list" mode="targets" />
</xsl:when>
<xsl:when test="$type = 'desc'">
<xsl:apply-templates select="/language-list" mode="desc" />
</xsl:when>
<xsl:when test="$type = 'modlists'">
<xsl:apply-templates select="/language-list" mode="modlists" />
</xsl:when>
</xsl:choose>
</xsl:template>
<!-- ==================================================================== -->
<!-- <language-list> -->
<!-- generate target list from language list -->
<!-- ==================================================================== -->
<xsl:template match="/language-list" mode="targets">
<xsl:call-template name="copyright" />
<xsl:call-template name="head">
<xsl:with-param name="text" select="'this file contains language specific
targets and will be included'" />
</xsl:call-template>
<xsl:call-template name="head">
<xsl:with-param name="text" select="'into build.xml. IT IS AUTOGENERATED.
DO NOT TOUCH!'" />
</xsl:call-template>
<xsl:call-template name="sep" />
<project name="lang-targets">
&lf;&lf;
<!-- build *-all targets -->
<!-- =================== -->
<target name="all"
description="- builds all HTML files and nroff man pages">
<xsl:attribute name="depends">
<xsl:for-each select="lang[document(concat('../lang/', .,
'.xml'))/language/messages]">
<xsl:value-of select="." />
<xsl:if test="position() != last()">, </xsl:if>
</xsl:for-each>
</xsl:attribute>
</target>
&lf;
<target name="zip-all"
description="- builds all zip download packages">
<xsl:attribute name="depends">
<xsl:for-each select="lang[document(concat('../lang/', .,
'.xml'))/language/messages]">
<xsl:text>zip-</xsl:text>
<xsl:value-of select="." />
<xsl:if test="position() != last()">, </xsl:if>
</xsl:for-each>
</xsl:attribute>
</target>
&lf;
<target name="war-all"
description="- builds all war download packages">
<xsl:attribute name="depends">
<xsl:for-each select="lang[document(concat('../lang/', .,
'.xml'))/language/messages]">
<xsl:text>war-</xsl:text>
<xsl:value-of select="." />
<xsl:if test="position() != last()">, </xsl:if>
</xsl:for-each>
</xsl:attribute>
</target>
&lf;
<!-- single language targets -->
<!-- ======================= -->
<xsl:for-each select="lang">
<xsl:sort select="." />
<xsl:variable name="file" select="document(concat('../lang/', .,
'.xml'))/language" />
<xsl:if test="$file/messages">
&lf;
<xsl:call-template name="head">
<xsl:with-param name="text" select="$file/name" />
</xsl:call-template>
<xsl:call-template name="sep" />
<property name="inputext.{.}" value="{$file/source-ext}" />&lf;
<property name="outputext.{.}" value="{$file/target-ext}" />&lf;&lf;
<target name="{.}" description="- builds {$file/name} HTML files">
&lf;
<xsl:text> </xsl:text>
<html.generic lang="{.}" />&lf;
<xsl:if test=". = 'en'">
<xsl:text> </xsl:text><runtarget target="man-en" />&lf;
</xsl:if>
</target>
&lf;
<target name="-off-{.}" depends="metafiles"
unless="-off.{.}.done">&lf;
<xsl:text> </xsl:text>
<dependencies.offline lang="{.}" style="zip" dir="_off" />&lf;
<xsl:text> </xsl:text>
<offline.generic lang="{.}" style="zip" dir="_off" />&lf;
<xsl:text> </xsl:text>
<property name="-off.{.}.done" value="yes" />&lf;
</target>
&lf;
<target name="zip-{.}" depends="-off-{.}"
description="- builds the {$file/name} zipped download package">&lf;
<xsl:text> </xsl:text>
<zip.generic lang="{.}" />&lf;
</target>
&lf;
<target name="war-{.}" depends="-off-{.}"
description="- builds the {$file/name} Konqueror Web Archive">&lf;
<xsl:text> </xsl:text>
<war.generic lang="{.}" />&lf;
</target>
&lf;
<xsl:if test="$file/chm">
<target name="chm-{.}"
description="- builds the {$file/name} CHM file">&lf;
<xsl:text> </xsl:text>
<chm.generic lang="{.}" />&lf;
</target>
&lf;
</xsl:if>
<xsl:if test="$file/man">
<target name="man-{.}"
description="- builds the {$file/name} nroff files">&lf;
<xsl:text> </xsl:text>
<nroff.generic lang="{.}" />&lf;
</target>
&lf;
</xsl:if>
<xsl:if test=". = 'en'">
<target name="latex-en"
description="- builds the English latex file">&lf;
<xsl:text> </xsl:text>
<latex.generic lang="en" />&lf;
</target>
&lf;
</xsl:if>
</xsl:if>
</xsl:for-each>
&lf;
<!-- XML validation -->
<!-- ============== -->
<xsl:call-template name="head">
<xsl:with-param name="text" select="'XML validation.'" />
</xsl:call-template>
<xsl:call-template name="head">
<xsl:with-param name="text" select="'If you get an error during
transformation, this task may be useful'" />
</xsl:call-template>
<xsl:call-template name="head">
<xsl:with-param name="text" select="'because it mostly gives you a
hint, where you forgot the </p> ;-)'" />
</xsl:call-template>
<xsl:call-template name="sep" />
<target name="validate-xml" description="- validates all XML source files">
&lf;
<xsl:text> </xsl:text>
<xmlvalidate lenient="false" failonerror="false" warn="true">
&lf;
<xsl:text> </xsl:text>
<xmlcatalog refid="w3c-catalog" />&lf;
<xsl:text> </xsl:text>
<fileset dir="../">&lf;
<xsl:for-each select="lang">
<xsl:sort select="." />
<xsl:variable name="file" select="document(concat(
'../lang/', ., '.xml'))
/language" />
<xsl:if test="$file/messages">
<xsl:text> </xsl:text>
<include name="**/*{$file/source-ext}" />&lf;
</xsl:if>
</xsl:for-each>
&lf;
<xsl:text> </xsl:text>
<patternset refid="excludes" />&lf;
<xsl:text> </xsl:text>
<patternset refid="scratch" />&lf;
<xsl:text> </xsl:text>
</fileset>
&lf;
<xsl:text> </xsl:text>
</xmlvalidate>
&lf;
</target>
&lf;&lf;
</project>
</xsl:template>
<!-- ==================================================================== -->
<!-- <language-list> -->
<!-- generate list of modulelists -->
<!-- ==================================================================== -->
<xsl:template match="/language-list" mode="modlists">
<items>
&lf;
<xsl:for-each select="lang">
<xsl:sort select="." />
<xsl:variable name="file" select="document(concat(
'../lang/', ., '.xml'))
/language" />
<item lang="{.}">
<xsl:text>../../../mod/allmodules</xsl:text>
<xsl:value-of select="$file/source-ext" />
</item>
&lf;
</xsl:for-each>
</items>
</xsl:template>
<!-- ==================================================================== -->
<!-- <language-list> -->
<!-- generate project description -->
<!-- ==================================================================== -->
<xsl:template match="/language-list" mode="desc">
<xsl:call-template name="copyright" />
<description><xsl:text>
This build file contains all operations that are necessary for building
the Apache httpd documentation. It is called by invoking build.bat (Win32)
or build.sh (/bin/sh systems) with a target argument (full list below).
For example, if you want to build the Japanese HTML files, type:
./build.sh ja
Some targets have additional requirements:
* 'metafiles' and 'modulelists' need perl in PATH. (It's checked automatically
and skipped if perl is not available)
* 'chm-foo' targets need:
- the HTML Help compiler in PATH (or modify this build file). The
compiler (hhc.exe) is part of the HTML Help Workshop which is freely
available and can be downloaded from
http://msdn.microsoft.com/library/en-us/htmlhelp/html/hwMicrosoftHTMLHelpDownloads.asp
- The appropriate locale (e.g. Japanese) before invoking hhc.exe. Otherwise
the compiler is not able to build the fulltext search index correctly and
the TOC may be garbled, too. In particular:
</xsl:text>
<xsl:for-each select="lang">
<xsl:sort select="." />
<xsl:variable name="file" select="document(concat('../lang/', .,
'.xml'))/language" />
<xsl:if test="$file/messages and $file/chm">
<xsl:text> + chm-</xsl:text>
<xsl:value-of select="." />
<xsl:text>: </xsl:text>
<xsl:value-of select="normalize-space($file/chm/settings)" />
&lf;
</xsl:if>
</xsl:for-each>
&lf;
</description>
</xsl:template>
<!-- ==================================================================== -->
<!-- <language> -->
<!-- generate language specific xslt -->
<!-- ==================================================================== -->
<xsl:template match="/language">
<xsl:call-template name="copyright" />
<xsl:element name="xsl:stylesheet" namespace="&xsl;">
<xsl:attribute name="version">1.0</xsl:attribute>
&lf;
&lf;
<xsl:element name="xsl:output">
<xsl:attribute name="method">
<xsl:choose>
<xsl:when test="$type = 'manual' or
$type = 'chm' or
$type = 'zip'">
<xsl:text>xml</xsl:text>
</xsl:when>
<xsl:when test="$type = 'hhc' or
$type = 'hhp' or
$type = 'man'">
<xsl:text>text</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:message terminate="yes">
<xsl:text>Unknown style type '</xsl:text>
<xsl:value-of select="$type" />
<xsl:text>'!</xsl:text>
</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:attribute name="encoding">
<xsl:choose>
<xsl:when test="$type = 'chm' or
$type = 'hhc' or
$type = 'hhp'">
<xsl:value-of select="chm/charset" />
</xsl:when>
<xsl:when test="$type = 'man'">
<xsl:value-of select="man/charset" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="charset" />
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:attribute name="indent">no</xsl:attribute>
<xsl:if test="$type = 'manual' or
$type = 'chm' or
$type = 'zip'">
<xsl:attribute name="doctype-public">
<xsl:text>-//W3C//DTD XHTML 1.0 Strict//EN</xsl:text>
</xsl:attribute>
</xsl:if>
<xsl:if test="$type = 'manual'">
<xsl:attribute name="doctype-system">
<xsl:text>http://www.w3.org/TR/xhtml1/DTD/</xsl:text>
<xsl:text>xhtml1-strict.dtd</xsl:text>
</xsl:attribute>
</xsl:if>
<xsl:if test="$type = 'chm' or
$type = 'zip'">
<xsl:attribute name="omit-xml-declaration">yes</xsl:attribute>
</xsl:if>
</xsl:element>
&lf;&lf;
<xsl:comment>
<xsl:text> Read the localized messages from the specified </xsl:text>
<xsl:text>language file </xsl:text>
</xsl:comment>
&lf;
<xsl:element name="xsl:variable">
<xsl:attribute name="name">message</xsl:attribute>
<xsl:attribute name="select">
<xsl:text>document('</xsl:text>
<xsl:if test="$type != 'manual'">../</xsl:if>
<xsl:text>lang/</xsl:text>
<xsl:value-of select="@id" />
<xsl:text>.xml')/language/messages/message</xsl:text>
</xsl:attribute>
</xsl:element>
&lf;
<xsl:if test="$type != 'man'">
<xsl:element name="xsl:variable">
<xsl:attribute name="name">doclang</xsl:attribute>
<xsl:value-of select="@id" />
</xsl:element>
&lf;
<xsl:element name="xsl:variable">
<xsl:attribute name="name">allmodules</xsl:attribute>
<xsl:attribute name="select">
<xsl:text>document('</xsl:text>
<xsl:if test="$type != 'manual'">../</xsl:if>
<xsl:text>xsl/util/allmodules.xml')</xsl:text>
<xsl:text>/items/item[@lang=$doclang]</xsl:text>
</xsl:attribute>
</xsl:element>
&lf;
</xsl:if>
&lf;
<xsl:if test="$type != 'man'">
<xsl:comment>
<xsl:text> some meta information have to be passed to </xsl:text>
<xsl:text>the transformation </xsl:text>
</xsl:comment>
&lf;
</xsl:if>
<xsl:if test="$type = 'manual' or
$type = 'chm' or
$type = 'zip' or
$type = 'hhc'">
<xsl:element name="xsl:variable">
<xsl:attribute name="name">output-encoding</xsl:attribute>
<xsl:choose>
<xsl:when test="$type = 'chm' or
$type = 'hhc'">
<xsl:value-of select="normalize-space(chm/charset)" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="normalize-space(charset)" />
</xsl:otherwise>
</xsl:choose>
</xsl:element>
&lf;
</xsl:if>
<xsl:if test="$type = 'manual' or
$type = 'chm' or
$type = 'zip'">
<xsl:element name="xsl:variable">
<xsl:attribute name="name">is-chm</xsl:attribute>
<xsl:attribute name="select">
<xsl:choose>
<xsl:when test="$type = 'chm'">
<xsl:text>true()</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>false()</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</xsl:element>
&lf;
<xsl:element name="xsl:variable">
<xsl:attribute name="name">is-zip</xsl:attribute>
<xsl:attribute name="select">
<xsl:choose>
<xsl:when test="$type = 'zip'">
<xsl:text>true()</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>false()</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</xsl:element>
&lf;&lf;
</xsl:if>
<xsl:if test="$type = 'hhc'">
<xsl:element name="xsl:variable">
<xsl:attribute name="name">toc-font</xsl:attribute>
<xsl:value-of select="normalize-space(chm/toc-font)" />
</xsl:element>
&lf;
<xsl:element name="xsl:variable">
<xsl:attribute name="name">xml-ext</xsl:attribute>
<xsl:value-of select="normalize-space(source-ext)" />
</xsl:element>
&lf;&lf;
</xsl:if>
<xsl:if test="$type = 'hhp'">
<xsl:element name="xsl:variable">
<xsl:attribute name="name">hhp-lang</xsl:attribute>
<xsl:value-of select="normalize-space(chm/lang)" />
</xsl:element>
&lf;&lf;
</xsl:if>
<xsl:comment> Now get the real guts of the stylesheet </xsl:comment>
&lf;
<xsl:element name="xsl:include">
<xsl:attribute name="href">
<xsl:choose>
<xsl:when test="$type = 'chm' or
$type = 'zip'">
<xsl:text>../xsl/common.xsl</xsl:text>
</xsl:when>
<xsl:when test="$type = 'hhc'">
<xsl:text>../xsl/hhc.xsl</xsl:text>
</xsl:when>
<xsl:when test="$type = 'hhp'">
<xsl:text>../xsl/hhp.xsl</xsl:text>
</xsl:when>
<xsl:when test="$type = 'man'">
<xsl:text>../xsl/nroff.xsl</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>xsl/common.xsl</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</xsl:element>
&lf;&lf;
</xsl:element>
</xsl:template>
<!-- /language -->
<xsl:template name="copyright">
&lf;
<xsl:comment><xsl:text>
Copyright 2002-2005 The Apache Software Foundation or its licensors,
as applicable.
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.
</xsl:text></xsl:comment>
&lf;&lf;
</xsl:template>
<xsl:template name="sepstring">
<xsl:text>============================================</xsl:text>
<xsl:text>========================</xsl:text>
</xsl:template>
<xsl:template name="sep">
<xsl:comment>
<xsl:text> </xsl:text>
<xsl:call-template name="sepstring" />
<xsl:text> </xsl:text>
</xsl:comment>
&lf;
</xsl:template>
<xsl:template name="head">
<xsl:param name="text" />
<xsl:variable name="s"><xsl:call-template name="sepstring" /></xsl:variable>
<xsl:variable name="empty" select="translate($s, '=', ' ')" />
<xsl:comment>
<xsl:text> </xsl:text>
<xsl:value-of select="substring(concat(normalize-space($text), $empty), 1,
string-length($empty))" />
<xsl:text> </xsl:text>
</xsl:comment>
&lf;
</xsl:template>
</xsl:stylesheet>
|