You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/11/01 14:46:01 UTC

DO NOT REPLY [Bug 2951] - xsltc fails conf test output10 not disabling output escaping of value assinged to variable

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2951>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2951

xsltc fails conf test output10 not disabling output escaping of value assinged to variable





------- Additional Comments From morten@apache.org  2001-11-01 05:46 -------
I am not 100% sure if this is a bug. The variable should contain the string
'<P>&nbsp;</P>' with the <P> tags unescaped:

  <xsl:variable name="foo">
    <xsl:value-of select="doc/foo" disable-output-escaping="yes"/>
  </xsl:variable>

But, there is nothing to say that the output from <xsl:copy/> should not be
escaped, nomatter what it is:

  <out><xsl:copy-of select="$foo"/></out>