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

Unified Diff: utils/apidoc/app_engine/app.yaml

Issue 10831002: serve api docs from cloud storage (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: I did the TODO Created 8 years, 5 months 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 side-by-side diff with in-line comments
Download patch
Index: utils/apidoc/app_engine/app.yaml
diff --git a/utils/apidoc/app_engine/app.yaml b/utils/apidoc/app_engine/app.yaml
index f953f1d1261c41f52122a485204e716d5ccfc923..95739bb36568a1e13de73c3adc6468817c37312a 100644
--- a/utils/apidoc/app_engine/app.yaml
+++ b/utils/apidoc/app_engine/app.yaml
@@ -3,7 +3,7 @@
# BSD-style license that can be found in the LICENSE file.
application: dartlang-api
-version: 17
+version: changeme
nweiz 2012/07/25 18:50:49 What's up with this?
sethladd 2012/07/25 20:48:45 We roll the version on every deploy. I could leave
nweiz 2012/07/25 20:58:03 What do you mean by "roll the version"? Why isn't
sethladd 2012/07/25 21:02:13 because both kathy and I deploy, so we use sethlad
runtime: python27
api_version: 1
@@ -13,37 +13,5 @@ threadsafe: true
handlers:
-- url: /dom.*
- script: scripts.redirector.application
-
-- url: /(.*\.png)
- static_files: static/\1
- expiration: 1d
- upload: static/(.*\.png)
-
-- url: /(.*\.ico)
- static_files: static/\1
- expiration: 7d
- upload: static/(.*\.ico)
-
-- url: /(.*\.html)
- static_files: static/\1
- expiration: 2h
- upload: static/(.*\.html)
-
-- url: /(.*\.css)
- static_files: static/\1
- expiration: 1d
- upload: static/(.*\.css)
-
-- url: /appcache.manifest
- static_files: static/appcache.manifest
- upload: static/appcache.manifest
- mime_type: text/cache-manifest
-
-- url: (.*)/
- static_files: static\1/index.html
- upload: static/index.html
-
-- url: /
- static_dir: static
+- url: /.*
+ script: scripts.redirector.application
« no previous file with comments | « no previous file | utils/apidoc/app_engine/scripts/redirector.py » ('j') | utils/apidoc/app_engine/scripts/redirector.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698