X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=wrw%2Fresp.py;h=7fae787f81a92c0f4447c81be0ffcdcc042c2265;hb=refs%2Fheads%2Fpython2;hp=965df6c8c18a76e41e659f92eccf08ef57f4fe30;hpb=03f970ca2c0e9b7f8de42c81df758081bcfd5567;p=wrw.git diff --git a/wrw/resp.py b/wrw/resp.py index 965df6c..7fae787 100644 --- a/wrw/resp.py +++ b/wrw/resp.py @@ -1,5 +1,5 @@ -from . import dispatch, proto, env -from .sp import xhtml +import dispatch, proto, env +from sp import xhtml h = xhtml.cons() __all__ = ["skeleton", "skelfor", "setskel", "usererror"] @@ -28,7 +28,7 @@ def setskel(req, skel): class usererror(dispatch.restart): def __init__(self, message, *detail): - super().__init__() + super(usererror, self).__init__() self.message = message self.detail = detail @@ -36,9 +36,9 @@ class usererror(dispatch.restart): return skelfor(req).error(req, self.message, *self.detail) class message(dispatch.restart): - def __init__(self, message, *detail): - super().__init__() - self.message = message + def __init__(self, msg, *detail): + super(message, self).__init__() + self.message = msg self.detail = detail def handle(self, req): @@ -50,16 +50,16 @@ class httperror(usererror): message = proto.statusinfo[status][0] if detail is None: detail = (proto.statusinfo[status][1],) - super().__init__(message, *detail) + super(httperror, self).__init__(message, *detail) self.status = status def handle(self, req): req.status(self.status, self.message) - return super().handle(req) + return super(httperror, self).handle(req) class notfound(httperror): def __init__(self): - return super().__init__(404) + return super(notfound, self).__init__(404) class redirect(dispatch.restart): bases = {"url": proto.requrl, @@ -67,7 +67,7 @@ class redirect(dispatch.restart): "site": proto.siteurl} def __init__(self, url, status=303, base="url"): - super().__init__() + super(redirect, self).__init__() self.url = url self.status = status self.bases[base]