|
a/Allura/allura/lib/base.py |
|
b/Allura/allura/lib/base.py |
|
... |
|
... |
13 |
|
13 |
|
14 |
from ming.orm.middleware import MingMiddleware
|
14 |
from ming.orm.middleware import MingMiddleware
|
15 |
|
15 |
|
16 |
from allura.lib.custom_middleware import ForgeMiddleware
|
16 |
from allura.lib.custom_middleware import ForgeMiddleware
|
17 |
|
17 |
|
18 |
__all__ = ['BaseController']
|
18 |
__all__ = ['WsgiDispatchController']
|
19 |
|
19 |
|
20 |
class BaseController(TGController):
|
20 |
class WsgiDispatchController(TGController):
|
21 |
"""
|
21 |
"""
|
22 |
Base class for the controllers in the application.
|
22 |
Base class for the controllers in the application.
|
23 |
|
23 |
|
24 |
Your web application should have one of these. The root of
|
24 |
Your web application should have one of these. The root of
|
25 |
your application is used to compute URLs used by your app.
|
25 |
your application is used to compute URLs used by your app.
|