Changeset 3060
- Timestamp:
- 11/16/05 21:34:24 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r3058 r3060 1 1 *SVN* 2 3 * Remove the unused, slow response_dump and session_dump variables from error pages. #1222 [lmarlow@yahoo.com] 2 4 3 5 * Performance tweaks: use Set instead of Array to speed up prototype helper include? calls. Avoid logging code if logger is nil. Inline commonly-called template presence checks. #2880, #2881, #2882, #2883 [Stefan Kaes] trunk/actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml
r2597 r3060 32 32 33 33 request_dump = request_parameters_without_action.inspect.gsub(/,/, ",\n") 34 session_dump = @request.session.instance_variable_get("@data").inspect.gsub(/,/, ",\n")35 response_dump = @response.inspect.gsub(/,/, ",\n")36 34 %> 37 35