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

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: 1300px;
11 }
12 table {
13 border-collapse: collapse;
14 }
15 table, th, td {
16 border: 1px solid #eee;
17 }
18 </style>
19 </head>
20 <body>
21 <h1><center>Extensions/Apps API Owners</center></h1>
22 <table>
23 <tr>
24 <th>API</th>
25 <th>Owners</th>
26 <th>Notes</th>
27 </tr>
28 {{#entry:owners.apis}}
29 <tr>
30 <td>{{entry.apiName}}</td>
31 <td>{{{entry.owners}}}</td>
32 <td>{{entry.notes}}</td>
33 </tr>
34 {{/owners.apis}}
35 </table>
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698