diff options
author | tashian <carl@ppolitics.org> | 2011-03-03 15:04:39 -0800 |
---|---|---|
committer | tashian <carl@ppolitics.org> | 2011-03-03 15:04:39 -0800 |
commit | f44e0e82717062b3043a9ce65a8274f338817c83 (patch) | |
tree | 7b2422e82e662de0b6eee49826d13c279f5188d5 | |
parent | 3b7cf234179a3ce09f4a7a9412c15fd82cf1e71c (diff) | |
download | rails-f44e0e82717062b3043a9ce65a8274f338817c83.tar.gz rails-f44e0e82717062b3043a9ce65a8274f338817c83.tar.bz2 rails-f44e0e82717062b3043a9ce65a8274f338817c83.zip |
Properly escaped a + in the dynamic segments TIP
-rw-r--r-- | railties/guides/source/routing.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile index d214031b31..c447fd911a 100644 --- a/railties/guides/source/routing.textile +++ b/railties/guides/source/routing.textile @@ -391,7 +391,7 @@ NOTE: You can't use +namespace+ or +:module+ with a +:controller+ path segment. match ':controller(/:action(/:id))', :controller => /admin\/[^\/]+/ </ruby> -TIP: By default dynamic segments don't accept dots - this is because the dot is used as a separator for formatted routes. If you need to use a dot within a dynamic segment add a constraint which overrides this - for example +:id => /[^\/]+/+ allows anything except a slash. +TIP: By default dynamic segments don't accept dots - this is because the dot is used as a separator for formatted routes. If you need to use a dot within a dynamic segment add a constraint which overrides this - for example +:id => /[^\/]<plus>/+ allows anything except a slash. h4. Static Segments |