Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: src/appengine/app.yaml

Issue 54813003: remove community, redirect to support, clean up support (Closed) Base URL: git@github.com:dart-lang/dartlang.org.git@master
Patch Set: tweaks Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/appengine/scripts/redirector.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 11 matching lines...) Expand all
22 - CollapseWhitespace 22 - CollapseWhitespace
23 - RemoveComments 23 - RemoveComments
24 - InlineJs 24 - InlineJs
25 url_blacklist: 25 url_blacklist:
26 - http://www.dartlang.org/*/code/out/* 26 - http://www.dartlang.org/*/code/out/*
27 - https://www.dartlang.org/*/code/out/* 27 - https://www.dartlang.org/*/code/out/*
28 28
29 #default_expiration: "1d" 29 #default_expiration: "1d"
30 30
31 handlers: 31 handlers:
32 - url: /community/
33 script: scripts.redirector.application
34
32 - url: /\+ 35 - url: /\+
33 script: scripts.redirector.application 36 script: scripts.redirector.application
34 37
35 - url: /docs/tutorials/web-ui/ 38 - url: /docs/tutorials/web-ui/
36 script: scripts.redirector.application 39 script: scripts.redirector.application
37 40
38 - url: /docs/tutorials/templates/ 41 - url: /docs/tutorials/templates/
39 script: scripts.redirector.application 42 script: scripts.redirector.application
40 43
41 - url: /docs/tutorials/custom-elements/ 44 - url: /docs/tutorials/custom-elements/
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 upload: static/index.html 169 upload: static/index.html
167 secure: always 170 secure: always
168 171
169 - url: (.*\..*) 172 - url: (.*\..*)
170 static_files: static\1 173 static_files: static\1
171 upload: static 174 upload: static
172 secure: always 175 secure: always
173 176
174 - url: .* 177 - url: .*
175 script: scripts.redirector.application 178 script: scripts.redirector.application
OLDNEW
« no previous file with comments | « no previous file | src/appengine/scripts/redirector.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698