diff options
author | Alexander Bokovoy <ab@samba.org> | 2003-04-30 21:39:49 +0000 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2003-04-30 21:39:49 +0000 |
commit | bd30b6066f1a28663b28466a67064149b6e060a4 (patch) | |
tree | dc4478c5aafd9078f380e5e2ea11926519905fb0 /docs/docbook/xslt/db2latex/revision.mod.xsl | |
parent | 049791de5b6e43e827e2be01a65958389d9c76e2 (diff) | |
download | samba-bd30b6066f1a28663b28466a67064149b6e060a4.tar.gz samba-bd30b6066f1a28663b28466a67064149b6e060a4.tar.bz2 samba-bd30b6066f1a28663b28466a67064149b6e060a4.zip |
Docbook XML conversion: XSLT and build infrastructure
(This used to be commit f4f6e0b29e744077dfb836745716a659a49d7529)
Diffstat (limited to 'docs/docbook/xslt/db2latex/revision.mod.xsl')
-rw-r--r-- | docs/docbook/xslt/db2latex/revision.mod.xsl | 218 |
1 files changed, 218 insertions, 0 deletions
diff --git a/docs/docbook/xslt/db2latex/revision.mod.xsl b/docs/docbook/xslt/db2latex/revision.mod.xsl new file mode 100644 index 0000000000..c1b39cee48 --- /dev/null +++ b/docs/docbook/xslt/db2latex/revision.mod.xsl @@ -0,0 +1,218 @@ +<?xml version='1.0'?> +<!--############################################################################# +| $Id: revision.mod.xsl,v 1.1 2003/04/30 21:39:49 ab Exp $ +|- ############################################################################# +| $Author: ab $ +| +| 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="revision" xmlns=""> + <referenceinfo> + <releaseinfo role="meta"> + $Id: revision.mod.xsl,v 1.1 2003/04/30 21:39:49 ab Exp $ + </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>Revision Management <filename>revision.mod.xsl</filename></title> + <partintro> + <section><title>Introduction</title> + <para> + This file defines the DB2LaTeX XSL templates for <sgmltag>revision</sgmltag> + and its children. The basic mapping is to output a LaTeX table and a table + row for each revision. + </para> + </section> + </partintro> + </doc:reference> + <!--############################################################################# --> + + + + + <!--############################################################################# --> + <!-- DOCUMENTATION --> + <doc:template match="revhistory" xmlns=""> + <refpurpose> revhistory XSL template </refpurpose> + <refdescription> + <formalpara><title>User variables</title> + <itemizedlist> + <listitem><para><literal>latex.output.revhistory</literal></para></listitem> + </itemizedlist> + </formalpara> + <para>This XSL template depends on the value of <literal>latex.output.revhistory</literal>. + If this variable is "1", the XSL template calls <command>map.begin</command>, then + applies templates and finally calls <command>map.end</command></para> + </refdescription> + </doc:template> + <!--############################################################################# --> + + <xsl:template match="revhistory"> + <xsl:message>RCAS: Processing Revision History </xsl:message> + <xsl:if test="$latex.output.revhistory=1"> + <xsl:call-template name="map.begin"/> + <xsl:apply-templates/> + <xsl:call-template name="map.end"/> + </xsl:if> + </xsl:template> + + + + + <!--############################################################################# --> + <!-- DOCUMENTATION --> + <doc:template match="revhistory/revision" xmlns=""> + <refpurpose> revhistory/revision XSL template </refpurpose> + <refdescription> + <para>Each revhistory/revision corresponds to a LaTeX table row (see revhistory) + containing the revision number, the date, author initials and the description/ + remarks of the revision.</para> + </refdescription> + </doc:template> + <!--############################################################################# --> + + <xsl:template match="revhistory/revision"> + <xsl:variable name="revnumber" select=".//revnumber"/> + <xsl:variable name="revdate" select=".//date"/> + <xsl:variable name="revauthor" select=".//authorinitials"/> + <xsl:variable name="revremark" select=".//revremark|.//revdescription"/> + <!-- Row starts here --> + <xsl:if test="$revnumber"> + <xsl:call-template name="gentext.element.name"/> + <xsl:text> </xsl:text> + <xsl:apply-templates select="$revnumber"/> + </xsl:if> + <xsl:text> & </xsl:text> + <xsl:apply-templates select="$revdate"/> + <xsl:text> & </xsl:text> + <xsl:choose> + <xsl:when test="count($revauthor)=0"> + <xsl:call-template name="dingbat"> + <xsl:with-param name="dingbat">nbsp</xsl:with-param> + </xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:apply-templates select="$revauthor"/> + </xsl:otherwise> + </xsl:choose> + <!-- End Row here --> + <xsl:text> \\ \hline </xsl:text> + <!-- Add Remark Row if exists--> + <xsl:if test="$revremark"> + <xsl:text>\multicolumn{3}{|l|}{</xsl:text> + <xsl:apply-templates select="$revremark"/> + <!-- End Row here --> + <xsl:text>} \\ \hline </xsl:text> + </xsl:if> + </xsl:template> + + + + + + <!--############################################################################# --> + <!-- DOCUMENTATION --> + <doc:template match="revision/authorinitials" xmlns=""> + <refpurpose> revision/authorinitials XSL template </refpurpose> + <refdescription> + <para>Applies templates and outputs a "comma" if the node position is not + last()</para> + </refdescription> + </doc:template> + <!--############################################################################# --> + + <xsl:template match="revision/authorinitials"> + <xsl:apply-templates/> + <xsl:if test="position()!=last()"> + <xsl:text>, </xsl:text> + </xsl:if> + </xsl:template> + + + + + + <!--############################################################################# --> + <!-- DOCUMENTATION --> + <doc:template match="revision/revnumber" xmlns=""> + <refpurpose> revision/revnumber XSL template </refpurpose> + <refdescription> + <para>Applies templates.</para> + </refdescription> + </doc:template> + <!--############################################################################# --> + + <xsl:template match="revision/revnumber"> + <xsl:apply-templates/> + </xsl:template> + + + + + + + <!--############################################################################# --> + <!-- DOCUMENTATION --> + <doc:template match="revision/date" xmlns=""> + <refpurpose> revision/date XSL template </refpurpose> + <refdescription> + <para>Applies templates.</para> + </refdescription> + </doc:template> + <!--############################################################################# --> + + <xsl:template match="revision/date"> + <xsl:apply-templates/> + </xsl:template> + + + + + <!--############################################################################# --> + <!-- DOCUMENTATION --> + <doc:template match="revision/revremark" xmlns=""> + <refpurpose> revision/revremark XSL template </refpurpose> + <refdescription> + <para>Applies templates.</para> + </refdescription> + </doc:template> + <!--############################################################################# --> + + <xsl:template match="revision/revremark"> + <xsl:apply-templates/> + </xsl:template> + + + + + <!--############################################################################# --> + <!-- DOCUMENTATION --> + <doc:template match="revision/revdescription" xmlns=""> + <refpurpose> revision/revdescription XSL template </refpurpose> + <refdescription> + <para>Applies templates.</para> + </refdescription> + </doc:template> + <!--############################################################################# --> + + <xsl:template match="revision/revdescription"> + <xsl:apply-templates/> + </xsl:template> + +</xsl:stylesheet> |