##// END OF EJS Templates
removed unneeded parameters from changelog and shortlog
marcink -
r162:32e7e43a default
parent child Browse files
Show More
@@ -37,14 +37,14 b' def make_map(config):'
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:.*}',
General Comments 0
You need to be logged in to leave comments. Login now