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

Unified Diff: chrome/common/extensions/docs/templates/articles/api_index.html

Issue 48263002: list apis by channel info, e.g. dev, stable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use api models Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/articles/api_index.html
diff --git a/chrome/common/extensions/docs/templates/articles/api_index.html b/chrome/common/extensions/docs/templates/articles/api_index.html
index 1d2e8b9581833e8f991577a88b111904e5704c95..5571a73c9be2119e7189976b5ae53717324c5feb 100644
--- a/chrome/common/extensions/docs/templates/articles/api_index.html
+++ b/chrome/common/extensions/docs/templates/articles/api_index.html
@@ -1,36 +1,68 @@
<h1 class="page_title">Chrome Platform APIs</h1>
-{{?is_apps}}
<p class="doc-family apps">
Chrome provides many special-purpose APIs like
<code>chrome.runtime</code> and <code>chrome.alarms</code>
to Chrome Apps.
</p>
-{{:is_apps}}
-<p class="doc-family extensions">
-Chrome provides APIs such as
-<code>chrome.bookmarks</code> and <code>chrome.tab</code>
-so that extensions can interact with the browser.
-</p>
-{{/is_apps}}
<h2 id="supported">Supported APIs</h2>
+{{?stable_apis}}
+<p>
+Here are the supported chrome.* APIs stable since the Chrome version.
mkearney1 2013/11/01 17:15:37 Move this <p> after <h3>.
hukun 2013/11/04 11:07:26 Done
+</p>
+<h3 id="stable_apis">
+Stable APIs
+</h3>
+<table>
+ <tr><th>Name</th><th>Description</th><th>Chrome Version</th></tr>
not at google - send to devlin 2013/11/02 00:31:48 I think just "Since" looks better than "Chrome Ver
hukun 2013/11/04 11:07:26 Done
+ {{#stable_apis}}
+ <tr>
+ <td><a href="{{name}}.html">{{name}}</a></td>
+ <td>{{{description}}}</td>
+ <td>{{version}}</td>
+ </tr>
+ {{/stable_apis}}
+</table>
+{{/}}
+
+{{?beta_apis}}
<p>
-Here are the supported chrome.* APIs:
+Here are the supported chrome.* APIs available in Chrome Beta only.
mkearney1 2013/11/01 17:15:37 Move this <p> after <h3>.
hukun 2013/11/04 11:07:26 Done.
</p>
-<ul>
- {{?is_apps}}
- {{#api_list.apps.chrome}}
- <li><a href="{{name}}.html">{{name}}</a></li>
- {{/api_list.apps.chrome}}
- {{:is_apps}}
- {{#api_list.extensions.chrome}}
- <li><a href="{{name}}.html">{{name}}</a></li>
- {{/api_list.extensions.chrome}}
- {{/is_apps}}
-</ul>
+<h3 id="beta_apis">
mkearney1 2013/11/01 17:15:37 Can we have a sentence here: "Here are the support
hukun 2013/11/04 11:07:26 Yes, it should be. I worked well on my local machi
+Beta APIs
+</h3>
+<table>
+ <tr><th>Name</th><th>Description</th></tr>
+ {{#beta_apis}}
+ <tr>
+ <td><a href="{{name}}.html">{{name}}</a></td>
+ <td>{{{description}}}</td>
+ </tr>
+ {{/}}
+</table>
+{{/}}
+
+{{?dev_apis}}
+<p>
+Here are the supported chrome.* APIs available in Chrome Dev only.
+</p>
mkearney1 2013/11/01 17:15:37 Move this <p> to come after <h3>
hukun 2013/11/04 11:07:26 Done
+<h3 id="dev_apis">
+Dev APIs
+</h3>
+<table>
+ <tr><th>Name</th><th>Description</th></tr>
+ {{#dev_apis}}
+ <tr>
+ <td><a href="{{name}}.html">{{name}}</a></td>
+ <td>{{{description}}}</td>
+ </tr>
+ {{/}}
+</table>
+{{/}}
not at google - send to devlin 2013/11/02 00:31:48 what about trunk? perhaps pull this the table int
hukun 2013/11/04 11:07:26 Done
<h2 id="experimental">Experimental APIs</h2>
<p>

Powered by Google App Engine
This is Rietveld 408576698