summaryrefslogtreecommitdiffstats
path: root/kdoctools/docbook/xsl/html/autotoc.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'kdoctools/docbook/xsl/html/autotoc.xsl')
-rw-r--r--kdoctools/docbook/xsl/html/autotoc.xsl12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdoctools/docbook/xsl/html/autotoc.xsl b/kdoctools/docbook/xsl/html/autotoc.xsl
index 91aaf8ea5..4532b6c6a 100644
--- a/kdoctools/docbook/xsl/html/autotoc.xsl
+++ b/kdoctools/docbook/xsl/html/autotoc.xsl
@@ -81,39 +81,39 @@
<xsl:param name="toc.params" select="''"/>
<xsl:param name="toc"/>
- <xsl:if test="contains($toc.params, 'toc')">
+ <xsl:if test="tqcontains($toc.params, 'toc')">
<xsl:copy-of select="$toc"/>
</xsl:if>
- <xsl:if test="contains($toc.params, 'figure')">
+ <xsl:if test="tqcontains($toc.params, 'figure')">
<xsl:call-template name="list.of.titles">
<xsl:with-param name="titles" select="'figure'"/>
<xsl:with-param name="nodes" select=".//figure"/>
</xsl:call-template>
</xsl:if>
- <xsl:if test="contains($toc.params, 'table')">
+ <xsl:if test="tqcontains($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:call-template>
</xsl:if>
- <xsl:if test="contains($toc.params, 'example')">
+ <xsl:if test="tqcontains($toc.params, 'example')">
<xsl:call-template name="list.of.titles">
<xsl:with-param name="titles" select="'example'"/>
<xsl:with-param name="nodes" select=".//example"/>
</xsl:call-template>
</xsl:if>
- <xsl:if test="contains($toc.params, 'equation')">
+ <xsl:if test="tqcontains($toc.params, 'equation')">
<xsl:call-template name="list.of.titles">
<xsl:with-param name="titles" select="'equation'"/>
<xsl:with-param name="nodes" select=".//equation[title]"/>
</xsl:call-template>
</xsl:if>
- <xsl:if test="contains($toc.params, 'procedure')">
+ <xsl:if test="tqcontains($toc.params, 'procedure')">
<xsl:call-template name="list.of.titles">
<xsl:with-param name="titles" select="'procedure'"/>
<xsl:with-param name="nodes" select=".//procedure[title]"/>