diff --git a/pylons_app/config/routing.py b/pylons_app/config/routing.py --- a/pylons_app/config/routing.py +++ b/pylons_app/config/routing.py @@ -37,14 +37,14 @@ def make_map(config): 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:.*}',