Chromium Code Reviews| Index: chrome/common/extensions/docs/templates/public/owners.html |
| diff --git a/chrome/common/extensions/docs/templates/public/owners.html b/chrome/common/extensions/docs/templates/public/owners.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c6b758fca145bea4281917e638c7ebe507e6ef8d |
| --- /dev/null |
| +++ b/chrome/common/extensions/docs/templates/public/owners.html |
| @@ -0,0 +1,47 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + <head> |
| + <title>Extensions/Apps API Owners</title> |
| + <style> |
| + .warning { |
| + color: #ff3333; |
| + } |
| + html, body { |
| + width: 1400px; |
| + } |
| + table { |
| + border-collapse: collapse; |
| + } |
| + table, th, td { |
| + border: 1px solid #eee; |
| + padding: 2px 6px; |
| + } |
| + </style> |
| + </head> |
| + <body> |
| + <h1><center>Extensions/Apps API Owners</center></h1> |
| + <table> |
| + <tr> |
| + <th>API</th> |
| + <th>Owners</th> |
| + <th>Notes</th> |
| + </tr> |
| + {{#entry:owners.apis}} |
| + <tr> |
| + <td>{{entry.apiName}}</td> |
| + <td> |
| + {{?entry.owners}} |
| + {{#owner:entry.owners}} |
| + <a href="https://codereview.chromium.org/user/{{owner.email}}"> |
| + {{owner.username}}</a>{{^owner.last}}, {{/owner.last}} |
| + {{/entry.owners}} |
| + {{:}} |
| + <span class="warning">No owners.</span> |
| + {{/entry.owners}} |
| + </td> |
| + <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
|
| + </tr> |
| + {{/owners.apis}} |
| + </table> |
| + </body> |
| +</html> |