Show More
@@ -593,7 +593,7 b' def includeme(config):' | |||||
593 |
|
593 | |||
594 | config.add_route( |
|
594 | config.add_route( | |
595 | name='branch_remove', |
|
595 | name='branch_remove', | |
596 | pattern='/{repo_name:.*?[^/]}/{branch_name:.*?[^/]}/remove', repo_route=True, repo_accepted_types=['hg', 'git']) |
|
596 | pattern='/{repo_name:.*?[^/]}/branches/{branch_name:.*?[^/]}/remove', repo_route=True, repo_accepted_types=['hg', 'git']) | |
597 | config.add_view( |
|
597 | config.add_view( | |
598 | RepoBranchesView, |
|
598 | RepoBranchesView, | |
599 | attr='remove_branch', |
|
599 | attr='remove_branch', |
@@ -92,7 +92,7 b' function registerRCRoutes() {' | |||||
92 | pyroutes.register('auth_home', '/_admin/auth*traverse', []); |
|
92 | pyroutes.register('auth_home', '/_admin/auth*traverse', []); | |
93 | pyroutes.register('bookmarks_home', '/%(repo_name)s/bookmarks', ['repo_name']); |
|
93 | pyroutes.register('bookmarks_home', '/%(repo_name)s/bookmarks', ['repo_name']); | |
94 | pyroutes.register('branches_home', '/%(repo_name)s/branches', ['repo_name']); |
|
94 | pyroutes.register('branches_home', '/%(repo_name)s/branches', ['repo_name']); | |
95 | pyroutes.register('branch_remove', '/%(repo_name)s/%(branch_name)s/remove', ['repo_name', 'branch_name']); |
|
95 | pyroutes.register('branch_remove', '/%(repo_name)s/branches/%(branch_name)s/remove', ['repo_name', 'branch_name']); | |
96 | pyroutes.register('channelstream_connect', '/_admin/channelstream/connect', []); |
|
96 | pyroutes.register('channelstream_connect', '/_admin/channelstream/connect', []); | |
97 | pyroutes.register('channelstream_proxy', '/_channelstream', []); |
|
97 | pyroutes.register('channelstream_proxy', '/_channelstream', []); | |
98 | pyroutes.register('channelstream_subscribe', '/_admin/channelstream/subscribe', []); |
|
98 | pyroutes.register('channelstream_subscribe', '/_admin/channelstream/subscribe', []); |
@@ -252,7 +252,7 b' def get_url_defs():' | |||||
252 | "pullrequest_show_all_data": "/{repo_name}/pull-request-data", |
|
252 | "pullrequest_show_all_data": "/{repo_name}/pull-request-data", | |
253 | "bookmarks_home": "/{repo_name}/bookmarks", |
|
253 | "bookmarks_home": "/{repo_name}/bookmarks", | |
254 | "branches_home": "/{repo_name}/branches", |
|
254 | "branches_home": "/{repo_name}/branches", | |
255 | "branch_remove": "/{repo_name}/{branch_name}/remove", |
|
255 | "branch_remove": "/{repo_name}/branches/{branch_name}/remove", | |
256 | "tags_home": "/{repo_name}/tags", |
|
256 | "tags_home": "/{repo_name}/tags", | |
257 | "repo_changelog": "/{repo_name}/changelog", |
|
257 | "repo_changelog": "/{repo_name}/changelog", | |
258 | "repo_commits": "/{repo_name}/commits", |
|
258 | "repo_commits": "/{repo_name}/commits", |
General Comments 0
You need to be logged in to leave comments.
Login now