aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/routing.rb
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Backed out of #1694 as it broke requests that hit the cache with wrong argume...David Heinemeier Hansson2005-07-051-24/+12
* Fixed recognize bug introduced with #1694David Heinemeier Hansson2005-07-051-1/+1
* r2840@asus: jeremy | 2005-07-05 00:42:27 -0700Jeremy Kemper2005-07-051-12/+24
* Fixed routing bug #1592David Heinemeier Hansson2005-07-031-0/+2
* A bit more routes refactoring and testDavid Heinemeier Hansson2005-06-291-0/+4
* Routes fail with leading slash #1540 [Nicholas Seckar]Jamis Buck2005-06-281-0/+1
* Badly applied patch fixDavid Heinemeier Hansson2005-06-281-2/+2
* This patch modifies RouteSet#write_generation and RouteSet#write_recognition ...David Heinemeier Hansson2005-06-281-1/+8
* Don't ignore :controller for urls made inside a controller module #1526 [Nich...David Heinemeier Hansson2005-06-271-2/+4
* Make named routes work without hashes #1523 [Nicholas Seckar]David Heinemeier Hansson2005-06-271-1/+1
* Fixed routing bugDavid Heinemeier Hansson2005-06-271-1/+1
* Dont use evals in backtraces #1513David Heinemeier Hansson2005-06-271-6/+8
* Added testing of named routes #1506 [Nicholas Seckar]David Heinemeier Hansson2005-06-261-1/+1
* RoutingError should show 404.html when in public #1503 [Ulysses]Jamis Buck2005-06-251-4/+5
* Fix routes generation for unit tests. #1434Jeremy Kemper2005-06-241-1/+9
* Improved performance of Routes generation by a factor of 5 #1434 [Nicholas Se...David Heinemeier Hansson2005-06-241-272/+508
* Fixed that *rest parameter in map.connect couldn't accept an empty list #1037...David Heinemeier Hansson2005-04-131-1/+5