aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/routing.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* fix to ';' interpretation in route recognition--only follow a route with ';' ...Jamis Buck2006-04-211-4/+5
* Add support in routes for semicolon delimited "subpaths", like /books/:id;:ac...Jamis Buck2006-04-211-7/+56
* Modify routing so that you can say :require => { :method => :post } for a rou...Jamis Buck2006-04-131-5/+12
* Explain thyselfNicholas Seckar2006-03-161-0/+1
* Breakpoints in running code makes for no fun ;)David Heinemeier Hansson2006-03-161-1/+0
* Fixes a bug in routes controller traversing which caused it to fail on for do...Tobias Lütke2006-03-151-2/+3
* Check NameErrors and re-raise if they do not match the expected constantNicholas Seckar2006-02-221-3/+7
* Don't let arbitrary classes match as controllersNicholas Seckar2006-02-041-1/+2
* Fix Routing tests. Fix routing where failing to match a controller would prev...Nicholas Seckar2006-02-041-4/+3
* fixed small bug in routing which caused the traverse_to_controller mechanism ...Tobias Lütke2006-02-041-1/+1
* Remove unneeded loggingNicholas Seckar2006-02-041-4/+1
* Fix controller resolution to avoid accidentally inheriting a controller from ...Nicholas Seckar2006-02-041-2/+6
* Remove LoadingModuleNicholas Seckar2006-02-031-7/+19
* Initialize @optional in routing code to avoid warningsNicholas Seckar2005-11-221-0/+1