Index: chrome/common/extensions/docs/templates/private/intro_table.html |
diff --git a/chrome/common/extensions/docs/templates/private/intro_table.html b/chrome/common/extensions/docs/templates/private/intro_table.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2f69f7154932eaa0a315fe04718d68fb0e9f8100 |
--- /dev/null |
+++ b/chrome/common/extensions/docs/templates/private/intro_table.html |
@@ -0,0 +1,56 @@ |
+<table class="intro"> |
+ <tr> |
+ <th scope="col"></th> |
+ <th scope="col"></th> |
+ </tr> |
+ <tr> |
+ <td> |
+ <strong>Description:</strong> |
+ </td> |
+ <td> |
+ {{?api.description}} |
+ {{{api.description}}} |
+ {{:}} |
+ No description is currently available. |
not at google - send to devlin
2013/04/27 01:48:34
it'd be nice to make sure this never happens...
|
+ {{/}} |
+ </td> |
+ </tr> |
+ <tr> |
+ <td> |
+ <strong>Availability:</strong> |
+ </td> |
+ <td> |
+ {{?api.experimental}} |
+ Experimental only (see <a href="experimental.html#using">How to use experimental APIs</a>). |
+ {{:}} |
+ {{?api.availability}} |
+ Chrome {{api.availability}} |
+ {{:}} |
+ No availability is currently available. |
not at google - send to devlin
2013/04/27 01:48:34
we need to make sure this never happens.
|
+ {{/}} |
+ {{/}} |
+ </td> |
+ </tr> |
+ <tr> |
+ <td> |
+ <strong>Permissions:</strong> |
+ </td> |
+ <td> |
+ {{?api.intro_permissions}} |
+ {{{api.intro_permissions}}} |
+ {{:}} |
+ None |
+ {{/}} |
+ </td> |
+ </tr> |
+ {{?api.learn_more}} |
+ <tr> |
+ <td> |
+ <strong>Learn more:</strong> |
+ </td> |
+ <td> |
+ {{{api.learn_more}}} |
not at google - send to devlin
2013/04/27 01:48:34
learn more are always links right? we could encode
|
+ </td> |
+ </tr> |
+ {{/}} |
+</table> |