removing RCS tags
[Samba.git] / docs / docbook / xslt / db2latex / callout.mod.xsl
blobab67cf8e237f2cc4bcafe4222e388a9477b17a69
1 <?xml version='1.0'?>
2 <!--#############################################################################
3 |- #############################################################################
4 |
5 | PURPOSE:
6 + ############################################################################## -->
8 <xsl:stylesheet
9 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10 xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
11 exclude-result-prefixes="doc" version='1.0'>
13 <!--############################################################################# -->
14 <!-- DOCUMENTATION -->
15 <doc:reference id="callout" xmlns="">
16 <referenceinfo>
17 <releaseinfo role="meta">
18 </releaseinfo>
19 <authorgroup>
20 <author> <firstname>Ramon</firstname> <surname>Casellas</surname> </author>
21 <author> <firstname>James</firstname> <surname>Devenish</surname> </author>
22 </authorgroup>
23 <copyright>
24 <year>2000</year> <year>2001</year> <year>2002</year> <year>2003</year>
25 <holder>Ramon Casellas</holder>
26 </copyright>
27 </referenceinfo>
29 <title>Callout <filename>callout.mod.xsl</filename></title>
30 <partintro>
31 <section><title>Introduction</title>
32 <para></para>
33 </section>
34 </partintro>
35 </doc:reference>
40 <xsl:template match="programlistingco|screenco">
41 <xsl:apply-templates/>
42 </xsl:template>
44 <xsl:template match="areaspec|areaset|area">
45 </xsl:template>
47 <xsl:template match="co">
48 <xsl:apply-templates select="." mode="callout-bug"/>
49 </xsl:template>
51 <xsl:template match="co" mode="callout-bug">
52 <xsl:variable name="conum">
53 <xsl:number count="co" format="1"/>
54 </xsl:variable>
56 <xsl:text>(</xsl:text>
57 <xsl:value-of select="$conum"/>
58 <xsl:text>)</xsl:text>
59 </xsl:template>
61 </xsl:stylesheet>