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
/
test
/
controller
/
routing_test.rb
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Dropped the idea of automatically routing :format for the vanilla routes -- t...
David Heinemeier Hansson
2006-12-04
1
-4
/
+18
*
Update Routing to complain when :controller is not specified by a route. Clos...
Nicholas Seckar
2006-11-22
1
-0
/
+6
*
silence const_set warning
Jeremy Kemper
2006-11-13
1
-4
/
+7
*
clean up failing routing tests from missing :only_path option [Rick]
Rick Olson
2006-10-22
1
-11
/
+11
*
Fix routing to correctly determine when generation fails. Closes #6300.
Nicholas Seckar
2006-10-16
1
-0
/
+27
*
remove an obsolete #dup call. avoid double negatives, to make the code easier...
Jamis Buck
2006-10-15
1
-7
/
+9
*
Rename test assertion to prevent shadowing. Closes #6306.
Nicholas Seckar
2006-10-09
1
-1
/
+1
*
Clear the cache of possible controllers whenever Routes are reloaded.
Nicholas Seckar
2006-09-23
1
-1
/
+27
*
Fix routing to respect user provided requirements and defaults when assigning...
Nicholas Seckar
2006-09-20
1
-1
/
+61
*
Fixed default routing NoMethodError downcase for nil when default controller ...
David Heinemeier Hansson
2006-09-04
1
-0
/
+9
*
Add routing tests to assert that RoutingError is raised when conditions aren'...
Rick Olson
2006-09-02
1
-0
/
+11
*
Add test case from ticket #4090
Nicholas Seckar
2006-08-22
1
-0
/
+12
*
Relax Routing's anchor pattern warning; it was preventing use of [^/] inside ...
Nicholas Seckar
2006-08-15
1
-0
/
+38
*
Add controller_paths variable to Routing; Assign Routing.controller_paths fro...
Nicholas Seckar
2006-08-15
1
-6
/
+4
*
Fix assert_redirected_to issue with named routes for module controllers. [Ri...
Rick Olson
2006-08-13
1
-0
/
+12
*
Make Routing noisy when an anchor regexp is assigned to a segment. Closes #5674
Nicholas Seckar
2006-08-05
1
-10
/
+59
*
Add route_name_path method to generate only the path for a named routes. For ...
Nicholas Seckar
2006-06-30
1
-2
/
+11
*
Fix that routes with *path segments in the recall can generate URLs. [Rick]
Rick Olson
2006-06-17
1
-0
/
+9
*
add passing test to make sure unhandled requests don't load unnecessary class...
Rick Olson
2006-06-16
1
-6
/
+23
*
Make sure passed routing options are not mutated by routing code. (closes #5314)
Jamis Buck
2006-06-07
1
-3
/
+21
*
Do some path normalization to prevent the possible_controllers list from cont...
Jamis Buck
2006-06-07
1
-1
/
+12
*
Make sure named routes are never generated relative to some containing module
Jamis Buck
2006-06-06
1
-0
/
+23
*
Improve parameter expiry handling to fix sticky-id issue. Add a more informat...
Jamis Buck
2006-06-06
1
-0
/
+35
*
Make sure changing the controller from foo/bar to bing/bang does not change r...
Jamis Buck
2006-06-05
1
-0
/
+7
*
Escape the entire path before trying to recognize it (closes #3671)
Jamis Buck
2006-06-05
1
-0
/
+9
*
Make sure :id and friends are properly unescaped (closes #5275).
Jamis Buck
2006-06-05
1
-0
/
+17
*
Make sure regexp chunks are grouped when the segment has a regexp constraint ...
Jamis Buck
2006-06-05
1
-0
/
+23
*
New routes implementation. Simpler, faster, easier to understand. The publish...
Jamis Buck
2006-06-01
1
-780
/
+1031
*
Small fix in routing to allow dynamic routes (broken after [4242]) [Rick]
Rick Olson
2006-04-30
1
-1
/
+9
*
restore some commented lines
Jamis Buck
2006-04-21
1
-13
/
+13
*
fix to ';' interpretation in route recognition--only follow a route with ';' ...
Jamis Buck
2006-04-21
1
-12
/
+17
*
Add support in routes for semicolon delimited "subpaths", like /books/:id;:ac...
Jamis Buck
2006-04-21
1
-0
/
+76
*
Don't let arbitrary classes match as controllers
Nicholas Seckar
2006-02-04
1
-1
/
+8
*
Fix bad require for rake test
Nicholas Seckar
2006-02-04
1
-1
/
+1
*
Fix routing tests to pass when run independently of the entire AP suite
Nicholas Seckar
2006-02-04
1
-0
/
+1
*
Fix Routing tests. Fix routing where failing to match a controller would prev...
Nicholas Seckar
2006-02-04
1
-65
/
+65
*
Add routing tests from #1945
Nicholas Seckar
2005-09-18
1
-2
/
+55
*
Add a routing test case covering #2101
Nicholas Seckar
2005-09-18
1
-1
/
+12
*
Add ability to specify Route Regexps for controllers. Closes #1917.
Nicholas Seckar
2005-09-11
1
-0
/
+38
*
Provide Named Route's hash methods as helper methods. Closes #1744.
Nicholas Seckar
2005-09-11
1
-0
/
+6
*
Fixed construction of get parameters for arrays
Nicholas Seckar
2005-07-18
1
-31
/
+31
*
Fix assert_routing with nested controllers. Closes #1582 and #1386.
Nicholas Seckar
2005-07-15
1
-22
/
+1
*
Add RouteSet#named_route so that RouteSet instance methods do not shadow avai...
Nicholas Seckar
2005-07-14
1
-0
/
+12
*
Provide correct defaults for Named Routes which do not specify :action
Nicholas Seckar
2005-07-14
1
-0
/
+27
*
Generate URLs for :action => index when :action => nil is supplied.
Nicholas Seckar
2005-07-14
1
-4
/
+38
*
Named routes should not provide nil values to url_for. Includes factoring and...
Nicholas Seckar
2005-07-13
1
-0
/
+36
*
Routes now raise an exception if a path component is misconfigured.
Nicholas Seckar
2005-07-08
1
-0
/
+14
*
Fix routes to generate proper URLs when given Fixnum defaults
Nicholas Seckar
2005-07-08
1
-0
/
+22
*
Enable routes to recognize uppercase controller names. Closes #1635
Nicholas Seckar
2005-07-07
1
-0
/
+12
*
Properly unescape recognized path components. Fixes #1651.
Nicholas Seckar
2005-07-07
1
-0
/
+11
[prev]
[next]