| OLD | NEW |
| (Empty) |
| 1 application: chromium-status-hr | |
| 2 version: 1 | |
| 3 runtime: python27 | |
| 4 api_version: 1 | |
| 5 threadsafe: true | |
| 6 | |
| 7 inbound_services: | |
| 8 - warmup | |
| 9 - xmpp_message | |
| 10 | |
| 11 handlers: | |
| 12 - url: /(.*\.(html|js|txt|ttf)) | |
| 13 static_files: static/\1 | |
| 14 upload: static/(.*\.(html|js|txt|ttf)) | |
| 15 | |
| 16 # main will look for a replacement in blobstore, if not, will redirect to | |
| 17 # static/ | |
| 18 - url: /([^/]+\.(gif|png|jpg|ico)) | |
| 19 script: appengine_module.chromium_status.main.APPLICATION | |
| 20 | |
| 21 - url: /static/([^/]+\.(gif|png|jpg|ico)) | |
| 22 static_files: static/\1 | |
| 23 upload: static/([^/]+\.(gif|png|jpg|ico)) | |
| 24 | |
| 25 - url: /stylesheets | |
| 26 static_dir: stylesheets | |
| 27 | |
| 28 - url: /templates | |
| 29 script: appengine_module.chromium_status.templates | |
| 30 | |
| 31 - url: /restricted/.* | |
| 32 script: appengine_module.chromium_status.main.APPLICATION | |
| 33 login: admin | |
| 34 | |
| 35 - url: /.* | |
| 36 script: appengine_module.chromium_status.main.APPLICATION | |
| 37 | |
| 38 | |
| 39 # Search DEFAULT_SKIP_FILES in google.appengine.api.appinfo plus a few others | |
| 40 skip_files: | | |
| 41 ^(.*/)?( | |
| 42 (app\.yaml)| | |
| 43 (app\.yml)| | |
| 44 (index\.yaml)| | |
| 45 (index\.yml)| | |
| 46 (#.*#)| | |
| 47 (.*~)| | |
| 48 (.*\.py[co])| | |
| 49 (.*/RCS/.*)| | |
| 50 (\..*)| | |
| 51 (tests/.*)| | |
| 52 (tools/.*)| | |
| 53 ([A-Z]+(\.py)?)| | |
| 54 (Makefile)| | |
| 55 (.*\.rej)| | |
| 56 (.*\.orig)| | |
| 57 )$ | |
| OLD | NEW |