Changeset - 32e7e43ad754
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 15 years ago 2010-05-19 00:31:41
marcin@python-works.com
removed unneeded parameters from changelog and shortlog
1 file changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
pylons_app/config/routing.py
Show inline comments
 
@@ -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:.*}',
0 comments (0 inline, 0 general)