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

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

Issue 10834144: Extensions Docs Server: Split apps from extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reworked 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 {{+partials.header_head}} 4 {{+partials.header_head}}
5 <link href="{{static}}/css/api.css" rel="stylesheet" type="text/css"> 5 <link href="{{static}}/css/api.css" rel="stylesheet" type="text/css">
6 {{+partials.title}} 6 {{+partials.title}}
7 </head> 7 </head>
8 <body> 8 <body>
9 {{+partials.header_body}} 9 {{+partials.header_body}}
10 <div id="gc-container"> 10 <div id="gc-container">
11 {{+partials.sidenav}} 11 {{+partials.extensions_sidenav}}
12 <div id="gc-pagecontent"> 12 <div id="gc-pagecontent">
13 <h1 class="page_title">chrome.{{api.name}}</h1> 13 <h1 class="page_title">chrome.{{api.name}}</h1>
14 {{?api.permissions.dev}} 14 {{?api.permissions.dev}}
15 <p class="warning"> 15 <p class="warning">
16 <em>Warning:</em> This API is still under development. It is only 16 <em>Warning:</em> This API is still under development. It is only
17 available for Chrome users on the 17 available for Chrome users on the
18 <span> 18 <span>
19 <strong>dev</strong> 19 <strong>dev</strong>
20 <a href="http://www.chromium.org/getting-involved/dev-channel">ear ly 20 <a href="http://www.chromium.org/getting-involved/dev-channel">ear ly
21 release channel</a>.</span> 21 release channel</a>.</span>
22 </p> 22 </p>
23 {{/api.permissions.dev}} 23 {{/api.permissions.dev}}
24 {{+partials.table_of_contents toc:intro.toc}} 24 {{+partials.table_of_contents toc:intro.toc}}
25 {{- This is unindented because it contains <pre> tags -}} 25 {{- This is unindented because it contains <pre> tags -}}
26 {{+intro.intro}} 26 {{+intro.intro}}
27 {{+partials.api_reference}} 27 {{+partials.api_reference}}
28 </div> 28 </div>
29 </div> 29 </div>
30 </body> 30 </body>
31 <script>
32 window.bootstrap = {
33 api_names: {{*api_list.extensions.chrome}}.concat({{*api_list.extensions.e xperimental}}),
not at google - send to devlin 2012/08/06 08:38:33 ditto
cduvall 2012/08/06 18:36:16 Done.
34 branchInfo: {{*branchInfo}}
35 };
36 </script>
31 {{+partials.footer}} 37 {{+partials.footer}}
32 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698