| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 (r'^api/tryservers/?$', 'api_tryservers'), | 98 (r'^api/tryservers/?$', 'api_tryservers'), |
| 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'^user_popup/(.+)$', 'user_popup'), | 104 (r'^user_popup/(.+)$', 'user_popup'), |
| 105 (r'^(\d+)/patchset/(\d+)$', 'patchset'), | 105 (r'^(\d+)/patchset/(\d+)$', 'patchset'), |
| 106 (r'^(\d+)/patchset/(\d+)/delete$', 'delete_patchset'), | 106 (r'^(\d+)/patchset/(\d+)/delete$', 'delete_patchset'), |
| 107 (r'^(\d+)/patchset/(\d+)/edit_patchset_title$', 'edit_patchset_title'), | 107 (r'^(\d+)/patchset/(\d+)/edit_patchset_title$', 'edit_patchset_title'), |
| 108 (r'^(\d+)/patchset/(\d+)/get_depends_on_patchset$', |
| 109 'get_depends_on_patchset'), |
| 108 (r'^account$', 'account'), | 110 (r'^account$', 'account'), |
| 109 (r'^use_uploadpy$', 'use_uploadpy'), | 111 (r'^use_uploadpy$', 'use_uploadpy'), |
| 110 (r'^xsrf_token$', 'xsrf_token'), | 112 (r'^xsrf_token$', 'xsrf_token'), |
| 111 # patching upload.py on the fly | 113 # patching upload.py on the fly |
| 112 (r'^static/upload.py$', 'customized_upload_py'), | 114 (r'^static/upload.py$', 'customized_upload_py'), |
| 113 (r'^search$', 'search'), | 115 (r'^search$', 'search'), |
| 114 (r'^get-access-token$', 'get_access_token'), | 116 (r'^get-access-token$', 'get_access_token'), |
| 115 (r'^oauth2callback$', 'oauth2callback'), | 117 (r'^oauth2callback$', 'oauth2callback'), |
| 116 # Restricted access. | 118 # Restricted access. |
| 117 (r'^restricted/cron/update_yesterday_stats$', | 119 (r'^restricted/cron/update_yesterday_stats$', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 (r'^(\d+)/binary/(\d+)/(\d+)/(\d+)$', 'download_binary'), | 160 (r'^(\d+)/binary/(\d+)/(\d+)/(\d+)$', 'download_binary'), |
| 159 (r'^(\d+)/try/(\d+)/?$', 'try_patchset'), | 161 (r'^(\d+)/try/(\d+)/?$', 'try_patchset'), |
| 160 (r'^conversions$', 'conversions'), | 162 (r'^conversions$', 'conversions'), |
| 161 (r'^status_listener$', 'status_listener'), | 163 (r'^status_listener$', 'status_listener'), |
| 162 (r'^get_pending_try_patchsets$', 'get_pending_try_patchsets'), | 164 (r'^get_pending_try_patchsets$', 'get_pending_try_patchsets'), |
| 163 (r'^restricted/update_default_builders$', 'update_default_builders'), | 165 (r'^restricted/update_default_builders$', 'update_default_builders'), |
| 164 (r'^restricted/delete_old_pending_jobs$', 'delete_old_pending_jobs'), | 166 (r'^restricted/delete_old_pending_jobs$', 'delete_old_pending_jobs'), |
| 165 (r'^restricted/delete_old_pending_jobs_task$', | 167 (r'^restricted/delete_old_pending_jobs_task$', |
| 166 'delete_old_pending_jobs_task'), | 168 'delete_old_pending_jobs_task'), |
| 167 ) | 169 ) |
| OLD | NEW |