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

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

Issue 1175993002: [Docserver] Refreshed API Owners page (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 5 years, 6 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 | « no previous file | 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
1 <!DOCTYPE html> 1 {{+content:partials.site}}
2 <html> 2 <h1>Extensions & Apps API Owners</h1>
3 <head> 3 <table>
4 <title>Extensions/Apps API Owners</title> 4 <tr>
5 <style> 5 <th>API</th>
6 .warning { 6 <th>Owners</th>
7 color: #f90101; 7 <th>Notes</th>
8 } 8 </tr>
9 html, body { 9 {{#entry:owners.apis}}
10 width: 1400px; 10 <tr id={{entry.id}}>
11 } 11 <td>{{entry.apiName}}</td>
12 table { 12 <td>
13 border-collapse: collapse; 13 {{?entry.owners}}
14 } 14 {{#owner:entry.owners}}
15 table, th, td { 15 <a href="https://codereview.chromium.org/user/{{owner.email}}">
16 border: 1px solid #eee; 16 {{owner.username}}</a>{{^owner.last}}, {{/owner.last}}
17 padding: 2px 6px; 17 {{/entry.owners}}
18 } 18 {{:}}
19 tr:target { 19 N/A.
20 font-weight: bold; 20 {{/entry.owners}}
21 background-color: #dcdcdc; 21 </td>
22 } 22 <td id="notes">
23 #notes { 23 {{entry.notes}}
24 white-space: pre-line; 24 </td>
25 } 25 </tr>
26 </style> 26 {{/owners.apis}}
27 </head> 27 </table>
28 <body> 28 {{/partials.site}}
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 | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698