diff pylons_app/config/routing.py @ 142:f7218849798a

Changeg graph to changelog, and changelog to shortlog
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 09 May 2010 17:22:30 +0200
parents 42d46deb124d
children d928d5f0a251
line wrap: on
line diff
--- a/pylons_app/config/routing.py	Sun May 09 16:51:42 2010 +0200
+++ b/pylons_app/config/routing.py	Sun May 09 17:22:30 2010 +0200
@@ -34,10 +34,10 @@
     
     map.connect('changeset_home', '/{repo_name}/changeset/{revision}', controller='changeset', revision='tip')
     map.connect('summary_home', '/{repo_name}/summary', controller='summary')
-    map.connect('changelog_home', '/{repo_name}/changelog/{revision}', controller='changelog', revision='tip')
+    map.connect('shortlog_home', '/{repo_name}/shortlog/{revision}', controller='shortlog', revision='tip')
     map.connect('branches_home', '/{repo_name}/branches', controller='branches')
     map.connect('tags_home', '/{repo_name}/tags', controller='tags')
-    map.connect('graph_home', '/{repo_name}/graph/{revision}', controller='graph', revision='tip')    
+    map.connect('changelog_home', '/{repo_name}/changelog/{revision}', controller='changelog', revision='tip')    
     map.connect('files_home', '/{repo_name}/files/{revision}/{f_path:.*}', controller='files', revision='tip', f_path='')
     map.connect('files_diff_home', '/{repo_name}/diff/{f_path:.*}', controller='files', action='diff', revision='tip', f_path='')