aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/routing_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Make router and controller classes better rack citizensJoshua Peek2008-12-281-73/+60
* Added support for multiple routes files and made draw not clear the map so th...David Heinemeier Hansson2008-11-261-4/+25
* Use autoload instead of explicit requires for ActionControllerJoshua Peek2008-11-231-1/+0
* Make optimized named routes respect all reserved options and tie it into UrlR...Gabe da Silveira2008-11-181-3/+9
* Allow use of :path_prefix and :name_prefix outside of namespaced routes. [#11...Tom Stuart2008-10-081-0/+21
* Ensure routing optimizations are cleared when new routes are added [#981 stat...Matt Jones2008-09-071-0/+30
* Fixes optimised named routes generating question mark followed by nothing whe...Luke Melia2008-08-311-0/+6
* Fix indentationJeremy Kemper2008-08-281-22/+20
* Routes may be restricted to lists of HTTP methods instead of a single method ...Brennan Dunn2008-08-281-0/+25
* Prepare Route#generate and Route#recognize early. Also refactor segments a bi...Joshua Peek2008-07-281-96/+55
* Routing whitespace cleanupJoshua Peek2008-07-281-0/+1
* AbstractRequest.relative_url_root is no longer automatically configured by a ...Joshua Peek2008-07-241-7/+3
* Raise ArgumentError if an invalid method is specified as part of a route's co...Tom Ward2008-07-181-0/+16
* Use :namespace instead of :path_prefix for finding controller. [#544 state:re...Tarmo Tänav2008-07-031-0/+20
* Wrap CGIResponse, LegacyRouteSet, Route, RouteSet and RouteLoading tests insi...Joshua Peek2008-06-071-1630/+1601
* Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ActiveS...Joshua Peek2008-06-031-2/+2
* Ensure routing generator works with non-string keys. [#172 state:resolved]Sven Fuchs2008-05-161-0/+7
* Escape globbed parameters in routes correctly.Chris Roos2008-05-101-5/+7
* Made the location of the routes file configurable with config.routes_configur...David Heinemeier Hansson2008-05-011-0/+10
* Added support for regexp flags like ignoring case in the :requirements part o...David Heinemeier Hansson2008-03-281-2/+144
* Fix an edge case with extra periods in Routing.normalize_paths. Closes #11337...Jeremy Kemper2008-03-211-4/+4
* Make it simpler to make the root route an alias for another route. Closes #...Michael Koziarski2008-01-261-0/+24
* Add timing test for large restful route recognition. References #10835 [olega...Jeremy Kemper2008-01-191-8/+35
* Ruby 1.9 compat: don't rely on Array#to_s to flatten and join as stringJeremy Kemper2008-01-071-2/+2
* require abstract_unit directly since test is in load pathJeremy Kemper2008-01-051-2/+2
* Fixes for standalone testsJeremy Kemper2007-12-151-3/+9
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-2/+2
* Make sure the optimisation code for routes doesn't get used if :host, :anchor...Michael Koziarski2007-11-281-5/+45
* Fixed to_s bug with namespace routes (closes #10283) [johnb]David Heinemeier Hansson2007-11-261-0/+20
* Fixed that named routes living under resources shouldn't have double slashes ...David Heinemeier Hansson2007-11-251-0/+14
* Ensure that the routing optimisation code isn't used when additional argument...Michael Koziarski2007-11-201-2/+10
* Expand Routes::DynamicSegment test coverage. Closes #7122 [Kevin Clark]Jeremy Kemper2007-10-151-0/+22
* Make sure that custom inflections are picked up by map.resources by triggerin...Michael Koziarski2007-10-131-0/+60
* Move ActionController::Routing.optimise_named_routes to ActionController::Bas...Rick Olson2007-10-031-1/+6
* Re-enable Routing optimisation code for _url methods, add defined?(request) t...Michael Koziarski2007-09-281-8/+18
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-281-1/+1
* Optimized named routes respect AbstractRequest.relative_url_root. Closes #9612.Jeremy Kemper2007-09-231-4/+9
* Remove , and ; (comma and semicolon) from routing separators again. Reference...Jeremy Kemper2007-09-231-1/+1
* Disable the routing optimisation code when dealing with foo_url helpers. Add...Michael Koziarski2007-09-221-6/+6
* Disable optimisation code for UrlWriter as request.host doesn't make sense th...Michael Koziarski2007-09-171-3/+4
* Fixed optimized route segment escaping. Closes #9562.Jeremy Kemper2007-09-151-0/+8
* root_path returns '/' not ''. Closes #9563.Jeremy Kemper2007-09-151-1/+10
* Optimise named route generation when using positional arguments. Closes #945...Michael Koziarski2007-09-091-51/+90
* Remove deprecated named routes [pixeltrix]Tobias Lütke2007-09-061-53/+1
* Allow additional parameters to be passed to named route helpers when using po...Michael Koziarski2007-09-051-0/+12
* Prefix nested resource named routes with their action name, e.g. new_group_us...Jeremy Kemper2007-06-271-1/+37
* Routing: improve static segment test coverage. #7117 [Kevin Clark]Jeremy Kemper2007-06-091-6/+6
* Routing: drop semicolon and comma as route separators.Jeremy Kemper2007-05-291-18/+24
* 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