Commit 9733a9f7 authored by aa@chromium.org's avatar aa@chromium.org

Revert 133345 - An extension docs experiment.

I think that the Google crawler might be fine with a purely
AJAX-based doc system now.

TBR=rafaelw@chromium.org

Review URL: https://chromiumcodereview.appspot.com/10162023

TBR=aa@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10198002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133553 0039d316-1c4b-4281-b951-d872f2087c98
parent 00a1a9b8
......@@ -186,8 +186,7 @@ function fetchSchema() {
schema = [];
function onSchemaContent(content) {
if (content)
schema = schema.concat(JSON.parse(JSON.minify(content)));
schema = schema.concat(JSON.parse(JSON.minify(content)));
if (++schemas_retrieved < schemas_to_retrieve.length)
return;
if (pageName.toLowerCase() == 'samples') {
......@@ -200,7 +199,7 @@ function fetchSchema() {
for (var i = 0; i < schemas_to_retrieve.length; ++i) {
var schema_path = schemas_to_retrieve[i];
fetchContent(schema_path, onSchemaContent, function(error) {
onSchemaContent("");
alert('Failed to load ' + schema_path);
});
}
}
......
......@@ -3,7 +3,7 @@
<p>We want extensions to be autoupdated for some of the same reasons as Google Chrome itself: to incorporate bug and security fixes, add new features or performance enhancements, and improve user interfaces.</p>
<p>If you publish your extension using the <a href="https://chrome.google.com/webstore/developer/dashboard">Chrome Developer Dashboard</a>, you can <em>stop reading now</em>. You can use the dashboard to release updated versions of your extension to users, as well as to the Chrome Web Store.</p>
<p>If you publish your extension using the <a href="https://chrome.google.com/webstore/developer/dashboard">Chrome Developer Dashboard</a>, you can <em>ignore this page</em>. You can use the dashboard to release updated versions of your extension to users, as well as to the Chrome Web Store.</p>
<p>If you want to host your extension somewhere other than the store, keep reading.
You should also read <a href="hosting.html">Hosting</a> and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment