| OLD | NEW |
| 1 application: chromium-build | 1 application: chromium-build |
| 2 version: 1 | 2 version: 1 |
| 3 runtime: python27 | 3 runtime: python27 |
| 4 api_version: 1 | 4 api_version: 1 |
| 5 threadsafe: true | 5 threadsafe: true |
| 6 | 6 |
| 7 handlers: | 7 handlers: |
| 8 - url: /(.+.ico) | 8 - url: /(.+.ico) |
| 9 static_files: static/\1 | 9 static_files: static/\1 |
| 10 mime_type: image/x-icon | 10 mime_type: image/x-icon |
| 11 upload: static/(.+.ico) | 11 upload: static/(.+.ico) |
| 12 | 12 |
| 13 - url: /(robots\.txt) | 13 - url: /(robots\.txt) |
| 14 static_files: static/\1 | 14 static_files: static/\1 |
| 15 mime_type: text/plain | 15 mime_type: text/plain |
| 16 upload: static/(robots\.txt) | 16 upload: static/(robots\.txt) |
| 17 | 17 |
| 18 - url: /static | 18 - url: /static |
| 19 static_dir: static | 19 static_dir: static |
| 20 | 20 |
| 21 - url: /tasks/.* | 21 - url: /tasks/.* |
| 22 script: handler.application | 22 script: handler.application |
| 23 login: admin | 23 login: admin |
| 24 | 24 |
| 25 - url: /restricted/merger/.* | 25 - url: /restricted/merger/.* |
| 26 script: merger.application | 26 script: merger.application |
| 27 login: admin | 27 login: admin |
| 28 | 28 |
| 29 - url: /buildbot/.* |
| 30 script: buildlogparse.app |
| 31 |
| 29 - url: /.* | 32 - url: /.* |
| 30 script: handler.application | 33 script: handler.application |
| 31 | 34 |
| 32 libraries: | 35 libraries: |
| 33 - name: django | 36 - name: django |
| 34 version: 1.2 | 37 version: 1.2 |
| 35 - name: jinja2 | 38 - name: jinja2 |
| 36 version: 2.6 | 39 version: 2.6 |
| 37 | 40 |
| 38 builtins: | 41 builtins: |
| 39 - appstats: on | 42 - appstats: on |
| 40 - deferred: on | 43 - deferred: on |
| 41 - remote_api: on | 44 - remote_api: on |
| 42 | 45 |
| 43 skip_files: | 46 skip_files: |
| 44 - ^(.*/)?app\.yaml | 47 - ^(.*/)?app\.yaml |
| 45 - ^(.*/)?app\.yml | 48 - ^(.*/)?app\.yml |
| 46 - ^(.*/)?index\.yaml | 49 - ^(.*/)?index\.yaml |
| 47 - ^(.*/)?index\.yml | 50 - ^(.*/)?index\.yml |
| 48 - ^(.*/)?#.*# | 51 - ^(.*/)?#.*# |
| 49 - ^(.*/)?.*~ | 52 - ^(.*/)?.*~ |
| 50 - ^(.*/)?.*\.py[co] | 53 - ^(.*/)?.*\.py[co] |
| 51 - ^(.*/)?.*/RCS/.* | 54 - ^(.*/)?.*/RCS/.* |
| 52 - ^(.*/)?\..* | 55 - ^(.*/)?\..* |
| 53 - ^(.*/)?.*\.bak$ | 56 - ^(.*/)?.*\.bak$ |
| 54 - tests/(.*/)?.* | 57 - tests/(.*/)?.* |
| OLD | NEW |