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

Changeset 463

Show
Ignore:
Timestamp:
01/20/05 14:31:48 (4 years ago)
Author:
david
Message:

Added @request.envRAW_POST_DATA? for people who need access to the data before Ruby's CGI has parsed it #505 [bitsweat]

Files:

Legend:

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

    r462 r463  
    11*SVN* 
     2 
     3* Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [bitsweat] 
    24 
    35* Fixed that a default fragment store wan't being set to MemoryStore as intended. 
  • trunk/actionpack/install.rb

    r439 r463  
    4242 action_controller/cgi_ext/cgi_methods.rb 
    4343 action_controller/cgi_ext/cookie_performance_fix.rb 
     44 action_controller/cgi_ext/raw_post_data_fix.rb 
    4445 action_controller/caching.rb 
    4546 action_controller/cgi_process.rb 
  • trunk/actionpack/lib/action_controller/cgi_process.rb

    r384 r463  
    11require 'action_controller/cgi_ext/cgi_ext' 
    22require 'action_controller/cgi_ext/cookie_performance_fix' 
     3require 'action_controller/cgi_ext/raw_post_data_fix' 
    34require 'action_controller/session/drb_store' 
    45require 'action_controller/session/active_record_store'