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

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

Issue 10834144: Extensions Docs Server: Split apps from extensions (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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/server2/templates/articles/experimental.html
diff --git a/chrome/common/extensions/docs/server2/templates/articles/experimental.html b/chrome/common/extensions/docs/server2/templates/articles/experimental.html
index 7dd3aab2b02b4d81e64229636194fc299e4dd703..9e66060f9117f5ec17b360f7045e9d0da4374248 100644
--- a/chrome/common/extensions/docs/server2/templates/articles/experimental.html
+++ b/chrome/common/extensions/docs/server2/templates/articles/experimental.html
@@ -1,5 +1,5 @@
<h1 class="page_title">chrome.experimental.* APIs</h1>
-<div class="doc-family extensions">
+{{^is_apps}}<div class="doc-family extensions">
not at google - send to devlin 2012/08/06 22:01:24 same comments as before
cduvall 2012/08/06 22:25:45 Done.
<p>
Before you start, <strong>choose the right version of this page.</strong>
You should read either:
@@ -17,24 +17,30 @@ Canary (bleeding edge) and the Dev channel, see
For details about channel-specific docs,
see <a href="docs.html#versions">Doc versions</a>.
</p>
-</div>
+</div>{{/}}
<h2 id="overview">
List of APIs
</h2>
-<p class="doc-family extensions">
+{{^is_apps}}<p class="doc-family extensions">
We'd like your <a href="http://groups.google.com/a/chromium.org/group/chromium-extensions/topics">feedback</a>
on the following experimental APIs:
-</p>
+</p>{{/}}
<ul>
- {{#api_list.experimental}}
+ {{?is_apps}}
+ {{#api_list.apps.experimental}}
+ <li><a href="{{name}}.html">{{name}}</a></li>
+ {{/}}
+ {{:}}
+ {{#api_list.extensions.experimental}}
<li><a href="{{name}}.html">{{name}}</a></li>
{{/}}
+ {{/is_apps}}
</ul>
-<p class="doc-family extensions">
+{{^is_apps}}<p class="doc-family extensions">
Pay special attention to the following APIs,
which we expect to finalize soon:
<b>devtools</b>,
@@ -42,7 +48,7 @@ which we expect to finalize soon:
<b>permissions</b>,
For examples of using the experimental APIs, see
<a href="samples.html#experimental">Samples</a>.
-</p>
+</p>{{/}}
<p class="warning">
<b>Caution:</b>
@@ -57,7 +63,7 @@ upload items that use experimental APIs.
<h2 id="using">How to use experimental APIs</h2>
<ol>
- <li class="doc-family extensions">
+ {{^is_apps}}<li class="doc-family extensions">
Make sure you're using either
<a href="http://tools.google.com/dlpage/chromesxs">Canary</a>
(which you can use at the same time as other Chrome channels) or the
@@ -71,7 +77,7 @@ upload items that use experimental APIs.
<a href="http://code.google.com/chrome/extensions/trunk/experimental.html">most recent API documentation</a> (if you're using Canary) or the
<a href="http://code.google.com/chrome/extensions/dev/experimental.html">API documentation for the Dev channel</a>,
write the code for your extension.
- </li>
+ </li>{{/}}
<li>
Specify the "experimental"
<a href="manifest.html#permissions">permission</a>
@@ -107,12 +113,12 @@ upload items that use experimental APIs.
</ul>
</li>
- <li class="doc-family extension">
+ {{^is_apps}}<li class="doc-family extension">
<a href="http://groups.google.com/a/chromium.org/group/chromium-extensions/topics">Give us feedback!</a>
Your comments and suggestions help us
improve the APIs and decide
which ones should move from experimental to supported.
- </li>
+ </li>{{/}}
</ol>
<h2 id="other">More APIs</h2>

Powered by Google App Engine
This is Rietveld 408576698