コード例 #1
0
    def __init__(self, environ, *args, **kwargs):
        Request.__init__(self, environ)
        WSGIRequest.__init__(self, environ)

        # add path args args to the request
        self.url_args = args or []
        self.url_kwargs = kwargs or {}
コード例 #2
0
ファイル: wrappers.py プロジェクト: MechanisM/dj-webmachine
    def __init__(self, environ, *args, **kwargs):
        Request.__init__(self, environ)
        WSGIRequest.__init__(self, environ)

        # add path args args to the request
        self.url_args = args or []
        self.url_kwargs = kwargs or {}
コード例 #3
0
ファイル: django_adaptor.py プロジェクト: AmesianX/skitai
    def __init__(self, was):
        self.was = was
        WSGIRequest.__init__(self, was.env)

        # making self.session
        DjangoSession.process_request(self)
        # making self.user
        DjangoAuthentication.process_request(self)
コード例 #4
0
ファイル: handler.py プロジェクト: georgemarshall/twod.wsgi
 def __init__(self, environ):
     Request.__init__(self, environ)
     WSGIRequest.__init__(self, environ)
コード例 #5
0
ファイル: handler.py プロジェクト: orientalperil/twod.wsgi
 def __init__(self, environ):
     Request.__init__(self, environ)
     WSGIRequest.__init__(self, environ)