]> granicus.if.org Git - docbook-dsssl/commitdiff
Table title with tocentry="0" attribute is now omitted from the
authorBob Stayton <bobs@sagehill.net>
Sun, 9 Oct 2011 21:04:08 +0000 (21:04 +0000)
committerBob Stayton <bobs@sagehill.net>
Sun, 9 Oct 2011 21:04:08 +0000 (21:04 +0000)
table of contents. Fixes bug 3279748.

xsl/fo/division.xsl
xsl/html/autotoc.xsl
xsl/html/chunk-common.xsl

index 334b4f3195b7645400f67db03486797a18671419..4bdec7fac5779be28e9cffd68f452609b63d0ea0 100644 (file)
       <xsl:with-param name="content">
         <xsl:call-template name="list.of.titles">
           <xsl:with-param name="titles" select="'table'"/>
-          <xsl:with-param name="nodes" select=".//table"/>
+          <xsl:with-param name="nodes" select=".//table[not(@tocentry = 0)]"/>
         </xsl:call-template>
       </xsl:with-param>
     </xsl:call-template>
index 1af8d74125b356a83a278445aad9aec3eb4a1b50..0357355e5888b22b0ebd5af860b477ac0b0714c0 100644 (file)
   <xsl:if test="contains($toc.params, 'table')">
     <xsl:call-template name="list.of.titles">
       <xsl:with-param name="titles" select="'table'"/>
-      <xsl:with-param name="nodes" select=".//table"/>
+      <xsl:with-param name="nodes" select=".//table[not(@tocentry = 0)]"/>
     </xsl:call-template>
   </xsl:if>
 
index 652e9f37266bb3d5f5836528d1b15fc1fa830bc6..08227d209334a12d26300d781f99d6c4bed0b3a5 100644 (file)
             <xsl:with-param name="lot">
               <xsl:call-template name="list.of.titles">
                 <xsl:with-param name="titles" select="'table'"/>
-                <xsl:with-param name="nodes" select=".//table"/>
+                <xsl:with-param name="nodes" select=".//table[not(@tocentry = 0)]"/>
               </xsl:call-template>
             </xsl:with-param>
           </xsl:call-template>
         <xsl:otherwise>
           <xsl:call-template name="list.of.titles">
             <xsl:with-param name="titles" select="'table'"/>
-            <xsl:with-param name="nodes" select=".//table"/>
+            <xsl:with-param name="nodes" select=".//table[not(@tocentry = 0)]"/>
           </xsl:call-template>
         </xsl:otherwise>
       </xsl:choose>