From b4cf99895c87e19a22a810dd5cac32874e6c7915 Mon Sep 17 00:00:00 2001 From: Stephan Reichholf Date: Thu, 22 Feb 2007 15:57:59 +0000 Subject: [PATCH] * comment last commit as it brings back the "special chars bug" --- webinterface/src/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webinterface/src/plugin.py b/webinterface/src/plugin.py index 58e6695..6a18e0e 100644 --- a/webinterface/src/plugin.py +++ b/webinterface/src/plugin.py @@ -95,8 +95,8 @@ def startWebserver(): webif.renderPage(s, self.path, req, sessions[0]) # login? if self.path.split("/")[-1] in AppTextHeaderFiles: return http.Response(responsecode.OK,{'Content-type': http_headers.MimeType('application', 'text', (('charset', 'UTF-8'),))},stream=s) - elif self.path.split("/")[-1] in TextHtmlHeaderFiles: - return http.Response(responsecode.OK,{'Content-type': http_headers.MimeType('text', 'html', (('charset', 'UTF-8'),))},stream=s) +# elif self.path.split("/")[-1] in TextHtmlHeaderFiles: +# return http.Response(responsecode.OK,{'Content-type': http_headers.MimeType('text', 'html', (('charset', 'UTF-8'),))},stream=s) elif self.path.split("/")[-1] in NoExplicitHeaderFiles: return http.Response(responsecode.OK,stream=s) else: -- 2.7.4