Changeset 4990
- Timestamp:
- 07/17/08 09:59:24 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
projects/tg.devtools/trunk/devtools/templates/turbogears/+package+/config/middleware.py_tmpl
r4987 r4990 15 15 16 16 17 def make_app(global_conf, full_stack=True, **app_conf):18 19 # Wrapp the app in the Standard TG middleware20 app = make_base_app(global_conf, full_stack=True, **app_conf)21 22 #wrap your app with more middleware (on the outside)23 24 return app25