Mercurial > public > src > rhodecode
annotate pylons_app/config/routing.py @ 230:d982ed8e32d8
Admin templating updates, added rest permission controllers
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Thu, 27 May 2010 00:44:49 +0200 |
parents | 66b20f525750 |
children | fb7f066126cc |
rev | line source |
---|---|
0 | 1 """Routes configuration |
2 | |
3 The more specific and detailed routes should be defined first so they | |
4 may take precedent over the more generic routes. For more information | |
5 refer to the routes manual at http://routes.groovie.org/docs/ | |
6 """ | |
7 from routes import Mapper | |
8 | |
43 | 9 def make_map(config): |
0 | 10 """Create, configure and return the routes Mapper""" |
43 | 11 map = Mapper(directory=config['pylons.paths']['controllers'], |
12 always_scan=config['debug']) | |
0 | 13 map.minimization = False |
43 | 14 map.explicit = False |
0 | 15 |
16 # The ErrorController route (handles 404/500 error pages); it should | |
17 # likely stay at the top, ensuring it can always be resolved | |
43 | 18 map.connect('/error/{action}', controller='error') |
19 map.connect('/error/{action}/{id}', controller='error') | |
0 | 20 |
21 # CUSTOM ROUTES HERE | |
70
9a2affee4a45
Updated defaults bug of htmlfill + changed routing
Marcin Kuzminski <marcin@python-blog.com>
parents:
55
diff
changeset
|
22 map.connect('hg_home', '/', controller='hg', action='index') |
47
f6ac79182600
Added rest controllers for repos and users,
Marcin Kuzminski <marcin@python-blog.com>
parents:
44
diff
changeset
|
23 |
92 | 24 |
25 #REST controllers | |
47
f6ac79182600
Added rest controllers for repos and users,
Marcin Kuzminski <marcin@python-blog.com>
parents:
44
diff
changeset
|
26 map.resource('repo', 'repos', path_prefix='/_admin') |
f6ac79182600
Added rest controllers for repos and users,
Marcin Kuzminski <marcin@python-blog.com>
parents:
44
diff
changeset
|
27 map.resource('user', 'users', path_prefix='/_admin') |
230
d982ed8e32d8
Admin templating updates, added rest permission controllers
Marcin Kuzminski <marcin@python-works.com>
parents:
205
diff
changeset
|
28 map.resource('permission', 'permissions', path_prefix='/_admin') |
55
e00dccb6f211
Implemented index page using vcs
Marcin Kuzminski <marcin@python-blog.com>
parents:
47
diff
changeset
|
29 |
92 | 30 #ADMIN |
70
9a2affee4a45
Updated defaults bug of htmlfill + changed routing
Marcin Kuzminski <marcin@python-blog.com>
parents:
55
diff
changeset
|
31 with map.submapper(path_prefix='/_admin', controller='admin') as m: |
9a2affee4a45
Updated defaults bug of htmlfill + changed routing
Marcin Kuzminski <marcin@python-blog.com>
parents:
55
diff
changeset
|
32 m.connect('admin_home', '/', action='index')#main page |
149
b3c93efd1c97
Updated template for summary (archives links)
Marcin Kuzminski <marcin@python-works.com>
parents:
148
diff
changeset
|
33 m.connect('admin_add_repo', '/add_repo/{new_repo:[a-z0-9\. _-]*}', |
b3c93efd1c97
Updated template for summary (archives links)
Marcin Kuzminski <marcin@python-works.com>
parents:
148
diff
changeset
|
34 action='add_repo') |
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
Marcin Kuzminski <marcin@python-blog.com>
parents:
70
diff
changeset
|
35 |
205
66b20f525750
Added feed controllers, urls,and changed index page to use them.
Marcin Kuzminski <marcin@python-works.com>
parents:
181
diff
changeset
|
36 #FEEDS |
66b20f525750
Added feed controllers, urls,and changed index page to use them.
Marcin Kuzminski <marcin@python-works.com>
parents:
181
diff
changeset
|
37 map.connect('rss_feed_home', '/{repo_name}/feed/rss', |
66b20f525750
Added feed controllers, urls,and changed index page to use them.
Marcin Kuzminski <marcin@python-works.com>
parents:
181
diff
changeset
|
38 controller='feed', action='rss') |
66b20f525750
Added feed controllers, urls,and changed index page to use them.
Marcin Kuzminski <marcin@python-works.com>
parents:
181
diff
changeset
|
39 map.connect('atom_feed_home', '/{repo_name}/feed/atom', |
66b20f525750
Added feed controllers, urls,and changed index page to use them.
Marcin Kuzminski <marcin@python-works.com>
parents:
181
diff
changeset
|
40 controller='feed', action='atom') |
66b20f525750
Added feed controllers, urls,and changed index page to use them.
Marcin Kuzminski <marcin@python-works.com>
parents:
181
diff
changeset
|
41 |
181
55c875d8608b
added login logout and annotate to urls
Marcin Kuzminski <marcin@python-works.com>
parents:
162
diff
changeset
|
42 map.connect('login_home', '/login', controller='login') |
55c875d8608b
added login logout and annotate to urls
Marcin Kuzminski <marcin@python-works.com>
parents:
162
diff
changeset
|
43 map.connect('logout_home', '/logout', controller='login', action='logout') |
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
Marcin Kuzminski <marcin@python-blog.com>
parents:
70
diff
changeset
|
44 |
148
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
45 map.connect('changeset_home', '/{repo_name}/changeset/{revision}', |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
46 controller='changeset', revision='tip') |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
47 map.connect('summary_home', '/{repo_name}/summary', |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
48 controller='summary') |
205
66b20f525750
Added feed controllers, urls,and changed index page to use them.
Marcin Kuzminski <marcin@python-works.com>
parents:
181
diff
changeset
|
49 map.connect('shortlog_home', '/{repo_name}/shortlog', |
162
32e7e43ad754
removed unneeded parameters from changelog and shortlog
Marcin Kuzminski <marcin@python-works.com>
parents:
149
diff
changeset
|
50 controller='shortlog') |
148
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
51 map.connect('branches_home', '/{repo_name}/branches', |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
52 controller='branches') |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
53 map.connect('tags_home', '/{repo_name}/tags', |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
54 controller='tags') |
162
32e7e43ad754
removed unneeded parameters from changelog and shortlog
Marcin Kuzminski <marcin@python-works.com>
parents:
149
diff
changeset
|
55 map.connect('changelog_home', '/{repo_name}/changelog', |
32e7e43ad754
removed unneeded parameters from changelog and shortlog
Marcin Kuzminski <marcin@python-works.com>
parents:
149
diff
changeset
|
56 controller='changelog') |
148
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
57 map.connect('files_home', '/{repo_name}/files/{revision}/{f_path:.*}', |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
58 controller='files', revision='tip', f_path='') |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
59 map.connect('files_diff_home', '/{repo_name}/diff/{f_path:.*}', |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
60 controller='files', action='diff', revision='tip', f_path='') |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
61 map.connect('files_raw_home', '/{repo_name}/rawfile/{revision}/{f_path:.*}', |
d928d5f0a251
Adde raw file to routes, and refactoring
Marcin Kuzminski <marcin@python-works.com>
parents:
142
diff
changeset
|
62 controller='files', action='rawfile', revision='tip', f_path='') |
181
55c875d8608b
added login logout and annotate to urls
Marcin Kuzminski <marcin@python-works.com>
parents:
162
diff
changeset
|
63 map.connect('files_annotate_home', '/{repo_name}/annotate/{revision}/{f_path:.*}', |
55c875d8608b
added login logout and annotate to urls
Marcin Kuzminski <marcin@python-works.com>
parents:
162
diff
changeset
|
64 controller='files', action='annotate', revision='tip', f_path='') |
149
b3c93efd1c97
Updated template for summary (archives links)
Marcin Kuzminski <marcin@python-works.com>
parents:
148
diff
changeset
|
65 map.connect('files_archive_home', '/{repo_name}/archive/{revision}/{fileformat}', |
b3c93efd1c97
Updated template for summary (archives links)
Marcin Kuzminski <marcin@python-works.com>
parents:
148
diff
changeset
|
66 controller='files', action='archivefile', revision='tip') |
0 | 67 return map |