]> granicus.if.org Git - docbook-dsssl/commitdiff
Make sure chunk always returns zero if we're not chunking
authorNorman Walsh <ndw@nwalsh.com>
Fri, 27 Sep 2002 13:01:54 +0000 (13:01 +0000)
committerNorman Walsh <ndw@nwalsh.com>
Fri, 27 Sep 2002 13:01:54 +0000 (13:01 +0000)
xsl/html/docbook.xsl

index 7826f161b76017950ceb52ae5a8a00599c176cb5..aec3994c5b5c6cdcfd96a93e1b67d7ae436c0133 100644 (file)
@@ -353,4 +353,13 @@ body { background-image: url('</xsl:text>
 
 <!-- ==================================================================== -->
 
+<xsl:template name="chunk">
+  <xsl:param name="node" select="."/>
+
+  <!-- The default is that we are not chunking... -->
+  <xsl:text>0</xsl:text>
+</xsl:template>
+
+<!-- ==================================================================== -->
+
 </xsl:stylesheet>