Oh, I see, you use disable-output-escaping="yes". That's why Xalan doesn't escape 237 into í when outputting. Why do you need it anyway? In any case, output is right though.
thanks -----Original Message----- From: Voytenko, Dimitry [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 30, 2002 20:08 To: '[EMAIL PROTECTED]' Subject: RE: value-of with disable-output-escaping="yes" Hi, With these settings you should have gotten two bytes as a result of the output of í in the UTF-8 encoding. This escape has unicode code 00ED, which is translated into bytes C3 and AD in the UTF-8. So this is normal and correct byte sequence for the symbol you want to output. I believe that all clients should be able to read it correctly. But I can't say why Xalan doesn't output escape í for the HTML output method in this case. I can see it defined in the HTMLEntities.res file. Thanks, Dmitry -----Original Message----- From: Foxy Shadis [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 30, 2002 19:45 To: [EMAIL PROTECTED] Subject: RE: value-of with disable-output-escaping="yes" Right. <xsl:output method="html" indent="no" doctype-public="-//W3C//DTD HTML 4.01 Strict//EN" encoding="UTF-8"/> and the stylesheet includes: <!DOCTYPE xsl:stylesheet SYSTEM "html.ent"> which is a big list that defines every html entity plus a few, and which normally works fine. Reply-To: [EMAIL PROTECTED] > >Hi Foxy, > >Could you supply xsl:output information as it looks for you stylesheet? >It'd >be hard to say anything w/o seeing it. > >Thanks, >Dmitry > >-----Original Message----- >From: Foxy Shadis [mailto:[EMAIL PROTECTED]] >Sent: Saturday, November 30, 2002 18:55 >To: [EMAIL PROTECTED] >Subject: xsl:value-of with disable-output-escaping="yes" > > > ><xsl:value-of disable-output-escaping="yes" select="'Kiernan, >Caitlín > >R.'"/> > >results in > >Kiernan, CaitlAn R. (including a strange unicode problem) >rather than >Kiernan, Caitli-n R. > >with fairly recent CVS. If it takes more than this to duplicate, I'll >supply > >all. > >Foxy > >Swiftpaw Foxyshadis, wildlife artist >[EMAIL PROTECTED] | http://foxyshadis.slightlydark.com/ _________________________________________________________________ The new MSN 8: advanced junk mail protection and 2 months FREE* http://join.msn.com/?page=features/junkmail
