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

Side by Side Diff: chrome/common/extensions/docs/templates/json/content_providers.json

Issue 163813002: Docserver: Add clean URL support to the GCS content providers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/extensions/docs/server2/integration_test.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // === Overview === 1 // === Overview ===
2 // 2 //
3 // This file configures where to find and how to serve content in the docserver. 3 // This file configures where to find and how to serve content in the docserver.
4 // It's the most fundamentally important file in all of the docserver. 4 // It's the most fundamentally important file in all of the docserver.
5 // 5 //
6 // === Format === 6 // === Format ===
7 // 7 //
8 // Each entry declares a rule with: 8 // Each entry declares a rule with:
9 // * An arbitrary identifier key e.g. "cr-extensions-examples". 9 // * An arbitrary identifier key e.g. "cr-extensions-examples".
10 // * What URL the rule should be invoked with, given by "serveFrom", e.g. 10 // * What URL the rule should be invoked with, given by "serveFrom", e.g.
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 }, 72 },
73 "cr-native-client": { 73 "cr-native-client": {
74 "chromium": { 74 "chromium": {
75 "dir": "native_client_sdk/doc_generated" 75 "dir": "native_client_sdk/doc_generated"
76 }, 76 },
77 "defaultExtensions": [".html", ".md"], 77 "defaultExtensions": [".html", ".md"],
78 "serveFrom": "native-client", 78 "serveFrom": "native-client",
79 "supportsTemplates": true 79 "supportsTemplates": true
80 }, 80 },
81 "devtools-docs": { 81 "devtools-docs": {
82 "defaultExtensions": [".html", ".md"],
82 "gcs": { 83 "gcs": {
83 "bucket": "gs://chromedocs-devtools" 84 "bucket": "gs://chromedocs-devtools"
84 }, 85 },
85 "serveFrom": "devtools", 86 "serveFrom": "devtools",
86 "supportsTemplates": true 87 "supportsTemplates": true
87 }, 88 },
88 "multidevice-docs": { 89 "multidevice-docs": {
90 "defaultExtensions": [".html", ".md"],
89 "gcs": { 91 "gcs": {
90 "bucket": "gs://chromedocs-multidevice" 92 "bucket": "gs://chromedocs-multidevice"
91 }, 93 },
92 "serveFrom": "multidevice", 94 "serveFrom": "multidevice",
93 "supportsTemplates": true 95 "supportsTemplates": true
94 }, 96 },
95 "webstore-docs": { 97 "webstore-docs": {
98 "defaultExtensions": [".html", ".md"],
96 "gcs": { 99 "gcs": {
97 "bucket": "gs://chromedocs-webstore" 100 "bucket": "gs://chromedocs-webstore"
98 }, 101 },
99 "serveFrom": "webstore", 102 "serveFrom": "webstore",
100 "supportsTemplates": true 103 "supportsTemplates": true
101 } 104 }
102 } 105 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/server2/integration_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698