XSLT - 用输出中的转义文本替换撇号

时间:2009-07-09 11:03:54

标签: xml xslt sitemap

我正在编写一个XSLT模板,需要为xml站点地图输出有效的xml文件。

<url>
<loc>
    <xsl:value-of select="umbraco.library:NiceUrl($node/@id)"/>
</loc>
<lastmod>
    <xsl:value-of select="concat($node/@updateDate,'+00:00')"/>
</lastmod>
</url>

不幸的是,输出的Url包含一个撇号 - /what's-new.aspx

我需要转移到谷歌站点地图的&apos;。不幸的是,我尝试过的每一次尝试都将字符串“&apos;”视为“无效” - 令人沮丧。 XSLT有时会让我发疯。

技术的任何想法? (假设我可以找到解决XSLT 1.0模板和函数的方法)

4 个答案:

答案 0 :(得分:9)

您输入中有',但输出中需要字符串&nbsp;

在您的XSL文件中,使用this find/replace implementation&apos;替换为&amp;apos;(除非您使用的是XSLT 2.0):

<xsl:template name="string-replace-all">
  <xsl:param name="text"/>
  <xsl:param name="replace"/>
  <xsl:param name="by"/>
  <xsl:choose>
    <xsl:when test="contains($text,$replace)">
      <xsl:value-of select="substring-before($text,$replace)"/>
      <xsl:value-of select="$by"/>
      <xsl:call-template name="string-replace-all">
        <xsl:with-param name="text" select="substring-after($text,$replace)"/>
        <xsl:with-param name="replace" select="$replace"/>
        <xsl:with-param name="by" select="$by"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="$text"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

这样称呼:

<loc>
  <xsl:call-template name="string-replace-all">
    <xsl:with-param name="text" select="umbraco.library:NiceUrl($node/@id)"/>
    <xsl:with-param name="replace" select="&apos;"/>
    <xsl:with-param name="by" select="&amp;apos;"/>
  </xsl:call-template>
</loc>

问题是&apos;被XSL解释为'&amp;apos;将被解释为&apos;

答案 1 :(得分:1)

从网址中删除不需要的字符的简单方法是更改​​umbraco在生成NiceUrl时使用的规则。

编辑config / umbracoSettings.config

添加规则以删除NiceUrls中的所有撇号,如下所示:

<urlReplacing>
    ...
    <char org="'"></char>     <!-- replace ' with nothing -->
    ...
</urlReplacing>

注意:“org”属性的内容将替换为元素的内容,这是另一个例子:

<char org="+">plus</char> <!-- replace + with the word plus -->

答案 2 :(得分:0)

您是否尝试将disable-output-escaping设置为xsl:value-of element:

<xsl:value-of disable-output-escaping="yes" select="umbraco.library:NiceUrl($node/@id)"/>

实际上 - 这可能与你想要的相反。

如何在xsl:text元素中包装xsl:value-of?

<xsl:text><xsl:value-of select="umbraco.library:NiceUrl($node/@id)"/></xsl:text>

也许您应该尝试将'翻译为&amp;apos;

答案 3 :(得分:0)

这将有效,您只需要更改两个参数,如下所示

<xsl:with-param name="replace">&apos;</xsl:with-param>
<xsl:with-param name="by" >AnyString</xsl:with-param>