Mercurial > public > src > rhodecode
diff pylons_app/config/routing.py @ 129:42d46deb124d
implemented simple diffs for history of files.
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Tue, 04 May 2010 00:54:00 +0200 |
parents | cfddee9d3693 |
children | f7218849798a |
line wrap: on
line diff
--- a/pylons_app/config/routing.py Mon May 03 21:59:01 2010 +0200 +++ b/pylons_app/config/routing.py Tue May 04 00:54:00 2010 +0200 @@ -39,6 +39,6 @@ map.connect('tags_home', '/{repo_name}/tags', controller='tags') map.connect('graph_home', '/{repo_name}/graph/{revision}', controller='graph', revision='tip') 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:.*}', controller='files', action='diff', revision='tip', f_path='') return map