Added URL escaping for routing #664

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@670 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 7a67d0f6
......@@ -41,7 +41,7 @@ def generate(options, defaults={})
value = options[item] || defaults[item] || @defaults[item]
return nil, "#{item.inspect} was not given and has no default." if value.nil? && ! (@defaults.key?(item) && @defaults[item].nil?) # Don't leave if nil value.
defaults = {} unless defaults == {} || value == defaults[item] # Stop using defaults if this component isn't the same as the default.
value
(value.nil? || item == :controller) ? value : CGI.escape(value.to_s)
else item
end
end
......@@ -89,7 +89,7 @@ def recognize(components, options={})
elsif item.kind_of? Symbol
value = components.shift || @defaults[item]
return nil, "No value or default for parameter #{item.inspect}" if value.nil? && ! (@defaults.key?(item) && @defaults[item].nil?)
options[item] = value
options[item] = value.nil? ? value : CGI.unescape(value)
else
return nil, "No value available for component #{item.inspect}" if components.empty?
component = components.shift
......@@ -208,7 +208,7 @@ def recognize!(request)
if controller.nil?
failures << [route, options] if ActionController::Base.debug_routes
else
options.each {|k, v| request.path_parameters[k] = CGI.unescape(v)}
request.path_parameters = options
return controller
end
end
......
......@@ -278,6 +278,18 @@ def test_expand_controller_path_nested_no_leftover
assert_equal Controllers::Admin::UserController, controller
assert_equal %w{action id}, leftovers
end
def test_special_characters
route ':id', :controller => 'content', :action => 'fish'
verify_recognize'id+with+spaces',
:controller => 'content', :action => 'fish', :id => 'id with spaces'
verify_generate('id+with+spaces', {},
{:controller => 'content', :action => 'fish', :id => 'id with spaces'}, {})
verify_recognize 'id%2Fwith%2Fslashes',
:controller => 'content', :action => 'fish', :id => 'id/with/slashes'
verify_generate('id%2Fwith%2Fslashes', {},
{:controller => 'content', :action => 'fish', :id => 'id/with/slashes'}, {})
end
end
class RouteSetTests < Test::Unit::TestCase
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册