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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 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.
6
7
8 # Extensions-related paths within the Chromium repository.
9
10 EXTENSIONS = 'chrome/common/extensions'
11
12 API = j(EXTENSIONS, 'api')
13 DOCS = j(EXTENSIONS, 'docs')
14
15 API_FEATURES = j(API, '_api_features.json')
16 MANIFEST_FEATURES = j(API, '_manifest_features.json')
17 PERMISSION_FEATURES = j(API, '_permission_features.json')
18
19 EXAMPLES = j(DOCS, 'examples')
20 SERVER2 = j(DOCS, 'server2')
21 STATIC_DOCS = j(DOCS, 'static')
22 TEMPLATES = j(DOCS, 'templates')
23
24 APP_YAML = j(SERVER2, 'app.yaml')
25
26 ARTICLES_TEMPLATES = j(TEMPLATES, 'articles')
27 INTROS_TEMPLATES = j(TEMPLATES, 'intros')
28 JSON_TEMPLATES = j(TEMPLATES, 'json')
29 PRIVATE_TEMPLATES = j(TEMPLATES, 'private')
30 PUBLIC_TEMPLATES = j(TEMPLATES, 'public')
31
32 CONTENT_PROVIDERS = j(JSON_TEMPLATES, 'content_providers.json')
OLDNEW
« 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