Commit ca8854ed authored by Amos Latteier's avatar Amos Latteier

Fixed a bug that caused files of type text/html to have thewrong...

Fixed a bug that caused files of type text/html to have thewrong content-length set. Thanks to Adam Karpierz.
parent 26b4e1e9
...@@ -84,8 +84,8 @@ ...@@ -84,8 +84,8 @@
############################################################################## ##############################################################################
'''CGI Response Output formatter '''CGI Response Output formatter
$Id: HTTPResponse.py,v 1.24 1999/11/11 16:45:39 brian Exp $''' $Id: HTTPResponse.py,v 1.25 2000/02/14 18:44:22 amos Exp $'''
__version__='$Revision: 1.24 $'[11:-2] __version__='$Revision: 1.25 $'[11:-2]
import string, types, sys, regex import string, types, sys, regex
from string import find, rfind, lower, upper, strip, split, join, translate from string import find, rfind, lower, upper, strip, split, join, translate
...@@ -331,7 +331,8 @@ class HTTPResponse(BaseResponse): ...@@ -331,7 +331,8 @@ class HTTPResponse(BaseResponse):
if b < 0: if b < 0:
self.body=('%s\t<base href="%s">\n%s' % self.body=('%s\t<base href="%s">\n%s' %
(body[:e],self.base,body[e:])) (body[:e],self.base,body[e:]))
self.setHeader('content-length', len(self.body))
def appendCookie(self, name, value): def appendCookie(self, name, value):
'''\ '''\
Returns an HTTP header that sets a cookie on cookie-enabled Returns an HTTP header that sets a cookie on cookie-enabled
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment