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 27 matching lines...) Expand all Loading... |
38 // * "supportsTemplates" indicates whether HTML files should be treated and | 38 // * "supportsTemplates" indicates whether HTML files should be treated and |
39 // renderered as templates, versus just plain text. Complex documentation | 39 // renderered as templates, versus just plain text. Complex documentation |
40 // which interacts with docserver features (like API listing) need to set | 40 // which interacts with docserver features (like API listing) need to set |
41 // this to true. Otherwise, it's safer and more efficient to omit it. | 41 // this to true. Otherwise, it's safer and more efficient to omit it. |
42 | 42 |
43 { | 43 { |
44 "cr-chrome-docs-home": { | 44 "cr-chrome-docs-home": { |
45 "chromium": { | 45 "chromium": { |
46 "dir": "chrome/docs" | 46 "dir": "chrome/docs" |
47 }, | 47 }, |
| 48 "defaultExtensions": [".html", ".md"], |
48 "serveFrom": "home", | 49 "serveFrom": "home", |
49 "supportsTemplates": true | 50 "supportsTemplates": true |
50 }, | 51 }, |
51 "cr-extensions-examples": { | 52 "cr-extensions-examples": { |
52 "chromium": { | 53 "chromium": { |
53 "dir": "chrome/common/extensions/docs/examples" | 54 "dir": "chrome/common/extensions/docs/examples" |
54 }, | 55 }, |
55 "serveFrom": "extensions/examples", | 56 "serveFrom": "extensions/examples", |
56 "supportsZip": true | 57 "supportsZip": true |
57 }, | 58 }, |
58 "cr-public": { | 59 "cr-public": { |
59 "chromium": { | 60 "chromium": { |
60 "dir": "chrome/common/extensions/docs/templates/public" | 61 "dir": "chrome/common/extensions/docs/templates/public" |
61 }, | 62 }, |
| 63 "defaultExtensions": [".html", ".md"], |
62 "serveFrom": "", | 64 "serveFrom": "", |
63 "supportsTemplates": true | 65 "supportsTemplates": true |
64 }, | 66 }, |
65 "cr-static": { | 67 "cr-static": { |
66 "chromium": { | 68 "chromium": { |
67 "dir": "chrome/common/extensions/docs/static" | 69 "dir": "chrome/common/extensions/docs/static" |
68 }, | 70 }, |
69 "serveFrom": "static" | 71 "serveFrom": "static" |
70 }, | 72 }, |
71 "cr-native-client": { | 73 "cr-native-client": { |
72 "chromium": { | 74 "chromium": { |
73 "dir": "native_client_sdk/doc_generated" | 75 "dir": "native_client_sdk/doc_generated" |
74 }, | 76 }, |
| 77 "defaultExtensions": [".html", ".md"], |
75 "serveFrom": "native-client", | 78 "serveFrom": "native-client", |
76 "supportsTemplates": true | 79 "supportsTemplates": true |
77 } | 80 } |
78 | 81 |
79 // GitHub is not working at the moment. Disable entirely. | 82 // GitHub is not working at the moment. Disable entirely. |
80 // | 83 // |
81 //"devtools-docs": { | 84 //"devtools-docs": { |
82 // "github": { | 85 // "github": { |
83 // "owner": "GoogleChrome", | 86 // "owner": "GoogleChrome", |
84 // "repo": "devtools-docs-migration" | 87 // "repo": "devtools-docs-migration" |
(...skipping 11 matching lines...) Expand all Loading... |
96 //}, | 99 //}, |
97 //"webstore-docs": { | 100 //"webstore-docs": { |
98 // "github": { | 101 // "github": { |
99 // "owner": "GoogleChrome", | 102 // "owner": "GoogleChrome", |
100 // "repo": "webstore-docs" | 103 // "repo": "webstore-docs" |
101 // }, | 104 // }, |
102 // "serveFrom": "webstore", | 105 // "serveFrom": "webstore", |
103 // "supportsTemplates": true | 106 // "supportsTemplates": true |
104 //} | 107 //} |
105 } | 108 } |
OLD | NEW |