1 <?xml version="1.0" encoding="ASCII"?>
2 <!--This file was created automatically by html2xhtml-->
3 <!--from the HTML stylesheets.-->
4 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" xmlns:exsl="http://exslt.org/common" xmlns:ng="http://docbook.org/docbook-ng" xmlns:db="http://docbook.org/ns/docbook" xmlns="http://www.w3.org/1999/xhtml" version="1.0" exclude-result-prefixes="doc exsl ng db">
6 <!-- ********************************************************************
7 $Id: chunktoc.xsl 8545 2009-12-02 07:22:10Z bobstayton $
8 ********************************************************************
10 This file is part of the XSL DocBook Stylesheet distribution.
11 See ../README or http://docbook.sf.net/release/xsl/current/ for
12 copyright and other information.
14 ******************************************************************** -->
16 <!-- ==================================================================== -->
18 <xsl:import href="docbook.xsl"/>
19 <xsl:import href="chunk-common.xsl"/>
21 <xsl:template name="chunk">
22 <xsl:param name="node" select="."/>
23 <!-- returns 1 if $node is a chunk -->
25 <xsl:variable name="id">
26 <xsl:call-template name="object.id">
27 <xsl:with-param name="object" select="$node"/>
31 <xsl:variable name="chunks" select="document($chunk.toc,/)"/>
34 <xsl:when test="$chunks//tocentry[@linkend=$id]">1</xsl:when>
35 <xsl:otherwise>0</xsl:otherwise>
39 <!-- ==================================================================== -->
41 <xsl:template match="*" mode="chunk-filename">
42 <!-- returns the filename of a chunk -->
44 <xsl:variable name="id">
45 <xsl:call-template name="object.id"/>
48 <xsl:variable name="chunks" select="document($chunk.toc,/)"/>
50 <xsl:variable name="chunk" select="$chunks//tocentry[@linkend=$id]"/>
51 <xsl:variable name="filename">
52 <xsl:call-template name="pi.dbhtml_filename">
53 <xsl:with-param name="node" select="$chunk"/>
58 <xsl:when test="$chunk">
59 <xsl:value-of select="$filename"/>
62 <xsl:apply-templates select="parent::*" mode="chunk-filename"/>
67 <!-- ==================================================================== -->
69 <xsl:template name="process-chunk">
70 <xsl:variable name="id">
71 <xsl:call-template name="object.id"/>
74 <xsl:variable name="chunks" select="document($chunk.toc,/)"/>
76 <xsl:variable name="chunk" select="$chunks//tocentry[@linkend=$id]"/>
77 <xsl:variable name="prev-id" select="($chunk/preceding::tocentry |$chunk/ancestor::tocentry)[last()]/@linkend"/>
78 <xsl:variable name="next-id" select="($chunk/following::tocentry |$chunk/child::tocentry)[1]/@linkend"/>
80 <xsl:variable name="prev" select="key('id',$prev-id)"/>
81 <xsl:variable name="next" select="key('id',$next-id)"/>
83 <xsl:variable name="ischunk">
84 <xsl:call-template name="chunk"/>
87 <xsl:variable name="chunkfn">
88 <xsl:if test="$ischunk='1'">
89 <xsl:apply-templates mode="chunk-filename" select="."/>
93 <xsl:variable name="filename">
94 <xsl:call-template name="make-relative-filename">
95 <xsl:with-param name="base.dir" select="$base.dir"/>
96 <xsl:with-param name="base.name" select="$chunkfn"/>
101 <xsl:when test="$ischunk = 0">
106 <xsl:call-template name="write.chunk">
107 <xsl:with-param name="filename" select="$filename"/>
108 <xsl:with-param name="content">
109 <xsl:call-template name="chunk-element-content">
110 <xsl:with-param name="prev" select="$prev"/>
111 <xsl:with-param name="next" select="$next"/>
114 <xsl:with-param name="quiet" select="$chunk.quietly"/>
120 <!-- ==================================================================== -->
122 <xsl:template match="set">
123 <xsl:call-template name="process-chunk"/>
126 <xsl:template match="book">
127 <xsl:call-template name="process-chunk"/>
130 <xsl:template match="appendix">
131 <xsl:call-template name="process-chunk"/>
134 <xsl:template match="book/glossary">
135 <xsl:call-template name="process-chunk"/>
138 <xsl:template match="book/bibliography">
139 <xsl:call-template name="process-chunk"/>
142 <xsl:template match="dedication" mode="dedication">
143 <xsl:call-template name="process-chunk"/>
146 <xsl:template match="preface|chapter">
147 <xsl:call-template name="process-chunk"/>
150 <xsl:template match="part|reference">
151 <xsl:call-template name="process-chunk"/>
154 <xsl:template match="refentry">
155 <xsl:call-template name="process-chunk"/>
158 <xsl:template match="colophon">
159 <xsl:call-template name="process-chunk"/>
162 <xsl:template match="article">
163 <xsl:call-template name="process-chunk"/>
166 <xsl:template match="article/glossary">
167 <xsl:call-template name="process-chunk"/>
170 <xsl:template match="article/bibliography">
171 <xsl:call-template name="process-chunk"/>
174 <xsl:template match="sect1|sect2|sect3|sect4|sect5|section">
175 <xsl:variable name="ischunk">
176 <xsl:call-template name="chunk"/>
180 <xsl:when test="$ischunk != 0">
181 <xsl:call-template name="process-chunk"/>
189 <xsl:template match="setindex |book/index |article/index">
190 <!-- some implementations use completely empty index tags to indicate -->
191 <!-- where an automatically generated index should be inserted. so -->
192 <!-- if the index is completely empty, skip it. -->
193 <xsl:if test="count(*)>0 or $generate.index != '0'">
194 <xsl:call-template name="process-chunk"/>
198 <!-- ==================================================================== -->
200 <xsl:template match="/">
201 <!-- * Get a title for current doc so that we let the user -->
202 <!-- * know what document we are processing at this point. -->
203 <xsl:variable name="doc.title">
204 <xsl:call-template name="get.doc.title"/>
207 <xsl:when test="$chunk.toc = ''">
208 <xsl:message terminate="yes">
209 <xsl:text>The chunk.toc file is not set.</xsl:text>
212 <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document,
213 toss the namespace and continue. Use the docbook5 namespaced
214 stylesheets for DocBook5 if you don't want to use this feature.-->
215 <!-- include extra test for Xalan quirk -->
216 <xsl:when test="$exsl.node.set.available != 0 and (*/self::ng:* or */self::db:*)">
217 <xsl:call-template name="log.message">
218 <xsl:with-param name="level">Note</xsl:with-param>
219 <xsl:with-param name="source" select="$doc.title"/>
220 <xsl:with-param name="context-desc">
221 <xsl:text>namesp. cut</xsl:text>
223 <xsl:with-param name="message">
224 <xsl:text>stripped namespace before processing</xsl:text>
227 <xsl:variable name="nons">
228 <xsl:apply-templates mode="stripNS"/>
230 <xsl:call-template name="log.message">
231 <xsl:with-param name="level">Note</xsl:with-param>
232 <xsl:with-param name="source" select="$doc.title"/>
233 <xsl:with-param name="context-desc">
234 <xsl:text>namesp. cut</xsl:text>
236 <xsl:with-param name="message">
237 <xsl:text>processing stripped document</xsl:text>
240 <xsl:apply-templates select="exsl:node-set($nons)"/>
242 <!-- Can't process unless namespace removed -->
243 <xsl:when test="*/self::ng:* or */self::db:*">
244 <xsl:message terminate="yes">
245 <xsl:text>Unable to strip the namespace from DB5 document,</xsl:text>
246 <xsl:text> cannot proceed.</xsl:text>
251 <xsl:when test="$rootid != ''">
253 <xsl:when test="count(key('id',$rootid)) = 0">
254 <xsl:message terminate="yes">
255 <xsl:text>ID '</xsl:text>
256 <xsl:value-of select="$rootid"/>
257 <xsl:text>' not found in document.</xsl:text>
261 <xsl:if test="$collect.xref.targets = 'yes' or $collect.xref.targets = 'only'">
262 <xsl:apply-templates select="key('id', $rootid)" mode="collect.targets"/>
264 <xsl:if test="$collect.xref.targets != 'only'">
265 <xsl:apply-templates select="key('id',$rootid)" mode="process.root"/>
266 <xsl:if test="$tex.math.in.alt != ''">
267 <xsl:apply-templates select="key('id',$rootid)" mode="collect.tex.math"/>
269 <xsl:if test="$generate.manifest != 0">
270 <xsl:call-template name="generate.manifest">
271 <xsl:with-param name="node" select="key('id',$rootid)"/>
279 <xsl:if test="$collect.xref.targets = 'yes' or $collect.xref.targets = 'only'">
280 <xsl:apply-templates select="/" mode="collect.targets"/>
282 <xsl:if test="$collect.xref.targets != 'only'">
283 <xsl:apply-templates select="/" mode="process.root"/>
284 <xsl:if test="$tex.math.in.alt != ''">
285 <xsl:apply-templates select="/" mode="collect.tex.math"/>
287 <xsl:if test="$generate.manifest != 0">
288 <xsl:call-template name="generate.manifest">
289 <xsl:with-param name="node" select="/"/>
299 <xsl:template match="*" mode="process.root">
300 <xsl:apply-templates select="."/>
303 <xsl:template name="make.lots">
304 <xsl:param name="toc.params" select="''"/>
305 <xsl:param name="toc"/>
307 <xsl:variable name="lots">
308 <xsl:if test="contains($toc.params, 'toc')">
309 <xsl:copy-of select="$toc"/>
312 <xsl:if test="contains($toc.params, 'figure')">
314 <xsl:when test="$chunk.separate.lots != '0'">
315 <xsl:call-template name="make.lot.chunk">
316 <xsl:with-param name="type" select="'figure'"/>
317 <xsl:with-param name="lot">
318 <xsl:call-template name="list.of.titles">
319 <xsl:with-param name="titles" select="'figure'"/>
320 <xsl:with-param name="nodes" select=".//figure"/>
326 <xsl:call-template name="list.of.titles">
327 <xsl:with-param name="titles" select="'figure'"/>
328 <xsl:with-param name="nodes" select=".//figure"/>
334 <xsl:if test="contains($toc.params, 'table')">
336 <xsl:when test="$chunk.separate.lots != '0'">
337 <xsl:call-template name="make.lot.chunk">
338 <xsl:with-param name="type" select="'table'"/>
339 <xsl:with-param name="lot">
340 <xsl:call-template name="list.of.titles">
341 <xsl:with-param name="titles" select="'table'"/>
342 <xsl:with-param name="nodes" select=".//table"/>
348 <xsl:call-template name="list.of.titles">
349 <xsl:with-param name="titles" select="'table'"/>
350 <xsl:with-param name="nodes" select=".//table"/>
356 <xsl:if test="contains($toc.params, 'example')">
358 <xsl:when test="$chunk.separate.lots != '0'">
359 <xsl:call-template name="make.lot.chunk">
360 <xsl:with-param name="type" select="'example'"/>
361 <xsl:with-param name="lot">
362 <xsl:call-template name="list.of.titles">
363 <xsl:with-param name="titles" select="'example'"/>
364 <xsl:with-param name="nodes" select=".//example"/>
370 <xsl:call-template name="list.of.titles">
371 <xsl:with-param name="titles" select="'example'"/>
372 <xsl:with-param name="nodes" select=".//example"/>
378 <xsl:if test="contains($toc.params, 'equation')">
380 <xsl:when test="$chunk.separate.lots != '0'">
381 <xsl:call-template name="make.lot.chunk">
382 <xsl:with-param name="type" select="'equation'"/>
383 <xsl:with-param name="lot">
384 <xsl:call-template name="list.of.titles">
385 <xsl:with-param name="titles" select="'equation'"/>
386 <xsl:with-param name="nodes" select=".//equation"/>
392 <xsl:call-template name="list.of.titles">
393 <xsl:with-param name="titles" select="'equation'"/>
394 <xsl:with-param name="nodes" select=".//equation"/>
400 <xsl:if test="contains($toc.params, 'procedure')">
402 <xsl:when test="$chunk.separate.lots != '0'">
403 <xsl:call-template name="make.lot.chunk">
404 <xsl:with-param name="type" select="'procedure'"/>
405 <xsl:with-param name="lot">
406 <xsl:call-template name="list.of.titles">
407 <xsl:with-param name="titles" select="'procedure'"/>
408 <xsl:with-param name="nodes" select=".//procedure[title]"/>
414 <xsl:call-template name="list.of.titles">
415 <xsl:with-param name="titles" select="'procedure'"/>
416 <xsl:with-param name="nodes" select=".//procedure[title]"/>
423 <xsl:if test="string($lots) != ''">
425 <xsl:when test="$chunk.tocs.and.lots != 0 and not(parent::*)">
426 <xsl:call-template name="write.chunk">
427 <xsl:with-param name="filename">
428 <xsl:call-template name="make-relative-filename">
429 <xsl:with-param name="base.dir" select="$base.dir"/>
430 <xsl:with-param name="base.name">
431 <xsl:call-template name="dbhtml-dir"/>
432 <xsl:apply-templates select="." mode="recursive-chunk-filename">
433 <xsl:with-param name="recursive" select="true()"/>
434 </xsl:apply-templates>
435 <xsl:text>-toc</xsl:text>
436 <xsl:value-of select="$html.ext"/>
440 <xsl:with-param name="content">
441 <xsl:call-template name="chunk-element-content">
442 <xsl:with-param name="prev" select="/foo"/>
443 <xsl:with-param name="next" select="/foo"/>
444 <xsl:with-param name="nav.context" select="'toc'"/>
445 <xsl:with-param name="content">
447 <xsl:apply-templates select="." mode="object.title.markup"/>
449 <xsl:copy-of select="$lots"/>
453 <xsl:with-param name="quiet" select="$chunk.quietly"/>
457 <xsl:copy-of select="$lots"/>
463 <xsl:template name="make.lot.chunk">
464 <xsl:param name="type" select="''"/>
465 <xsl:param name="lot"/>
467 <xsl:if test="string($lot) != ''">
468 <xsl:variable name="filename">
469 <xsl:call-template name="make-relative-filename">
470 <xsl:with-param name="base.dir" select="$base.dir"/>
471 <xsl:with-param name="base.name">
472 <xsl:call-template name="dbhtml-dir"/>
473 <xsl:value-of select="$type"/>
474 <xsl:text>-toc</xsl:text>
475 <xsl:value-of select="$html.ext"/>
480 <xsl:variable name="href">
481 <xsl:call-template name="make-relative-filename">
482 <xsl:with-param name="base.name">
483 <xsl:call-template name="dbhtml-dir"/>
484 <xsl:value-of select="$type"/>
485 <xsl:text>-toc</xsl:text>
486 <xsl:value-of select="$html.ext"/>
491 <xsl:call-template name="write.chunk">
492 <xsl:with-param name="filename" select="$filename"/>
493 <xsl:with-param name="content">
494 <xsl:call-template name="chunk-element-content">
495 <xsl:with-param name="prev" select="/foo"/>
496 <xsl:with-param name="next" select="/foo"/>
497 <xsl:with-param name="nav.context" select="'toc'"/>
498 <xsl:with-param name="content">
499 <xsl:copy-of select="$lot"/>
503 <xsl:with-param name="quiet" select="$chunk.quietly"/>
505 <!-- And output a link to this file -->
507 <xsl:attribute name="class">
508 <xsl:text>ListofTitles</xsl:text>
511 <xsl:call-template name="gentext">
512 <xsl:with-param name="key">
514 <xsl:when test="$type='table'">ListofTables</xsl:when>
515 <xsl:when test="$type='figure'">ListofFigures</xsl:when>
516 <xsl:when test="$type='equation'">ListofEquations</xsl:when>
517 <xsl:when test="$type='example'">ListofExamples</xsl:when>
518 <xsl:when test="$type='procedure'">ListofProcedures</xsl:when>
519 <xsl:otherwise>ListofUnknown</xsl:otherwise>