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

Unified Diff: chrome/common/extensions/docs/templates/private/intro_table.html

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
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..6b31589fd2aa8fede016d73594be8e64d8c6b25b
--- /dev/null
+++ b/chrome/common/extensions/docs/templates/private/intro_table.html
@@ -0,0 +1,46 @@
+<table class="intro">
cduvall 2013/03/21 18:43:53 You need to delete this table from intros that alr
cduvall 2013/03/21 18:47:43 But only delete the description and availability p
+ <tr>
+ <th scope="col"></th>
+ <th scope="col"></th>
+ </tr>
+ <tr>
+ <td>
+ <strong>Description:</strong>
+ </td>
+ <td>
+ {{?api.description}}
+ {{{api.description}}}
+ {{:}}
+ No description has been written yet.
+ {{/}}
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <strong>Availability:</strong>
+ </td>
+ <td>
+ {{?api.availability}}
+ {{?api.availability_generated}}
+ Google Chrome {{api.availability}}
+ {{:}}
+ {{api.availability}}
+ {{/}}
+ {{:}}
+ Not currently available.
+ {{/}}
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <strong>Permissions:</strong>
cduvall 2013/03/21 18:47:43 Take out permissions, we don't generate this yet.
epeterson 2013/03/25 19:35:11 Done.
+ </td>
+ <td>
+ {{?api.perms}}
+ {{api.perms}}
+ {{:}}
+ None
+ {{/}}
+ </td>
+ </tr>
+</table>

Powered by Google App Engine
This is Rietveld 408576698