fix for branch names with '/'

This commit is contained in:
gitlabhq 2011-11-16 12:30:17 -05:00
parent c226558644
commit 79bcdfb8d7
1 changed files with 8 additions and 3 deletions

View File

@ -41,14 +41,19 @@ Gitlab::Application.routes.draw do
end
member do
get "tree", :constraints => { :id => /[a-zA-Z.0-9_\-]+/ }
get "blob"
get "tree", :constraints => { :id => /[a-zA-Z.\/0-9_\-]+/ }
get "blob",
:constraints => {
:id => /[a-zA-Z.0-9\/_\-]+/,
:path => /.*/
}
# tree viewer
get "tree/:path" => "refs#tree",
:as => :tree_file,
:constraints => {
:id => /[a-zA-Z.0-9_\-]+/,
:id => /[a-zA-Z.0-9\/_\-]+/,
:path => /.*/
}
end