diff options
Diffstat (limited to 'docs/docbook/xslt/db2latex/component.mod.xsl')
-rw-r--r-- | docs/docbook/xslt/db2latex/component.mod.xsl | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/docs/docbook/xslt/db2latex/component.mod.xsl b/docs/docbook/xslt/db2latex/component.mod.xsl deleted file mode 100644 index aedcadb550..0000000000 --- a/docs/docbook/xslt/db2latex/component.mod.xsl +++ /dev/null @@ -1,91 +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'> - - - - <!--############################################################################# --> - <!-- DOCUMENTATION --> - <doc:reference id="component" xmlns=""> - <referenceinfo> - <releaseinfo role="meta"> - </releaseinfo> - <authorgroup> - <author> <firstname>Ramon</firstname> <surname>Casellas</surname> </author> - <author> <firstname>James</firstname> <surname>Devenish</surname> </author> - </authorgroup> - <copyright> - <year>2000</year> <year>2001</year> <year>2002</year> <year>2003</year> - <holder>Ramon Casellas</holder> - </copyright> - </referenceinfo> - - <title>Component <filename>component.mod.xsl</filename></title> - <partintro> - <section><title>Introduction</title> - <para></para> - </section> - </partintro> - </doc:reference> - - - - - <xsl:template name="component.title"> - <xsl:variable name="id"> - <xsl:call-template name="label.id"><xsl:with-param name="object" select="."/></xsl:call-template> - </xsl:variable> - <xsl:text> {\sc </xsl:text><xsl:apply-templates select="." mode="title.ref"/><xsl:text>}</xsl:text> - </xsl:template> - - - - <xsl:template name="component.subtitle"> - <xsl:variable name="subtitle"><xsl:apply-templates select="." mode="subtitle.content"/></xsl:variable> - <xsl:if test="$subtitle != ''"> - <xsl:text> {\sc </xsl:text><xsl:copy-of select="$subtitle"/><xsl:text>}</xsl:text> - </xsl:if> - </xsl:template> - - - - <xsl:template name="component.separator"> - </xsl:template> - - - - <xsl:template match="colophon"> - <xsl:variable name="id"><xsl:call-template name="label.id"/></xsl:variable> - <xsl:call-template name="component.separator"/> - <xsl:call-template name="component.title"/> - <xsl:call-template name="component.subtitle"/> - <xsl:apply-templates/> - </xsl:template> - - - <xsl:template match="colophon/title"/> - - - - <xsl:template match="bibliography" mode="component.number"> - <xsl:param name="add.space" select="false()"/> - </xsl:template> - - <xsl:template match="glossary" mode="component.number"> - <xsl:param name="add.space" select="false()"/> - </xsl:template> - - <xsl:template match="index" mode="component.number"> - <xsl:param name="add.space" select="false()"/> - </xsl:template> - -</xsl:stylesheet> - |