aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/routing.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Rationalize route path escaping according to RFC 2396 section 3.3. Closes #75...Jeremy Kemper2007-05-141-11/+21
* Removed deprecated parameters_for_method_reference concept (legacy from befor...David Heinemeier Hansson2007-05-121-0/+2
* Add ActionController::Routing::Helpers, a module to contain common URL helper...Nicholas Seckar2007-05-121-5/+14
* More documentations for typos in routes. Closes #8228 [pam]Marcel Molina2007-05-061-1/+1
* Fix documentation typo in routes. Closes #8250. [norbert]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/+1
* Allow array and hash query parameters. Array route parameters are converted/t...Jeremy Kemper2007-03-061-23/+14
* Routing: better support for escaped values in route segments. Closes #7544.Jeremy Kemper2007-02-211-6/+12
* fix form_for example in ActionController::Resources documentation. Closes #7...Rick Olson2007-02-041-2/+17
* Allow Routes to generate all urls for a set of options by specifying :generat...Nicholas Seckar2007-01-281-0/+9
* Improve routes documentation. Closes #7095.Jeremy Kemper2007-01-281-15/+26
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-2/+2
* Nodoc the irrelevant (from 1.2)David Heinemeier Hansson2007-01-261-12/+12
* Routing uses URI escaping for path components and CGI escaping for query para...Jeremy Kemper2006-12-281-7/+8
* Fix a bug in Routing where a parameter taken from the path of the current req...Nicholas Seckar2006-12-091-3/+3
* Dropped the idea of automatically routing :format for the vanilla routes -- t...David Heinemeier Hansson2006-12-041-0/+5
* Update Routing to complain when :controller is not specified by a route. Clos...Nicholas Seckar2006-11-221-0/+4
* Reuse named route helper module between Routing reloads to prevent memory leaks.Nicholas Seckar2006-11-171-1/+5
* Force *_url named routes to show the host in ActionView [Rick]Rick Olson2006-10-201-1/+1
* Fix routing to correctly determine when generation fails. Closes #6300.Nicholas Seckar2006-10-161-1/+1
* remove an obsolete #dup call. avoid double negatives, to make the code easier...Jamis Buck2006-10-151-3/+2
* Install named routes into ActionView::Base instead of proxying them to the vi...Nicholas Seckar2006-10-111-5/+2
* Clear the cache of possible controllers whenever Routes are reloaded.Nicholas Seckar2006-09-231-1/+3
* Fix routing to respect user provided requirements and defaults when assigning...Nicholas Seckar2006-09-201-8/+27