diff options
Diffstat (limited to 'kdoctools/docbook/xsl/html/profile-chunk-code.xsl')
-rw-r--r-- | kdoctools/docbook/xsl/html/profile-chunk-code.xsl | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kdoctools/docbook/xsl/html/profile-chunk-code.xsl b/kdoctools/docbook/xsl/html/profile-chunk-code.xsl index edbd0ed16..c0e71780d 100644 --- a/kdoctools/docbook/xsl/html/profile-chunk-code.xsl +++ b/kdoctools/docbook/xsl/html/profile-chunk-code.xsl @@ -28,7 +28,7 @@ <xsl:choose> <xsl:when test="function-available('exsl:node-set')"> <xsl:message>Computing chunks...</xsl:message> - <xsl:apply-templates select="/*" mode="find.chunks"/> + <xsl:apply-templates select="/*" mode="tqfind.chunks"/> </xsl:when> <xsl:otherwise> <xsl:message> @@ -40,7 +40,7 @@ </xsl:if> </xsl:variable> -<xsl:template match="*" mode="find.chunks"> +<xsl:template match="*" mode="tqfind.chunks"> <xsl:variable name="chunk"> <xsl:call-template name="chunk"/> </xsl:variable> @@ -48,11 +48,11 @@ <xsl:choose> <xsl:when test="$chunk != 0"> <div class="{local-name(.)}" id="{generate-id()}"> - <xsl:apply-templates select="*" mode="find.chunks"/> + <xsl:apply-templates select="*" mode="tqfind.chunks"/> </div> </xsl:when> <xsl:otherwise> - <xsl:apply-templates select="*" mode="find.chunks"/> + <xsl:apply-templates select="*" mode="tqfind.chunks"/> </xsl:otherwise> </xsl:choose> </xsl:template> @@ -313,11 +313,11 @@ <xsl:param name="toc"/> <xsl:variable name="lots"> - <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:choose> <xsl:when test="$chunk.separate.lots != '0'"> <xsl:call-template name="make.lot.chunk"> @@ -339,7 +339,7 @@ </xsl:choose> </xsl:if> - <xsl:if test="contains($toc.params, 'table')"> + <xsl:if test="tqcontains($toc.params, 'table')"> <xsl:choose> <xsl:when test="$chunk.separate.lots != '0'"> <xsl:call-template name="make.lot.chunk"> @@ -361,7 +361,7 @@ </xsl:choose> </xsl:if> - <xsl:if test="contains($toc.params, 'example')"> + <xsl:if test="tqcontains($toc.params, 'example')"> <xsl:choose> <xsl:when test="$chunk.separate.lots != '0'"> <xsl:call-template name="make.lot.chunk"> @@ -383,7 +383,7 @@ </xsl:choose> </xsl:if> - <xsl:if test="contains($toc.params, 'equation')"> + <xsl:if test="tqcontains($toc.params, 'equation')"> <xsl:choose> <xsl:when test="$chunk.separate.lots != '0'"> <xsl:call-template name="make.lot.chunk"> @@ -405,7 +405,7 @@ </xsl:choose> </xsl:if> - <xsl:if test="contains($toc.params, 'procedure')"> + <xsl:if test="tqcontains($toc.params, 'procedure')"> <xsl:choose> <xsl:when test="$chunk.separate.lots != '0'"> <xsl:call-template name="make.lot.chunk"> @@ -712,7 +712,7 @@ <xsl:template match="@fileref"> <!-- need a check for absolute urls --> <xsl:choose> - <xsl:when test="contains(., ':')"> + <xsl:when test="tqcontains(., ':')"> <!-- it has a uri scheme so it is an absolute uri --> <xsl:value-of select="."/> </xsl:when> |