Home | History | Annotate | Download | only in webapp2

Lines Matching refs:webapp

6     Taking Google App Engine's webapp to the next level!
39 # google.appengine.ext.webapp imports webapp2 in the
43 from google.appengine.ext import webapp as _webapp
97 # Set same default messages from webapp plus missing ones.
117 Most extra methods and attributes are ported from webapp. Check the
133 # Attributes from webapp.
298 """Implements methods from ``wsgiref.headers.Headers``, used by webapp."""
341 Most extra methods and attributes are ported from webapp. Check the
344 Differences from webapp.Response:
349 in webapp it is the integer code. The status code as an integer is
356 #: Default charset as in webapp.
367 webapp only: webapp uses `Response.out.write()`, so we point `out` to
374 # webapp uses StringIO as Response.out, so we need to convert anything
466 This is only here for compatibility with ``webapp.WSGIApplication``.
496 Implements most of ``webapp.RequestHandler`` interface.
510 When instantiated by ``webapp.WSGIApplication``, request and response
514 Also in webapp dispatching is done by the WSGI app, while webapp2
520 Parameters are optional only to support webapp's constructor which
828 """A route that is compatible with webapp's routing mechanism.
830 URI building is not implemented as webapp has rudimentar support for it,
831 and this is the most unknown webapp feature anyway.
1069 """An adapter to dispatch a ``webapp.RequestHandler``.
1071 Like in webapp, the handler is constructed, then ``initialize()`` is
1287 ``webapp.RequestHandler`` class. The adapters follow the same router
1297 # Compatible with webapp.RequestHandler.
1460 #: Same as :attr:`app`, for webapp compatibility. See :meth:`set_globals`.
1604 This uses functions provided by ``google.appengine.ext.webapp.util``,
1981 # Defer importing google.appengine.ext.webapp.util until every public symbol
1982 # has been defined since google.appengine.ext.webapp in App Engine Python 2.7
1985 from google.appengine.ext.webapp import util as _webapp_util