插入<br/>在xsl中的这一行不起作用

时间:2011-05-25 21:21:23

标签: html replace rtf xslt-1.0

我正在尝试使用以下代码删除富文本格式“/ par”标记,并将其替换为<br/>。该代码适用于剥离“/ par”但由于某种原因未插入<BR/>。我尝试用<BR/>替换****(只是一些纯文本),插入就好了。问题出在底部的“破解”模板中。

<?xml version='1.0'?>

    

<xsl:template match="ProjectDataSet">
  <html>
    <body>
      <xsl:for-each select="Project">
        <H2>
          <xsl:value-of select ="@ProjectID"/>
        </H2>
        <H3>Information</H3>
        Userfield1: <xsl:value-of select="UserField1"/>
        Userfield2: <xsl:value-of select="UserField2"/>
        <H3>Milestones</H3>
        <xsl:for-each select="MilestoneItem">
          Date: <xsl:value-of select="Date"/>  Event: <xsl:value-of select="Event"/><BR/>
        </xsl:for-each>
        <H3>Comments</H3>
        <xsl:for-each select="CommentItem">
          Date: <xsl:value-of select="Date"/><BR/>
          Description<BR/>
          <xsl:call-template name="ConvertRTF">
            <xsl:with-param name="desc" select="Description"/>
          </xsl:call-template>
          <HR/>
        </xsl:for-each>
      </xsl:for-each>
    </body>
  </html>
</xsl:template>

<xsl:template name="ConvertRTF">
  <xsl:param name="desc"/>
  <xsl:variable name="header1">
      <!--remove rtf header part 1-->
      <xsl:call-template name="string-replace-all">
        <xsl:with-param name="oldtext" select="$desc"/>
        <xsl:with-param name="replace" select="'{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Microsoft Sans Serif;}}'"/>
        <xsl:with-param name="by" select="''"/>
      </xsl:call-template>
    </xsl:variable>
  <xsl:variable name="header2">
      <!--remove rtf header part 2-->
      <xsl:call-template name="string-replace-all">
        <xsl:with-param name="oldtext" select="$header1"/>
        <xsl:with-param name="replace" select="'\viewkind4\uc1\pard\f0\fs17'"/>
        <xsl:with-param name="by" select="''"/>
      </xsl:call-template>
    </xsl:variable>
  <xsl:variable name="par">
    <!--place rtf /par with html <br> ******check this-->
    <xsl:call-template name="break">
      <xsl:with-param name="thetext" select="$header2"/>
    </xsl:call-template>
  </xsl:variable>
  <!--remove final } and output value-->
  <xsl:variable name="s_length" select="string-length($par)-2"/>
  <xsl:value-of select="substring($par,1,$s_length)"/>
</xsl:template>

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

<xsl:template name="break">
  <xsl:param name="thetext"/>
  <xsl:choose>
    <xsl:when test="contains($thetext,'\par')">
      <xsl:value-of select="substring-before($thetext,'\par')"/>
      <BR/>
      <xsl:call-template name="break">
        <xsl:with-param name="thetext" select="substring-after($thetext,'\par')"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="$thetext"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

有关为什么这不起作用的任何线索?

3 个答案:

答案 0 :(得分:1)

我想我遇到了同样的问题(这就是我在这个页面上的原因)。您的问题出在输出整个事物的代码中:

<xsl:value-of select="substring($par,1,$s_length)"/>

尝试使用:

<xsl:copy-of select="substring($par,1,$s_length)"/>

“xsl:value-of”仅返回所选标记内的 text()元素,而“xsl:copy-of”返回所有元素(包括所选标签的text())。

这实际上意味着“xsl:value-of”只是简单地删除“&lt; BR /&gt;” (一个xml元素),但不是“****”(text()元素。

答案 1 :(得分:0)

<br/>更改为<xhtml:br/>告诉xsl br不是xml元素,但实际上应该在结果中呈现。

[编辑]

这可能只有在您实际转换为xhtml时才有效。 :-o

答案 2 :(得分:0)

<BR/>不是xsl中的有效元素。

您必须定义模板,然后在xsl

中包含该模板 模板中的

<xsl:template name="Newline"><xsl:text>
</xsl:text></xsl:template>

在你的xslt

<xsl:value-of select="substring-before($thetext,'\par')"/>
<xsl:call-template name="Newline" />
<xsl:call-template name="break">
...