]> granicus.if.org Git - docbook-dsssl/commitdiff
Fixed bug #1542773 section title in info not formatting correctly.
authorBob Stayton <bobs@sagehill.net>
Thu, 24 Aug 2006 09:26:29 +0000 (09:26 +0000)
committerBob Stayton <bobs@sagehill.net>
Thu, 24 Aug 2006 09:26:29 +0000 (09:26 +0000)
xsl/html/sections.xsl

index 1b3b7a1b6cdc70d0ff0623b3aa90b49d8fef86a9..97892d939d5f4c5198921992dbe75b1aaf6aea1e 100644 (file)
@@ -79,7 +79,7 @@
   </xsl:variable>
 
   <xsl:call-template name="section.heading">
-    <xsl:with-param name="section" select=".."/>
+    <xsl:with-param name="section" select="$section"/>
     <xsl:with-param name="level" select="$level"/>
     <xsl:with-param name="title">
       <xsl:apply-templates select="$section" mode="object.title.markup">
@@ -89,7 +89,8 @@
   </xsl:call-template>
 </xsl:template>
 
-<xsl:template match="section/title" mode="titlepage.mode" priority="2">
+<xsl:template match="section/title|section/info/title" 
+              mode="titlepage.mode" priority="2">
   <xsl:call-template name="section.title"/>
 </xsl:template>
 
   </div>
 </xsl:template>
 
-<xsl:template match="sect1/title" mode="titlepage.mode" priority="2">
+<xsl:template match="sect1/title|sect1/info/title" 
+              mode="titlepage.mode" priority="2">
   <xsl:call-template name="section.title"/>
 </xsl:template>
 
   </div>
 </xsl:template>
 
-<xsl:template match="sect2/title" mode="titlepage.mode" priority="2">
+<xsl:template match="sect2/title|sect2/info/title" 
+              mode="titlepage.mode" priority="2">
   <xsl:call-template name="section.title"/>
 </xsl:template>
 
   </div>
 </xsl:template>
 
-<xsl:template match="sect3/title" mode="titlepage.mode" priority="2">
+<xsl:template match="sect3/title|sect3/info/title" 
+              mode="titlepage.mode" priority="2">
   <xsl:call-template name="section.title"/>
 </xsl:template>
 
   </div>
 </xsl:template>
 
-<xsl:template match="sect4/title" mode="titlepage.mode" priority="2">
+<xsl:template match="sect4/title|sect4/info/title" 
+              mode="titlepage.mode" priority="2">
   <xsl:call-template name="section.title"/>
 </xsl:template>
 
   </div>
 </xsl:template>
 
-<xsl:template match="sect5/title" mode="titlepage.mode" priority="2">
+<xsl:template match="sect5/title|sect5/info/title" 
+              mode="titlepage.mode" priority="2">
   <xsl:call-template name="section.title"/>
 </xsl:template>
 
   </div>
 </xsl:template>
 
-<xsl:template match="simplesect/title" mode="titlepage.mode" priority="2">
+<xsl:template match="simplesect/title|simplesect/info/title" 
+              mode="titlepage.mode" priority="2">
   <xsl:call-template name="section.title"/>
 </xsl:template>
 
            than 5 levels down just becomes H6 -->
       <xsl:when test="$level &gt; 5">6</xsl:when>
       <xsl:otherwise>
-       <xsl:value-of select="$level + 1"/>
+        <xsl:value-of select="$level + 1"/>
       </xsl:otherwise>
     </xsl:choose>
   </xsl:variable>