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/manpages/synop.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/manpages/synop.xsl')
-rw-r--r-- | kdoctools/docbook/xsl/manpages/synop.xsl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdoctools/docbook/xsl/manpages/synop.xsl b/kdoctools/docbook/xsl/manpages/synop.xsl index 9b7231e43..977866969 100644 --- a/kdoctools/docbook/xsl/manpages/synop.xsl +++ b/kdoctools/docbook/xsl/manpages/synop.xsl @@ -45,9 +45,9 @@ <xsl:choose> <xsl:when test="local-name(.) = 'arg' and not(ancestor::arg)"> <!-- Prevent breaking up an argument by wrapping it --> - <xsl:call-template name="tqreplace-string"> + <xsl:call-template name="replace-string"> <xsl:with-param name="content" select="normalize-space($arg)"/> - <xsl:with-param name="tqreplace" select="' '"/> + <xsl:with-param name="replace" select="' '"/> <xsl:with-param name="with" select="'\ '"/> </xsl:call-template> </xsl:when> @@ -90,14 +90,14 @@ </xsl:if> <!-- Don't use the 'bold' named template here since there may be --> <!-- child elements that require different markup (such as --> - <!-- <tqreplaceable>). --> + <!-- <replaceable>). --> <xsl:text>\fB</xsl:text> <xsl:variable name="arg"> <xsl:apply-templates/> </xsl:variable> - <xsl:call-template name="tqreplace-string"> + <xsl:call-template name="replace-string"> <xsl:with-param name="content" select="normalize-space($arg)"/> - <xsl:with-param name="tqreplace" select="' '"/> + <xsl:with-param name="replace" select="' '"/> <xsl:with-param name="with" select="'\ '"/> </xsl:call-template> <xsl:text>\fR</xsl:text> @@ -161,7 +161,7 @@ --> -<!-- tqreplaces all spaces within the funcdef/paramdef with non-breaking +<!-- replaces all spaces within the funcdef/paramdef with non-breaking spaces --> <xsl:template match="paramdef|funcdef"> <xsl:variable name="rcontent"> @@ -170,9 +170,9 @@ <xsl:variable name="content"> <xsl:value-of select="normalize-space($rcontent)"/> </xsl:variable> - <xsl:call-template name="tqreplace-string"> + <xsl:call-template name="replace-string"> <xsl:with-param name="content" select="$content"/> - <xsl:with-param name="tqreplace" select="' '"/> + <xsl:with-param name="replace" select="' '"/> <xsl:with-param name="with" select="'\ '"/> </xsl:call-template> <xsl:if test="local-name(.) = 'paramdef' and |