Index: chrome/common/extensions/docs/templates/articles/app_codelab5_data.html |
diff --git a/chrome/common/extensions/docs/templates/articles/app_codelab5_data.html b/chrome/common/extensions/docs/templates/articles/app_codelab5_data.html |
index 73e0fea94b72d3b39fdf51ba43ce1703454ec276..13c4cb9dc578d3416add25e251777763b2fd9cd1 100644 |
--- a/chrome/common/extensions/docs/templates/articles/app_codelab5_data.html |
+++ b/chrome/common/extensions/docs/templates/articles/app_codelab5_data.html |
@@ -1,11 +1,11 @@ |
<h1 id="lab_5_manage_data">Save and Fetch Data</h1> |
-<p>The <a href="app_codelab3_mvc.html">sample from Lab 3</a> |
+<p>The <a href="app_codelab3_mvc">sample from Lab 3</a> |
uses a static array of Todos. |
Every time your app restarts, |
whatever you've changed is lost. |
In this section, we will save every change using |
-<a href="storage.html">chrome.storage.sync</a>. |
+<a href="storage">chrome.storage.sync</a>. |
</p> |
<p> |
@@ -414,19 +414,19 @@ or <a href="https://github.com/GoogleChrome/chrome-app-codelab/tree/master/lab5_ |
<h2 id="takeaways_">Takeaways</h2> |
<ul> |
-<li><p>Use <a href="storage.html">chrome.storage.sync</a> to save small data that you need to be sync'ed among devices, like configuration options, application state, etc. The sync is automatic, as long as the same user is logged into Chrome on all devices.</p></li> |
+<li><p>Use <a href="storage">chrome.storage.sync</a> to save small data that you need to be sync'ed among devices, like configuration options, application state, etc. The sync is automatic, as long as the same user is logged into Chrome on all devices.</p></li> |
<li><p>Chrome Apps support almost all HTML5 APIs, such as drag and drop. |
HTML Filesystem API is also supported, with extra features from the Chrome App's |
-<a href="fileSystem.html">Filesystem API</a>, |
+<a href="fileSystem">Filesystem API</a>, |
like asking the user to pick files on her local disk for read and write. |
The vanilla HTML5 Filesystem API only allows access to a sandboxed filesystem.</p></li> |
</ul> |
<h2 id="you_should_also_read">You should also read</h2> |
-<p><a href="app_storage.html">Manage Data</a> tutorial</p> |
+<p><a href="app_storage">Manage Data</a> tutorial</p> |
<h2 id="what_39_s_next_">What's next?</h2> |
-<p>In <a href="app_codelab6_lifecycle.html">5 - Manage App Lifecycle</a>, |
+<p>In <a href="app_codelab6_lifecycle">5 - Manage App Lifecycle</a>, |
you will learn the basics of the Chrome App lifecycle. </p> |