Displaying 3 results from an estimated 3 matches for "start_response".
2012 Mar 22
0
problems configuring cluster to lucci and virtual machines resource
...ster/machines/services_cmd?command=Edit
File '/usr/lib/python2.6/site-packages/weberror/errormiddleware.py', line
162 in __call__
app_iter = self.application(environ, sr_checker)
File '/usr/lib/python2.6/site-packages/tg/configuration.py', line 655 in
wrapper
return app(environ, start_response)
File '/usr/lib/python2.6/site-packages/tg/configuration.py', line 555 in
remover
return app(environ, start_response)
File '/usr/lib/python2.6/site-packages/repoze/tm/__init__.py', line 19 in
__call__
result = self.application(environ, save_status_and_headers)
File '/usr/lib...
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...aseController(TGController):
+ """
+ Base class for the controllers in the application.
+
+ Your web application should have one of these. The root of
+ your application is used to compute URLs used by your app.
+
+ """
+
+ def __call__(self, environ, start_response):
+ """Invoke the Controller"""
+ # TGController.__call__ dispatches to the Controller method
+ # the request is routed to. This routing information is
+ # available in environ['pylons.routes_dict']
+
+ return TGController.__c...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...aseController(TGController):
- """
- Base class for the controllers in the application.
-
- Your web application should have one of these. The root of
- your application is used to compute URLs used by your app.
-
- """
-
- def __call__(self, environ, start_response):
- """Invoke the Controller"""
- # TGController.__call__ dispatches to the Controller method
- # the request is routed to. This routing information is
- # available in environ['pylons.routes_dict']
-
- return TGController.__c...