[Zope] Umlauts in Structured Documents

Dieter Maurer dieter@handshake.de
Tue, 8 Apr 2003 20:49:15 +0200


Stephan Goeldi wrote at 2003-4-8 16:20 +0200:
 > I have some trouble with Stuctured Documents (Version 1.0) and umlauts.
 > Umlauts are changed to some unreadable text (2 characters) after some
 > time. When I use HTML-Umlauts, it works to view, but the ZCatalog
 > doesn't anymore find documents when a user doesn't soerch for the
 > HTML-Umlauts.
 > 
 > Is there a solution?

Seems, your Umlaute have been converted to UTF-8.

Your problem may disappear when you set

     sys.setdefaultencoding('iso-8859-1')

in your "sitecustimize.py" (you may need to create this file).


Dieter