Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 3060

Show
Ignore:
Timestamp:
11/16/05 21:34:24 (3 years ago)
Author:
bitsweat
Message:

Remove the unused, slow response_dump and session_dump variables from error pages. References #1222.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r3058 r3060  
    11*SVN* 
     2 
     3* Remove the unused, slow response_dump and session_dump variables from error pages.  #1222 [lmarlow@yahoo.com] 
    24 
    35* 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  
    3232   
    3333  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") 
    3634%> 
    3735