index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
actionpack
/
lib
/
action_controller
/
routing.rb
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Routing: better support for escaped values in route segments. Closes #7544.
Jeremy Kemper
2007-02-21
1
-6
/
+12
*
fix form_for example in ActionController::Resources documentation. Closes #7...
Rick Olson
2007-02-04
1
-2
/
+17
*
Allow Routes to generate all urls for a set of options by specifying :generat...
Nicholas Seckar
2007-01-28
1
-0
/
+9
*
Improve routes documentation. Closes #7095.
Jeremy Kemper
2007-01-28
1
-15
/
+26
*
Use a consistent load path to avoid double requires. Fix some scattered Ruby ...
Jeremy Kemper
2007-01-28
1
-2
/
+2
*
Nodoc the irrelevant (from 1.2)
David Heinemeier Hansson
2007-01-26
1
-12
/
+12
*
Routing uses URI escaping for path components and CGI escaping for query para...
Jeremy Kemper
2006-12-28
1
-7
/
+8
*
Fix a bug in Routing where a parameter taken from the path of the current req...
Nicholas Seckar
2006-12-09
1
-3
/
+3
*
Dropped the idea of automatically routing :format for the vanilla routes -- t...
David Heinemeier Hansson
2006-12-04
1
-0
/
+5
*
Update Routing to complain when :controller is not specified by a route. Clos...
Nicholas Seckar
2006-11-22
1
-0
/
+4
*
Reuse named route helper module between Routing reloads to prevent memory leaks.
Nicholas Seckar
2006-11-17
1
-1
/
+5
*
Force *_url named routes to show the host in ActionView [Rick]
Rick Olson
2006-10-20
1
-1
/
+1
*
Fix routing to correctly determine when generation fails. Closes #6300.
Nicholas Seckar
2006-10-16
1
-1
/
+1
*
remove an obsolete #dup call. avoid double negatives, to make the code easier...
Jamis Buck
2006-10-15
1
-3
/
+2
*
Install named routes into ActionView::Base instead of proxying them to the vi...
Nicholas Seckar
2006-10-11
1
-5
/
+2
*
Clear the cache of possible controllers whenever Routes are reloaded.
Nicholas Seckar
2006-09-23
1
-1
/
+3
*
Fix routing to respect user provided requirements and defaults when assigning...
Nicholas Seckar
2006-09-20
1
-8
/
+27
*
Documentation for routes (closes #5165) [rramdas@gmail.com]
David Heinemeier Hansson
2006-09-04
1
-0
/
+188
*
Fixed default routing NoMethodError downcase for nil when default controller ...
David Heinemeier Hansson
2006-09-04
1
-2
/
+5
*
Relax Routing's anchor pattern warning; it was preventing use of [^/] inside ...
Nicholas Seckar
2006-08-15
1
-1
/
+1
*
Add controller_paths variable to Routing; Assign Routing.controller_paths fro...
Nicholas Seckar
2006-08-15
1
-9
/
+8
*
Tweak RoutingError message to show option diffs, not just missing named route...
Rick Olson
2006-08-13
1
-2
/
+2
*
Add RoutingError exception when RouteSet fails to generate a path from a Name...
Rick Olson
2006-08-09
1
-4
/
+7
*
it's me, john wayne
Nicholas Seckar
2006-08-07
1
-12
/
+0
*
Make Routing noisy when an anchor regexp is assigned to a segment. Closes #5674
Nicholas Seckar
2006-08-05
1
-1
/
+4
*
Added map.resources from the Simply Restful plugin (backwards incompatible wi...
David Heinemeier Hansson
2006-07-31
1
-8
/
+1
*
Don't search a load-path of '.' for controller files, since it may include sy...
Jamis Buck
2006-07-27
1
-1
/
+1
*
Remove leak in development mode
Nicholas Seckar
2006-07-17
1
-21
/
+25
*
Add route_name_path method to generate only the path for a named routes. For ...
Nicholas Seckar
2006-06-30
1
-36
/
+44
*
Fix that routes with *path segments in the recall can generate URLs. [Rick]
Rick Olson
2006-06-17
1
-1
/
+1
*
Make sure passed routing options are not mutated by routing code. (closes #5314)
Jamis Buck
2006-06-07
1
-4
/
+5
*
Do some path normalization to prevent the possible_controllers list from cont...
Jamis Buck
2006-06-07
1
-5
/
+31
*
Make sure named routes are never generated relative to some containing module
Jamis Buck
2006-06-06
1
-2
/
+2
*
Improve parameter expiry handling to fix sticky-id issue. Add a more informat...
Jamis Buck
2006-06-06
1
-9
/
+29
*
Remove dependency on Pathname in new routes
Jamis Buck
2006-06-05
1
-2
/
+0
*
Make sure changing the controller from foo/bar to bing/bang does not change r...
Jamis Buck
2006-06-05
1
-1
/
+3
*
Escape the entire path before trying to recognize it (closes #3671)
Jamis Buck
2006-06-05
1
-1
/
+2
*
Make sure :id and friends are properly unescaped (closes #5275).
Jamis Buck
2006-06-05
1
-1
/
+3
*
Make sure regexp chunks are grouped when the segment has a regexp constraint ...
Jamis Buck
2006-06-05
1
-1
/
+1
*
Add RouteSet::Mapper#named_route for compatibility with adding programmatical...
Jamis Buck
2006-06-01
1
-1
/
+5
*
New routes implementation. Simpler, faster, easier to understand. The publish...
Jamis Buck
2006-06-01
1
-586
/
+885
*
If not passing a hash, assume :id => whatever
David Heinemeier Hansson
2006-05-31
1
-1
/
+1
*
Small fix in routing to allow dynamic routes (broken after [4242]) [Rick]
Rick Olson
2006-04-30
1
-2
/
+2
*
fix to ';' interpretation in route recognition--only follow a route with ';' ...
Jamis Buck
2006-04-21
1
-4
/
+5
*
Add support in routes for semicolon delimited "subpaths", like /books/:id;:ac...
Jamis Buck
2006-04-21
1
-7
/
+56
*
Modify routing so that you can say :require => { :method => :post } for a rou...
Jamis Buck
2006-04-13
1
-5
/
+12
*
Explain thyself
Nicholas Seckar
2006-03-16
1
-0
/
+1
*
Breakpoints in running code makes for no fun ;)
David Heinemeier Hansson
2006-03-16
1
-1
/
+0
*
Fixes a bug in routes controller traversing which caused it to fail on for do...
Tobias Lütke
2006-03-15
1
-2
/
+3
*
Check NameErrors and re-raise if they do not match the expected constant
Nicholas Seckar
2006-02-22
1
-3
/
+7
[prev]
[next]