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

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 #notes {
20 white-space: pre-line;
21 }
22 </style>
23 </head>
24 <body>
25 <h1><center>Extensions/Apps API Owners</center></h1>
26 <table>
27 <tr>
28 <th>API</th>
29 <th>Owners</th>
30 <th>Notes</th>
31 </tr>
32 {{#entry:owners.apis}}
33 <tr>
34 <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
35 <td>
36 {{?entry.owners}}
37 {{#owner:entry.owners}}
38 <a href="https://codereview.chromium.org/user/{{owner.email}}">
39 {{owner.username}}</a>{{^owner.last}}, {{/owner.last}}
40 {{/entry.owners}}
41 {{:}}
42 <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
43 {{/entry.owners}}
44 </td>
45 <td id="notes">
46 {{entry.notes}}
47 </td>
48 </tr>
49 {{/owners.apis}}
50 </table>
51 </body>
52 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698