index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
actionpack
/
lib
/
action_controller
/
routing.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add route_name_path method to generate only the path for a named routes. For ...
Nicholas Seckar
2006-06-30
1
-36
/
+44
*
Fix that routes with *path segments in the recall can generate URLs. [Rick]
Rick Olson
2006-06-17
1
-1
/
+1
*
Make sure passed routing options are not mutated by routing code. (closes #5314)
Jamis Buck
2006-06-07
1
-4
/
+5
*
Do some path normalization to prevent the possible_controllers list from cont...
Jamis Buck
2006-06-07
1
-5
/
+31
*
Make sure named routes are never generated relative to some containing module
Jamis Buck
2006-06-06
1
-2
/
+2
*
Improve parameter expiry handling to fix sticky-id issue. Add a more informat...
Jamis Buck
2006-06-06
1
-9
/
+29
*
Remove dependency on Pathname in new routes
Jamis Buck
2006-06-05
1
-2
/
+0
*
Make sure changing the controller from foo/bar to bing/bang does not change r...
Jamis Buck
2006-06-05
1
-1
/
+3
*
Escape the entire path before trying to recognize it (closes #3671)
Jamis Buck
2006-06-05
1
-1
/
+2
*
Make sure :id and friends are properly unescaped (closes #5275).
Jamis Buck
2006-06-05
1
-1
/
+3
*
Make sure regexp chunks are grouped when the segment has a regexp constraint ...
Jamis Buck
2006-06-05
1
-1
/
+1
*
Add RouteSet::Mapper#named_route for compatibility with adding programmatical...
Jamis Buck
2006-06-01
1
-1
/
+5
*
New routes implementation. Simpler, faster, easier to understand. The publish...
Jamis Buck
2006-06-01
1
-586
/
+885
*
If not passing a hash, assume :id => whatever
David Heinemeier Hansson
2006-05-31
1
-1
/
+1
*
Small fix in routing to allow dynamic routes (broken after [4242]) [Rick]
Rick Olson
2006-04-30
1
-2
/
+2
*
fix to ';' interpretation in route recognition--only follow a route with ';' ...
Jamis Buck
2006-04-21
1
-4
/
+5
*
Add support in routes for semicolon delimited "subpaths", like /books/:id;:ac...
Jamis Buck
2006-04-21
1
-7
/
+56
*
Modify routing so that you can say :require => { :method => :post } for a rou...
Jamis Buck
2006-04-13
1
-5
/
+12
*
Explain thyself
Nicholas Seckar
2006-03-16
1
-0
/
+1
*
Breakpoints in running code makes for no fun ;)
David Heinemeier Hansson
2006-03-16
1
-1
/
+0
*
Fixes a bug in routes controller traversing which caused it to fail on for do...
Tobias Lütke
2006-03-15
1
-2
/
+3
*
Check NameErrors and re-raise if they do not match the expected constant
Nicholas Seckar
2006-02-22
1
-3
/
+7
*
Don't let arbitrary classes match as controllers
Nicholas Seckar
2006-02-04
1
-1
/
+2
*
Fix Routing tests. Fix routing where failing to match a controller would prev...
Nicholas Seckar
2006-02-04
1
-4
/
+3
*
fixed small bug in routing which caused the traverse_to_controller mechanism ...
Tobias Lütke
2006-02-04
1
-1
/
+1
*
Remove unneeded logging
Nicholas Seckar
2006-02-04
1
-4
/
+1
*
Fix controller resolution to avoid accidentally inheriting a controller from ...
Nicholas Seckar
2006-02-04
1
-2
/
+6
*
Remove LoadingModule
Nicholas Seckar
2006-02-03
1
-7
/
+19
*
Initialize @optional in routing code to avoid warnings
Nicholas Seckar
2005-11-22
1
-0
/
+1
*
Add "#:nodoc:" for ActionController::Routing::PathComponent::Result #2209 [l....
David Heinemeier Hansson
2005-09-17
1
-1
/
+1
*
Add ability to specify Route Regexps for controllers. Closes #1917.
Nicholas Seckar
2005-09-11
1
-1
/
+8
*
Provide Named Route's hash methods as helper methods. Closes #1744.
Nicholas Seckar
2005-09-11
1
-1
/
+4
*
Fix routing to handle :some_param => nil better
Nicholas Seckar
2005-08-26
1
-3
/
+11
*
Fixed construction of get parameters for arrays
Nicholas Seckar
2005-07-18
1
-8
/
+2
*
Add RouteSet#named_route so that RouteSet instance methods do not shadow avai...
Nicholas Seckar
2005-07-14
1
-4
/
+12
*
Provide correct defaults for Named Routes which do not specify :action
Nicholas Seckar
2005-07-14
1
-3
/
+10
*
Generate URLs for :action => index when :action => nil is supplied.
Nicholas Seckar
2005-07-14
1
-4
/
+13
*
Named routes should not provide nil values to url_for. Includes factoring and...
Nicholas Seckar
2005-07-13
1
-5
/
+18
*
Routes now raise an exception if a path component is misconfigured.
Nicholas Seckar
2005-07-08
1
-3
/
+7
*
Fix routes to generate proper URLs when given Fixnum defaults
Nicholas Seckar
2005-07-08
1
-1
/
+1
*
Allow RouteSet#recognition_failed to be used to handle unknown URL forwarding
Nicholas Seckar
2005-07-07
1
-1
/
+1
*
Enable routes to recognize uppercase controller names. Closes #1635
Nicholas Seckar
2005-07-07
1
-1
/
+1
*
Properly unescape recognized path components. Fixes #1651.
Nicholas Seckar
2005-07-07
1
-1
/
+4
*
Fixed that named routes didn't use the default values for action and possible...
David Heinemeier Hansson
2005-07-07
1
-2
/
+3
*
Fixed routing snafu
David Heinemeier Hansson
2005-07-06
1
-0
/
+1
*
Made documentation ready for release (AP)
David Heinemeier Hansson
2005-07-06
1
-10
/
+9
*
Fixed routing regression on index exception
David Heinemeier Hansson
2005-07-05
1
-0
/
+1
*
Routing fix
Jamis Buck
2005-07-05
1
-2
/
+2
*
Backed out of #1694 as it broke requests that hit the cache with wrong argume...
David Heinemeier Hansson
2005-07-05
1
-24
/
+12
*
Fixed recognize bug introduced with #1694
David Heinemeier Hansson
2005-07-05
1
-1
/
+1
[next]