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 [EMAIL PROTECTED]  2001-11-01 07:04 -------
I checked the XSLT 1.0 spec to see if the copy-of should be escaped. 
You are right that it doesn't force that conclusion. Doesn't really 
say either way. I modified the test a bit to compare the output 
from value-of with output escaping disabled vs copy-of. Interestingly,
they all agree on both and XSLTC is inconsistent. I feel if the user
has assigned a value to variable that is not escaped, he/she would want 
it to be passed through by copy-of as the other processors do.

Running saxon on temp
<?xml version="1.0" encoding="utf-8"?>
value-of    <P>&nbsp;</P><out>
copy-of    <P>&nbsp;</P></out>

Running xt on temp
<?xml version="1.0" encoding="utf-8"?>

value-of    <P>&nbsp;</P><out>
copy-of    <P>&nbsp;</P></out>

Running xalan on temp
<?xml version="1.0" encoding="UTF-8"?>

value-of    <P>&nbsp;</P><out>
copy-of    <P>&nbsp;</P></out>


Running XSLTC with Xerces Parser on temp
<?xml version="1.0" encoding="UTF-8" ?>

value-of    <P>&nbsp;</P><out>
copy-of    &lt;P&gt;&amp;nbsp;&lt;/P&gt;</out>

Reply via email to