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

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

Issue 99503002: appropriating Shailen's excellent Futures intro into tutorial (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: another pesky file Created 7 years 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 - url: /docs/technical-overview.* 110 - url: /docs/technical-overview.*
111 script: scripts.redirector.application 111 script: scripts.redirector.application
112 112
113 - url: /docs/getting-started/sdk/.* 113 - url: /docs/getting-started/sdk/.*
114 script: scripts.redirector.application 114 script: scripts.redirector.application
115 115
116 - url: /resources/ 116 - url: /resources/
117 script: scripts.redirector.application 117 script: scripts.redirector.application
118 118
119 - url: /articles/using-future-based-apis/
120 script: scripts.redirector.application
121
119 - url: /articles/profiling/ 122 - url: /articles/profiling/
120 script: scripts.redirector.application 123 script: scripts.redirector.application
121 124
122 - url: /articles/dart-web-components/.* 125 - url: /articles/dart-web-components/.*
123 script: scripts.redirector.application 126 script: scripts.redirector.application
124 127
125 - url: /articles/m1-language-changes/.* 128 - url: /articles/m1-language-changes/.*
126 script: scripts.redirector.application 129 script: scripts.redirector.application
127 130
128 - url: /articles/m2-whats-new/.* 131 - url: /articles/m2-whats-new/.*
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 upload: static/index.html 190 upload: static/index.html
188 secure: always 191 secure: always
189 192
190 - url: (.*\..*) 193 - url: (.*\..*)
191 static_files: static\1 194 static_files: static\1
192 upload: static 195 upload: static
193 secure: always 196 secure: always
194 197
195 - url: .* 198 - url: .*
196 script: scripts.redirector.application 199 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