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

Unified Diff: trunk/src/chrome/common/extensions/docs/templates/articles/manifest/version.html

Issue 14712010: Revert 199633 "Doc server manifest page generation" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 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: trunk/src/chrome/common/extensions/docs/templates/articles/manifest/version.html
===================================================================
--- trunk/src/chrome/common/extensions/docs/templates/articles/manifest/version.html (revision 199633)
+++ trunk/src/chrome/common/extensions/docs/templates/articles/manifest/version.html (working copy)
@@ -1,48 +0,0 @@
-<h1 id="version">Manifest - Version</h1>
-
-<p>
-One to four dot-separated integers
-identifying the version of this extension.
-A couple of rules apply to the integers:
-they must be between 0 and 65535, inclusive,
-and non-zero integers can't start with 0.
-For example, 99999 and 032 are both invalid.
-</p>
-
-<p>
-Here are some examples of valid versions:
-</p>
-
-<ul>
- <li> <code>"version": "1"</code> </li>
- <li> <code>"version": "1.0"</code> </li>
- <li> <code>"version": "2.10.2"</code> </li>
- <li> <code>"version": "3.1.2.4567"</code> </li>
-</ul>
-
-<p>
-The autoupdate system compares versions
-to determine whether an installed extension
-needs to be updated.
-If the published extension has a newer version string
-than the installed extension,
-then the extension is automatically updated.
-</p>
-
-<p>
-The comparison starts with the leftmost integers.
-If those integers are equal,
-the integers to the right are compared,
-and so on.
-For example, 1.2.0 is a newer version than 1.1.9.9999.
-</p>
-
-<p>
-A missing integer is equal to zero.
-For example, 1.1.9.9999 is newer than 1.1.
-</p>
-
-<p>
-For more information, see
-<a href="http://developer.chrome.com/extensions/autoupdate.html">Autoupdating</a>.
-</p>

Powered by Google App Engine
This is Rietveld 408576698