Chromium Code Reviews| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 53 "dir": "docs/templates/public" | 53 "dir": "docs/templates/public" |
| 54 }, | 54 }, |
| 55 "serveFrom": "", | 55 "serveFrom": "", |
| 56 "supportsTemplates": true | 56 "supportsTemplates": true |
| 57 }, | 57 }, |
| 58 "cr-static": { | 58 "cr-static": { |
| 59 "chromium": { | 59 "chromium": { |
| 60 "dir": "docs/static" | 60 "dir": "docs/static" |
| 61 }, | 61 }, |
| 62 "serveFrom": "static" | 62 "serveFrom": "static" |
| 63 }, | |
| 64 "webstore-docs": { | |
| 65 "serveFrom": "webstore", | |
| 66 "github": { | |
| 67 "owner": "GoogleChrome", | |
| 68 "repo": "webstore-docs" | |
| 69 } | |
| 70 }, | |
| 71 "devtools-docs": { | |
|
not at google - send to devlin
2013/11/11 04:23:16
nit: alphabetical order (is the least arbitrary ar
mkearney1
2013/11/11 18:10:03
Done.
| |
| 72 "serveFrom": "devtools", | |
| 73 "github": { | |
| 74 "owner": "GoogleChrome", | |
| 75 "repo": "devtools-docs-migration" | |
| 76 } | |
| 77 }, | |
| 78 "multidevice-docs": { | |
| 79 "serveFrom": "multidevice", | |
| 80 "github": { | |
| 81 "owner": "GoogleChrome", | |
| 82 "repo": "multi-device" | |
| 83 } | |
| 63 } | 84 } |
| 64 } | 85 } |
| OLD | NEW |