[Zope] Diacriticals in ZMI

Jaroslav Lukesh lsh@wo.cz
Thu, 19 Sep 2002 06:20:38 +0200


| Odes=EDlatel: Charlie Reiman <creiman@kefta.com>
| If I had to guess, I'd say Zope is claiming to be UTF-8 but not handlin=
g
| user supplied data (properties) correctly. They just get spat out as-is=
,
| which in this case is ISO 8859. This makes sense since I don't think Zo=
pe
| has any way of knowing if the user properties are UTF or ISO 8859 or
what.
|=20
| It turns out I can use &blah; style encoding in titles and that seems t=
o
be
| okay with Moz and IE6. The only problem is they display in the ZMI as
| &blah;. This is correct but annoying.

I have same problem with MSIE in czech language. Try to define codepage i=
n
zope system files as suggested by me in my previous reply (look for that!=
).
I need to define windows-1250 codepage (czech lang) like that:

<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows=
-1250">
<meta http-equiv=3D"Content-Language" content=3D"cz">

add these lines to <head> tag.

Regards JL.