comparison pylons_app/config/routing.py @ 162:32e7e43ad754

removed unneeded parameters from changelog and shortlog
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 19 May 2010 00:31:41 +0200
parents b3c93efd1c97
children 55c875d8608b
comparison
equal deleted inserted replaced
161:9936a1d359e0 162:32e7e43ad754
35 35
36 map.connect('changeset_home', '/{repo_name}/changeset/{revision}', 36 map.connect('changeset_home', '/{repo_name}/changeset/{revision}',
37 controller='changeset', revision='tip') 37 controller='changeset', revision='tip')
38 map.connect('summary_home', '/{repo_name}/summary', 38 map.connect('summary_home', '/{repo_name}/summary',
39 controller='summary') 39 controller='summary')
40 map.connect('shortlog_home', '/{repo_name}/shortlog/{revision}', 40 map.connect('shortlog_home', '/{repo_name}/shortlog/',
41 controller='shortlog', revision='tip') 41 controller='shortlog')
42 map.connect('branches_home', '/{repo_name}/branches', 42 map.connect('branches_home', '/{repo_name}/branches',
43 controller='branches') 43 controller='branches')
44 map.connect('tags_home', '/{repo_name}/tags', 44 map.connect('tags_home', '/{repo_name}/tags',
45 controller='tags') 45 controller='tags')
46 map.connect('changelog_home', '/{repo_name}/changelog/{revision}', 46 map.connect('changelog_home', '/{repo_name}/changelog',
47 controller='changelog', revision='tip') 47 controller='changelog')
48 map.connect('files_home', '/{repo_name}/files/{revision}/{f_path:.*}', 48 map.connect('files_home', '/{repo_name}/files/{revision}/{f_path:.*}',
49 controller='files', revision='tip', f_path='') 49 controller='files', revision='tip', f_path='')
50 map.connect('files_diff_home', '/{repo_name}/diff/{f_path:.*}', 50 map.connect('files_diff_home', '/{repo_name}/diff/{f_path:.*}',
51 controller='files', action='diff', revision='tip', f_path='') 51 controller='files', action='diff', revision='tip', f_path='')
52 map.connect('files_raw_home', '/{repo_name}/rawfile/{revision}/{f_path:.*}', 52 map.connect('files_raw_home', '/{repo_name}/rawfile/{revision}/{f_path:.*}',