comparison pylons_app/config/routing.py @ 99:5b57295601b6

Updated basic files browser with, pygments
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 25 Apr 2010 01:19:21 +0200
parents 2968fb635787
children 665b344927f4
comparison
equal deleted inserted replaced
98:01d0f363f36d 99:5b57295601b6
35 map.connect('summary_home', '/{repo_name}/summary', controller='summary') 35 map.connect('summary_home', '/{repo_name}/summary', controller='summary')
36 map.connect('changelog_home', '/{repo_name}/changelog', controller='changelog') 36 map.connect('changelog_home', '/{repo_name}/changelog', controller='changelog')
37 map.connect('branches_home', '/{repo_name}/branches', controller='branches') 37 map.connect('branches_home', '/{repo_name}/branches', controller='branches')
38 map.connect('tags_home', '/{repo_name}/tags', controller='tags') 38 map.connect('tags_home', '/{repo_name}/tags', controller='tags')
39 map.connect('graph_home', '/{repo_name}/graph/{revision}', controller='graph', revision='tip') 39 map.connect('graph_home', '/{repo_name}/graph/{revision}', controller='graph', revision='tip')
40 map.connect('files_home', '/{repo_name}/files/{revision}/{path_info:.*}', controller='files', revision='tip', path_info='') 40 map.connect('files_home', '/{repo_name}/files/{revision}/{f_path:.*}', controller='files', revision='tip', f_path='')
41 41
42 42
43 return map 43 return map