Changeset 5128
- Timestamp:
- 08/10/08 16:24:08 (5 months ago)
- Files:
-
- trunk/tg/render.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tg/render.py
r5125 r5128 1 from pylons import app_globals, config, session, tmpl_context1 from pylons import app_globals, config, helpers, session, tmpl_context, request, response 2 2 import pylons.templating as templating 3 3 import tg … … 120 120 121 121 root_vars = Bunch( 122 c= pylons.tmpl_context,123 tmpl_context = pylons.tmpl_context,124 response = pylons.response,125 request = pylons.request,126 helpers= pylons.helpers,127 h= pylons.helpers,122 c=tmpl_context, 123 tmpl_context = tmpl_context, 124 response = response, 125 request = request, 126 helpers=helpers, 127 h=helpers, 128 128 tg=tg_vars 129 129 )