summaryrefslogtreecommitdiff
path: root/docs/docbook/xslt/db2latex/revision.mod.xsl
blob: a041aed5c3c32d1dfa66a704a147909714a7c043 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<?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="revision" 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>Revision Management <filename>revision.mod.xsl</filename></title>
	<partintro>
	    <section><title>Introduction</title>
		<para>
			This file defines the DB2LaTeX XSL templates for <sgmltag>revision</sgmltag>
			and its children. The basic mapping is to output a LaTeX table and a table
			row for each revision.
		</para>
	    </section>
	</partintro>
    </doc:reference>
    <!--############################################################################# -->




    <!--############################################################################# -->
    <!-- DOCUMENTATION                                                                -->
    <doc:template match="revhistory" xmlns="">
	<refpurpose> revhistory XSL template </refpurpose>
	<refdescription>
		<formalpara><title>User variables</title>
		<itemizedlist>
			<listitem><para><literal>latex.output.revhistory</literal></para></listitem>
		</itemizedlist>
		</formalpara>
		<para>This XSL template depends on the value of <literal>latex.output.revhistory</literal>. 
		If this variable is "1", the XSL template calls <command>map.begin</command>, then
		applies templates and finally calls <command>map.end</command></para>
	</refdescription>
    </doc:template>
    <!--############################################################################# -->

    <xsl:template match="revhistory">
	<xsl:message>RCAS: Processing Revision History </xsl:message>
	<xsl:if test="$latex.output.revhistory=1">
	    <xsl:call-template name="map.begin"/>
	    <xsl:apply-templates/>
	    <xsl:call-template name="map.end"/>
	</xsl:if>
    </xsl:template>




    <!--############################################################################# -->
    <!-- DOCUMENTATION                                                                -->
    <doc:template match="revhistory/revision" xmlns="">
	<refpurpose> revhistory/revision XSL template </refpurpose>
	<refdescription>
		<para>Each revhistory/revision corresponds to a LaTeX table row (see revhistory)
		containing the revision number, the date, author initials and the description/
		remarks of the revision.</para>
	</refdescription>
    </doc:template>
    <!--############################################################################# -->

    <xsl:template match="revhistory/revision">
	<xsl:variable name="revnumber" select=".//revnumber"/>
	<xsl:variable name="revdate"   select=".//date"/>
	<xsl:variable name="revauthor" select=".//authorinitials"/>
	<xsl:variable name="revremark" select=".//revremark|.//revdescription"/>
	<!-- Row starts here -->
	<xsl:if test="$revnumber">
	    <xsl:call-template name="gentext.element.name"/>
	    <xsl:text> </xsl:text>
	    <xsl:apply-templates select="$revnumber"/>
	</xsl:if>
	<xsl:text> &amp; </xsl:text>
	<xsl:apply-templates select="$revdate"/>
	<xsl:text> &amp; </xsl:text>
	<xsl:choose>
	    <xsl:when test="count($revauthor)=0">
		<xsl:call-template name="dingbat">
		    <xsl:with-param name="dingbat">nbsp</xsl:with-param>
		</xsl:call-template>
	    </xsl:when>
	    <xsl:otherwise>
		<xsl:apply-templates select="$revauthor"/>
	    </xsl:otherwise>
	</xsl:choose>
	<!-- End Row here -->
	<xsl:text> \\ \hline&#10;</xsl:text>
	<!-- Add Remark Row if exists-->
	<xsl:if test="$revremark"> 
	    <xsl:text>\multicolumn{3}{|l|}{</xsl:text>
	    <xsl:apply-templates select="$revremark"/> 
	    <!-- End Row here -->
	    <xsl:text>} \\ \hline&#10;</xsl:text>
	</xsl:if>
    </xsl:template>





    <!--############################################################################# -->
    <!-- DOCUMENTATION                                                                -->
    <doc:template match="revision/authorinitials" xmlns="">
	<refpurpose> revision/authorinitials XSL template </refpurpose>
	<refdescription>
		<para>Applies templates and outputs a "comma" if the node position is not
		last()</para>
	</refdescription>
    </doc:template>
    <!--############################################################################# -->

    <xsl:template match="revision/authorinitials">
	<xsl:apply-templates/>
	<xsl:if test="position()!=last()">
	    <xsl:text>, </xsl:text>
	</xsl:if>
    </xsl:template>





    <!--############################################################################# -->
    <!-- DOCUMENTATION                                                                -->
    <doc:template match="revision/revnumber" xmlns="">
	<refpurpose> revision/revnumber XSL template </refpurpose>
	<refdescription>
		<para>Applies templates.</para>
	</refdescription>
    </doc:template>
    <!--############################################################################# -->

    <xsl:template match="revision/revnumber">
	<xsl:apply-templates/>
    </xsl:template>






    <!--############################################################################# -->
    <!-- DOCUMENTATION                                                                -->
    <doc:template match="revision/date" xmlns="">
	<refpurpose> revision/date XSL template </refpurpose>
	<refdescription>
		<para>Applies templates.</para>
	</refdescription>
    </doc:template>
    <!--############################################################################# -->

    <xsl:template match="revision/date">
	<xsl:apply-templates/>
    </xsl:template>




    <!--############################################################################# -->
    <!-- DOCUMENTATION                                                                -->
    <doc:template match="revision/revremark" xmlns="">
	<refpurpose> revision/revremark XSL template </refpurpose>
	<refdescription>
		<para>Applies templates.</para>
	</refdescription>
    </doc:template>
    <!--############################################################################# -->

    <xsl:template match="revision/revremark">
	<xsl:apply-templates/>
    </xsl:template>




    <!--############################################################################# -->
    <!-- DOCUMENTATION                                                                -->
    <doc:template match="revision/revdescription" xmlns="">
	<refpurpose> revision/revdescription XSL template </refpurpose>
	<refdescription>
		<para>Applies templates.</para>
	</refdescription>
    </doc:template>
    <!--############################################################################# -->

    <xsl:template match="revision/revdescription">
	<xsl:apply-templates/>
    </xsl:template>

</xsl:stylesheet>