This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: XML -> XML preserving CDATA



> Should pass the transformation untouched and shoud not result in
> 
> <foo>Chic&Apart</foo>
> <bar>99 < 100</bar>

If your XSLT system writes out that, it is broken, however if it writes
out

<foo>Chic&amp;Apart</foo>
<bar>99 &lt; 100</bar>

then it is doing the right thing. CDATA sections are not part of the
XPath data model. a CDATA marked section is _always_ equivalent to
the unmarked section in which all < and & are replaced by &lt; and
&amp;.

The XSLT system does not have any information about which input form was
used, so can not preserve this, it may use either form on output.

(This is a FAQ)

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]