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

Unified Diff: chrome/common/extensions/docs/server2/extensions_paths.py

Issue 68873003: Docserver: Serve docs out of src/ not src/chrome/common/extensions. This allows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/server2/extensions_paths.py
diff --git a/chrome/common/extensions/docs/server2/extensions_paths.py b/chrome/common/extensions/docs/server2/extensions_paths.py
new file mode 100644
index 0000000000000000000000000000000000000000..c1f55b7d59c060407148b04361f924ec7fa5c1df
--- /dev/null
+++ b/chrome/common/extensions/docs/server2/extensions_paths.py
@@ -0,0 +1,32 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+from posixpath import join as j
Yoyo Zhou 2013/11/13 22:02:00 "j" - is this really necessary?
not at google - send to devlin 2013/11/13 22:05:46 Done.
+
+
+# Extensions-related paths within the Chromium repository.
+
+EXTENSIONS = 'chrome/common/extensions'
+
+API = j(EXTENSIONS, 'api')
+DOCS = j(EXTENSIONS, 'docs')
+
+API_FEATURES = j(API, '_api_features.json')
+MANIFEST_FEATURES = j(API, '_manifest_features.json')
+PERMISSION_FEATURES = j(API, '_permission_features.json')
+
+EXAMPLES = j(DOCS, 'examples')
+SERVER2 = j(DOCS, 'server2')
+STATIC_DOCS = j(DOCS, 'static')
+TEMPLATES = j(DOCS, 'templates')
+
+APP_YAML = j(SERVER2, 'app.yaml')
+
+ARTICLES_TEMPLATES = j(TEMPLATES, 'articles')
+INTROS_TEMPLATES = j(TEMPLATES, 'intros')
+JSON_TEMPLATES = j(TEMPLATES, 'json')
+PRIVATE_TEMPLATES = j(TEMPLATES, 'private')
+PUBLIC_TEMPLATES = j(TEMPLATES, 'public')
+
+CONTENT_PROVIDERS = j(JSON_TEMPLATES, 'content_providers.json')
« no previous file with comments | « chrome/common/extensions/docs/server2/cron_servlet_test.py ('k') | chrome/common/extensions/docs/server2/fake_fetchers.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698