Mercurial > public > src > rhodecode
annotate pylons_app/config/middleware.py @ 203:be6d8aaddbd1
dirty fix for https working.
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Sat, 22 May 2010 22:40:12 +0200 |
parents | 93bd77e1f3c1 |
children | a8ea3ce3cdc4 |
rev | line source |
---|---|
0 | 1 """Pylons middleware initialization""" |
43 | 2 from beaker.middleware import SessionMiddleware |
0 | 3 from paste.cascade import Cascade |
4 from paste.registry import RegistryManager | |
5 from paste.urlparser import StaticURLParser | |
6 from paste.deploy.converters import asbool | |
7 from pylons.middleware import ErrorHandler, StatusCodeRedirect | |
8 from pylons.wsgiapp import PylonsApp | |
9 from routes.middleware import RoutesMiddleware | |
101
8b06c420491d
statics moved to pylons.
Marcin Kuzminski <marcin@python-works.com>
parents:
86
diff
changeset
|
10 from pylons_app.lib.simplehg import SimpleHg |
0 | 11 from pylons_app.config.environment import load_environment |
12 | 12 |
43 | 13 def make_app(global_conf, full_stack=True, static_files=True, **app_conf): |
0 | 14 """Create a Pylons WSGI application and return it |
15 | |
16 ``global_conf`` | |
17 The inherited configuration for this application. Normally from | |
18 the [DEFAULT] section of the Paste ini file. | |
19 | |
20 ``full_stack`` | |
12 | 21 Whether or not this application provides a full WSGI stack (by |
22 default, meaning it handles its own exceptions and errors). | |
23 Disable full_stack when this application is "managed" by | |
24 another WSGI middleware. | |
0 | 25 |
26 ``app_conf`` | |
27 The application's local configuration. Normally specified in | |
28 the [app:<name>] section of the Paste ini file (where <name> | |
29 defaults to main). | |
30 | |
31 """ | |
32 # Configure the Pylons environment | |
43 | 33 config = load_environment(global_conf, app_conf) |
34 | |
0 | 35 |
36 # The Pylons WSGI app | |
43 | 37 app = PylonsApp(config=config) |
0 | 38 |
101
8b06c420491d
statics moved to pylons.
Marcin Kuzminski <marcin@python-works.com>
parents:
86
diff
changeset
|
39 |
0 | 40 # Routing/Session/Cache Middleware |
41 app = RoutesMiddleware(app, config['routes.map']) | |
21 | 42 app = SessionMiddleware(app, config) |
101
8b06c420491d
statics moved to pylons.
Marcin Kuzminski <marcin@python-works.com>
parents:
86
diff
changeset
|
43 |
8b06c420491d
statics moved to pylons.
Marcin Kuzminski <marcin@python-works.com>
parents:
86
diff
changeset
|
44 # CUSTOM MIDDLEWARE HERE (filtered by error handling middlewares) |
8b06c420491d
statics moved to pylons.
Marcin Kuzminski <marcin@python-works.com>
parents:
86
diff
changeset
|
45 app = SimpleHg(app, config) |
41
71ffa932799d
Added app basic auth.
Marcin Kuzminski <marcin@python-blog.com>
parents:
31
diff
changeset
|
46 |
0 | 47 if asbool(full_stack): |
48 # Handle Python exceptions | |
49 app = ErrorHandler(app, global_conf, **config['pylons.errorware']) | |
50 | |
51 # Display error documents for 401, 403, 404 status codes (and | |
52 # 500 when debug is disabled) | |
53 if asbool(config['debug']): | |
86
e47d1db5ef20
Added few options to configs,
Marcin Kuzminski <marcin@python-blog.com>
parents:
49
diff
changeset
|
54 app = StatusCodeRedirect(app) |
0 | 55 else: |
86
e47d1db5ef20
Added few options to configs,
Marcin Kuzminski <marcin@python-blog.com>
parents:
49
diff
changeset
|
56 app = StatusCodeRedirect(app, [400, 401, 403, 404, 500]) |
41
71ffa932799d
Added app basic auth.
Marcin Kuzminski <marcin@python-blog.com>
parents:
31
diff
changeset
|
57 |
0 | 58 # Establish the Registry for this application |
59 app = RegistryManager(app) | |
60 | |
43 | 61 if asbool(static_files): |
62 # Serve static files | |
63 static_app = StaticURLParser(config['pylons.paths']['static_files']) | |
64 app = Cascade([static_app, app]) | |
65 | |
66 app.config = config | |
67 | |
12 | 68 return app |
0 | 69 |