2 <xsl:stylesheet xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform"
3 xmlns:
doc=
"http://nwalsh.com/xsl/documentation/1.0"
4 exclude-result-prefixes=
"doc"
7 <!-- ********************************************************************
8 $Id: targets.xsl,v 1.1 2007/03/10 05:14:55 scott Exp $
9 ********************************************************************
11 This file is part of the XSL DocBook Stylesheet distribution.
12 See ../README or http://nwalsh.com/docbook/xsl/ for copyright
13 and other information.
15 ******************************************************************** -->
17 <!-- ==================================================================== -->
19 <!-- cross reference target collection -->
21 <doc:mode mode=
"collect.targets" xmlns=
"">
22 <refpurpose>Collects information for potential cross reference targets
</refpurpose>
24 <para>Processing the root element in the
25 <literal role=
"mode">collect.targets
</literal> mode produces
26 a set of target database elements that can be used by
27 the olink mechanism to resolve external cross references.
28 The collection process is controlled by the
<literal>
29 collect.xref.targets
</literal> parameter, which can be
30 <literal>yes
</literal> to collect targets and process
31 the document for output,
<literal>only
</literal> to
32 only collect the targets, and
<literal>no
</literal>
33 (default) to not collect the targets and only process the document.
36 A
<literal>targets.filename
</literal> parameter must be
37 specified to receive the output if
38 <literal>collect.xref.targets
</literal> is
39 set to
<literal>yes
</literal> so as to
40 redirect the target data to a file separate from the
46 <!-- ============================================================ -->
48 <xsl:template match=
"*" mode=
"collect.targets">
50 <xsl:when test=
"$collect.xref.targets = 'yes' and $targets.filename = ''">
52 Must specify a $targets.filename parameter when
53 $collect.xref.targets is set to 'yes'.
54 The xref targets were not collected.
59 <xsl:when test=
"$targets.filename">
60 <xsl:call-template name=
"write.chunk">
61 <xsl:with-param name=
"filename" select=
"$targets.filename"/>
62 <xsl:with-param name=
"method" select=
"'xml'"/>
63 <xsl:with-param name=
"encoding" select=
"'utf-8'"/>
64 <xsl:with-param name=
"omit-xml-declaration" select=
"'yes'"/>
65 <xsl:with-param name=
"doctype-public" select=
"''"/>
66 <xsl:with-param name=
"doctype-system" select=
"''"/>
67 <xsl:with-param name=
"indent" select=
"'no'"/>
68 <xsl:with-param name=
"quiet" select=
"0"/>
69 <xsl:with-param name=
"content">
70 <xsl:apply-templates select=
"." mode=
"olink.mode"/>
75 <!-- Else write to standard output -->
76 <xsl:apply-templates select=
"." mode=
"olink.mode"/>
83 <xsl:template name=
"olink.href.target">
84 <xsl:param name=
"nd" select=
"."/>
86 <xsl:value-of select=
"$olink.base.uri"/>
87 <xsl:call-template name=
"href.target">
88 <xsl:with-param name=
"object" select=
"$nd"/>
89 <xsl:with-param name=
"context" select=
"NOTANODE"/>
93 <!-- Templates for extracting cross reference information
94 from a document for use in an xref database.
97 <xsl:template name=
"attrs">
98 <xsl:param name=
"nd" select=
"."/>
100 <xsl:attribute name=
"element">
101 <xsl:value-of select=
"local-name(.)"/>
104 <xsl:attribute name=
"href">
105 <xsl:call-template name=
"olink.href.target">
106 <xsl:with-param name=
"nd" select=
"$nd"/>
110 <xsl:variable name=
"num">
111 <xsl:apply-templates select=
"$nd" mode=
"label.markup">
112 <xsl:with-param name=
"verbose" select=
"0"/>
113 </xsl:apply-templates>
117 <xsl:attribute name=
"number">
118 <xsl:value-of select=
"$num"/>
123 <xsl:when test=
"$nd/@id">
124 <xsl:attribute name=
"targetptr">
125 <xsl:value-of select=
"$nd/@id"/>
128 <xsl:when test=
"$nd/@xml:id">
129 <xsl:attribute name=
"targetptr">
130 <xsl:value-of select=
"$nd/@xml:id"/>
135 <xsl:if test=
"$nd/@lang">
136 <xsl:attribute name=
"lang">
137 <xsl:value-of select=
"$nd/@lang"/>
143 <xsl:template name=
"div">
144 <xsl:param name=
"nd" select=
"."/>
147 <xsl:call-template name=
"attrs">
148 <xsl:with-param name=
"nd" select=
"$nd"/>
151 <xsl:apply-templates select=
"$nd" mode=
"title.markup">
152 <xsl:with-param name=
"verbose" select=
"0"/>
153 </xsl:apply-templates>
157 <xsl:when test=
"$nd/@xreflabel">
158 <xsl:call-template name=
"xref.xreflabel">
159 <xsl:with-param name=
"target" select=
"$nd"/>
163 <xsl:apply-templates select=
"$nd" mode=
"xref-to">
164 <xsl:with-param name=
"verbose" select=
"0"/>
165 </xsl:apply-templates>
169 <xsl:apply-templates mode=
"olink.mode"/>
173 <xsl:template name=
"obj">
174 <xsl:param name=
"nd" select=
"."/>
177 <xsl:call-template name=
"attrs">
178 <xsl:with-param name=
"nd" select=
"$nd"/>
181 <xsl:apply-templates select=
"$nd" mode=
"title.markup">
182 <xsl:with-param name=
"verbose" select=
"0"/>
183 </xsl:apply-templates>
187 <xsl:when test=
"$nd/@xreflabel">
188 <xsl:call-template name=
"xref.xreflabel">
189 <xsl:with-param name=
"target" select=
"$nd"/>
193 <xsl:apply-templates select=
"$nd" mode=
"xref-to">
194 <xsl:with-param name=
"verbose" select=
"0"/>
195 </xsl:apply-templates>
202 <xsl:template match=
"text()|processing-instruction()|comment()"
208 <xsl:template match="*" mode="olink.mode">
212 <xsl:template match=
"set" mode=
"olink.mode">
213 <xsl:call-template name=
"div"/>
216 <xsl:template match=
"book" mode=
"olink.mode">
217 <xsl:call-template name=
"div"/>
220 <xsl:template match=
"preface|chapter|appendix" mode=
"olink.mode">
221 <xsl:call-template name=
"div"/>
224 <xsl:template match=
"part|reference" mode=
"olink.mode">
225 <xsl:call-template name=
"div"/>
228 <xsl:template match=
"article" mode=
"olink.mode">
229 <xsl:call-template name=
"div"/>
232 <xsl:template match=
"bibliography|bibliodiv" mode=
"olink.mode">
233 <xsl:call-template name=
"div"/>
236 <xsl:template match=
"biblioentry|bibliomixed" mode=
"olink.mode">
237 <xsl:call-template name=
"obj"/>
240 <xsl:template match=
"refentry" mode=
"olink.mode">
241 <xsl:call-template name=
"div"/>
244 <xsl:template match=
"section|sect1|sect2|sect3|sect4|sect5" mode=
"olink.mode">
245 <xsl:call-template name=
"div"/>
248 <xsl:template match=
"refsection|refsect1|refsect2|refsect3" mode=
"olink.mode">
249 <xsl:call-template name=
"div"/>
252 <xsl:template match=
"figure|example|table" mode=
"olink.mode">
253 <xsl:call-template name=
"obj"/>
254 <xsl:apply-templates mode=
"olink.mode"/>
257 <xsl:template match=
"equation[title or info/title]" mode=
"olink.mode">
258 <xsl:call-template name=
"obj"/>
261 <xsl:template match=
"qandaset|qandaentry" mode=
"olink.mode">
262 <xsl:call-template name=
"div"/>
265 <xsl:template match=
"*" mode=
"olink.mode">
266 <xsl:if test=
"@id or @xml:id">
267 <xsl:call-template name=
"obj"/>
269 <xsl:apply-templates mode=
"olink.mode"/>