aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/request.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/request.rb')
-rwxr-xr-xactionpack/lib/action_controller/request.rb13
1 files changed, 8 insertions, 5 deletions
diff --git a/actionpack/lib/action_controller/request.rb b/actionpack/lib/action_controller/request.rb
index 8994f42915..7a8fe49d0f 100755
--- a/actionpack/lib/action_controller/request.rb
+++ b/actionpack/lib/action_controller/request.rb
@@ -38,7 +38,6 @@ module ActionController
method == :head
end
-
# Determine whether the body of a POST request is URL-encoded (default),
# XML, or YAML by checking the Content-Type HTTP header:
#
@@ -78,9 +77,9 @@ module ActionController
post_format == :yaml && post?
end
- # Is the X-Requested-With HTTP header present and does it contain the
- # string "XMLHttpRequest"?. The Prototype Javascript library sends this
- # header with every Ajax request.
+ # Returns true if the request's "X-Requested-With" header contains
+ # "XMLHttpRequest". (The Prototype Javascript library sends this header with
+ # every Ajax request.)
def xml_http_request?
not /XMLHttpRequest/i.match(env['HTTP_X_REQUESTED_WITH']).nil?
end
@@ -186,7 +185,11 @@ module ActionController
def path_parameters=(parameters)
@path_parameters = parameters
- @parameters = nil
+ @symbolized_path_parameters = @parameters = nil
+ end
+
+ def symbolized_path_parameters
+ @symbolized_path_parameters ||= path_parameters.symbolize_keys
end
def path_parameters