xsl-list
[Top] [All Lists]

Re: [xsl] disable-output-encoding with xsl:copy

2007-04-30 15:44:29

I am using Saxon 6.5.5 with XSLT version 1.1.
beware there never will be an XSLT 1.1, there was an early working draft
but it was killed off to focus (eventually) on XSLT2. So to write
standard conforming code you ought to move down to 1.0 or up to 2.0.

 These seem to be getting encoded(decoded?) during the transformation.
character references are replaced by the referenced character by the XML
parser before XSLt sees the input, you can't change this from XSLT as
it's happened before XSLt starts (and mandated by the XML spec)

XSLt can not tell how the character was input, but if you want to ensure
taht non ascii characters are output using references, use an output
encoding taht does not contain the characters, such as 
<xsl:output encoding="US-ASCII"/>

disable-output-escaping="yes"/>
Don't use d-o-e ever is a good rule!

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>