OLD | NEW |
1 application: chromium-status-hr | 1 application: chromium-status-hr |
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 inbound_services: | 7 inbound_services: |
8 - warmup | 8 - warmup |
9 - xmpp_message | 9 - xmpp_message |
10 | 10 |
11 handlers: | 11 handlers: |
12 - url: /(.*\.(html|js)) | 12 - url: /(.*\.(html|js|txt|ttf)) |
13 static_files: static/\1 | 13 static_files: static/\1 |
14 upload: static/(.*\.(html|js)) | 14 upload: static/(.*\.(html|js|txt|ttf)) |
15 | 15 |
16 # main will look for a replacement in blobstore, if not, will redirect to | 16 # main will look for a replacement in blobstore, if not, will redirect to |
17 # static/ | 17 # static/ |
18 - url: /([^/]+\.(gif|png|jpg|ico)) | 18 - url: /([^/]+\.(gif|png|jpg|ico)) |
19 script: main.APPLICATION | 19 script: main.APPLICATION |
20 | 20 |
21 - url: /static/([^/]+\.(gif|png|jpg|ico)) | 21 - url: /static/([^/]+\.(gif|png|jpg|ico)) |
22 static_files: static/\1 | 22 static_files: static/\1 |
23 upload: static/([^/]+\.(gif|png|jpg|ico)) | 23 upload: static/([^/]+\.(gif|png|jpg|ico)) |
24 | 24 |
(...skipping 23 matching lines...) Expand all Loading... |
48 (.*\.py[co])| | 48 (.*\.py[co])| |
49 (.*/RCS/.*)| | 49 (.*/RCS/.*)| |
50 (\..*)| | 50 (\..*)| |
51 (tests/.*)| | 51 (tests/.*)| |
52 (tools/.*)| | 52 (tools/.*)| |
53 ([A-Z]+(\.py)?)| | 53 ([A-Z]+(\.py)?)| |
54 (Makefile)| | 54 (Makefile)| |
55 (.*\.rej)| | 55 (.*\.rej)| |
56 (.*\.orig)| | 56 (.*\.orig)| |
57 )$ | 57 )$ |
OLD | NEW |