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

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

Issue 10383129: remove dart dom from docs (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
« no previous file with comments | « utils/apidoc/apidoc.gyp ('k') | utils/apidoc/app_engine/index.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/app_engine/app.yaml
diff --git a/utils/apidoc/app_engine/app.yaml b/utils/apidoc/app_engine/app.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..f953f1d1261c41f52122a485204e716d5ccfc923
--- /dev/null
+++ b/utils/apidoc/app_engine/app.yaml
@@ -0,0 +1,49 @@
+# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+# for details. All rights reserved. Use of this source code is governed by a
+# BSD-style license that can be found in the LICENSE file.
+
+application: dartlang-api
+version: 17
+
+runtime: python27
+api_version: 1
+threadsafe: true
+
+#default_expiration: "2h"
+
+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
« no previous file with comments | « utils/apidoc/apidoc.gyp ('k') | utils/apidoc/app_engine/index.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698