blob: d5db17b15a4f2ef1e357c8ba3fc3ac0ed3c93aa9 [file] [log] [blame]
Daniel Veillardc9484202001-10-24 12:35:52 +00001<?xml version="1.0"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
Daniel Veillard1177ca42003-04-26 22:29:54 +00003 <xsl:output method="xml" encoding="ISO-8859-1" indent="yes"
4 doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
5 doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
Daniel Veillard3bf65be2002-01-23 12:36:34 +00006
Daniel Veillarde8ba84e2003-11-18 13:54:15 +00007 <xsl:variable name="href_base" select="''"/>
8 <xsl:variable name="menu_name">Main Menu</xsl:variable>
Daniel Veillardb8cfbd12001-10-25 10:53:28 +00009<!--
10 - returns the filename associated to an ID in the original file
11 -->
Daniel Veillard1177ca42003-04-26 22:29:54 +000012 <xsl:template name="tocfilename">
13 <xsl:param name="name" select="string(@href)"/>
14 <xsl:choose>
15 <xsl:when test="$name = '#Introducti'">
16 <xsl:text>intro.html</xsl:text>
17 </xsl:when>
18 <xsl:when test="$name = '#Documentat'">
19 <xsl:text>docs.html</xsl:text>
20 </xsl:when>
21 <xsl:when test="$name = '#Reporting'">
22 <xsl:text>bugs.html</xsl:text>
23 </xsl:when>
24 <xsl:when test="$name = '#help'">
25 <xsl:text>help.html</xsl:text>
26 </xsl:when>
27 <xsl:when test="$name = '#Help'">
28 <xsl:text>help.html</xsl:text>
29 </xsl:when>
30 <xsl:when test="$name = '#Downloads'">
31 <xsl:text>downloads.html</xsl:text>
32 </xsl:when>
33 <xsl:when test="$name = '#News'">
34 <xsl:text>news.html</xsl:text>
35 </xsl:when>
36 <xsl:when test="$name = '#Contributi'">
37 <xsl:text>contribs.html</xsl:text>
38 </xsl:when>
39 <xsl:when test="$name = '#xsltproc'">
40 <xsl:text>xsltproc2.html</xsl:text>
41 </xsl:when>
42 <xsl:when test="$name = '#API'">
43 <xsl:text></xsl:text>
44 </xsl:when>
45 <xsl:when test="$name = '#XSLT'">
46 <xsl:text>XSLT.html</xsl:text>
47 </xsl:when>
48 <xsl:when test="$name = '#XML'">
49 <xsl:text>XMLinfo.html</xsl:text>
50 </xsl:when>
51 <xsl:when test="$name = '#Validation'">
52 <xsl:text>xmldtd.html</xsl:text>
53 </xsl:when>
54 <xsl:when test="$name = '#tree'">
55 <xsl:text></xsl:text>
56 </xsl:when>
57 <xsl:when test="$name = '#library'">
58 <xsl:text></xsl:text>
59 </xsl:when>
60 <xsl:when test="$name = '#interface'">
61 <xsl:text></xsl:text>
62 </xsl:when>
63 <xsl:when test="$name = '#Example'">
64 <xsl:text></xsl:text>
65 </xsl:when>
66 <xsl:when test="$name = '#Entities'">
67 <xsl:text></xsl:text>
68 </xsl:when>
69 <xsl:when test="$name = '#architecture'">
70 <xsl:text></xsl:text>
71 </xsl:when>
72 <xsl:when test="$name = '#Namespaces'">
73 <xsl:text>namespaces.html</xsl:text>
74 </xsl:when>
75 <xsl:when test="$name = '#DOM'">
76 <xsl:text></xsl:text>
77 </xsl:when>
78 <xsl:when test="$name = '#Catalog'">
79 <xsl:text>catalog.html</xsl:text>
80 </xsl:when>
81 <xsl:when test="$name = '#Upgrading'">
82 <xsl:text></xsl:text>
83 </xsl:when>
84 <xsl:when test="$name = '#Encodings'">
85 <xsl:text>encoding.html</xsl:text>
86 </xsl:when>
87 <xsl:when test="$name = '#IO'">
88 <xsl:text></xsl:text>
89 </xsl:when>
90 <xsl:when test="$name = '#Memory'">
91 <xsl:text></xsl:text>
92 </xsl:when>
93 <xsl:when test="$name = '#Thread'">
94 <xsl:text></xsl:text>
95 </xsl:when>
96 <xsl:when test="$name = '#FAQ'">
97 <xsl:text>FAQ.html</xsl:text>
98 </xsl:when>
99 <xsl:when test="$name = '#Python'">
100 <xsl:text></xsl:text>
101 </xsl:when>
102 <xsl:when test="$name = ''">
103 <xsl:text>unknown.html</xsl:text>
104 </xsl:when>
105 <xsl:otherwise>
106 <xsl:value-of select="$name"/>
107 </xsl:otherwise>
108 </xsl:choose>
109 </xsl:template>
110 <xsl:template name="docfilename">
111 <xsl:param name="name" select="string(@href)"/>
112 <xsl:choose>
113 <xsl:when test="$name = '#Introducti'">
114 <xsl:text></xsl:text>
115 </xsl:when>
116 <xsl:when test="$name = '#Documentat'">
117 <xsl:text></xsl:text>
118 </xsl:when>
119 <xsl:when test="$name = '#Reporting'">
120 <xsl:text></xsl:text>
121 </xsl:when>
122 <xsl:when test="$name = '#help'">
123 <xsl:text></xsl:text>
124 </xsl:when>
125 <xsl:when test="$name = '#Help'">
126 <xsl:text></xsl:text>
127 </xsl:when>
128 <xsl:when test="$name = '#Downloads'">
129 <xsl:text></xsl:text>
130 </xsl:when>
131 <xsl:when test="$name = '#News'">
132 <xsl:text></xsl:text>
133 </xsl:when>
134 <xsl:when test="$name = '#Contributi'">
135 <xsl:text></xsl:text>
136 </xsl:when>
137 <xsl:when test="$name = '#xsltproc'">
138 <xsl:text>xsltproc2.html</xsl:text>
139 </xsl:when>
140 <xsl:when test="$name = '#API'">
141 <xsl:text>API.html</xsl:text>
142 </xsl:when>
143 <xsl:when test="$name = '#XSLT'">
144 <xsl:text>XSLT.html</xsl:text>
145 </xsl:when>
146 <xsl:when test="$name = '#XML'">
147 <xsl:text></xsl:text>
148 </xsl:when>
149 <xsl:when test="$name = '#Validation'">
150 <xsl:text></xsl:text>
151 </xsl:when>
152 <xsl:when test="$name = '#tree'">
153 <xsl:text>tree.html</xsl:text>
154 </xsl:when>
155 <xsl:when test="$name = '#library'">
156 <xsl:text>library.html</xsl:text>
157 </xsl:when>
158 <xsl:when test="$name = '#interface'">
159 <xsl:text>interface.html</xsl:text>
160 </xsl:when>
161 <xsl:when test="$name = '#Example'">
162 <xsl:text>example.html</xsl:text>
163 </xsl:when>
164 <xsl:when test="$name = '#Entities'">
165 <xsl:text>entities.html</xsl:text>
166 </xsl:when>
167 <xsl:when test="$name = '#architecture'">
168 <xsl:text>architecture.html</xsl:text>
169 </xsl:when>
170 <xsl:when test="$name = '#Namespaces'">
171 <xsl:text>namespaces.html</xsl:text>
172 </xsl:when>
173 <xsl:when test="$name = '#DOM'">
174 <xsl:text>DOM.html</xsl:text>
175 </xsl:when>
176 <xsl:when test="$name = '#Catalog'">
177 <xsl:text></xsl:text>
178 </xsl:when>
179 <xsl:when test="$name = '#Upgrading'">
180 <xsl:text>upgrade.html</xsl:text>
181 </xsl:when>
182 <xsl:when test="$name = '#Encodings'">
183 <xsl:text></xsl:text>
184 </xsl:when>
185 <xsl:when test="$name = '#IO'">
186 <xsl:text>xmlio.html</xsl:text>
187 </xsl:when>
188 <xsl:when test="$name = '#Memory'">
189 <xsl:text>xmlmem.html</xsl:text>
190 </xsl:when>
191 <xsl:when test="$name = '#Thread'">
192 <xsl:text>threads.html</xsl:text>
193 </xsl:when>
194 <xsl:when test="$name = '#FAQ'">
195 <xsl:text></xsl:text>
196 </xsl:when>
197 <xsl:when test="$name = '#Python'">
198 <xsl:text>python.html</xsl:text>
199 </xsl:when>
200 <xsl:when test="$name = ''">
201 <xsl:text>unknown.html</xsl:text>
202 </xsl:when>
203 <xsl:otherwise>
204 <xsl:value-of select="$name"/>
205 </xsl:otherwise>
206 </xsl:choose>
207 </xsl:template>
Daniel Veillardb8cfbd12001-10-25 10:53:28 +0000208 <xsl:template name="filename">
209 <xsl:param name="name" select="string(@href)"/>
210 <xsl:choose>
211 <xsl:when test="$name = '#Introducti'">
212 <xsl:text>intro.html</xsl:text>
213 </xsl:when>
214 <xsl:when test="$name = '#Documentat'">
215 <xsl:text>docs.html</xsl:text>
216 </xsl:when>
217 <xsl:when test="$name = '#Reporting'">
218 <xsl:text>bugs.html</xsl:text>
219 </xsl:when>
220 <xsl:when test="$name = '#help'">
221 <xsl:text>help.html</xsl:text>
222 </xsl:when>
223 <xsl:when test="$name = '#Help'">
224 <xsl:text>help.html</xsl:text>
225 </xsl:when>
226 <xsl:when test="$name = '#Downloads'">
227 <xsl:text>downloads.html</xsl:text>
228 </xsl:when>
229 <xsl:when test="$name = '#News'">
230 <xsl:text>news.html</xsl:text>
231 </xsl:when>
232 <xsl:when test="$name = '#Contributi'">
233 <xsl:text>contribs.html</xsl:text>
234 </xsl:when>
235 <xsl:when test="$name = '#xsltproc'">
236 <xsl:text>xsltproc2.html</xsl:text>
237 </xsl:when>
238 <xsl:when test="$name = '#API'">
239 <xsl:text>API.html</xsl:text>
240 </xsl:when>
241 <xsl:when test="$name = '#XSLT'">
242 <xsl:text>XSLT.html</xsl:text>
243 </xsl:when>
244 <xsl:when test="$name = '#XML'">
Daniel Veillard7b602b42002-01-08 13:26:00 +0000245 <xsl:text>XMLinfo.html</xsl:text>
Daniel Veillardb8cfbd12001-10-25 10:53:28 +0000246 </xsl:when>
247 <xsl:when test="$name = '#Validation'">
248 <xsl:text>xmldtd.html</xsl:text>
249 </xsl:when>
250 <xsl:when test="$name = '#tree'">
251 <xsl:text>tree.html</xsl:text>
252 </xsl:when>
253 <xsl:when test="$name = '#library'">
254 <xsl:text>library.html</xsl:text>
255 </xsl:when>
256 <xsl:when test="$name = '#interface'">
257 <xsl:text>interface.html</xsl:text>
258 </xsl:when>
259 <xsl:when test="$name = '#Example'">
260 <xsl:text>example.html</xsl:text>
261 </xsl:when>
262 <xsl:when test="$name = '#Entities'">
263 <xsl:text>entities.html</xsl:text>
264 </xsl:when>
265 <xsl:when test="$name = '#architecture'">
266 <xsl:text>architecture.html</xsl:text>
267 </xsl:when>
268 <xsl:when test="$name = '#Namespaces'">
269 <xsl:text>namespaces.html</xsl:text>
270 </xsl:when>
271 <xsl:when test="$name = '#DOM'">
272 <xsl:text>DOM.html</xsl:text>
273 </xsl:when>
274 <xsl:when test="$name = '#Catalog'">
275 <xsl:text>catalog.html</xsl:text>
276 </xsl:when>
277 <xsl:when test="$name = '#Upgrading'">
278 <xsl:text>upgrade.html</xsl:text>
279 </xsl:when>
280 <xsl:when test="$name = '#Encodings'">
281 <xsl:text>encoding.html</xsl:text>
282 </xsl:when>
283 <xsl:when test="$name = '#IO'">
284 <xsl:text>xmlio.html</xsl:text>
285 </xsl:when>
286 <xsl:when test="$name = '#Memory'">
287 <xsl:text>xmlmem.html</xsl:text>
288 </xsl:when>
Daniel Veillard52dcab32001-10-30 12:51:17 +0000289 <xsl:when test="$name = '#Thread'">
290 <xsl:text>threads.html</xsl:text>
291 </xsl:when>
Daniel Veillardb8cfbd12001-10-25 10:53:28 +0000292 <xsl:when test="$name = '#FAQ'">
293 <xsl:text>FAQ.html</xsl:text>
294 </xsl:when>
Daniel Veillard6dbcaf82002-02-20 14:37:47 +0000295 <xsl:when test="$name = '#Python'">
296 <xsl:text>python.html</xsl:text>
297 </xsl:when>
Daniel Veillardb8cfbd12001-10-25 10:53:28 +0000298 <xsl:when test="$name = ''">
299 <xsl:text>unknown.html</xsl:text>
300 </xsl:when>
301 <xsl:otherwise>
302 <xsl:value-of select="$name"/>
303 </xsl:otherwise>
304 </xsl:choose>
305 </xsl:template>
Daniel Veillardc9484202001-10-24 12:35:52 +0000306<!--
307 - The global title
308 -->
Daniel Veillardc9484202001-10-24 12:35:52 +0000309 <xsl:variable name="globaltitle" select="string(/html/body/h1[1])"/>
310<!--
311 - The table of content
312 -->
313 <xsl:variable name="toc">
Daniel Veillard4a603e42003-01-11 14:18:53 +0000314 <form action="search.php"
Daniel Veillard1177ca42003-04-26 22:29:54 +0000315 enctype="application/x-www-form-urlencoded" method="get">
316 <input name="query" type="text" size="20" value=""/>
Daniel Veillard4a603e42003-01-11 14:18:53 +0000317 <input name="submit" type="submit" value="Search ..."/>
318 </form>
Daniel Veillard8acca112002-01-21 09:52:27 +0000319 <ul><!-- style="margin-left: -1em" -->
Daniel Veillardc9484202001-10-24 12:35:52 +0000320 <li><a href="index.html">Home</a></li>
Daniel Veillardf47d2e32005-01-12 14:16:08 +0000321 <li><a href="html/index.html">Reference Manual</a></li>
Daniel Veillardc9484202001-10-24 12:35:52 +0000322 <xsl:for-each select="/html/body/h2">
323 <xsl:variable name="filename">
Daniel Veillard1177ca42003-04-26 22:29:54 +0000324 <xsl:call-template name="tocfilename">
Daniel Veillardc9484202001-10-24 12:35:52 +0000325 <xsl:with-param name="name" select="concat('#', string(a[1]/@name))"/>
326 </xsl:call-template>
327 </xsl:variable>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000328 <xsl:if test="$filename != ''">
329 <li>
330 <xsl:element name="a">
331 <xsl:attribute name="href">
332 <xsl:value-of select="$filename"/>
333 </xsl:attribute>
Daniel Veillard66f68e72003-08-18 16:39:51 +0000334 <xsl:if test="$filename = 'docs.html'">
335 <xsl:attribute name="style">font-weight:bold</xsl:attribute>
336 </xsl:if>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000337 <xsl:value-of select="."/>
338 </xsl:element>
339 </li>
340 </xsl:if>
Daniel Veillardc9484202001-10-24 12:35:52 +0000341 </xsl:for-each>
Daniel Veillarda59853a2003-11-12 22:50:47 +0000342 <li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li>
Daniel Veillarde8ba84e2003-11-18 13:54:15 +0000343 <li><a href="html/index.html" style="font-weight:bold">API Menu</a></li>
Daniel Veillard7b4b2f92003-01-06 13:11:20 +0000344 <li><a href="guidelines.html">XML Guidelines</a></li>
Daniel Veillard78fed532004-10-09 19:44:48 +0000345 <li><a href="ChangeLog.html">Recent Changes</a></li>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000346 </ul>
347 </xsl:variable>
348 <xsl:variable name="develtoc">
349 <form action="search.php"
350 enctype="application/x-www-form-urlencoded" method="get">
351 <input name="query" type="text" size="20" value=""/>
352 <input name="submit" type="submit" value="Search ..."/>
353 </form>
354 <ul><!-- style="margin-left: -1em" -->
Daniel Veillard66f68e72003-08-18 16:39:51 +0000355 <li><a href="index.html" style="font-weight:bold">Main Menu</a></li>
Daniel Veillardf47d2e32005-01-12 14:16:08 +0000356 <li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li>
Daniel Veillarda59853a2003-11-12 22:50:47 +0000357 <li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000358 <li><a href="guidelines.html">XML Guidelines</a></li>
359 <li><a href="tutorial/index.html">Tutorial</a></li>
360 <li><a href="xmlreader.html">The Reader Interface</a></li>
Daniel Veillard8badcee2004-05-16 00:28:36 +0000361 <li><a href="ChangeLog.html">ChangeLog</a></li>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000362 <xsl:for-each select="/html/body/h2">
363 <xsl:variable name="filename">
364 <xsl:call-template name="docfilename">
365 <xsl:with-param name="name" select="concat('#', string(a[1]/@name))"/>
366 </xsl:call-template>
367 </xsl:variable>
368 <xsl:if test="$filename != ''">
369 <li>
370 <xsl:element name="a">
371 <xsl:attribute name="href">
372 <xsl:value-of select="$filename"/>
373 </xsl:attribute>
374 <xsl:value-of select="."/>
375 </xsl:element>
376 </li>
377 </xsl:if>
378 </xsl:for-each>
Daniel Veillard594cf0b2001-10-25 08:09:12 +0000379 <li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li>
380 </ul>
381 </xsl:variable>
Daniel Veillard3bf65be2002-01-23 12:36:34 +0000382 <xsl:variable name="api">
383 <ul><!-- style="margin-left: -1em" -->
Daniel Veillarde8ba84e2003-11-18 13:54:15 +0000384 <li><a href="{$href_base}APIchunk0.html">Alphabetic</a></li>
385 <li><a href="{$href_base}APIconstructors.html">Constructors</a></li>
386 <li><a href="{$href_base}APIfunctions.html">Functions/Types</a></li>
387 <li><a href="{$href_base}APIfiles.html">Modules</a></li>
388 <li><a href="{$href_base}APIsymbols.html">Symbols</a></li>
Daniel Veillard3bf65be2002-01-23 12:36:34 +0000389 </ul>
390 </xsl:variable>
Daniel Veillard594cf0b2001-10-25 08:09:12 +0000391 <xsl:variable name="related">
Daniel Veillard8acca112002-01-21 09:52:27 +0000392 <ul><!-- style="margin-left: -1em" -->
Daniel Veillard594cf0b2001-10-25 08:09:12 +0000393 <li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li>
394 <li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li>
Daniel Veillard4a859202002-01-08 11:49:22 +0000395 <li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li>
Daniel Veillard2d347fa2002-03-17 10:34:11 +0000396 <li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li>
Daniel Veillard594cf0b2001-10-25 08:09:12 +0000397 <li><a href="ftp://xmlsoft.org/">FTP</a></li>
Daniel Veillardc84f8b52002-12-19 22:12:47 +0000398 <li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li>
MST 2004 John Fleckb759b302004-12-21 15:14:08 +0000399 <li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li>
Daniel Veillardcb7543b2002-09-09 10:54:06 +0000400 <li><a href="http://www.zveno.com/open_source/libxml2xslt.html">MacOsX binaries</a></li>
Daniel Veillarde6d8e202002-05-02 06:11:10 +0000401 <li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li>
Daniel Veillardccf996f2003-08-14 10:48:38 +0000402 <li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li>
Daniel Veillardc9484202001-10-24 12:35:52 +0000403 </ul>
404 </xsl:variable>
405 <xsl:template name="toc">
406 <table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000">
407 <tr>
408 <td>
409 <table width="100%" border="0" cellspacing="1" cellpadding="3">
410 <tr>
411 <td colspan="1" bgcolor="#eecfa1" align="center">
412 <center>
Daniel Veillarde8ba84e2003-11-18 13:54:15 +0000413 <b><xsl:value-of select="$menu_name"/></b>
Daniel Veillardc9484202001-10-24 12:35:52 +0000414 </center>
415 </td>
416 </tr>
417 <tr>
418 <td bgcolor="#fffacd">
419 <xsl:copy-of select="$toc"/>
420 </td>
421 </tr>
422 </table>
Daniel Veillard594cf0b2001-10-25 08:09:12 +0000423 <table width="100%" border="0" cellspacing="1" cellpadding="3">
424 <tr>
425 <td colspan="1" bgcolor="#eecfa1" align="center">
426 <center>
427 <b>Related links</b>
428 </center>
429 </td>
430 </tr>
431 <tr>
432 <td bgcolor="#fffacd">
433 <xsl:copy-of select="$related"/>
434 </td>
435 </tr>
436 </table>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000437 </td>
438 </tr>
439 </table>
440 </xsl:template>
441 <xsl:template name="develtoc">
442 <table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000">
443 <tr>
444 <td>
445 <table width="100%" border="0" cellspacing="1" cellpadding="3">
446 <tr>
447 <td colspan="1" bgcolor="#eecfa1" align="center">
448 <center>
449 <b>Developer Menu</b>
450 </center>
451 </td>
452 </tr>
453 <tr>
454 <td bgcolor="#fffacd">
455 <xsl:copy-of select="$develtoc"/>
456 </td>
457 </tr>
458 </table>
Daniel Veillard4a603e42003-01-11 14:18:53 +0000459 <table width="100%" border="0" cellspacing="1" cellpadding="3">
460 <tr>
461 <td colspan="1" bgcolor="#eecfa1" align="center">
462 <center>
463 <b>API Indexes</b>
464 </center>
465 </td>
466 </tr>
467 <tr>
468 <td bgcolor="#fffacd">
469 <xsl:copy-of select="$api"/>
470 </td>
471 </tr>
472 </table>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000473 <table width="100%" border="0" cellspacing="1" cellpadding="3">
474 <tr>
475 <td colspan="1" bgcolor="#eecfa1" align="center">
476 <center>
477 <b>Related links</b>
478 </center>
479 </td>
480 </tr>
481 <tr>
482 <td bgcolor="#fffacd">
483 <xsl:copy-of select="$related"/>
484 </td>
485 </tr>
486 </table>
Daniel Veillardc9484202001-10-24 12:35:52 +0000487 </td>
488 </tr>
489 </table>
490 </xsl:template>
491 <xsl:template mode="head" match="title">
492 <title>
493 <xsl:apply-templates/>
494 </title>
495 </xsl:template>
496 <xsl:template mode="head" match="meta">
497</xsl:template>
498<!--
499 - Write the styles in the head
500 -->
501 <xsl:template name="style">
Daniel Veillardc332dab2002-03-29 14:08:27 +0000502 <link rel="SHORTCUT ICON" href="/favicon.ico"/>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000503 <style type="text/css">
Daniel Veillard373a4752002-02-21 14:46:29 +0000504TD {font-family: Verdana,Arial,Helvetica}
505BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em}
506H1 {font-family: Verdana,Arial,Helvetica}
507H2 {font-family: Verdana,Arial,Helvetica}
508H3 {font-family: Verdana,Arial,Helvetica}
Daniel Veillardb8cfbd12001-10-25 10:53:28 +0000509A:link, A:visited, A:active { text-decoration: underline }
Daniel Veillard1177ca42003-04-26 22:29:54 +0000510</style>
Daniel Veillardc9484202001-10-24 12:35:52 +0000511 </xsl:template>
512<!--
513 - Write the title box on top
514 -->
515 <xsl:template name="titlebox">
516 <xsl:param name="title" select="'Main Page'"/>
517 <table border="0" width="100%" cellpadding="5" cellspacing="0" align="center">
518 <tr>
Daniel Veillard6c57dca2003-09-03 10:10:51 +0000519 <td width="120">
Daniel Veillardb72876d2003-11-12 00:40:33 +0000520 <a href="http://swpat.ffii.org/"><img src="{$href_base}epatents.png" alt="Action against software patents"/></a>
Daniel Veillard6c57dca2003-09-03 10:10:51 +0000521 </td>
Daniel Veillardc9484202001-10-24 12:35:52 +0000522 <td width="180">
Daniel Veillardb72876d2003-11-12 00:40:33 +0000523 <a href="http://www.gnome.org/"><img src="{$href_base}gnome2.png" alt="Gnome2 Logo"/></a>
524 <a href="http://www.w3.org/Status"><img src="{$href_base}w3c.png" alt="W3C Logo"/></a>
525 <a href="http://www.redhat.com/"><img src="{$href_base}redhat.gif" alt="Red Hat Logo"/></a>
Daniel Veillarde1662542002-08-28 11:50:59 +0000526 <div align="left">
Daniel Veillardb72876d2003-11-12 00:40:33 +0000527 <a href="http://xmlsoft.org/"><img src="{$href_base}Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo"/></a>
Daniel Veillarde1662542002-08-28 11:50:59 +0000528 </div>
Daniel Veillardc9484202001-10-24 12:35:52 +0000529 </td>
530 <td>
531 <table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000">
532 <tr>
533 <td>
534 <table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd">
535 <tr>
536 <td align="center">
537 <xsl:element name="h1">
538 <xsl:value-of select="$globaltitle"/>
539 </xsl:element>
540 <xsl:element name="h2">
541 <xsl:value-of select="$title"/>
542 </xsl:element>
543 </td>
544 </tr>
545 </table>
546 </td>
547 </tr>
548 </table>
549 </td>
550 </tr>
551 </table>
552 </xsl:template>
553<!--
Daniel Veillardc9484202001-10-24 12:35:52 +0000554 - Handling of nodes in the body before the first H2, table of content
555 - Everything is just copied over, except href which may get rewritten
556 - and h1/h2/a at the top level
557 -->
558 <xsl:template priority="2" mode="subcontent" match="a">
559 <xsl:variable name="filename">
560 <xsl:call-template name="filename">
561 <xsl:with-param name="name" select="string(@href)"/>
562 </xsl:call-template>
563 </xsl:variable>
564 <xsl:copy>
565 <xsl:attribute name="href">
566 <xsl:value-of select="$filename"/>
567 </xsl:attribute>
568 <xsl:apply-templates mode="subcontent" select="node()"/>
569 </xsl:copy>
570 </xsl:template>
571 <xsl:template mode="subcontent" match="@*|node()">
572 <xsl:copy>
573 <xsl:apply-templates mode="subcontent" select="@*|node()"/>
574 </xsl:copy>
575 </xsl:template>
576 <xsl:template mode="content" match="@*|node()">
577 <xsl:if test="name() != 'h1' and name() != 'h2'">
578 <xsl:copy>
579 <xsl:apply-templates mode="subcontent" select="@*|node()"/>
580 </xsl:copy>
581 </xsl:if>
582 </xsl:template>
583<!--
584 - Handling of nodes in the body after an H2
585 - Open a new file and dump all the siblings up to the next H2
586 -->
587 <xsl:template name="subfile">
588 <xsl:param name="header" select="following-sibling::h2[1]"/>
589 <xsl:variable name="filename">
590 <xsl:call-template name="filename">
591 <xsl:with-param name="name" select="concat('#', string($header/a[1]/@name))"/>
592 </xsl:call-template>
593 </xsl:variable>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000594 <xsl:variable name="tocfilename">
595 <xsl:call-template name="tocfilename">
596 <xsl:with-param name="name" select="concat('#', string($header/a[1]/@name))"/>
597 </xsl:call-template>
598 </xsl:variable>
Daniel Veillardc9484202001-10-24 12:35:52 +0000599 <xsl:variable name="title">
600 <xsl:value-of select="$header"/>
601 </xsl:variable>
Daniel Veillard1177ca42003-04-26 22:29:54 +0000602 <xsl:document href="{$filename}" method="xml" encoding="ISO-8859-1"
603 doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
604 doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Daniel Veillardc9484202001-10-24 12:35:52 +0000605 <html>
606 <head>
607 <xsl:call-template name="style"/>
608 <xsl:element name="title">
609 <xsl:value-of select="$title"/>
610 </xsl:element>
611 </head>
Daniel Veillard7a2c2ee2004-08-14 13:56:39 +0000612 <body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000">
Daniel Veillardc9484202001-10-24 12:35:52 +0000613 <xsl:call-template name="titlebox">
614 <xsl:with-param name="title" select="$title"/>
615 </xsl:call-template>
616 <table border="0" cellpadding="4" cellspacing="0" width="100%" align="center">
617 <tr>
618 <td bgcolor="#8b7765">
619 <table border="0" cellspacing="0" cellpadding="2" width="100%">
620 <tr>
621 <td valign="top" width="200" bgcolor="#8b7765">
Daniel Veillard1177ca42003-04-26 22:29:54 +0000622 <xsl:choose>
623 <xsl:when test="$filename = 'docs.html'">
624 <xsl:call-template name="develtoc"/>
625 </xsl:when>
626 <xsl:when test="$tocfilename = ''">
627 <xsl:call-template name="develtoc"/>
628 </xsl:when>
629 <xsl:otherwise>
630 <xsl:call-template name="toc"/>
631 </xsl:otherwise>
632 </xsl:choose>
Daniel Veillardc9484202001-10-24 12:35:52 +0000633 </td>
634 <td valign="top" bgcolor="#8b7765">
635 <table border="0" cellspacing="0" cellpadding="1" width="100%">
636 <tr>
637 <td>
638 <table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000">
639 <tr>
640 <td>
641 <table border="0" cellpadding="3" cellspacing="1" width="100%">
642 <tr>
643 <td bgcolor="#fffacd">
644 <xsl:apply-templates mode="subfile" select="$header/following-sibling::*[preceding-sibling::h2[1] = $header and name() != 'h2' ]"/>
Daniel Veillard3f4c40f2002-02-13 09:19:28 +0000645 <p><a href="bugs.html">Daniel Veillard</a></p>
Daniel Veillardc9484202001-10-24 12:35:52 +0000646 </td>
647 </tr>
648 </table>
649 </td>
650 </tr>
651 </table>
652 </td>
653 </tr>
654 </table>
655 </td>
656 </tr>
657 </table>
658 </td>
659 </tr>
660 </table>
661 </body>
662 </html>
663 </xsl:document>
664 </xsl:template>
665 <xsl:template mode="subfile" match="@*|node()">
666 <xsl:copy>
667 <xsl:apply-templates mode="content" select="@*|node()"/>
668 </xsl:copy>
669 </xsl:template>
670<!--
671 - Handling of the initial body and head HTML document
672 -->
673 <xsl:template match="body">
674 <xsl:variable name="firsth2" select="./h2[1]"/>
675 <xsl:variable name="rest2" select="./h2[position()&gt;1]"/>
Daniel Veillard7a2c2ee2004-08-14 13:56:39 +0000676 <body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000">
Daniel Veillardc9484202001-10-24 12:35:52 +0000677 <xsl:call-template name="titlebox">
678 <xsl:with-param name="title" select="'libxml'"/>
679 </xsl:call-template>
680 <table border="0" cellpadding="4" cellspacing="0" width="100%" align="center">
681 <tr>
682 <td bgcolor="#8b7765">
683 <table border="0" cellspacing="0" cellpadding="2" width="100%">
684 <tr>
685 <td valign="top" width="200" bgcolor="#8b7765">
686 <xsl:call-template name="toc"/>
687 </td>
688 <td valign="top" bgcolor="#8b7765">
689 <table border="0" cellspacing="0" cellpadding="1" width="100%">
690 <tr>
691 <td>
692 <table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000">
693 <tr>
694 <td>
695 <table border="0" cellpadding="3" cellspacing="1" width="100%">
696 <tr>
697 <td bgcolor="#fffacd">
698 <xsl:apply-templates mode="content" select="($firsth2/preceding-sibling::*)"/>
699 <xsl:for-each select="./h2">
700 <xsl:call-template name="subfile">
701 <xsl:with-param name="header" select="."/>
702 </xsl:call-template>
703 </xsl:for-each>
Daniel Veillard3f4c40f2002-02-13 09:19:28 +0000704 <p><a href="bugs.html">Daniel Veillard</a></p>
Daniel Veillardc9484202001-10-24 12:35:52 +0000705 </td>
706 </tr>
707 </table>
708 </td>
709 </tr>
710 </table>
711 </td>
712 </tr>
713 </table>
714 </td>
715 </tr>
716 </table>
717 </td>
718 </tr>
719 </table>
720 </body>
721 </xsl:template>
722 <xsl:template match="head">
723 <head>
724 <xsl:call-template name="style"/>
725 <xsl:apply-templates mode="head"/>
726 </head>
727 </xsl:template>
728 <xsl:template match="html">
Daniel Veillard3bf65be2002-01-23 12:36:34 +0000729 <xsl:message>Generating the Web pages</xsl:message>
Daniel Veillardc9484202001-10-24 12:35:52 +0000730 <html>
731 <xsl:apply-templates/>
732 </html>
733 </xsl:template>
734</xsl:stylesheet>