aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-12-04 20:39:36 -0600
committerJoshua Peek <josh@joshpeek.com>2008-12-04 20:39:36 -0600
commit9c9da6c892d715ca22c3cf51f50deb1d80029c66 (patch)
tree1605da4f53bb22b5f793c0d78161e46fdb8603bf /actionpack/lib/action_controller.rb
parent27ebfd795ff106efae8cbe318d7b15b1a3c63b13 (diff)
downloadrails-9c9da6c892d715ca22c3cf51f50deb1d80029c66.tar.gz
rails-9c9da6c892d715ca22c3cf51f50deb1d80029c66.tar.bz2
rails-9c9da6c892d715ca22c3cf51f50deb1d80029c66.zip
Boot out CGI Processor.
* Add ActionController::CGIHandler as a backwards compatible CGI wrapper around Rack. * Also pull failsafe responder into ActionController::Failsafe middleware.
Diffstat (limited to 'actionpack/lib/action_controller.rb')
-rw-r--r--actionpack/lib/action_controller.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller.rb b/actionpack/lib/action_controller.rb
index 2981f625a1..5d5d6b8c9c 100644
--- a/actionpack/lib/action_controller.rb
+++ b/actionpack/lib/action_controller.rb
@@ -46,10 +46,9 @@ module ActionController
autoload :Base, 'action_controller/base'
autoload :Benchmarking, 'action_controller/benchmarking'
autoload :Caching, 'action_controller/caching'
- autoload :CgiRequest, 'action_controller/cgi_process'
- autoload :CgiResponse, 'action_controller/cgi_process'
autoload :Cookies, 'action_controller/cookies'
autoload :Dispatcher, 'action_controller/dispatcher'
+ autoload :Failsafe, 'action_controller/failsafe'
autoload :Filters, 'action_controller/filters'
autoload :Flash, 'action_controller/flash'
autoload :Helpers, 'action_controller/helpers'
@@ -89,6 +88,11 @@ module ActionController
module Http
autoload :Headers, 'action_controller/headers'
end
+
+ # DEPRECATE: Remove CGI support
+ autoload :CgiRequest, 'action_controller/cgi_process'
+ autoload :CgiResponse, 'action_controller/cgi_process'
+ autoload :CGIHandler, 'action_controller/cgi_process'
end
class CGI