summaryrefslogtreecommitdiff
path: root/docs/xslt/lists.mod.xsl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2004-04-07 10:40:50 +0000
committerGerald W. Carter <jerry@samba.org>2008-04-23 08:45:43 -0500
commitdabce971b0a08c2a85428b2db29152dce2cb4075 (patch)
treebe059214131897047b38f637fd7d56a096a8a501 /docs/xslt/lists.mod.xsl
parent992f1e6b8f86b346fddd266b04d29cde69585633 (diff)
downloadsamba-dabce971b0a08c2a85428b2db29152dce2cb4075.tar.gz
samba-dabce971b0a08c2a85428b2db29152dce2cb4075.tar.bz2
samba-dabce971b0a08c2a85428b2db29152dce2cb4075.zip
- Better names for some files
- Add the build system (This used to be commit 450386e3edfc59e0ad67c12998eddfc46b381250)
Diffstat (limited to 'docs/xslt/lists.mod.xsl')
-rw-r--r--docs/xslt/lists.mod.xsl29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/xslt/lists.mod.xsl b/docs/xslt/lists.mod.xsl
new file mode 100644
index 0000000000..49e39d5e7f
--- /dev/null
+++ b/docs/xslt/lists.mod.xsl
@@ -0,0 +1,29 @@
+<?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'>
+
+
+ <xsl:template match="simplelist">
+ <xsl:if test="title"> <xsl:apply-templates select="title"/></xsl:if>
+ <xsl:text>&#10;\begin{itemize}&#10;</xsl:text>
+ <xsl:apply-templates select="member"/>
+ <xsl:text>&#10;\end{itemize}&#10;</xsl:text>
+ </xsl:template>
+
+
+ <xsl:template match="member">
+ <xsl:text>&#10;%--- Item&#10;</xsl:text>
+ <xsl:text>\item[] </xsl:text>
+ <xsl:apply-templates/>
+ <xsl:text>&#10;</xsl:text>
+ </xsl:template>
+
+</xsl:stylesheet>