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

Unified Diff: chrome/common/extensions/docs/templates/public/owners.html

Issue 453713002: Docserver: Generate a table of extension/app API owners (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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/public/owners.html
diff --git a/chrome/common/extensions/docs/templates/public/owners.html b/chrome/common/extensions/docs/templates/public/owners.html
new file mode 100644
index 0000000000000000000000000000000000000000..032831963a2ca828436da986ef62553761b552b1
--- /dev/null
+++ b/chrome/common/extensions/docs/templates/public/owners.html
@@ -0,0 +1,32 @@
+<html>
not at google - send to devlin 2014/08/08 14:42:27 hey let's give markdown a try here, see if it work
ahernandez 2014/08/08 20:46:07 Not sure if markdown will work. I tried this:
not at google - send to devlin 2014/08/08 20:53:01 ah, bummer. oh well.
+ <head>
+ <link href="{{static}}/css/out/site.css" rel="stylesheet" type="text/css">
not at google - send to devlin 2014/08/08 14:42:27 this style looks pretty, but wow it's extremely sp
+ </head>
+ <body>
+ <table>
+ <tr>
+ <th>
+ API
+ </th>
+ <th>
+ Owners
+ </th>
+ <th>
+ Notes
+ </th>
+ {{#entry:owners.apis}}
+ <tr>
+ <td>
+ {{entry.api_name}}
+ </td>
+ <td>
+ {{entry.owners}}
+ </td>
+ <td>
+ {{entry.notes}}
+ </td>
+ </tr>
+ {{/owners.apis}}
+ </table>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698