trying to get HEAD building again. If you want the code
[tprouty/samba.git] / docs / docbook / xslt / db2latex / msgset.mod.xsl
1 <?xml version='1.0'?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
3     <!--############################################################################# 
4     |- #############################################################################
5     |                                                                                                           
6     |   PURPOSE:
7     + ############################################################################## -->
8
9
10     <xsl:template match="msgset">
11         <xsl:apply-templates/>
12     </xsl:template>
13
14     <xsl:template match="msgentry">
15         <xsl:call-template name="block.object"/>
16     </xsl:template>
17
18     <xsl:template match="simplemsgentry">
19         <xsl:call-template name="block.object"/>
20     </xsl:template>
21
22     <xsl:template match="msg">
23         <xsl:call-template name="block.object"/>
24     </xsl:template>
25
26     <xsl:template match="msgmain">
27         <xsl:apply-templates/>
28     </xsl:template>
29
30     <xsl:template match="msgmain/title">
31         <b><xsl:apply-templates/></b>
32     </xsl:template>
33
34     <xsl:template match="msgsub">
35         <xsl:apply-templates/>
36     </xsl:template>
37
38     <xsl:template match="msgsub/title">
39         <b><xsl:apply-templates/></b>
40     </xsl:template>
41
42     <xsl:template match="msgrel">
43         <xsl:apply-templates/>
44     </xsl:template>
45
46     <xsl:template match="msgrel/title">
47         <b><xsl:apply-templates/></b>
48     </xsl:template>
49
50     <xsl:template match="msgtext">
51         <xsl:apply-templates/>
52     </xsl:template>
53
54     <xsl:template match="msginfo">
55         <xsl:call-template name="block.object"/>
56     </xsl:template>
57
58     <xsl:template match="msglevel|msgorig|msgaud">
59         <p>
60             <b>
61                 <xsl:call-template name="gentext.element.name"/>
62                 <xsl:text>: </xsl:text>
63             </b>
64             <xsl:apply-templates/>
65         </p>
66     </xsl:template>
67
68     <xsl:template match="msgexplan">
69         <xsl:call-template name="block.object"/>
70     </xsl:template>
71
72     <xsl:template match="msgexplan/title">
73         <xsl:apply-templates/>
74     </xsl:template>
75
76 </xsl:stylesheet>