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 18 matching lines...) Expand all Loading... |
29 (r'^(\d+)/show$', 'show'), | 29 (r'^(\d+)/show$', 'show'), |
30 (r'^(\d+)/add$', 'add'), | 30 (r'^(\d+)/add$', 'add'), |
31 (r'^(\d+)/edit$', 'edit'), | 31 (r'^(\d+)/edit$', 'edit'), |
32 (r'^(\d+)/delete$', 'delete'), | 32 (r'^(\d+)/delete$', 'delete'), |
33 (r'^(\d+)/close$', 'close'), | 33 (r'^(\d+)/close$', 'close'), |
34 (r'^(\d+)/mail$', 'mailissue'), | 34 (r'^(\d+)/mail$', 'mailissue'), |
35 (r'^(\d+)/publish$', 'publish'), | 35 (r'^(\d+)/publish$', 'publish'), |
36 (r'^download/issue(\d+)_(\d+)\.diff', 'download'), | 36 (r'^download/issue(\d+)_(\d+)\.diff', 'download'), |
37 (r'^download/issue(\d+)_(\d+)_(\d+)\.diff', 'download_patch'), | 37 (r'^download/issue(\d+)_(\d+)_(\d+)\.diff', 'download_patch'), |
38 (r'^(\d+)/patch/(\d+)/(\d+)$', 'patch'), | 38 (r'^(\d+)/patch/(\d+)/(\d+)$', 'patch'), |
| 39 (r'^(\d+)/image/(\d+)/(\d+)/(\d+)$', 'image'), |
39 (r'^(\d+)/diff/(\d+)/(\d+)$', 'diff'), | 40 (r'^(\d+)/diff/(\d+)/(\d+)$', 'diff'), |
40 (r'^(\d+)/diff2/(\d+):(\d+)/(\d+)$', 'diff2'), | 41 (r'^(\d+)/diff2/(\d+):(\d+)/(\d+)$', 'diff2'), |
41 (r'^(\d+)/diff_skipped_lines/(\d+)/(\d+)/(\d+)/(\d+)/([tb])$', | 42 (r'^(\d+)/diff_skipped_lines/(\d+)/(\d+)/(\d+)/(\d+)/([tb])$', |
42 'diff_skipped_lines'), | 43 'diff_skipped_lines'), |
43 (r'^(\d+)/diff2_skipped_lines/(\d+):(\d+)/(\d+)/(\d+)/(\d+)/([tb])$', | 44 (r'^(\d+)/diff2_skipped_lines/(\d+):(\d+)/(\d+)/(\d+)/(\d+)/([tb])$', |
44 'diff2_skipped_lines'), | 45 'diff2_skipped_lines'), |
45 (r'^(\d+)/upload_content/(\d+)/(\d+)$', 'upload_content'), | 46 (r'^(\d+)/upload_content/(\d+)/(\d+)$', 'upload_content'), |
46 (r'^(\d+)/upload_patch/(\d+)$', 'upload_patch'), | 47 (r'^(\d+)/upload_patch/(\d+)$', 'upload_patch'), |
47 (r'^(\d+)/description$', 'description'), | 48 (r'^(\d+)/description$', 'description'), |
48 (r'^(\d+)/star$', 'star'), | 49 (r'^(\d+)/star$', 'star'), |
49 (r'^(\d+)/unstar$', 'unstar'), | 50 (r'^(\d+)/unstar$', 'unstar'), |
50 (r'^user/(.+)$', 'show_user'), | 51 (r'^user/(.+)$', 'show_user'), |
51 (r'^inline_draft$', 'inline_draft'), | 52 (r'^inline_draft$', 'inline_draft'), |
52 (r'^repos$', 'repos'), | 53 (r'^repos$', 'repos'), |
53 (r'^repo_new$', 'repo_new'), | 54 (r'^repo_new$', 'repo_new'), |
54 (r'^repo_init$', 'repo_init'), | 55 (r'^repo_init$', 'repo_init'), |
55 (r'^branch_new/(\d+)$', 'branch_new'), | 56 (r'^branch_new/(\d+)$', 'branch_new'), |
56 (r'^branch_edit/(\d+)$', 'branch_edit'), | 57 (r'^branch_edit/(\d+)$', 'branch_edit'), |
57 (r'^branch_delete/(\d+)$', 'branch_delete'), | 58 (r'^branch_delete/(\d+)$', 'branch_delete'), |
58 (r'^settings$', 'settings'), | 59 (r'^settings$', 'settings'), |
59 (r'^user_popup/(.+)$', 'user_popup'), | 60 (r'^user_popup/(.+)$', 'user_popup'), |
60 ) | 61 ) |
OLD | NEW |