]> granicus.if.org Git - docbook-dsssl/commitdiff
Correctly handle sidebar instances that have sidebar/info/title
authorMichael Smith <xmldoc@users.sourceforge.net>
Tue, 22 Aug 2006 08:17:03 +0000 (08:17 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Tue, 22 Aug 2006 08:17:03 +0000 (08:17 +0000)
instead of sidebar/title. This change simply makes sidebar
handling for this case identical to that of abstract. Closes bug
#1541793. Thanks to Mauritz Jeanson.

xsl/html/block.xsl

index af598723e2d2f089a680ae1e90951e04f564ea60..0d8fd94f6dfa085b5089da6ff177e8174008c46e 100644 (file)
 
 <!-- ==================================================================== -->
 
-<xsl:template match="sidebar">
-  <div class="{name(.)}">
-    <xsl:call-template name="anchor"/>
-    <xsl:apply-templates/>
-  </div>
-</xsl:template>
-
-<xsl:template match="sidebar/title">
-  <p class="title">
-    <b><xsl:apply-templates/></b>
-  </p>
-</xsl:template>
-
-<!-- ==================================================================== -->
-
-<xsl:template match="abstract">
+<xsl:template match="abstract|sidebar">
   <div class="{name(.)}">
     <xsl:call-template name="anchor"/>
     <xsl:call-template name="formal.object.heading">
   </div>
 </xsl:template>
 
-<xsl:template match="abstract/title">
+<xsl:template match="abstract/title|sidebar/title">
 </xsl:template>
 
 <!-- ==================================================================== -->