aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/active_support_overview.textile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-06-13 15:00:21 +0200
committerXavier Noria <fxn@hashref.com>2009-06-13 15:00:21 +0200
commitc62f1f075493dd06e080df09e3c33c6dc5def020 (patch)
tree8dbbc2c1ca7861834b918806418dc6c8bbe6c597 /railties/guides/source/active_support_overview.textile
parentc35d55c918159b62669a481b0c6f94bb7a7aefaa (diff)
downloadrails-c62f1f075493dd06e080df09e3c33c6dc5def020.tar.gz
rails-c62f1f075493dd06e080df09e3c33c6dc5def020.tar.bz2
rails-c62f1f075493dd06e080df09e3c33c6dc5def020.zip
AS guide: 2nd revision of the explanation of to_param
Diffstat (limited to 'railties/guides/source/active_support_overview.textile')
-rw-r--r--railties/guides/source/active_support_overview.textile12
1 files changed, 9 insertions, 3 deletions
diff --git a/railties/guides/source/active_support_overview.textile b/railties/guides/source/active_support_overview.textile
index 4b8be1f9eb..d45aff81a0 100644
--- a/railties/guides/source/active_support_overview.textile
+++ b/railties/guides/source/active_support_overview.textile
@@ -98,7 +98,7 @@ Rails has classes that act like +Date+ or +Time+ and follow this contract.
h4. +to_param+
-All objects in Rails respond to the method +to_param+, which is meant to return a value that represents them as value in a query string, or as a URL fragment.
+All objects in Rails respond to the method +to_param+, which is meant to return something that represents them as values in a query string, or as a URL fragments.
By default +to_param+ just calls +to_s+:
@@ -106,7 +106,13 @@ By default +to_param+ just calls +to_s+:
7.to_param # => "7"
</ruby>
-and some classes in Rails overwrite it.
+The return value of +to_param+ should *not* be escaped:
+
+<ruby>
+"Tom & Jerry".to_param # => "Tom & Jerry"
+</ruby>
+
+Several classes in Rails overwrite these method.
For example +nil+, +true+, and +false+ return themselves. +Array#to_param+ calls +to_param+ on the elements and joins the result with "/":
@@ -124,7 +130,7 @@ class User
end
</ruby>
-you get:
+we get:
<ruby>
user_path(@user) # => "/users/357-john-smith"