2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:exsl="http://exslt.org/common"
4 xmlns:fo="http://www.w3.org/1999/XSL/Format"
5 xmlns:ng="http://docbook.org/docbook-ng"
6 xmlns:db="http://docbook.org/ns/docbook"
7 exclude-result-prefixes="db ng exsl"
10 <!-- It is important to use indent="no" here, otherwise verbatim -->
11 <!-- environments get broken by indented tags...at least when the -->
12 <!-- callout extension is used...at least with some processors -->
13 <xsl:output method="xml" indent="no"/>
15 <!-- ********************************************************************
16 $Id: docbook.xsl 8913 2010-10-01 04:44:57Z bobstayton $
17 ********************************************************************
19 This file is part of the XSL DocBook Stylesheet distribution.
20 See ../README or http://docbook.sf.net/release/xsl/current/ for
21 copyright and other information.
23 ******************************************************************** -->
25 <!-- ==================================================================== -->
27 <xsl:include href="../VERSION"/>
28 <xsl:include href="param.xsl"/>
29 <xsl:include href="../lib/lib.xsl"/>
30 <xsl:include href="../common/l10n.xsl"/>
31 <xsl:include href="../common/common.xsl"/>
32 <xsl:include href="../common/utility.xsl"/>
33 <xsl:include href="../common/labels.xsl"/>
34 <xsl:include href="../common/titles.xsl"/>
35 <xsl:include href="../common/subtitles.xsl"/>
36 <xsl:include href="../common/gentext.xsl"/>
37 <xsl:include href="../common/olink.xsl"/>
38 <xsl:include href="../common/targets.xsl"/>
39 <xsl:include href="../common/pi.xsl"/>
40 <xsl:include href="autotoc.xsl"/>
41 <xsl:include href="autoidx.xsl"/>
42 <xsl:include href="lists.xsl"/>
43 <xsl:include href="callout.xsl"/>
44 <xsl:include href="verbatim.xsl"/>
45 <xsl:include href="graphics.xsl"/>
46 <xsl:include href="xref.xsl"/>
47 <xsl:include href="formal.xsl"/>
48 <xsl:include href="table.xsl"/>
49 <xsl:include href="htmltbl.xsl"/>
50 <xsl:include href="sections.xsl"/>
51 <xsl:include href="inline.xsl"/>
52 <xsl:include href="footnote.xsl"/>
53 <xsl:include href="fo.xsl"/>
54 <xsl:include href="fo-rtf.xsl"/>
55 <xsl:include href="info.xsl"/>
56 <xsl:include href="keywords.xsl"/>
57 <xsl:include href="division.xsl"/>
58 <xsl:include href="index.xsl"/>
59 <xsl:include href="toc.xsl"/>
60 <xsl:include href="refentry.xsl"/>
61 <xsl:include href="math.xsl"/>
62 <xsl:include href="admon.xsl"/>
63 <xsl:include href="component.xsl"/>
64 <xsl:include href="biblio.xsl"/>
65 <xsl:include href="biblio-iso690.xsl"/>
66 <xsl:include href="glossary.xsl"/>
67 <xsl:include href="block.xsl"/>
68 <xsl:include href="task.xsl"/>
69 <xsl:include href="qandaset.xsl"/>
70 <xsl:include href="synop.xsl"/>
71 <xsl:include href="titlepage.xsl"/>
72 <xsl:include href="titlepage.templates.xsl"/>
73 <xsl:include href="pagesetup.xsl"/>
74 <xsl:include href="pi.xsl"/>
75 <xsl:include href="spaces.xsl"/>
76 <xsl:include href="ebnf.xsl"/>
77 <xsl:include href="../html/chunker.xsl"/>
78 <xsl:include href="annotations.xsl"/>
79 <xsl:include href="../common/stripns.xsl"/>
81 <xsl:include href="fop.xsl"/>
82 <xsl:include href="fop1.xsl"/>
83 <xsl:include href="passivetex.xsl"/>
84 <xsl:include href="xep.xsl"/>
85 <xsl:include href="axf.xsl"/>
86 <xsl:include href="ptc.xsl"/>
88 <xsl:param name="stylesheet.result.type" select="'fo'"/>
90 <!-- ==================================================================== -->
92 <xsl:key name="id" match="*" use="@id|@xml:id"/>
94 <!-- ==================================================================== -->
96 <xsl:template match="*">
98 <xsl:text>Element </xsl:text>
99 <xsl:value-of select="local-name(.)"/>
100 <xsl:text> in namespace '</xsl:text>
101 <xsl:value-of select="namespace-uri(.)"/>
102 <xsl:text>' encountered</xsl:text>
103 <xsl:if test="parent::*">
104 <xsl:text> in </xsl:text>
105 <xsl:value-of select="name(parent::*)"/>
107 <xsl:text>, but no template matches.</xsl:text>
110 <fo:block color="red">
111 <xsl:text><</xsl:text>
112 <xsl:value-of select="name(.)"/>
113 <xsl:text>></xsl:text>
114 <xsl:apply-templates/>
115 <xsl:text></</xsl:text>
116 <xsl:value-of select="name(.)"/>
117 <xsl:text>></xsl:text>
121 <!-- Update this list if new root elements supported -->
122 <xsl:variable name="root.elements" select="' appendix article bibliography book chapter colophon dedication glossary index part preface qandaset refentry reference sect1 section set setindex '"/>
124 <xsl:template match="/">
125 <!-- * Get a title for current doc so that we let the user -->
126 <!-- * know what document we are processing at this point. -->
127 <xsl:variable name="doc.title">
128 <xsl:call-template name="get.doc.title"/>
131 <!-- Hack! If someone hands us a DocBook V5.x or DocBook NG document,
132 toss the namespace and continue. Use the docbook5 namespaced
133 stylesheets for DocBook5 if you don't want to use this feature.-->
134 <xsl:when test="$exsl.node.set.available != 0
135 and (*/self::ng:* or */self::db:*)">
136 <xsl:call-template name="log.message">
137 <xsl:with-param name="level">Note</xsl:with-param>
138 <xsl:with-param name="source" select="$doc.title"/>
139 <xsl:with-param name="context-desc">
140 <xsl:text>namesp. cut</xsl:text>
142 <xsl:with-param name="message">
143 <xsl:text>stripped namespace before processing</xsl:text>
146 <xsl:variable name="nons">
147 <xsl:apply-templates mode="stripNS"/>
149 <xsl:call-template name="log.message">
150 <xsl:with-param name="level">Note</xsl:with-param>
151 <xsl:with-param name="source" select="$doc.title"/>
152 <xsl:with-param name="context-desc">
153 <xsl:text>namesp. cut</xsl:text>
155 <xsl:with-param name="message">
156 <xsl:text>processing stripped document</xsl:text>
159 <xsl:apply-templates select="exsl:node-set($nons)"/>
161 <!-- Can't process unless namespace removed -->
162 <xsl:when test="*/self::ng:* or */self::db:*">
163 <xsl:message terminate="yes">
164 <xsl:text>Unable to strip the namespace from DB5 document,</xsl:text>
165 <xsl:text> cannot proceed.</xsl:text>
170 <xsl:when test="$rootid != ''">
171 <xsl:variable name="root.element" select="key('id', $rootid)"/>
173 <xsl:when test="count($root.element) = 0">
174 <xsl:message terminate="yes">
175 <xsl:text>ID '</xsl:text>
176 <xsl:value-of select="$rootid"/>
177 <xsl:text>' not found in document.</xsl:text>
180 <xsl:when test="not(contains($root.elements, concat(' ', local-name($root.element), ' ')))">
181 <xsl:message terminate="yes">
182 <xsl:text>ERROR: Document root element ($rootid=</xsl:text>
183 <xsl:value-of select="$rootid"/>
184 <xsl:text>) for FO output </xsl:text>
185 <xsl:text>must be one of the following elements:</xsl:text>
186 <xsl:value-of select="$root.elements"/>
189 <!-- Otherwise proceed -->
191 <xsl:if test="$collect.xref.targets = 'yes' or
192 $collect.xref.targets = 'only'">
193 <xsl:apply-templates select="$root.element"
194 mode="collect.targets"/>
196 <xsl:if test="$collect.xref.targets != 'only'">
197 <xsl:apply-templates select="$root.element"
198 mode="process.root"/>
203 <!-- Otherwise process the document root element -->
205 <xsl:variable name="document.element" select="*[1]"/>
207 <xsl:when test="not(contains($root.elements,
208 concat(' ', local-name($document.element), ' ')))">
209 <xsl:message terminate="yes">
210 <xsl:text>ERROR: Document root element for FO output </xsl:text>
211 <xsl:text>must be one of the following elements:</xsl:text>
212 <xsl:value-of select="$root.elements"/>
215 <!-- Otherwise proceed -->
217 <xsl:if test="$collect.xref.targets = 'yes' or
218 $collect.xref.targets = 'only'">
219 <xsl:apply-templates select="/"
220 mode="collect.targets"/>
222 <xsl:if test="$collect.xref.targets != 'only'">
223 <xsl:apply-templates select="/"
224 mode="process.root"/>
234 <xsl:template match="*" mode="process.root">
235 <xsl:variable name="document.element" select="self::*"/>
237 <xsl:call-template name="root.messages"/>
239 <xsl:variable name="title">
241 <xsl:when test="$document.element/title[1]">
242 <xsl:value-of select="$document.element/title[1]"/>
244 <xsl:otherwise>[could not find document title]</xsl:otherwise>
248 <!-- Include all id values in XEP output -->
249 <xsl:if test="$xep.extensions != 0">
250 <xsl:processing-instruction
251 name="xep-pdf-drop-unused-destinations">false</xsl:processing-instruction>
254 <fo:root xsl:use-attribute-sets="root.properties">
255 <xsl:attribute name="language">
256 <xsl:call-template name="l10n.language">
257 <xsl:with-param name="target" select="/*[1]"/>
261 <xsl:if test="$xep.extensions != 0">
262 <xsl:call-template name="xep-pis"/>
263 <xsl:call-template name="xep-document-information"/>
265 <xsl:if test="$axf.extensions != 0">
266 <xsl:call-template name="axf-document-information"/>
269 <xsl:call-template name="setup.pagemasters"/>
271 <xsl:if test="$fop.extensions != 0">
272 <xsl:apply-templates select="$document.element" mode="fop.outline"/>
275 <xsl:if test="$fop1.extensions != 0">
276 <xsl:call-template name="fop1-document-information"/>
277 <xsl:variable name="bookmarks">
278 <xsl:apply-templates select="$document.element"
279 mode="fop1.outline"/>
281 <xsl:if test="string($bookmarks) != ''">
283 <xsl:copy-of select="$bookmarks"/>
286 <xsl:apply-templates select="$document.element"
287 mode="fop1.foxdest"/>
290 <xsl:if test="$xep.extensions != 0">
291 <xsl:variable name="bookmarks">
292 <xsl:apply-templates select="$document.element" mode="xep.outline"/>
294 <xsl:if test="string($bookmarks) != ''">
295 <rx:outline xmlns:rx="http://www.renderx.com/XSL/Extensions">
296 <xsl:copy-of select="$bookmarks"/>
301 <xsl:if test="$arbortext.extensions != 0 and $ati.xsl11.bookmarks != 0">
302 <xsl:variable name="bookmarks">
303 <xsl:apply-templates select="$document.element"
304 mode="ati.xsl11.bookmarks"/>
306 <xsl:if test="string($bookmarks) != ''">
308 <xsl:copy-of select="$bookmarks"/>
313 <xsl:apply-templates select="$document.element"/>
317 <xsl:template name="root.messages">
318 <!-- redefine this any way you'd like to output messages -->
319 <!-- DO NOT OUTPUT ANYTHING FROM THIS TEMPLATE -->
321 <xsl:text>Making </xsl:text>
322 <xsl:value-of select="$page.orientation"/>
323 <xsl:text> pages on </xsl:text>
324 <xsl:value-of select="$paper.type"/>
325 <xsl:text> paper (</xsl:text>
326 <xsl:value-of select="$page.width"/>
327 <xsl:text>x</xsl:text>
328 <xsl:value-of select="$page.height"/>
329 <xsl:text>)</xsl:text>
333 <!-- ==================================================================== -->