Mercurial > public > src > rhodecode
annotate pylons_app/config/middleware.py @ 216:c8162373f214
Cleaned the way based was used to generate submenu for admin, now it's much more clear to use submenu. Cleaned admin and added comment to middleware
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Mon, 24 May 2010 22:20:21 +0200 |
parents | 8bdec09436cb |
children | 183c06406127 |
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 | |
204
a8ea3ce3cdc4
Created middleware package. Crated special middleware to handle https requests redirections.
Marcin Kuzminski <marcin@python-works.com>
parents:
203
diff
changeset
|
10 from pylons_app.lib.middleware.simplehg import SimpleHg |
a8ea3ce3cdc4
Created middleware package. Crated special middleware to handle https requests redirections.
Marcin Kuzminski <marcin@python-works.com>
parents:
203
diff
changeset
|
11 from pylons_app.lib.middleware.https_fixup import HttpsFixup |
0 | 12 from pylons_app.config.environment import load_environment |
12 | 13 |
43 | 14 def make_app(global_conf, full_stack=True, static_files=True, **app_conf): |
0 | 15 """Create a Pylons WSGI application and return it |
16 | |
17 ``global_conf`` | |
18 The inherited configuration for this application. Normally from | |
19 the [DEFAULT] section of the Paste ini file. | |
20 | |
21 ``full_stack`` | |
12 | 22 Whether or not this application provides a full WSGI stack (by |
23 default, meaning it handles its own exceptions and errors). | |
24 Disable full_stack when this application is "managed" by | |
25 another WSGI middleware. | |
0 | 26 |
27 ``app_conf`` | |
28 The application's local configuration. Normally specified in | |
29 the [app:<name>] section of the Paste ini file (where <name> | |
30 defaults to main). | |
31 | |
32 """ | |
33 # Configure the Pylons environment | |
43 | 34 config = load_environment(global_conf, app_conf) |
35 | |
0 | 36 |
37 # The Pylons WSGI app | |
43 | 38 app = PylonsApp(config=config) |
0 | 39 |
101
8b06c420491d
statics moved to pylons.
Marcin Kuzminski <marcin@python-works.com>
parents:
86
diff
changeset
|
40 |
0 | 41 # Routing/Session/Cache Middleware |
42 app = RoutesMiddleware(app, config['routes.map']) | |
21 | 43 app = SessionMiddleware(app, config) |
101
8b06c420491d
statics moved to pylons.
Marcin Kuzminski <marcin@python-works.com>
parents:
86
diff
changeset
|
44 |
204
a8ea3ce3cdc4
Created middleware package. Crated special middleware to handle https requests redirections.
Marcin Kuzminski <marcin@python-works.com>
parents:
203
diff
changeset
|
45 # CUSTOM MIDDLEWARE HERE (filtered by error handling middlewares) |
a8ea3ce3cdc4
Created middleware package. Crated special middleware to handle https requests redirections.
Marcin Kuzminski <marcin@python-works.com>
parents:
203
diff
changeset
|
46 #set the https based on HTTP_X_URL_SCHEME |
207
8bdec09436cb
bumped version to 0.7.1 added atom and rss feeds. Moved https Fixud middleware before error middleware to proper generate debug page (static imports)
Marcin Kuzminski <marcin@python-works.com>
parents:
204
diff
changeset
|
47 |
101
8b06c420491d
statics moved to pylons.
Marcin Kuzminski <marcin@python-works.com>
parents:
86
diff
changeset
|
48 app = SimpleHg(app, config) |
41
71ffa932799d
Added app basic auth.
Marcin Kuzminski <marcin@python-blog.com>
parents:
31
diff
changeset
|
49 |
0 | 50 if asbool(full_stack): |
51 # Handle Python exceptions | |
52 app = ErrorHandler(app, global_conf, **config['pylons.errorware']) | |
53 | |
54 # Display error documents for 401, 403, 404 status codes (and | |
55 # 500 when debug is disabled) | |
56 if asbool(config['debug']): | |
86
e47d1db5ef20
Added few options to configs,
Marcin Kuzminski <marcin@python-blog.com>
parents:
49
diff
changeset
|
57 app = StatusCodeRedirect(app) |
0 | 58 else: |
86
e47d1db5ef20
Added few options to configs,
Marcin Kuzminski <marcin@python-blog.com>
parents:
49
diff
changeset
|
59 app = StatusCodeRedirect(app, [400, 401, 403, 404, 500]) |
41
71ffa932799d
Added app basic auth.
Marcin Kuzminski <marcin@python-blog.com>
parents:
31
diff
changeset
|
60 |
216
c8162373f214
Cleaned the way based was used to generate submenu for admin, now it's much more clear to use submenu. Cleaned admin and added comment to middleware
Marcin Kuzminski <marcin@python-works.com>
parents:
207
diff
changeset
|
61 #enable https redirets based on HTTP_X_URL_SCHEME set by proxy |
207
8bdec09436cb
bumped version to 0.7.1 added atom and rss feeds. Moved https Fixud middleware before error middleware to proper generate debug page (static imports)
Marcin Kuzminski <marcin@python-works.com>
parents:
204
diff
changeset
|
62 app = HttpsFixup(app) |
216
c8162373f214
Cleaned the way based was used to generate submenu for admin, now it's much more clear to use submenu. Cleaned admin and added comment to middleware
Marcin Kuzminski <marcin@python-works.com>
parents:
207
diff
changeset
|
63 |
0 | 64 # Establish the Registry for this application |
65 app = RegistryManager(app) | |
66 | |
43 | 67 if asbool(static_files): |
68 # Serve static files | |
69 static_app = StaticURLParser(config['pylons.paths']['static_files']) | |
70 app = Cascade([static_app, app]) | |
71 | |
72 app.config = config | |
73 | |
12 | 74 return app |
0 | 75 |