Ticket #1362: add_request.diff
| File add_request.diff, 0.9 kB (added by chrisz, 1 year ago) |
|---|
-
turbogears/view/base.py
old new 289 289 input values from a form 290 290 errors 291 291 validation errors 292 request 293 the cherrypy request 292 294 config 293 295 the cherrypy config get function 294 296 … … 312 314 url = turbogears.url, identity=identity.current, config=config.get, 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) 318 321 deprecated_vars = DeprecatedDictWrapper(vars)