| OLD | NEW |
| 1 application: dart-lang | 1 application: dart-lang |
| 2 version: CHANGEME | 2 version: CHANGEME |
| 3 # NOTE: URL is CHANGEME.dart-lang.appspot.com | 3 # NOTE: URL is CHANGEME.dart-lang.appspot.com |
| 4 # To get your own staging server, change 'CHANGEME' to something | 4 # To get your own staging server, change 'CHANGEME' to something |
| 5 # like 'kathyw' or 'kathyw-dartium'. | 5 # like 'kathyw' or 'kathyw-dartium'. |
| 6 # | 6 # |
| 7 # To deploy to dartlang.org (only from a clean master workspace) | 7 # To deploy to dartlang.org (only from a clean master workspace) |
| 8 # change CHANGEME to a date string: YYYY-MM-DD. | 8 # change CHANGEME to a date string: YYYY-MM-DD. |
| 9 # For more information on making changes, see goto/dartsiteupdate. | 9 # For more information on making changes, see goto/dartsiteupdate. |
| 10 # | 10 # |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 - url: /docs/api/.* | 43 - url: /docs/api/.* |
| 44 script: scripts.redirector.application | 44 script: scripts.redirector.application |
| 45 | 45 |
| 46 - url: /language-tour/.* | 46 - url: /language-tour/.* |
| 47 script: scripts.redirector.application | 47 script: scripts.redirector.application |
| 48 | 48 |
| 49 - url: /docs/getting-started/sdk/.* | 49 - url: /docs/getting-started/sdk/.* |
| 50 script: scripts.redirector.application | 50 script: scripts.redirector.application |
| 51 | 51 |
| 52 - url: /resources/ |
| 53 script: scripts.redirector.application |
| 54 |
| 52 - url: /(.*\.png) | 55 - url: /(.*\.png) |
| 53 static_files: static/\1 | 56 static_files: static/\1 |
| 54 expiration: 1d | 57 expiration: 1d |
| 55 upload: static/(.*\.png) | 58 upload: static/(.*\.png) |
| 56 | 59 |
| 57 - url: /(.*\.ico) | 60 - url: /(.*\.ico) |
| 58 static_files: static/\1 | 61 static_files: static/\1 |
| 59 expiration: 7d | 62 expiration: 7d |
| 60 upload: static/(.*\.ico) | 63 upload: static/(.*\.ico) |
| 61 | 64 |
| 62 - url: /(.*\.jpg) | 65 - url: /(.*\.jpg) |
| 63 static_files: static/\1 | 66 static_files: static/\1 |
| 64 expiration: 1d | 67 expiration: 1d |
| 65 upload: static/(.*\.jpg) | 68 upload: static/(.*\.jpg) |
| 66 | 69 |
| 70 - url: /(.*\.woff) |
| 71 static_files: static/\1 |
| 72 expiration: 7d |
| 73 upload: static/(.*\.woff) |
| 74 |
| 67 - url: (.*)/ | 75 - url: (.*)/ |
| 68 static_files: static\1/index.html | 76 static_files: static\1/index.html |
| 69 upload: static/index.html | 77 upload: static/index.html |
| 70 | 78 |
| 71 - url: / | 79 - url: / |
| 72 static_dir: static | 80 static_dir: static |
| OLD | NEW |