OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |