Changeset 2913
- Timestamp:
- 04/22/07 06:57:37 (2 years ago)
- Files:
-
- trunk/CHANGELOG.txt (modified) (1 diff)
- trunk/turbogears/view/base.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/CHANGELOG.txt
r2910 r2913 23 23 *Changes* 24 24 25 * ``cherrypy.request`` is now available at the variables sent to every template. 26 #1362 by Christoph Zwerschke. 25 27 * SA transaction object is now stored at ``cherrypy.request.sa_transaction`` so it 26 28 can be accessed from the controllers. Patch at #1359 by Janzert. trunk/turbogears/view/base.py
r2806 r2913 290 290 errors 291 291 validation errors 292 request 293 the cherrypy request 292 294 config 293 295 the cherrypy config get function … … 313 315 locale = get_locale(), 314 316 errors = getattr(cherrypy.request, "validation_errors", {}), 315 inputs = getattr(cherrypy.request, "input_values", {})) 317 inputs = getattr(cherrypy.request, "input_values", {}), 318 request = cherrypy.request) 316 319 for provider in variable_providers + variableProviders: 317 320 provider(vars)