# HG changeset patch # User Marcin Kuzminski # Date 2011-03-17 21:48:00 # Node ID 6f87e177f0570faf0505c1186ad09ffe3960558b # Parent 0e6035a8598036ebe9ffa8be06bdf005e2802fe5 fixed routing from previos merge diff --git a/rhodecode/config/routing.py b/rhodecode/config/routing.py --- a/rhodecode/config/routing.py +++ b/rhodecode/config/routing.py @@ -36,10 +36,10 @@ def make_map(config): #========================================================================== #MAIN PAGE - map.connect('home', '/', controller='home', action='index') - map.connect('bugtracker', "http://bitbucket.org/marcinkuzminski/rhodecode/issues", _static=True) - map.connect('gpl_license', "http://www.gnu.org/licenses/gpl.html", _static=True) - map.connect('rhodecode_official', "http://rhodecode.org", _static=True) + routes_map.connect('home', '/', controller='home', action='index') + routes_map.connect('bugtracker', "http://bitbucket.org/marcinkuzminski/rhodecode/issues", _static=True) + routes_map.connect('gpl_license', "http://www.gnu.org/licenses/gpl.html", _static=True) + routes_map.connect('rhodecode_official', "http://rhodecode.org", _static=True) #ADMIN REPOSITORY REST ROUTES with routes_map.submapper(path_prefix='/_admin', controller='admin/repos') as m: