Mercurial > public > src > rhodecode
diff pylons_app/config/routing.py @ 74:cdf4fda66dd9
Started summary page. Added filters to templates. used by n,self.f.filtername prefixed by n to disable other filters. Few other fixes found
author | Marcin Kuzminski <marcin@python-blog.com> |
---|---|
date | Mon, 12 Apr 2010 10:29:18 +0200 |
parents | 9a2affee4a45 |
children | 928416088790 |
line wrap: on
line diff
--- a/pylons_app/config/routing.py Sun Apr 11 22:57:16 2010 +0200 +++ b/pylons_app/config/routing.py Mon Apr 12 10:29:18 2010 +0200 @@ -28,7 +28,9 @@ with map.submapper(path_prefix='/_admin', controller='admin') as m: m.connect('admin_home', '/', action='index')#main page m.connect('admin_add_repo', '/add_repo/{new_repo:[a-z0-9\. _-]*}', action='add_repo') - + + + map.connect('summary_home', '/{repo_name}/_summary', controller='hg', action='view') map.connect('hg', '/{path_info:.*}', controller='hg', action="view", path_info='/')