aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/routing.rb
Commit message (Expand)AuthorAgeFilesLines
* Move Routing into ADJoshua Peek2009-10-201-381/+0
* Replace decaying routing internals w/ rack-mountJoshua Peek2009-10-191-13/+5
* Merge docrailsPratik Naik2009-07-251-1/+1
* Merge commit 'origin/master'Yehuda Katz + Carl Lerche2009-05-141-0/+3
|\
| * Minimal base/new_base comparisonJeremy Kemper2009-05-141-0/+5
* | Got new base to pass controller/base_test.rb, implemented method_missing acti...Yehuda Katz + Carl Lerche2009-05-141-0/+1
|/
* Support OPTIONS verb in route conditions [#1727 state:resolved]Mike Gunderloy2009-03-081-1/+1
* Merge docrailsPratik Naik2009-01-181-3/+2
* Merge with docrailsPratik Naik2008-12-071-2/+4
* Use autoload instead of explicit requires for ActionControllerJoshua Peek2008-11-231-1/+0
* Routing whitespace cleanupJoshua Peek2008-07-281-30/+28
* Added notes to Routing documentation and routes.rb regarding defaults routes ...Clemens Kofler2008-07-101-0/+4
* Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ActiveS...Joshua Peek2008-06-031-1/+1
* Merge docrails:Pratik Naik2008-05-091-4/+31
* Improve documentation coverage and markupXavier Noria2008-05-021-45/+49
* Improve documentation.Pratik Naik2008-04-051-2/+2
* Added support for regexp flags like ignoring case in the :requirements part o...David Heinemeier Hansson2008-03-281-0/+18
* Fix an edge case with extra periods in Routing.normalize_paths. Closes #11337...Jeremy Kemper2008-03-211-2/+2
* Make it simpler to make the root route an alias for another route. Closes #...Michael Koziarski2008-01-261-0/+6
* Performance: optimize route recognition. Large speedup for apps with many res...Jeremy Kemper2008-01-191-0/+1
* Restructure routing into several smaller files. References #10835 [oleganza]Michael Koziarski2008-01-171-1179/+7
* Use extract_options! rather than Hash test + pop. Closes #10628 [ssoroka]Jeremy Kemper2007-12-281-1/+1
* Docfix (closes #10429) [jamesh/ssoroka]David Heinemeier Hansson2007-12-141-9/+8
* Make the routes rake task more discoverable but documenting it in the routing...Marcel Molina2007-12-131-0/+4
* Fixed to_s bug with namespace routes (closes #10283) [johnb]David Heinemeier Hansson2007-11-261-1/+1
* Fixed that named routes living under resources shouldn't have double slashes ...David Heinemeier Hansson2007-11-251-1/+1
* Ensure that the routing optimisation code isn't used when additional argument...Michael Koziarski2007-11-201-4/+10
* Add documentation for route conditions. Closes #9041 [innu, manfred]Marcel Molina2007-11-061-0/+18
* Minor documentation enhancements and white-space fixes. Closes #9819 [chuyeow]Michael Koziarski2007-11-061-144/+144
* Make sure that custom inflections are picked up by map.resources by triggerin...Michael Koziarski2007-10-131-7/+20
* Fix url_for, redirect_to, etc. with :controller => :symbol instead of 'string...Jeremy Kemper2007-10-071-0/+3
* Move ActionController::Routing.optimise_named_routes to ActionController::Bas...Rick Olson2007-10-031-12/+7
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-9/+11
* Remove , and ; (comma and semicolon) from routing separators again. Reference...Jeremy Kemper2007-09-231-2/+2
* Remove use of & logic operator. Closes #8114.Nicholas Seckar2007-09-221-1/+1
* Don't warn when a path segment precedes a required segment. Closes #9615.Nicholas Seckar2007-09-211-1/+5
* Disable optimisation code for UrlWriter as request.host doesn't make sense th...Michael Koziarski2007-09-171-6/+14
* Fixed optimized route segment escaping. Closes #9562.Jeremy Kemper2007-09-151-27/+26
* Random hits from the style naziDavid Heinemeier Hansson2007-09-091-2/+1
* Optimise named route generation when using positional arguments. Closes #945...Michael Koziarski2007-09-091-8/+32
* Remove deprecated named routes [pixeltrix]Tobias Lütke2007-09-061-21/+4
* Allow additional parameters to be passed to named route helpers when using po...Michael Koziarski2007-09-051-1/+8
* Fix incorrectly named instance variable.Michael Koziarski2007-08-291-1/+1
* Use mocha to avoid the sleep calls in the compiled_template tests. [tarmo] Cl...Michael Koziarski2007-08-291-1/+1
* Only reload routes.rb if its been modified. [Dreamer3]Michael Koziarski2007-08-291-2/+15
* Prefix nested resource named routes with their action name, e.g. new_group_us...Jeremy Kemper2007-06-271-2/+20
* Routing: drop semicolon and comma as route separators.Jeremy Kemper2007-05-291-4/+2
* Fix syntax error in code example for routing documentation. #8377. [norbert]Marcel Molina2007-05-261-3/+2
* Routing: respond with 405 Method Not Allowed status when the route path match...Jeremy Kemper2007-05-261-1/+12
* Allow routes to be declared off namespacesTobias Lütke2007-05-191-3/+34