changeset 1148:6f87e177f057 beta

fixed routing from previos merge
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 17 Mar 2011 21:48:00 +0100
parents 0e6035a85980
children d162de13caec
files rhodecode/config/routing.py
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/config/routing.py	Thu Mar 17 03:04:17 2011 +0100
+++ b/rhodecode/config/routing.py	Thu Mar 17 21:48:00 2011 +0100
@@ -36,10 +36,10 @@
     #==========================================================================
 
     #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: