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

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: mlg rebasing Created 6 years, 3 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
« no previous file with comments | « chrome/common/extensions/docs/server2/owners_data_source_test.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Extensions/Apps API Owners</title>
5 <style>
6 .warning {
7 color: #f90101;
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 tr:target {
20 font-weight: bold;
21 background-color: #dcdcdc;
22 }
23 #notes {
24 white-space: pre-line;
25 }
26 </style>
27 </head>
28 <body>
29 <h1><center>Extensions/Apps API Owners</center></h1>
30 <table>
31 <tr>
32 <th>API</th>
33 <th>Owners</th>
34 <th>Notes</th>
35 </tr>
36 {{#entry:owners.apis}}
37 <tr id={{entry.id}}>
38 <td>{{entry.apiName}}</td>
39 <td>
40 {{?entry.owners}}
41 {{#owner:entry.owners}}
42 <a href="https://codereview.chromium.org/user/{{owner.email}}">
43 {{owner.username}}</a>{{^owner.last}}, {{/owner.last}}
44 {{/entry.owners}}
45 {{:}}
46 <a href="#core"><span class="warning">No owners.</span></a>
47 {{/entry.owners}}
48 </td>
49 <td id="notes">
50 {{entry.notes}}
51 </td>
52 </tr>
53 {{/owners.apis}}
54 </table>
55 </body>
56 </html>
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/server2/owners_data_source_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698