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]
Other format: [Raw text]

RE: Upper ASCII chars


> 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@ntlworld.com
work: Michael.Kay@softwareag.com


 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]