1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Added to_param call for parameters when composing an url using url_for from something else than strings #812 [Sam Stephenson]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@935 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-03-20 15:42:40 +00:00
parent 6cd3bda32f
commit 7e745f3aa5
3 changed files with 29 additions and 3 deletions

View file

@ -1,5 +1,26 @@
*SVN*
* Added to_param call for parameters when composing an url using url_for from something else than strings #812 [Sam Stephenson]. Example:
class Page
  def initialize(number)
    @number = number
  end
  # ...
  def to_param
    @number.to_s
  end
end
You can now use instances of Page with url_for:
class BarController < ApplicationController
  def baz
    page = Page.new(4)
    url = url_for :page => page # => "http://foo/bar/baz?page=4"
  end
end
* Fixed form helpers to query Model#id_before_type_cast instead of Model#id as a temporary workaround for Ruby 1.8.2 warnings #818 [DeLynn B]
* Fixed TextHelper#markdown to use blank? instead of empty? so it can deal with nil strings passed #814 [Johan Sörensen]

View file

@ -64,9 +64,9 @@ module ActionController
if value.nil? || item == :controller
value
elsif collection
CGI.escape(value.to_s).gsub(/%2F/, "/")
Routing.extract_parameter_value(value).gsub(/%2F/, "/")
else
CGI.escape(value.to_s)
Routing.extract_parameter_value(value)
end
else
item
@ -316,6 +316,11 @@ module ActionController
end
end
def self.extract_parameter_value(parameter)
value = parameter.respond_to?(:to_param) ? parameter.to_param : parameter.to_s
CGI.escape(value)
end
def self.draw(*args, &block) #:nodoc:
Routes.draw(*args) {|*args| block.call(*args)}
end

View file

@ -95,7 +95,7 @@ module ActionController
key = CGI.escape key
key += '[]' if value.class == Array
value = [ value ] unless value.class == Array
value.each { |val| elements << "#{key}=#{CGI.escape(val.to_s)}" }
value.each { |val| elements << "#{key}=#{Routing.extract_parameter_value(val)}" }
end
query_string << ("?" + elements.join("&")) unless elements.empty?