summaryrefslogtreecommitdiff
path: root/docs/docbook/xslt/lists.mod.xsl
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-10-10 16:46:22 +0000
committerGerald Carter <jerry@samba.org>2003-10-10 16:46:22 +0000
commitfec4b31bc1a76e408732e1a80b366d97fcf38143 (patch)
treee23398c2bcc4e3b2da28c8007ca453228aefb44f /docs/docbook/xslt/lists.mod.xsl
parent20c7b998a38424e8e7b4d218f923937b9e8862d4 (diff)
downloadsamba-fec4b31bc1a76e408732e1a80b366d97fcf38143.tar.gz
samba-fec4b31bc1a76e408732e1a80b366d97fcf38143.tar.bz2
samba-fec4b31bc1a76e408732e1a80b366d97fcf38143.zip
removing docs tree from 3.0
(This used to be commit 0a3eb5574c91685ab07436c67b031266fb329693)
Diffstat (limited to 'docs/docbook/xslt/lists.mod.xsl')
-rw-r--r--docs/docbook/xslt/lists.mod.xsl29
1 files changed, 0 insertions, 29 deletions
diff --git a/docs/docbook/xslt/lists.mod.xsl b/docs/docbook/xslt/lists.mod.xsl
deleted file mode 100644
index 49e39d5e7f..0000000000
--- a/docs/docbook/xslt/lists.mod.xsl
+++ /dev/null
@@ -1,29 +0,0 @@
-<?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>