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

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

Issue 10825067: Extensions Docs Server: Apps samples page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 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 | Annotate | Revision Log
OLDNEW
1 <a name="apiReference"></a> 1 <a name="apiReference"></a>
2 <h2>API Reference: chrome.{{api.name}}</h2> 2 <h2>API Reference: chrome.{{api.name}}</h2>
3 <div class="api_reference"> 3 <div class="api_reference">
4 {{?api.types}} 4 {{?api.types}}
5 <h3 id="types">Types</h3> 5 <h3 id="types">Types</h3>
6 {{#api.types}} 6 {{#api.types}}
7 {{+partials.type api:api type:@}} 7 {{+partials.type api:api type:@}}
8 {{/}} 8 {{/}}
9 {{/api.types}} 9 {{/api.types}}
10 {{?api.properties}} 10 {{?api.properties}}
11 <h3 id="properties">Properties</h3> 11 <h3 id="properties">Properties</h3>
12 {{#api.properties}} 12 {{#api.properties}}
13 {{+partials.api_property api:api}} 13 {{+partials.api_property api:api}}
14 {{/}} 14 {{/}}
15 {{/api.properties}} 15 {{/api.properties}}
16 {{?api.functions}} 16 {{?api.functions}}
17 <h3 id="methods">Methods</h3> 17 <h3 id="methods">Methods</h3>
18 {{#api.functions}} 18 {{#api.functions}}
19 {{+partials.function api:api}} 19 {{+partials.function api:api}}
20 {{/}} 20 {{/}}
21 {{/api.functions}} 21 {{/api.functions}}
22 {{?api.events}} 22 {{?api.events}}
23 <h3 id="events">Events</h3> 23 <h3 id="events">Events</h3>
24 {{#api.events}} 24 {{#api.events}}
25 {{+partials.event api:api}} 25 {{+partials.event api:api}}
26 {{/}} 26 {{/}}
27 {{/api.events}} 27 {{/api.events}}
28 </div> 28 </div>
29 <a name="samples"></a> 29 <a name="samples"></a>
30 {{?api.samples}}<h2>Sample extensions that use chrome.{{api.name}}</h2>{{/}} 30 {{?is_apps}}
31 {{#api.samples}} 31 {{?api.samples.apps}}<h2>Sample apps that use chrome.{{api.name}}</h2>{{/}}
32 <a name="sample-{{?prefix}}{{prefix}}-{{/}}{{name}}"></a> 32 {{#api.samples.apps}}
33 <li><b><a href="{{path}}.zip">{{name}}</a></b> &ndash; {{description}}</li> 33 <li><strong><a href="{{github_path}}">{{name}}</a></strong> &ndash;
34 {{/}} 34 {{description}}</li>
35 {{/}}
36 {{:is_apps}}
37 {{?api.samples.extensions}}<h2>Sample extensions that use chrome.{{api.name}}< /h2>{{/}}
38 {{#api.samples.extensions}}
39 <li><strong><a href="{{path}}.zip">{{name}}</a></strong> &ndash;
40 {{description}}</li>
41 {{/}}
42 {{/is_apps}}
not at google - send to devlin 2012/08/10 06:02:18 See comment in other review and this review about
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698