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
This commit is contained in:
David Heinemeier Hansson
2005-01-20 14:31:48 +00:00
parent 2ee84cc6f9
commit 1a5bf720b2
3 changed files with 4 additions and 0 deletions

View File

@@ -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:

View File

@@ -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

View File

@@ -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'