blob: b0b769b02d4e0975de4d2b20761e01b45d9209bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
from zope.interface import Interface
class IWSGIApplicationFactory(Interface):
def __call__(context):
""" Return a WSGI (PEP333) application """
class IRootPolicy(Interface):
def __call__(environ):
""" Return a root object """
class ITraversalPolicy(Interface):
def __call__(environ, root):
""" Return a tuple in the form (context, name, subpath) """
class ISecurityPolicy(Interface):
def __call__(environ, context, name):
""" Return a WSGI app on unauthorized or None to signify that
the request is allowed to continue """
class ITraverser(Interface):
def __init__(context):
""" Accept a context """
def __call__(environ, name):
""" Return a subcontext or based on name """
class IWebObRequest(Interface):
""" Marker interface for a webob.Request object """
|