diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-20 14:31:48 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-20 14:31:48 +0000 |
commit | 1a5bf720b2827a74bcc89f4ffd2ab0da537c6015 (patch) | |
tree | 9f9f795abda59e3ae49f98393a360c40253270bb | |
parent | 2ee84cc6f92d49ec7004d0c99d66c6feb05cee9c (diff) | |
download | rails-1a5bf720b2827a74bcc89f4ffd2ab0da537c6015.tar.gz rails-1a5bf720b2827a74bcc89f4ffd2ab0da537c6015.tar.bz2 rails-1a5bf720b2827a74bcc89f4ffd2ab0da537c6015.zip |
Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [bitsweat]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@463 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
-rw-r--r-- | actionpack/install.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/action_controller/cgi_process.rb | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 7438f5a4f0..29306668c7 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [bitsweat] + * Fixed that a default fragment store wan't being set to MemoryStore as intended. * Fixed that all redirect and render calls now return true, so you can use the pattern of "do and return". Example: diff --git a/actionpack/install.rb b/actionpack/install.rb index 5bdad9e2cd..1e55419ee6 100644 --- a/actionpack/install.rb +++ b/actionpack/install.rb @@ -41,6 +41,7 @@ files = %w- action_controller/cgi_ext/cgi_ext.rb action_controller/cgi_ext/cgi_methods.rb action_controller/cgi_ext/cookie_performance_fix.rb + action_controller/cgi_ext/raw_post_data_fix.rb action_controller/caching.rb action_controller/cgi_process.rb action_controller/cookies.rb diff --git a/actionpack/lib/action_controller/cgi_process.rb b/actionpack/lib/action_controller/cgi_process.rb index d597647f58..92b19fbf18 100644 --- a/actionpack/lib/action_controller/cgi_process.rb +++ b/actionpack/lib/action_controller/cgi_process.rb @@ -1,5 +1,6 @@ require 'action_controller/cgi_ext/cgi_ext' require 'action_controller/cgi_ext/cookie_performance_fix' +require 'action_controller/cgi_ext/raw_post_data_fix' require 'action_controller/session/drb_store' require 'action_controller/session/active_record_store' require 'action_controller/session/mem_cache_store' |