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

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..7724f6f6e07d7ca082eeedd6e3e3050abcbcecf2
--- /dev/null
+++ b/chrome/common/extensions/docs/templates/public/owners.html
@@ -0,0 +1,52 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Extensions/Apps API Owners</title>
+ <style>
+ .warning {
+ color: #ff3333;
+ }
+ html, body {
+ width: 1400px;
+ }
+ table {
+ border-collapse: collapse;
+ }
+ table, th, td {
+ border: 1px solid #eee;
+ padding: 2px 6px;
+ }
+ #notes {
+ white-space: pre-line;
+ }
+ </style>
+ </head>
+ <body>
+ <h1><center>Extensions/Apps API Owners</center></h1>
+ <table>
+ <tr>
+ <th>API</th>
+ <th>Owners</th>
+ <th>Notes</th>
+ </tr>
+ {{#entry:owners.apis}}
+ <tr>
+ <td>{{entry.apiName}}</td>
not at google - send to devlin 2014/08/21 21:39:58 Your ID change below gave me an idea - let's give
+ <td>
+ {{?entry.owners}}
+ {{#owner:entry.owners}}
+ <a href="https://codereview.chromium.org/user/{{owner.email}}">
+ {{owner.username}}</a>{{^owner.last}}, {{/owner.last}}
+ {{/entry.owners}}
+ {{:}}
+ <span class="warning">No owners.</span>
not at google - send to devlin 2014/08/21 21:39:58 And then you can link to the #core owners from her
+ {{/entry.owners}}
+ </td>
+ <td id="notes">
+ {{entry.notes}}
+ </td>
+ </tr>
+ {{/owners.apis}}
+ </table>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698