Chromium Code Reviews| OLD | NEW | 
|---|---|
| (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> | |
| OLD | NEW |