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

Side by Side Diff: chrome/common/extensions/docs/templates/private/intro_table.html

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finding earliest 'stable' availability using features files Created 7 years, 8 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 <table class="intro">
2 <tr>
3 <th scope="col"></th>
4 <th scope="col"></th>
5 </tr>
6 <tr>
7 <td>
8 <strong>Description:</strong>
9 </td>
10 <td>
11 {{?api.description}}
12 {{{api.description}}}
13 {{:}}
14 No description is currently available.
not at google - send to devlin 2013/04/27 01:48:34 it'd be nice to make sure this never happens...
15 {{/}}
16 </td>
17 </tr>
18 <tr>
19 <td>
20 <strong>Availability:</strong>
21 </td>
22 <td>
23 {{?api.experimental}}
24 Experimental only (see <a href="experimental.html#using">How to use expe rimental APIs</a>).
25 {{:}}
26 {{?api.availability}}
27 Chrome {{api.availability}}
28 {{:}}
29 No availability is currently available.
not at google - send to devlin 2013/04/27 01:48:34 we need to make sure this never happens.
30 {{/}}
31 {{/}}
32 </td>
33 </tr>
34 <tr>
35 <td>
36 <strong>Permissions:</strong>
37 </td>
38 <td>
39 {{?api.intro_permissions}}
40 {{{api.intro_permissions}}}
41 {{:}}
42 None
43 {{/}}
44 </td>
45 </tr>
46 {{?api.learn_more}}
47 <tr>
48 <td>
49 <strong>Learn more:</strong>
50 </td>
51 <td>
52 {{{api.learn_more}}}
not at google - send to devlin 2013/04/27 01:48:34 learn more are always links right? we could encode
53 </td>
54 </tr>
55 {{/}}
56 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698