RE: [xsl] Upper ASCII chars

Subject: RE: [xsl] Upper ASCII chars
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Tue, 5 Feb 2002 09:14:39 -0000
> I'm having trouble getting upper ASCII chars to output the
> way I need them
> to.

Oh dear: "upper ASCII". There's no such thing. ASCII stops at 0x7F. A good
first rule in understanding character coding issues is to get your
terminology straight!

  (I've pared down my examples below to just the relevant
> info.)  The
> XML data looks like the following :
>
>    <param
> name="input1">&#163;&#169;&#174;&#196;&#203;&#211;&#225;&#246;
> &#255;.DTD</param>
>
> I output two versions of this data to two different files.
...
> The second file is an HTML page...
>
> I get the following in the file:
>
>    <param name="input1"
> value="&pound;&copy;&reg;&Auml;&Euml;&Oacute;&aacute;&ouml;&yu
> ml;.DTD">
>
> What I want, though, is:
>
>    <param name="input1" value="£©®ÄËÓáöÿ.DTD">
>
> Is there a way to achieve this?
>
Not in standard XSLT. The two HTML files are equivalent, they result in the
same output from the browser, so you aren't supposed to care which is
produced.

Nevertheless, many people do care, so some processors give you a way of
controlling it. Saxon has an attribute saxon:character-representation, and I
think Xalan has some kind of configuration file.

Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx


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


Current Thread