| 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: /static/images | 17 - url: /static/images |
| 18 static_dir: ui/static/images | 18 static_dir: ui/static/images |
| 19 | 19 |
| 20 - url: /bower_components | 20 - url: /bower_components |
| 21 static_dir: ui/bower_components | 21 static_dir: ui/bower_components |
| 22 | 22 |
| 23 - url: /common |
| 24 static_dir: ui/common |
| 25 |
| 23 - url: /src | 26 - url: /src |
| 24 static_dir: ui/src | 27 static_dir: ui/src |
| 25 | 28 |
| 26 - url: /_ah/spi/.* | 29 - url: /_ah/spi/.* |
| 27 script: apps.endpoints | 30 script: apps.endpoints |
| 28 | 31 |
| 29 - url: /newui | |
| 30 static_files: ui/static/index.html | |
| 31 upload: ui/static/index.html | |
| 32 | |
| 33 - url: /.* | 32 - url: /.* |
| 34 script: apps.html | 33 script: apps.html |
| 35 secure: always | 34 secure: always |
| 36 | 35 |
| 37 libraries: | 36 libraries: |
| 38 - name: endpoints | 37 - name: endpoints |
| 39 version: 1.0 | 38 version: 1.0 |
| 40 - name: pycrypto | 39 - name: pycrypto |
| 41 version: "2.6" | 40 version: "2.6" |
| 42 - name: webapp2 | 41 - name: webapp2 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 64 - .+_test\.py$ | 63 - .+_test\.py$ |
| 65 # Junk files. | 64 # Junk files. |
| 66 - ^(.*/)?\..* | 65 - ^(.*/)?\..* |
| 67 - .+\.orig$ | 66 - .+\.orig$ |
| 68 - .+\.rej$ | 67 - .+\.rej$ |
| 69 - ^(.*/)?#.*# | 68 - ^(.*/)?#.*# |
| 70 - .+~ | 69 - .+~ |
| 71 - .+\.py[co] | 70 - .+\.py[co] |
| 72 - ^[A-Z]+$ | 71 - ^[A-Z]+$ |
| 73 - ^[A-Z]+\.[a-z]+$ | 72 - ^[A-Z]+\.[a-z]+$ |
| OLD | NEW |