/external/chromium-trace/trace-viewer/third_party/Paste/tests/ |
test_gzipper.py | 2 from paste.gzipper import middleware namespace 10 wsgi_app = middleware(simple_app)
|
test_recursive.py | 17 class Middleware(object): 47 class TestForwardRequestMiddleware(Middleware): 55 class TestForwardRequestMiddleware(Middleware): 67 class TestForwardRequestMiddleware(Middleware): 100 class TestForwardRequestExceptionMiddleware(Middleware):
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/ |
__init__.py | 6 from paste.evalexception.middleware import EvalException
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/ |
multi.py | 9 depends upon the environment and is not "fixed". This middleware allows 23 >>> multi.add_method('digest', digest.middleware, "Test Realm", authfunc) 28 >>> multi.add_method('form', form.middleware, authfunc) 30 >>> serve(cookie.middleware(multi)) 39 This middleware provides two othogonal facilities: 47 invoked directly without middleware 72 middleware = MultiHandler variable
|
__init__.py | 6 The objective of this package is to provide single-focused middleware
|
cas.py | 17 passed to the system so that it can be used as middleware at any stage 33 middleware to implement CAS 1.0 authentication 38 then this middleware is a no-op, and the request is passed along 89 middleware = AuthCASHandler variable
|
form.py | 9 and password. This middleware component requires that an authorization 49 HTML-based login middleware 64 middleware is simply pass-through. 78 to ensure that this middleware component does not alter 120 middleware = AuthFormHandler variable
|
basic.py | 57 HTTP/1.0 ``Basic`` authentication middleware 66 middleware is simply pass-through. 97 middleware = AuthBasicHandler variable
|
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/ |
dec.py | 75 Also see :func:`wsgify.middleware` for a way to make middleware. 219 def middleware(cls, middle_func=None, app=None, **kw): member in class:wsgify 220 """Creates middleware 224 @wsgify.middleware 236 Or if you want to write output-rewriting middleware:: 238 @wsgify.middleware 251 creates "middleware" that can be bound to an application, along with 263 """A `wsgify.middleware` invocation that has not yet wrapped a 264 middleware function; the intermediate object when you d [all...] |
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
gzipper.py | 8 WSGI middleware 21 class middleware(object): class in inherits:object 29 # nothing for us to do, so this middleware will 97 return middleware(application) 102 Wrap the middleware, so that it applies gzipping to a response 107 return middleware(app, compress_level=compress_level)
|
errordocument.py | 5 Middleware to display error documents for certain status codes 7 The middleware in this module can be used to intercept responses with 28 The WSGI application or middleware chain. 36 ``forward`` middleware to catch all 404 status codes and display the page 103 Middleware that lets you test a response against a custom mapper object to 107 If you don't need the full power of this middleware you might choose to use 108 the simpler ``forward`` middleware instead. 113 The WSGI application or middleware chain. 178 'StatusBasedForward middleware ' 307 '_StatusBasedRedirect middleware ' [all...] |
flup_session.py | 21 import flup.middleware.session namespace 22 flup_session = flup.middleware.session 101 Wraps the application in a session-managing middleware.
|
/external/chromium-trace/trace-viewer/third_party/Paste/docs/modules/ |
gzipper.txt | 9 .. autoclass:: middleware
|
lint.txt | 9 .. autofunction:: middleware
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
__init__.py | 22 * router -- a simple middleware component that handles URL traversal
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
__init__.py | 22 * router -- a simple middleware component that handles URL traversal
|
/hardware/intel/img/psb_headers/DRM/cc54/inc/ |
drm_error.h | 25 /*! DRM middleware and firmware errors */ 57 /*! Middleware specific errors */
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/ |
comment-example.txt | 9 This is an example of how to write WSGI middleware with WebOb. The 11 page served through the middleware that is HTML gets a comment form 22 Instantiating Middleware 25 Middleware of any complexity at all is usually best created as a 28 Every middleware needs an application (``app``) that it wraps. This 29 middleware also needs a location to store the comments; we'll put them 43 When you use this middleware, you'll use it like: 93 The Middleware 96 While we've created the class structure for the middleware, it doesn't 98 middleware (using WebOb) [all...] |
/external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/ |
wdg_validate.py | 4 Middleware that tests the validity of all generated HTML using the 19 Middleware that checks HTML and appends messages about the validity of 32 middleware.append('paste.wdg_validate.WDGValidateMiddleware') 83 "This middleware requires the subprocess module from "
|
/external/chromium-trace/trace-viewer/third_party/Paste/ |
README.rst | 1 Paste provides several pieces of "middleware" (or filters) that can be nested 2 to build web applications. Each piece of middleware uses the WSGI (`PEP 333`_) 3 interface, and should be compatible with other middleware based on those
|
PKG-INFO | 9 Description: Paste provides several pieces of "middleware" (or filters) that can be nested 10 to build web applications. Each piece of middleware uses the WSGI (`PEP 333`_) 11 interface, and should be compatible with other middleware based on those 131 Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
|
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/ |
test_error_middleware.py | 11 app = lint.middleware(app) 102 res = do_request(lint.middleware(iter_app), 200)
|
/external/chromium-trace/trace-viewer/third_party/Paste/Paste.egg-info/ |
PKG-INFO | 9 Description: Paste provides several pieces of "middleware" (or filters) that can be nested 10 to build web applications. Each piece of middleware uses the WSGI (`PEP 333`_) 11 interface, and should be compatible with other middleware based on those 131 Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
|
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_auth/ |
test_auth_cookie.py | 20 return cookie.middleware(setter,*args,**kwargs)
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/ |
errormiddleware.py | 5 Error handler middleware 26 Error handling middleware 64 middleware is disabled. This can be useful in a testing situation 68 When this middleware encounters an exception listed in this 71 caught. This should generally be set by middleware that may 72 (but probably shouldn't be) installed above this middleware, 279 def __init__(self, middleware, environ): 280 self.middleware = middleware 305 wsgi_vars['application'] = self.middleware.applicatio [all...] |