From 16359a0f6cef98adf4da1dcd4a402fbdb6751e5d Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 23 Apr 2008 14:19:00 -0400 Subject: Apply unicode changes to webui also --- scripts/index.py | 4 ++-- scripts/services.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/index.py b/scripts/index.py index 281e36e..8d10129 100755 --- a/scripts/index.py +++ b/scripts/index.py @@ -122,8 +122,8 @@ def handler(req): content = func( "Invalid Mode: \"%s\"" % mode ) # apache.log_error("%s:%s ... %s" % (my_user, my_uri, str(form))) - req.content_type = "text/html" - req.write(content) + req.content_type = "text/html;charset=utf-8" + req.write(unicode(content).encode('utf-8')) return apache.OK diff --git a/scripts/services.py b/scripts/services.py index 2486a4a..b41d6a0 100755 --- a/scripts/services.py +++ b/scripts/services.py @@ -61,8 +61,8 @@ def handler(req): # apache.log_error("%s:%s ... %s" % (my_user, my_uri, str(form))) req.content_type = "text/plain;charset=utf-8" - content = unicode(content) - req.write(content.encode('utf-8')) + content = unicode(content).encode('utf-8') + req.write(content) return apache.OK -- cgit