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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Extensions/Apps API Owners</title>
5 <style>
6 .warning {
7 color: #ff3333;
8 }
9 html, body {
10 width: 1400px;
11 }
12 table {
13 border-collapse: collapse;
14 }
15 table, th, td {
16 border: 1px solid #eee;
17 padding: 2px 6px;
18 }
19 </style>
20 </head>
21 <body>
22 <h1><center>Extensions/Apps API Owners</center></h1>
23 <table>
24 <tr>
25 <th>API</th>
26 <th>Owners</th>
27 <th>Notes</th>
28 </tr>
29 {{#entry:owners.apis}}
30 <tr>
31 <td>{{entry.apiName}}</td>
32 <td>
33 {{?entry.owners}}
34 {{#owner:entry.owners}}
35 <a href="https://codereview.chromium.org/user/{{owner.email}}">
36 {{owner.username}}</a>{{^owner.last}}, {{/owner.last}}
37 {{/entry.owners}}
38 {{:}}
39 <span class="warning">No owners.</span>
40 {{/entry.owners}}
41 </td>
42 <td>{{entry.notes}}</td>
not at google - send to devlin 2014/08/15 15:45:51 It'd be great if this could preserve the line brea
43 </tr>
44 {{/owners.apis}}
45 </table>
46 </body>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698