summaryrefslogtreecommitdiffstats
path: root/kdoctools/docbook/xsl/html/autotoc.xsl
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 07:08:17 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 07:08:17 +0000
commit9f96d6383157631aa9a8d087b3966d47e7b06899 (patch)
treecb7b064cb0e329f8334d9bca1592af674d26ac4a /kdoctools/docbook/xsl/html/autotoc.xsl
parent73a98149e76c195571c8b9b3ecd6753f204ccd97 (diff)
downloadtdelibs-9f96d6383157631aa9a8d087b3966d47e7b06899.tar.gz
tdelibs-9f96d6383157631aa9a8d087b3966d47e7b06899.zip
Repair accidental damage to meinproc/docbook caused by prior commit
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211188 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 4532b6c6a..91aaf8ea5 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="tqcontains($toc.params, 'toc')">
+ <xsl:if test="contains($toc.params, 'toc')">
<xsl:copy-of select="$toc"/>
</xsl:if>
- <xsl:if test="tqcontains($toc.params, 'figure')">
+ <xsl:if test="contains($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="tqcontains($toc.params, 'table')">
+ <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:call-template>
</xsl:if>
- <xsl:if test="tqcontains($toc.params, 'example')">
+ <xsl:if test="contains($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="tqcontains($toc.params, 'equation')">
+ <xsl:if test="contains($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="tqcontains($toc.params, 'procedure')">
+ <xsl:if test="contains($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]"/>