]> source.dussan.org Git - redmine.git/commitdiff
Plugins cannot route wiki page sub-path (#12749).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 11 Jan 2013 17:42:31 +0000 (17:42 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 11 Jan 2013 17:42:31 +0000 (17:42 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11166 e93f8b46-1217-0410-a6f0-8f06a7374b81

config/routes.rb
test/integration/routing/wiki_test.rb

index 72445cc72a053aeb7b115577bca80d0a590fa227..228e8bf607581a571619f93df17f781e87b9582b 100644 (file)
@@ -157,7 +157,7 @@ RedmineApp::Application.routes.draw do
       end
     end
     match 'wiki', :controller => 'wiki', :action => 'show', :via => :get
-    get 'wiki/:id/:version', :to => 'wiki#show'
+    get 'wiki/:id/:version', :to => 'wiki#show', :constraints => {:version => /\d+/}
     delete 'wiki/:id/:version', :to => 'wiki#destroy_version'
     get 'wiki/:id/:version/annotate', :to => 'wiki#annotate'
     get 'wiki/:id/:version/diff', :to => 'wiki#diff'
index 5deeb7ee1c147f7493e72dd2dbffa4db2a658dc6..b153b095b636fc534d4c434186e93dd3091cac98 100644 (file)
@@ -53,6 +53,10 @@ class RoutingWikiTest < ActionController::IntegrationTest
          { :controller => 'wiki', :action => 'annotate', :project_id => '1',
            :id => 'CookBook_documentation', :version => '2' }
        )
+    # Make sure we don't route wiki page sub-uris to let plugins handle them
+    assert_raise(ActionController::RoutingError) do
+      assert_recognizes({}, {:method => 'get', :path => "/projects/1/wiki/CookBook_documentation/whatever"})
+    end
   end
 
   def test_wiki_misc