OLD | NEW |
1 # Copyright 2008 Google Inc. | 1 # Copyright 2008 Google Inc. |
2 # | 2 # |
3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
6 # | 6 # |
7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
8 # | 8 # |
9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 (r'^api/(\d+)/(\d+)/?$', 'api_patchset'), | 99 (r'^api/(\d+)/(\d+)/?$', 'api_patchset'), |
100 (r'^api/(\d+)/(\d+)/try_job_results/?$', 'api_patchset_try_job_results'), | 100 (r'^api/(\d+)/(\d+)/try_job_results/?$', 'api_patchset_try_job_results'), |
101 (r'^tarball/(\d+)/(\d+)$', 'tarball'), | 101 (r'^tarball/(\d+)/(\d+)$', 'tarball'), |
102 (r'^inline_draft$', 'inline_draft'), | 102 (r'^inline_draft$', 'inline_draft'), |
103 (r'^account_delete$', 'account_delete'), | 103 (r'^account_delete$', 'account_delete'), |
104 (r'^migrate_entities$', 'migrate_entities'), | 104 (r'^migrate_entities$', 'migrate_entities'), |
105 (r'^user_popup/(.+)$', 'user_popup'), | 105 (r'^user_popup/(.+)$', 'user_popup'), |
106 (r'^(\d+)/patchset/(\d+)$', 'patchset'), | 106 (r'^(\d+)/patchset/(\d+)$', 'patchset'), |
107 (r'^(\d+)/patchset/(\d+)/delete$', 'delete_patchset'), | 107 (r'^(\d+)/patchset/(\d+)/delete$', 'delete_patchset'), |
108 (r'^(\d+)/patchset/(\d+)/edit_patchset_title$', 'edit_patchset_title'), | 108 (r'^(\d+)/patchset/(\d+)/edit_patchset_title$', 'edit_patchset_title'), |
| 109 (r'^(\d+)/patchset/(\d+)/get_depends_on_patchset$', |
| 110 'get_depends_on_patchset'), |
109 (r'^account$', 'account'), | 111 (r'^account$', 'account'), |
110 (r'^use_uploadpy$', 'use_uploadpy'), | 112 (r'^use_uploadpy$', 'use_uploadpy'), |
111 (r'^xsrf_token$', 'xsrf_token'), | 113 (r'^xsrf_token$', 'xsrf_token'), |
112 # patching upload.py on the fly | 114 # patching upload.py on the fly |
113 (r'^static/upload.py$', 'customized_upload_py'), | 115 (r'^static/upload.py$', 'customized_upload_py'), |
114 (r'^search$', 'search'), | 116 (r'^search$', 'search'), |
115 (r'^get-access-token$', 'get_access_token'), | 117 (r'^get-access-token$', 'get_access_token'), |
116 (r'^oauth2callback$', 'oauth2callback'), | 118 (r'^oauth2callback$', 'oauth2callback'), |
117 # Restricted access. | 119 # Restricted access. |
118 (r'^restricted/cron/update_yesterday_stats$', | 120 (r'^restricted/cron/update_yesterday_stats$', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 (r'^(\d+)/binary/(\d+)/(\d+)/(\d+)$', 'download_binary'), | 162 (r'^(\d+)/binary/(\d+)/(\d+)/(\d+)$', 'download_binary'), |
161 (r'^(\d+)/try/(\d+)/?$', 'try_patchset'), | 163 (r'^(\d+)/try/(\d+)/?$', 'try_patchset'), |
162 (r'^conversions$', 'conversions'), | 164 (r'^conversions$', 'conversions'), |
163 (r'^status_listener$', 'status_listener'), | 165 (r'^status_listener$', 'status_listener'), |
164 (r'^get_pending_try_patchsets$', 'get_pending_try_patchsets'), | 166 (r'^get_pending_try_patchsets$', 'get_pending_try_patchsets'), |
165 (r'^restricted/update_default_builders$', 'update_default_builders'), | 167 (r'^restricted/update_default_builders$', 'update_default_builders'), |
166 (r'^restricted/delete_old_pending_jobs$', 'delete_old_pending_jobs'), | 168 (r'^restricted/delete_old_pending_jobs$', 'delete_old_pending_jobs'), |
167 (r'^restricted/delete_old_pending_jobs_task$', | 169 (r'^restricted/delete_old_pending_jobs_task$', |
168 'delete_old_pending_jobs_task'), | 170 'delete_old_pending_jobs_task'), |
169 ) | 171 ) |
OLD | NEW |