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_dispatch
/
routing
/
mapper.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Make sure options[:anchor] is correct in shorthand cases
wycats
2010-03-16
1
-2
/
+5
*
Don't force singularization of singleton resource names, e.g. /preferences [#...
Andrew White
2010-03-15
1
-8
/
+8
*
Allow default_url_options to be set on route set
Joshua Peek
2010-03-09
1
-0
/
+5
*
Require 'active_support/core_ext/hash/except' in the router.
Carl Lerche
2010-03-08
1
-0
/
+2
*
Whoops. We meant to switch from returning to tap, not vice versa
Carlhuda
2010-03-08
1
-1
/
+1
*
Add support for mount RackApp, :at => "/sprockets" with a shorthand of mount ...
Carlhuda
2010-03-08
1
-6
/
+21
*
Make sure nested singular resources get the correct name
Jan De Poorter
2010-03-07
1
-1
/
+4
*
Make many parts of Rails lazy. In order to facilitate this,
wycats
2010-03-07
1
-1
/
+3
*
Remove implicit controller namespacing from new dsl
Joshua Peek
2010-02-28
1
-1
/
+0
*
Rename router internal option :namespace to :controller_namespace which is it...
José Valim
2010-02-17
1
-3
/
+3
*
Should allow symbols in :only and :except in routes.
José Valim
2010-02-16
1
-5
/
+5
*
Routing Mapper with % interpolation on Ruby 1.9.1 fixed [#3837 status:resolved]
Santiago Pastorino and José Ignacio Costa
2010-02-02
1
-2
/
+1
*
Ensure root routes inside optional scopes works as expected.
José Valim
2010-01-26
1
-2
/
+3
*
Define named routes for other non-GET REST actions
Joshua Peek
2010-01-19
1
-4
/
+32
*
Fix resources_path_names branch which was sending an array as entity. [#3715 ...
José Valim
2010-01-17
1
-34
/
+25
*
Allow custom controller for resource(s) [#3703 state:resolved]
Joshua Peek
2010-01-16
1
-1
/
+1
*
Fix singleton resource named routes
Joshua Peek
2010-01-15
1
-2
/
+2
*
Always join scoped paths with slashes
Joshua Peek
2010-01-15
1
-11
/
+17
*
Cleanup internal resource macro to use method helper shorthand
Joshua Peek
2010-01-15
1
-20
/
+14
*
Routing method shorthand shouldn't clobber :to options
Joshua Peek
2010-01-15
1
-2
/
+2
*
Respect resources_path_names and :path_names options in new dsl
Joshua Peek
2010-01-13
1
-42
/
+87
*
Ensure optional path scopes are properly handled.
José Valim
2010-01-14
1
-8
/
+12
*
Add router support for resources :only and :except actions
Joshua Peek
2010-01-13
1
-16
/
+38
*
Pass :as to resources to change the resource name
Joshua Peek
2010-01-13
1
-4
/
+5
*
Passing in a crud action overloads the default action instead of creating a
Joshua Peek
2010-01-13
1
-2
/
+9
*
Ensure nested namespaces work as expected.
José Valim
2010-01-10
1
-7
/
+4
*
Fixes namespaced routes [#3673 status:resolved]
Joao Carlos
2010-01-10
1
-2
/
+10
*
namespace in routes changes both the path and name prefix.
José Valim
2010-01-06
1
-1
/
+1
*
Ruby 1.9.1 requires hash given to foormat to contain symbols.
José Valim
2010-01-06
1
-1
/
+1
*
redirect in routes takes port into account [#3653 status:resolved]
José Valim
2010-01-05
1
-0
/
+1
*
All router redirect helper to accept a full URI [#3653 state:resolved]
Joshua Peek
2010-01-05
1
-5
/
+13
*
Ruby 1.9: string is not enumerable, so #exclude? is not available
Jeremy Kemper
2009-12-27
1
-5
/
+3
*
Typo
Jeremy Kemper
2009-12-27
1
-1
/
+1
*
Require the enumberable extension from active support because we use #exclude?
David Heinemeier Hansson
2009-12-27
1
-0
/
+2
*
Added shorthand for match 'products/overview' that expands to match 'products...
David Heinemeier Hansson
2009-12-27
1
-1
/
+15
*
rack-mount 0.4
Joshua Peek
2009-12-26
1
-19
/
+19
*
The controller key shouldnt be part of the mapping if its not used
David Heinemeier Hansson
2009-12-25
1
-2
/
+2
*
Extract Mapping class from monster match method
David Heinemeier Hansson
2009-12-24
1
-90
/
+137
*
Its now possible to use match 'stuff' => 'what#stuff' instead of using the :t...
David Heinemeier Hansson
2009-12-20
1
-3
/
+7
*
:to => redirect() can take a String using 1.9-style interpolation or proc tha...
Yehuda Katz
2009-12-20
1
-4
/
+10
*
"new" and "edit" name routes always need to be prepend to the
Joshua Peek
2009-12-11
1
-6
/
+23
*
Use rackmounts recognize api and don't piggyback recognize_path on
Joshua Peek
2009-12-11
1
-1
/
+1
*
Tack format onto resource routes
Joshua Peek
2009-12-08
1
-22
/
+22
*
Remove double scoping blocks and just use one
Joshua Peek
2009-12-08
1
-28
/
+24
*
Seperate scope level for nesting resources
Joshua Peek
2009-12-08
1
-8
/
+16
*
Don't use name prefix by itself unless as is an empty string
Joshua Peek
2009-12-08
1
-1
/
+1
*
Routes added under resource collection should be prefixed with
Joshua Peek
2009-12-08
1
-1
/
+1
*
Fixed named prefix scope in resource member and collection actions
Joshua Peek
2009-12-07
1
-26
/
+34
*
Ignore name_prefix unless there is an explicit name
Joshua Peek
2009-12-07
1
-1
/
+1
*
Move base mapper methods into Base module so plugins can easily
Joshua Peek
2009-12-07
1
-245
/
+247
[next]