| OdesÃlatel: Charlie Reiman <creiman@kefta.com> | If I had to guess, I'd say Zope is claiming to be UTF-8 but not handling | 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 Zope | has any way of knowing if the user properties are UTF or ISO 8859 or what. | | It turns out I can use &blah; style encoding in titles and that seems to 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 in 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="Content-Type" content="text/html; charset=windows-1250"> <meta http-equiv="Content-Language" content="cz"> add these lines to <head> tag. Regards JL.