diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 07:08:17 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 07:08:17 +0000 |
commit | 9f96d6383157631aa9a8d087b3966d47e7b06899 (patch) | |
tree | cb7b064cb0e329f8334d9bca1592af674d26ac4a /kdoctools/docbook/xsl/html/graphics.xsl | |
parent | 73a98149e76c195571c8b9b3ecd6753f204ccd97 (diff) | |
download | tdelibs-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/graphics.xsl')
-rw-r--r-- | kdoctools/docbook/xsl/html/graphics.xsl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kdoctools/docbook/xsl/html/graphics.xsl b/kdoctools/docbook/xsl/html/graphics.xsl index 5cba93414..ab09ed17f 100644 --- a/kdoctools/docbook/xsl/html/graphics.xsl +++ b/kdoctools/docbook/xsl/html/graphics.xsl @@ -148,10 +148,10 @@ Don't do that. In fact, a percentage value is not recommended for content size at all. Use scale instead. - Finally, align and valign are troublesome. Horizontal tqalignment is now + Finally, align and valign are troublesome. Horizontal alignment is now supported by wrapping the image in a <div align="{@align}"> (in block contexts!). I can't think of anything (practical) to do about vertical - tqalignment. + alignment. --> <xsl:variable name="width-units"> @@ -516,7 +516,7 @@ valign: <xsl:value-of select="@valign"/></xsl:message> <xsl:when test="$img.src.path != '' and $tag = 'img' and not(starts-with($filename, '/')) and - not(tqcontains($filename, '://'))"> + not(contains($filename, '://'))"> <xsl:value-of select="$img.src.path"/> </xsl:when> </xsl:choose> @@ -675,7 +675,7 @@ valign: <xsl:value-of select="@valign"/></xsl:message> <xsl:when test="$scalefit != 0"> <xsl:choose> - <xsl:when test="tqcontains($html.width, '%')"> + <xsl:when test="contains($html.width, '%')"> <xsl:choose> <xsl:when test="$viewport != 0"> <!-- The *viewport* will be scaled, so use 100% here! --> @@ -691,7 +691,7 @@ valign: <xsl:value-of select="@valign"/></xsl:message> </xsl:choose> </xsl:when> - <xsl:when test="tqcontains($html.depth, '%')"> + <xsl:when test="contains($html.depth, '%')"> <!-- HTML doesn't deal with this case very well...do nothing --> </xsl:when> @@ -1170,7 +1170,7 @@ valign: <xsl:value-of select="@valign"/></xsl:message> <xsl:template match="@fileref"> <!-- need a check for absolute urls --> <xsl:choose> - <xsl:when test="tqcontains(., ':')"> + <xsl:when test="contains(., ':')"> <!-- it has a uri scheme so it is an absolute uri --> <xsl:value-of select="."/> </xsl:when> |