aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/routing.rb
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Documentation for routes (closes #5165) [rramdas@gmail.com]David Heinemeier Hansson2006-09-041-0/+188
* Fixed default routing NoMethodError downcase for nil when default controller ...David Heinemeier Hansson2006-09-041-2/+5
* Relax Routing's anchor pattern warning; it was preventing use of [^/] inside ...Nicholas Seckar2006-08-151-1/+1
* Add controller_paths variable to Routing; Assign Routing.controller_paths fro...Nicholas Seckar2006-08-151-9/+8
* Tweak RoutingError message to show option diffs, not just missing named route...Rick Olson2006-08-131-2/+2
* Add RoutingError exception when RouteSet fails to generate a path from a Name...Rick Olson2006-08-091-4/+7
* it's me, john wayneNicholas Seckar2006-08-071-12/+0
* Make Routing noisy when an anchor regexp is assigned to a segment. Closes #5674Nicholas Seckar2006-08-051-1/+4
* Added map.resources from the Simply Restful plugin (backwards incompatible wi...David Heinemeier Hansson2006-07-311-8/+1
* Don't search a load-path of '.' for controller files, since it may include sy...Jamis Buck2006-07-271-1/+1
* Remove leak in development modeNicholas Seckar2006-07-171-21/+25
* Add route_name_path method to generate only the path for a named routes. For ...Nicholas Seckar2006-06-301-36/+44
* Fix that routes with *path segments in the recall can generate URLs. [Rick]Rick Olson2006-06-171-1/+1
* Make sure passed routing options are not mutated by routing code. (closes #5314)Jamis Buck2006-06-071-4/+5
* Do some path normalization to prevent the possible_controllers list from cont...Jamis Buck2006-06-071-5/+31
* Make sure named routes are never generated relative to some containing moduleJamis Buck2006-06-061-2/+2
* Improve parameter expiry handling to fix sticky-id issue. Add a more informat...Jamis Buck2006-06-061-9/+29
* Remove dependency on Pathname in new routesJamis Buck2006-06-051-2/+0
* Make sure changing the controller from foo/bar to bing/bang does not change r...Jamis Buck2006-06-051-1/+3
* Escape the entire path before trying to recognize it (closes #3671)Jamis Buck2006-06-051-1/+2
* Make sure :id and friends are properly unescaped (closes #5275).Jamis Buck2006-06-051-1/+3
* Make sure regexp chunks are grouped when the segment has a regexp constraint ...Jamis Buck2006-06-051-1/+1
* Add RouteSet::Mapper#named_route for compatibility with adding programmatical...Jamis Buck2006-06-011-1/+5
* New routes implementation. Simpler, faster, easier to understand. The publish...Jamis Buck2006-06-011-586/+885
* If not passing a hash, assume :id => whateverDavid Heinemeier Hansson2006-05-311-1/+1
* Small fix in routing to allow dynamic routes (broken after [4242]) [Rick]Rick Olson2006-04-301-2/+2