blob: aedcadb550186d879f0fe66d627b4348ac3588f0 (
plain)
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
|
<?xml version='1.0'?>
<!--#############################################################################
|- #############################################################################
|
| PURPOSE:
+ ############################################################################## -->
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
exclude-result-prefixes="doc" version='1.0'>
<!--############################################################################# -->
<!-- DOCUMENTATION -->
<doc:reference id="component" xmlns="">
<referenceinfo>
<releaseinfo role="meta">
</releaseinfo>
<authorgroup>
<author> <firstname>Ramon</firstname> <surname>Casellas</surname> </author>
<author> <firstname>James</firstname> <surname>Devenish</surname> </author>
</authorgroup>
<copyright>
<year>2000</year> <year>2001</year> <year>2002</year> <year>2003</year>
<holder>Ramon Casellas</holder>
</copyright>
</referenceinfo>
<title>Component <filename>component.mod.xsl</filename></title>
<partintro>
<section><title>Introduction</title>
<para></para>
</section>
</partintro>
</doc:reference>
<xsl:template name="component.title">
<xsl:variable name="id">
<xsl:call-template name="label.id"><xsl:with-param name="object" select="."/></xsl:call-template>
</xsl:variable>
<xsl:text> {\sc </xsl:text><xsl:apply-templates select="." mode="title.ref"/><xsl:text>}</xsl:text>
</xsl:template>
<xsl:template name="component.subtitle">
<xsl:variable name="subtitle"><xsl:apply-templates select="." mode="subtitle.content"/></xsl:variable>
<xsl:if test="$subtitle != ''">
<xsl:text> {\sc </xsl:text><xsl:copy-of select="$subtitle"/><xsl:text>}</xsl:text>
</xsl:if>
</xsl:template>
<xsl:template name="component.separator">
</xsl:template>
<xsl:template match="colophon">
<xsl:variable name="id"><xsl:call-template name="label.id"/></xsl:variable>
<xsl:call-template name="component.separator"/>
<xsl:call-template name="component.title"/>
<xsl:call-template name="component.subtitle"/>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="colophon/title"/>
<xsl:template match="bibliography" mode="component.number">
<xsl:param name="add.space" select="false()"/>
</xsl:template>
<xsl:template match="glossary" mode="component.number">
<xsl:param name="add.space" select="false()"/>
</xsl:template>
<xsl:template match="index" mode="component.number">
<xsl:param name="add.space" select="false()"/>
</xsl:template>
</xsl:stylesheet>
|