X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=wrw%2Fproto.py;h=3dcf0d7a31d4c4ae8ab26c90a4db68c4df193427;hb=0d4c1b8b8da9e20c4bc9fb41ff1136283821b98e;hp=0e49379e391fb5e59a9f865f6a4a6078f92b6434;hpb=199cdc4055921d7497e5a6b9a132ac44d04e9894;p=wrw.git diff --git a/wrw/proto.py b/wrw/proto.py index 0e49379..3dcf0d7 100644 --- a/wrw/proto.py +++ b/wrw/proto.py @@ -1,4 +1,4 @@ -import time +import time, calendar statusinfo = { 400: ("Bad Request", "Invalid HTTP request."), @@ -21,7 +21,7 @@ def phttpdate(dstr): return None tz = int(tz[1:]) tz = (((tz / 100) * 60) + (tz % 100)) * 60 - return time.mktime(time.strptime(dstr, "%a, %d %b %Y %H:%M:%S")) - tz - time.altzone + return calendar.timegm(time.strptime(dstr, "%a, %d %b %Y %H:%M:%S")) - tz def pmimehead(hstr): def pws(p): @@ -98,7 +98,6 @@ def simpleerror(env, startreq, code, title, msg): """ % (title, title, htmlq(msg)) - buf = buf.encode("us-ascii") startreq("%i %s" % (code, title), [("Content-Type", "text/html"), ("Content-Length", str(len(buf)))]) return [buf]