aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/routing_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Routing: respond with 405 Method Not Allowed status when the route path match...Jeremy Kemper2007-05-261-6/+16
* Allow routes to be declared off namespacesTobias Lütke2007-05-191-1/+43
* Rationalize route path escaping according to RFC 2396 section 3.3. Closes #75...Jeremy Kemper2007-05-141-31/+30
* Add broken testNicholas Seckar2007-05-121-0/+5
* Add ActionController::Routing::Helpers, a module to contain common URL helper...Nicholas Seckar2007-05-121-2/+12
* More documentations for typos in routes. Closes #8228 [pam]Marcel Molina2007-05-061-1/+1
* Make sure the expiry hash is built by comparing the to_param-ized values of e...Jamis Buck2007-03-261-1/+8
* Allow array and hash query parameters. Array route parameters are converted/t...Jeremy Kemper2007-03-061-1/+1
* Fixed broken testDavid Heinemeier Hansson2007-02-251-2/+5
* Routing: better support for escaped values in route segments. Closes #7544.Jeremy Kemper2007-02-211-0/+40
* fix form_for example in ActionController::Resources documentation. Closes #7...Rick Olson2007-02-041-0/+32
* Allow Routes to generate all urls for a set of options by specifying :generat...Nicholas Seckar2007-01-281-0/+14
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-4/+3
* Improve Test Coverage for ActionController::Routing::Route#matches_controller...Rick Olson2007-01-171-1/+16
* Routing uses URI escaping for path components and CGI escaping for query para...Jeremy Kemper2006-12-281-2/+9
* Fix a bug in Routing where a parameter taken from the path of the current req...Nicholas Seckar2006-12-091-0/+11
* 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