Ejemplo n.º 1
0
 def __init__(self, *a, **k):
     BaseView.__init__(self, *a, **k)
     # turning off before and after calls
     self._before_calls = {}
     self._after_calls = {}
Ejemplo n.º 2
0
 def __init__(self):
     BaseView.__init__(self, res, req)
Ejemplo n.º 3
0
 def __init__(self, context, request):
     BaseView.__init__(self, context, request)
     self._json_params = {}
     self.context = 'foo'
     self.request = Mock(action='index')
Ejemplo n.º 4
0
 def __init__(self, context, request):
     BaseView.__init__(self, context, request)
Ejemplo n.º 5
0
 def __init__(self, context, request):
     BaseView.__init__(self, context, request)
     self._json_params = {}
     self.context = 'foo'
     self.request = Mock(action='index')
Ejemplo n.º 6
0
 def __init__(self, *a, **k):
     BaseView.__init__(self, *a, **k)
     # turning off before and after calls
     self._before_calls = {}
     self._after_calls = {}
Ejemplo n.º 7
0
 def __init__(self):
     BaseView.__init__(self, res, req)
Ejemplo n.º 8
0
 def __init__(self, context, request):
     BaseView.__init__(self, context, request)