aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/routing.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Add "#:nodoc:" for ActionController::Routing::PathComponent::Result #2209 [l....David Heinemeier Hansson2005-09-171-1/+1
* Add ability to specify Route Regexps for controllers. Closes #1917.Nicholas Seckar2005-09-111-1/+8
* Provide Named Route's hash methods as helper methods. Closes #1744.Nicholas Seckar2005-09-111-1/+4
* Fix routing to handle :some_param => nil betterNicholas Seckar2005-08-261-3/+11
* Fixed construction of get parameters for arraysNicholas Seckar2005-07-181-8/+2
* Add RouteSet#named_route so that RouteSet instance methods do not shadow avai...Nicholas Seckar2005-07-141-4/+12
* Provide correct defaults for Named Routes which do not specify :actionNicholas Seckar2005-07-141-3/+10
* Generate URLs for :action => index when :action => nil is supplied.Nicholas Seckar2005-07-141-4/+13
* Named routes should not provide nil values to url_for. Includes factoring and...Nicholas Seckar2005-07-131-5/+18
* Routes now raise an exception if a path component is misconfigured.Nicholas Seckar2005-07-081-3/+7
* Fix routes to generate proper URLs when given Fixnum defaultsNicholas Seckar2005-07-081-1/+1
* Allow RouteSet#recognition_failed to be used to handle unknown URL forwardingNicholas Seckar2005-07-071-1/+1
* Enable routes to recognize uppercase controller names. Closes #1635Nicholas Seckar2005-07-071-1/+1
* Properly unescape recognized path components. Fixes #1651.Nicholas Seckar2005-07-071-1/+4
* Fixed that named routes didn't use the default values for action and possible...David Heinemeier Hansson2005-07-071-2/+3
* Fixed routing snafuDavid Heinemeier Hansson2005-07-061-0/+1
* Made documentation ready for release (AP)David Heinemeier Hansson2005-07-061-10/+9
* Fixed routing regression on index exceptionDavid Heinemeier Hansson2005-07-051-0/+1
* Routing fixJamis Buck2005-07-051-2/+2