]> granicus.if.org Git - docbook-dsssl/commitdiff
Added a chunker.output.quiet top-level parameter so that the chunker can be made...
authorNorman Walsh <ndw@nwalsh.com>
Wed, 9 Nov 2005 20:49:44 +0000 (20:49 +0000)
committerNorman Walsh <ndw@nwalsh.com>
Wed, 9 Nov 2005 20:49:44 +0000 (20:49 +0000)
xsl/html/chunker.xsl

index a199454e192f257f98e411f72023e8ee4fbb5c17..76a9956f55502a96160c501578bde1daaa5fe425 100644 (file)
@@ -33,6 +33,7 @@
 <xsl:param name="chunker.output.doctype-system" select="''"/>
 <xsl:param name="chunker.output.media-type" select="''"/>
 <xsl:param name="chunker.output.cdata-section-elements" select="''"/>
+<xsl:param name="chunker.output.quiet" select="0"/>
 
 <xsl:param name="saxon.character.representation" select="'entity;decimal'"/>
 
@@ -74,7 +75,7 @@
 
 <xsl:template name="write.chunk">
   <xsl:param name="filename" select="''"/>
-  <xsl:param name="quiet" select="0"/>
+  <xsl:param name="quiet" select="$chunker.output.quiet"/>
 
   <xsl:param name="method" select="$chunker.output.method"/>
   <xsl:param name="encoding" select="$chunker.output.encoding"/>
 
 <xsl:template name="write.chunk.with.doctype">
   <xsl:param name="filename" select="''"/>
-  <xsl:param name="quiet" select="0"/>
+  <xsl:param name="quiet" select="$chunker.output.quiet"/>
 
   <xsl:param name="method" select="$chunker.output.method"/>
   <xsl:param name="encoding" select="$chunker.output.encoding"/>
 
 <xsl:template name="write.text.chunk">
   <xsl:param name="filename" select="''"/>
-  <xsl:param name="quiet" select="0"/>
+  <xsl:param name="quiet" select="$chunker.output.quiet"/>
   <xsl:param name="method" select="'text'"/>
   <xsl:param name="encoding" select="$chunker.output.encoding"/>
   <xsl:param name="media-type" select="$chunker.output.media-type"/>