aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib')
-rwxr-xr-xactionpack/lib/action_controller.rb1
-rw-r--r--actionpack/lib/action_controller/deprecated_request_methods.rb34
2 files changed, 0 insertions, 35 deletions
diff --git a/actionpack/lib/action_controller.rb b/actionpack/lib/action_controller.rb
index 58aff0922a..cc5ba2b2b2 100755
--- a/actionpack/lib/action_controller.rb
+++ b/actionpack/lib/action_controller.rb
@@ -38,7 +38,6 @@ $:.unshift "#{File.dirname(__FILE__)}/action_controller/vendor/html-scanner"
require 'action_controller/base'
require 'action_controller/request'
-require 'action_controller/deprecated_request_methods'
require 'action_controller/rescue'
require 'action_controller/benchmarking'
require 'action_controller/flash'
diff --git a/actionpack/lib/action_controller/deprecated_request_methods.rb b/actionpack/lib/action_controller/deprecated_request_methods.rb
deleted file mode 100644
index 93663bdda4..0000000000
--- a/actionpack/lib/action_controller/deprecated_request_methods.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-module ActionController
- class AbstractRequest
- # Determine whether the body of a HTTP call is URL-encoded (default)
- # or matches one of the registered param_parsers.
- #
- # For backward compatibility, the post format is extracted from the
- # X-Post-Data-Format HTTP header if present.
- def post_format
- case content_type
- when Mime::XML
- :xml
- when Mime::YAML
- :yaml
- else
- :url_encoded
- end
- end
-
- # Is this a POST request formatted as XML or YAML?
- def formatted_post?
- post? && (post_format == :yaml || post_format == :xml)
- end
-
- # Is this a POST request formatted as XML?
- def xml_post?
- post? && post_format == :xml
- end
-
- # Is this a POST request formatted as YAML?
- def yaml_post?
- post? && post_format == :yaml
- end
- end
-end