##// END OF EJS Templates
Fixed routing failure with jruby 1.6....
Jean-Philippe Lang -
r8901:81554eae5af1
parent child
Show More
@@ -264,7 +264,9 ActionController::Routing::Routes.draw do |map|
264 264 repository_views.connect 'projects/:id/repository/:repository_id/raw/*path',
265 265 :action => 'entry', :format => 'raw'
266 266 repository_views.connect 'projects/:id/repository/:repository_id/:action/*path',
267 :requirements => { :action => /(browse|show|entry|changes|annotate|diff)/ }
267 :requirements => { :action => /(browse|entry|changes|annotate|diff)/ }
268 repository_views.connect 'projects/:id/repository/:repository_id/show/*path',
269 :requirements => { :path => /.+/ }
268 270
269 271 repository_views.connect 'projects/:id/repository/revisions',
270 272 :action => 'revisions'
General Comments 0
You need to be logged in to leave comments. Login now