X-Git-Url: http://dolda2000.com/gitweb/?p=wrw.git;a=blobdiff_plain;f=wrw%2Fproto.py;h=d2762d5194f71f602ef60bd2bd6e6f2541f58589;hp=6b433961915082fa5d8e0668c6ec35ca266cf00f;hb=eed3cf12fd2fc59252cbed23aff8f1930a658773;hpb=48d3b07a5a72f32d44c36ffba567227ae3bf2401 diff --git a/wrw/proto.py b/wrw/proto.py index 6b43396..d2762d5 100644 --- a/wrw/proto.py +++ b/wrw/proto.py @@ -17,6 +17,55 @@ def phttpdate(dstr): tz = (((tz / 100) * 60) + (tz % 100)) * 60 return time.mktime(time.strptime(dstr, "%a, %d %b %Y %H:%M:%S")) - tz - time.altzone +def pmimehead(hstr): + def pws(p): + while p < len(hstr) and hstr[p].isspace(): + p += 1 + return p + def token(p, sep): + buf = "" + p = pws(p) + if p >= len(hstr): + return "", p + if hstr[p] == '"': + p += 1 + while p < len(hstr): + if hstr[p] == '\\': + p += 1 + if p < len(hstr): + buf += hstr[p] + p += 1 + else: + break + elif hstr[p] == '"': + p += 1 + break + else: + buf += hstr[p] + p += 1 + return buf, pws(p) + else: + while p < len(hstr): + if hstr[p] in sep: + break + buf += hstr[p] + p += 1 + return buf.strip(), pws(p) + p = 0 + val, p = token(p, ";") + pars = {} + while p < len(hstr): + if hstr[p] != ';': + break + p += 1 + k, p = token(p, "=") + if k == "" or hstr[p:p + 1] != '=': + break + p += 1 + v, p = token(p, ';') + pars[k] = v + return val, pars + def htmlq(html): ret = "" for c in html: