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

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

Issue 219213007: Remove .html extension from links (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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/templates/articles/app_codelab7_useridentification.html
diff --git a/chrome/common/extensions/docs/templates/articles/app_codelab7_useridentification.html b/chrome/common/extensions/docs/templates/articles/app_codelab7_useridentification.html
index 3da1ee3c5bd12bc08969cd8aade8ba533062eaee..b02624634cfa10ef6f04b7582a8e69da91f18b20 100644
--- a/chrome/common/extensions/docs/templates/articles/app_codelab7_useridentification.html
+++ b/chrome/common/extensions/docs/templates/articles/app_codelab7_useridentification.html
@@ -1,7 +1,7 @@
<h1 id="lab_7_user_identity">Access User's Data</h1>
<p>Most modern applications are attached to the web to synchronize data. When synchronizing data, you need to identify who the user is.
-Chrome Apps come with an <a href="experimental.identity.html">identity API</a> that makes it easy to integrate either with Google accounts or with any other service that supports OAuth.</p>
+Chrome Apps come with an <a href="experimental.identity">identity API</a> that makes it easy to integrate either with Google accounts or with any other service that supports OAuth.</p>
<ol>
<li> Built in - Google Authenticiation</li>
@@ -142,7 +142,7 @@ Should look like this:
<pre data-filename="controller.js">
var clientId = &quot;xxxxxxxxxxxxxx.apps.googleusercontent.com&quot;;
</pre></p></li>
-<li><p>Now we just need a button that starts the import process. Update the <code>index.html</code> to include <code>gapi_tasks.js</code> and add a new button to call <code>importFromGTasks</code>:
+<li><p>Now we just need a button that starts the import process. Update the <code>index</code> to include <code>gapi_tasks.js</code> and add a new button to call <code>importFromGTasks</code>:
mkearney1 2014/04/09 19:43:29 Keep .html in as it refers to a filename in sample
</p>
<tabs data-group="source">
@@ -151,14 +151,14 @@ Should look like this:
<header tabindex="0" data-value="js">JavaScript</header>
<content>
- <pre data-filename="index.html">
+ <pre data-filename="index">
mkearney1 2014/04/09 19:43:29 Keep .html in as it refers to a filename in sample
&lt;script src=&quot;gapi_tasks.js&quot;&gt;&lt;/script&gt;
...
&lt;button ng-click=&quot;importFromGTasks()&quot;&gt;import tasks from GTasks&lt;/button&gt;
</pre>
</content>
<content>
- <pre data-filename="index.html">
+ <pre data-filename="index">
&lt;button id="importGTasks"&gt;import tasks from GTasks&lt;/button&gt;
mkearney1 2014/04/09 19:43:29 Keep .html in as it refers to a filename in sample
...
&lt;script src="gapi_tasks.js"&gt;&lt;/script&gt;
@@ -179,11 +179,11 @@ and launch the app from a new tab.</p>
<h2 id="you_should_also_read">You should also read</h2>
-<p><a href="app_identity.html">Identify User</a> tutorial</p>
+<p><a href="app_identity">Identify User</a> tutorial</p>
<h2 id="what_39_s_next_">What's next?</h2>
-<p>In <a href="app_codelab8_webresources.html">7 - Access Web Resources</a>,
+<p>In <a href="app_codelab8_webresources">7 - Access Web Resources</a>,
you will learn how to load and show images from a remote URL.</p>
<p class="note"><b>Note:</b> Up until now, the code in each lab builds upon the previous lab code sample.

Powered by Google App Engine
This is Rietveld 408576698