summaryrefslogtreecommitdiffstats
path: root/kdoctools/docbook/xsl/common/gentext.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/common/gentext.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/common/gentext.xsl')
-rw-r--r--kdoctools/docbook/xsl/common/gentext.xsl28
1 files changed, 14 insertions, 14 deletions
diff --git a/kdoctools/docbook/xsl/common/gentext.xsl b/kdoctools/docbook/xsl/common/gentext.xsl
index a5197e584..0562f388e 100644
--- a/kdoctools/docbook/xsl/common/gentext.xsl
+++ b/kdoctools/docbook/xsl/common/gentext.xsl
@@ -433,7 +433,7 @@
<xsl:param name="verbose"/>
<xsl:choose>
- <xsl:when test="tqcontains($template, '%')">
+ <xsl:when test="contains($template, '%')">
<xsl:value-of select="substring-before($template, '%')"/>
<xsl:variable name="candidate"
select="substring(substring-after($template, '%'), 1, 1)"/>
@@ -604,13 +604,13 @@
<xsl:variable name="labeltype">
<xsl:choose>
- <xsl:when test="tqcontains($parts, 'labelnumber')">
+ <xsl:when test="contains($parts, 'labelnumber')">
<xsl:text>labelnumber</xsl:text>
</xsl:when>
- <xsl:when test="tqcontains($parts, 'labelname')">
+ <xsl:when test="contains($parts, 'labelname')">
<xsl:text>labelname</xsl:text>
</xsl:when>
- <xsl:when test="tqcontains($parts, 'label')">
+ <xsl:when test="contains($parts, 'label')">
<xsl:text>label</xsl:text>
</xsl:when>
</xsl:choose>
@@ -618,10 +618,10 @@
<xsl:variable name="titletype">
<xsl:choose>
- <xsl:when test="tqcontains($parts, 'quotedtitle')">
+ <xsl:when test="contains($parts, 'quotedtitle')">
<xsl:text>quotedtitle</xsl:text>
</xsl:when>
- <xsl:when test="tqcontains($parts, 'title')">
+ <xsl:when test="contains($parts, 'title')">
<xsl:text>title</xsl:text>
</xsl:when>
</xsl:choose>
@@ -637,19 +637,19 @@
local-name($referrer) != 'olink'">
<!-- suppress page numbers -->
</xsl:when>
- <xsl:when test="tqcontains($parts, 'nopage')">
+ <xsl:when test="contains($parts, 'nopage')">
<xsl:text>nopage</xsl:text>
</xsl:when>
- <xsl:when test="tqcontains($parts, 'pagenumber')">
+ <xsl:when test="contains($parts, 'pagenumber')">
<xsl:text>pagenumber</xsl:text>
</xsl:when>
- <xsl:when test="tqcontains($parts, 'pageabbrev')">
+ <xsl:when test="contains($parts, 'pageabbrev')">
<xsl:text>pageabbrev</xsl:text>
</xsl:when>
- <xsl:when test="tqcontains($parts, 'Page')">
+ <xsl:when test="contains($parts, 'Page')">
<xsl:text>Page</xsl:text>
</xsl:when>
- <xsl:when test="tqcontains($parts, 'page')">
+ <xsl:when test="contains($parts, 'page')">
<xsl:text>page</xsl:text>
</xsl:when>
</xsl:choose>
@@ -662,13 +662,13 @@
local-name($referrer) = 'olink'">
<!-- suppress docname -->
</xsl:when>
- <xsl:when test="tqcontains($parts, 'nodocname')">
+ <xsl:when test="contains($parts, 'nodocname')">
<xsl:text>nodocname</xsl:text>
</xsl:when>
- <xsl:when test="tqcontains($parts, 'docnamelong')">
+ <xsl:when test="contains($parts, 'docnamelong')">
<xsl:text>docnamelong</xsl:text>
</xsl:when>
- <xsl:when test="tqcontains($parts, 'docname')">
+ <xsl:when test="contains($parts, 'docname')">
<xsl:text>docname</xsl:text>
</xsl:when>
</xsl:choose>