aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-07-15 23:06:37 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-07-15 23:06:37 +0530
commitff410c4ea9ea54b3f4b9d5838703a4b039a1cf3f (patch)
tree312485e61a31497c7e87116d6b746a0be4566155 /railties
parent0894d73c7552a4c7d576b7d3692c6a18faadd273 (diff)
downloadrails-ff410c4ea9ea54b3f4b9d5838703a4b039a1cf3f.tar.gz
rails-ff410c4ea9ea54b3f4b9d5838703a4b039a1cf3f.tar.bz2
rails-ff410c4ea9ea54b3f4b9d5838703a4b039a1cf3f.zip
Revert "Fix wildcard route code examples."
This reverts commit 0894d73c7552a4c7d576b7d3692c6a18faadd273. Reason: CHANGELOGs should not be changed in docrails.
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/routing.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile
index 57e390f385..06b3579720 100644
--- a/railties/guides/source/routing.textile
+++ b/railties/guides/source/routing.textile
@@ -560,13 +560,13 @@ would match +zoo/woo/foo/bar/baz+ with +params[:a]+ equals +"zoo/woo"+, and +par
NOTE: Starting from Rails 3.1, wildcard routes will always match the optional format segment by default. For example if you have this route:
<ruby>
-match '*pages' => 'pages#show'
+map '*pages' => 'pages#show'
</ruby>
NOTE: By requesting +"/foo/bar.json"+, your +params[:pages]+ will be equals to +"foo/bar"+ with the request format of JSON. If you want the old 3.0.x behavior back, you could supply +:format => false+ like this:
<ruby>
-match '*pages' => 'pages#show', :format => false
+map '*pages' => 'pages#show', :format => false
</ruby>
h4. Redirection