trying to get HEAD building again. If you want the code
[abartlet/samba.git/.git] / docs / docbook / xslt / db2latex / callout.mod.xsl
1 <?xml version='1.0'?>
2 <!--############################################################################# 
3 |- #############################################################################
4 |                                                                                                               
5 |   PURPOSE:
6 + ############################################################################## -->
7
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'>
12
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>
28
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>
36
37
38
39
40     <xsl:template match="programlistingco|screenco">
41         <xsl:apply-templates/>
42     </xsl:template>
43
44     <xsl:template match="areaspec|areaset|area">
45     </xsl:template>
46
47     <xsl:template match="co">
48         <xsl:apply-templates select="." mode="callout-bug"/>
49     </xsl:template>
50
51     <xsl:template match="co" mode="callout-bug">
52         <xsl:variable name="conum">
53             <xsl:number count="co" format="1"/>
54         </xsl:variable>
55
56         <xsl:text>(</xsl:text>
57         <xsl:value-of select="$conum"/>
58         <xsl:text>)</xsl:text>
59     </xsl:template>
60
61 </xsl:stylesheet>