| OLD | NEW |
| 1 # Copyright 2015 The LUCI Authors. All rights reserved. | 1 # Copyright 2015 The LUCI Authors. All rights reserved. |
| 2 # Use of this source code is governed under the Apache License, Version 2.0 | 2 # Use of this source code is governed under the Apache License, Version 2.0 |
| 3 # that can be found in the LICENSE file. | 3 # that can be found in the LICENSE file. |
| 4 | 4 |
| 5 application: luci-config | 5 application: luci-config |
| 6 version: 1 | 6 version: 1 |
| 7 runtime: python27 | 7 runtime: python27 |
| 8 api_version: 1 | 8 api_version: 1 |
| 9 threadsafe: true | 9 threadsafe: true |
| 10 | 10 |
| 11 handlers: | 11 handlers: |
| 12 - url: /favicon.ico | 12 - url: /favicon.ico |
| 13 static_files: static/favicon.ico | 13 static_files: static/favicon.ico |
| 14 upload: static/favicon.ico | 14 upload: static/favicon.ico |
| 15 secure: always | 15 secure: always |
| 16 | 16 |
| 17 - url: /elements.html |
| 18 static_files: ui/static/elements.html |
| 19 upload: ui/static/elements.html |
| 20 |
| 17 - url: /static/images | 21 - url: /static/images |
| 18 static_dir: ui/static/images | 22 static_dir: ui/static/images |
| 19 | 23 |
| 20 - url: /bower_components | 24 - url: /bower_components |
| 21 static_dir: ui/bower_components | 25 static_dir: ui/bower_components |
| 22 | 26 |
| 23 - url: /common | 27 - url: /common |
| 24 static_dir: ui/common | 28 static_dir: ui/common |
| 25 | 29 |
| 26 - url: /src | 30 - url: /src |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 - .+_test\.py$ | 67 - .+_test\.py$ |
| 64 # Junk files. | 68 # Junk files. |
| 65 - ^(.*/)?\..* | 69 - ^(.*/)?\..* |
| 66 - .+\.orig$ | 70 - .+\.orig$ |
| 67 - .+\.rej$ | 71 - .+\.rej$ |
| 68 - ^(.*/)?#.*# | 72 - ^(.*/)?#.*# |
| 69 - .+~ | 73 - .+~ |
| 70 - .+\.py[co] | 74 - .+\.py[co] |
| 71 - ^[A-Z]+$ | 75 - ^[A-Z]+$ |
| 72 - ^[A-Z]+\.[a-z]+$ | 76 - ^[A-Z]+\.[a-z]+$ |
| OLD | NEW |