Searched refs:WSGIApplication (Results 1 – 25 of 35) sorted by relevance
12
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/ |
D | extras_jinja2_test.py | 16 app = webapp2.WSGIApplication(config={ 38 app = webapp2.WSGIApplication(config={ 54 app = webapp2.WSGIApplication(config={ 70 app = webapp2.WSGIApplication(config={ 80 app = webapp2.WSGIApplication() 88 app = webapp2.WSGIApplication()
|
D | extras_auth_test.py | 25 app = webapp2.WSGIApplication(config={ 101 app = webapp2.WSGIApplication(config={ 142 app = webapp2.WSGIApplication() 159 app = webapp2.WSGIApplication() 207 app = webapp2.WSGIApplication() 219 app = webapp2.WSGIApplication() 228 app = webapp2.WSGIApplication() 240 app = webapp2.WSGIApplication() 286 app = webapp2.WSGIApplication(config={
|
D | extras_mako_test.py | 15 app = webapp2.WSGIApplication(config={ 29 app = webapp2.WSGIApplication() 37 app = webapp2.WSGIApplication()
|
D | extras_sessions_test.py | 7 app = webapp2.WSGIApplication(config={ 18 app = webapp2.WSGIApplication() 24 app = webapp2.WSGIApplication() 177 app = webapp2.WSGIApplication(config={ 193 app = webapp2.WSGIApplication(config={
|
D | response_test.py | 254 app = webapp2.WSGIApplication([ 267 app = webapp2.WSGIApplication([ 286 app = webapp2.WSGIApplication([ 306 app = webapp2.WSGIApplication([ 321 app = webapp2.WSGIApplication([
|
D | handler_test.py | 130 app = webapp2.WSGIApplication([ 215 app = webapp2.WSGIApplication([ 499 app = webapp2.WSGIApplication([ 516 app = webapp2.WSGIApplication([ 543 app = webapp2.WSGIApplication([ 585 app = webapp2.WSGIApplication([ 601 app = webapp2.WSGIApplication([ 649 app = webapp2.WSGIApplication([ 667 app = webapp2.WSGIApplication([
|
D | extras_i18n_test.py | 20 app = webapp2.WSGIApplication() 345 app = webapp2.WSGIApplication() 357 app = webapp2.WSGIApplication() 366 app = webapp2.WSGIApplication() 380 app = webapp2.WSGIApplication()
|
D | webapp1_test.py | 14 app = webapp.WSGIApplication([ 35 app2 = webapp2.WSGIApplication([
|
D | extras_local_app_test.py | 13 app = local_app.WSGIApplication([('/', hello_handler)])
|
D | misc_test.py | 106 app = webapp2.WSGIApplication() 116 app = webapp2.WSGIApplication([
|
D | extras_appengine_users_test.py | 36 app = webapp2.WSGIApplication([
|
D | extras_appengine_sessions_memcache_test.py | 9 app = webapp2.WSGIApplication(config={
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/guide/ |
D | app.rst | 24 The :class:`webapp2.WSGIApplication` class is initialized with three optional 48 app = webapp2.WSGIApplication(routes=routes, debug=True, config=config) 57 :attr:`webapp2.WSGIApplication.router` attribute. 68 to the ``WSGIApplication``. 76 app = webapp2.WSGIApplication() 95 then accessible through the :attr:`webapp2.WSGIApplication.config` attribute. 104 app = webapp2.WSGIApplication(routes=[ 123 are shared between requests: it is the :attr:`webapp2.WSGIApplication.registry` 157 to register error handlers as the :attr:`webapp2.WSGIApplication.error_handlers` 176 app = webapp2.WSGIApplication([ [all …]
|
D | handlers.rst | 27 app = webapp2.WSGIApplication([ 98 app = webapp2.WSGIApplication([ 170 app = webapp2.WSGIApplication([ 196 class WSGIApplication(webapp2.WSGIApplication): 198 super(WSGIApplication, self).__init__(*args, **kwargs) 223 app = micro_webapp2.WSGIApplication()
|
D | routing.rst | 7 the :class:`WSGIApplication` defining a list of `routes`: each `route` 41 app = webapp2.WSGIApplication([ 91 app = webapp2.WSGIApplication([ 160 app = webapp2.WSGIApplication([ 229 app = webapp2.WSGIApplication([ 296 app = WSGIApplication([ 307 app = WSGIApplication([ 345 app = webapp2.WSGIApplication([
|
D | exceptions.rst | 78 :attr:`webapp2.WSGIApplication.error_handlers`. This is a dictionary that 100 app = webapp2.WSGIApplication([
|
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/ |
D | local_app.py | 24 WSGIApplication = webapp2.WSGIApplication variable
|
/external/chromium-trace/trace-viewer/third_party/webapp2/ |
D | CHANGES | 57 - Fixed a bug in WSGIApplication.run() when running outside of App Engine: 115 - Deprecated webapp2_extras.local_app. WSGIApplication is now thread-safe 117 webapp2_extras.local_app.WSGIApplication can still be imported, but it is 118 just an alias to webapp2.WSGIApplication (and a deprecation warning is 155 - Added WSGIApplication.clear_globals(). Instead of 275 - Added webap2_extras.local_app, with the WSGIApplication previously in 287 - WSGIApplication.__call__ checks if the dispatcher didn't return None to 300 - Added WSGIApplication.get_response(), a convenience for unit tests. 305 - Handlers registered in WSGIApplication.error_handlers can now also be a 330 - Removed WSGIApplication.url_for(), to_unicode(), to_utf8(). [all …]
|
D | webapp2.py | 541 self.app = WSGIApplication.active_instance 1428 class WSGIApplication(object): class 1502 WSGIApplication.app = WSGIApplication.active_instance = app 1503 WSGIApplication.request = request 1510 WSGIApplication.app = WSGIApplication.active_instance = None 1511 WSGIApplication.request = None 1708 assert WSGIApplication.app is not None, _get_app_error 1710 return WSGIApplication.app 1722 assert WSGIApplication.request is not None, _get_request_error 1724 return WSGIApplication.request [all …]
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/api/webapp2_extras/ |
D | local_app.rst | 8 This module is deprecated. The :class:`webapp2.WSGIApplication` class is now 11 .. autoclass:: WSGIApplication
|
D | config.rst | 5 This module is deprecated. :class:`webapp2.WSGIApplication` now has a simple 7 :class:`webapp2.WSGIApplication.config`. See also :class:`webapp2.Config`.
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/ |
D | features.rst | 24 app = webapp.WSGIApplication([ 88 app = webapp2.WSGIApplication([ 98 app = webapp2.WSGIApplication([ 114 app = webapp2.WSGIApplication([ 128 app = webapp2.WSGIApplication([ 144 app = webapp2.WSGIApplication([ 161 app = webapp2.WSGIApplication([ 175 app = webapp2.WSGIApplication([ 182 The ``WSGIApplication`` in webapp is hard to modify. It dispatches the 236 app = webapp2.WSGIApplication([
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/tutorials/gettingstarted/ |
D | usingwebapp2.rst | 34 - A ``WSGIApplication`` instance that routes incoming requests to handlers 36 - A main routine that runs the ``WSGIApplication`` using a CGI adaptor. 48 application = webapp2.WSGIApplication([ 81 The application itself is represented by a ``webapp2.WSGIApplication``
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/api/ |
D | webapp2.rst | 9 - :class:`WSGIApplication` 51 .. autoclass:: WSGIApplication
|
/external/chromium-trace/trace-viewer/perf_insights/perf_insights/ |
D | upload.py | 58 app = webapp2.WSGIApplication([('/upload', UploadPage)])
|
12