Lines Matching refs:RequestHandler
162 webapp.RequestHandler, webapp2.RequestHandler and "view functions".
174 The webapp2.RequestHandler class remain unchanged and is instantiated with
246 - RequestHandler.redirect and redirect_to now return a response object.
291 - To support returned response, RequestHandler.dispatch() returns the result of
311 - Added a factory method to RequestHandler, to better deal with libraries that
312 use a custom webapp.RequestHandler constructors (like ProtoRPC).
331 - RequestHandler.url_for was renamed to uri_for, with url_for kept
402 - Changed signature of RequestHandler's constructor: it now receives only
412 handlers don't need to be a subclass RequestHandler (but still can).
421 - Moved get_valid_methods() to RequestHandler.get_valid_methods().
482 - Before passing the request method to the RequestHandler, '-' is replaced
502 - webapp2.WSGIapplication can be used with webapp.RequestHandler.
503 - webapp.WSGIapplication can be used with webapp2.RequestHandler.