removing RCS tags
[samba.git] / docs / docbook / xslt / lists.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     <xsl:template match="simplelist">
15         <xsl:if test="title"> <xsl:apply-templates select="title"/></xsl:if>
16         <xsl:text>&#10;\begin{itemize}&#10;</xsl:text>
17         <xsl:apply-templates select="member"/>
18         <xsl:text>&#10;\end{itemize}&#10;</xsl:text>
19     </xsl:template>
20
21
22     <xsl:template match="member">
23         <xsl:text>&#10;%--- Item&#10;</xsl:text>
24         <xsl:text>\item[] </xsl:text>
25         <xsl:apply-templates/>
26         <xsl:text>&#10;</xsl:text>
27     </xsl:template>
28
29 </xsl:stylesheet>