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