freebsd-ports/textproc/db2latex/files/patch-xsl-lists.mod.xsl
Stefan Walter 6d9af13dc0 Fix a problem with nested <param> tags in the XSL stylesheet which xsltproc does
not like and which prevents building the bind9 documentation.

PR:		173615
Submitted by:	Mark Andrews <marka@isc.org>
2013-04-28 11:24:26 +00:00

16 lines
691 B
XML

--- xsl/lists.mod.xsl.orig 2004-01-31 11:53:50.000000000 +0000
+++ xsl/lists.mod.xsl 2012-11-13 21:15:16.000000000 +0000
@@ -269,10 +269,8 @@
</doc:notes>
</doc:template>
<xsl:template match="varlistentry">
- <xsl:param name="next.is.list">
- <xsl:param name="object" select="listitem/*[1]"/>
- <xsl:value-of select="count($object[self::itemizedlist or self::orderedlist or self::variablelist])"/>
- </xsl:param>
+ <xsl:param name="object" select="listitem/*[1]"/>
+ <xsl:param name="next.is.list" select="count($object[self::itemizedlist or self::orderedlist or self::variablelist])"/>
<xsl:variable name="id">
<xsl:call-template name="label.id"/>
</xsl:variable>