comparison pylons_app/config/routing.py @ 126:cfddee9d3693

Updated summary page
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 03 May 2010 18:31:00 +0200
parents 665b344927f4
children 42d46deb124d
comparison
equal deleted inserted replaced
125:2811259dc12d 126:cfddee9d3693
32 m.connect('admin_add_repo', '/add_repo/{new_repo:[a-z0-9\. _-]*}', action='add_repo') 32 m.connect('admin_add_repo', '/add_repo/{new_repo:[a-z0-9\. _-]*}', action='add_repo')
33 33
34 34
35 map.connect('changeset_home', '/{repo_name}/changeset/{revision}', controller='changeset', revision='tip') 35 map.connect('changeset_home', '/{repo_name}/changeset/{revision}', controller='changeset', revision='tip')
36 map.connect('summary_home', '/{repo_name}/summary', controller='summary') 36 map.connect('summary_home', '/{repo_name}/summary', controller='summary')
37 map.connect('changelog_home', '/{repo_name}/changelog', controller='changelog') 37 map.connect('changelog_home', '/{repo_name}/changelog/{revision}', controller='changelog', revision='tip')
38 map.connect('branches_home', '/{repo_name}/branches', controller='branches') 38 map.connect('branches_home', '/{repo_name}/branches', controller='branches')
39 map.connect('tags_home', '/{repo_name}/tags', controller='tags') 39 map.connect('tags_home', '/{repo_name}/tags', controller='tags')
40 map.connect('graph_home', '/{repo_name}/graph/{revision}', controller='graph', revision='tip') 40 map.connect('graph_home', '/{repo_name}/graph/{revision}', controller='graph', revision='tip')
41 map.connect('files_home', '/{repo_name}/files/{revision}/{f_path:.*}', controller='files', revision='tip', f_path='') 41 map.connect('files_home', '/{repo_name}/files/{revision}/{f_path:.*}', controller='files', revision='tip', f_path='')
42 42