# HG changeset patch # User Marcin Kuzminski # Date 1274221901 -7200 # Node ID 32e7e43ad75430f16077c165a3f813038727f15b # Parent 9936a1d359e00bac5131a586e1f9c24d6fc15981 removed unneeded parameters from changelog and shortlog diff -r 9936a1d359e0 -r 32e7e43ad754 pylons_app/config/routing.py --- a/pylons_app/config/routing.py Wed May 19 00:20:18 2010 +0200 +++ b/pylons_app/config/routing.py Wed May 19 00:31:41 2010 +0200 @@ -37,14 +37,14 @@ controller='changeset', revision='tip') map.connect('summary_home', '/{repo_name}/summary', controller='summary') - map.connect('shortlog_home', '/{repo_name}/shortlog/{revision}', - controller='shortlog', revision='tip') + map.connect('shortlog_home', '/{repo_name}/shortlog/', + controller='shortlog') map.connect('branches_home', '/{repo_name}/branches', controller='branches') map.connect('tags_home', '/{repo_name}/tags', controller='tags') - map.connect('changelog_home', '/{repo_name}/changelog/{revision}', - controller='changelog', revision='tip') + map.connect('changelog_home', '/{repo_name}/changelog', + controller='changelog') 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:.*}',