You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/09/10 23:28:14 UTC

[14/51] [partial] docs commit: Solidifying 'automatic' links.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/media/media.play.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/media/media.play.md b/www/docs/en/1.7.0/cordova/media/media.play.md
index 69de4c1..9417821 100644
--- a/www/docs/en/1.7.0/cordova/media/media.play.md
+++ b/www/docs/en/1.7.0/cordova/media/media.play.md
@@ -21,7 +21,7 @@ license: >
 media.play
 ==========
 
-Starts or resumes playing an audio file.
+Starts or <a href="../events/events.resume.html">resume</a>s playing an audio file.
 
     media.play();
 
@@ -29,7 +29,7 @@ Starts or resumes playing an audio file.
 Description
 -----------
 
-Function `media.play` is a synchronous function that starts or resumes playing an audio file.
+Function `media.play` is a synchronous function that starts or <a href="../events/events.resume.html">resume</a>s playing an audio file.
 
 Supported Platforms
 -------------------
@@ -38,14 +38,14 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // Play audio
     //
     function playAudio(url) {
         // Play the audio file at url
-        var my_media = new Media(url,
+        var my_media = new <a href="media.html">Media</a>(url,
             // success callback
             function() {
                 console.log("playAudio():Audio Success");
@@ -60,25 +60,25 @@ Quick Example
     }
 
 
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
 
         <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                               "http://www.w3.org/TR/html4/strict.dtd">
         <html>
           <head>
-            <title>Media Example</title>
+            <title><a href="media.html">Media</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
         
             <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
             <script type="text/javascript" charset="utf-8">
         
             // Wait for Cordova to load
             //
-            document.addEventListener("deviceready", onDeviceReady, false);
+            document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
         
             // Cordova is ready
             //
-            function onDeviceReady() {
+            function on<a href="../device/device.html">Device</a>Ready() {
                 playAudio("http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3");
             }
         
@@ -91,8 +91,8 @@ Full Example
             //
             function playAudio(src) {
             	if (my_media == null) {
-                	// Create Media object from src
-                	my_media = new Media(src, onSuccess, onError);
+                	// Create <a href="media.html">Media</a> object from src
+                	my_media = new <a href="media.html">Media</a>(src, onSuccess, onError);
             	} // else play current audio
                 // Play audio
                 my_media.play();
@@ -101,17 +101,17 @@ Full Example
                 if (mediaTimer == null) {
                     mediaTimer = setInterval(function() {
                         // get my_media position
-                        my_media.getCurrentPosition(
+                        my_media.getCurrent<a href="../geolocation/Position/position.html">Position</a>(
                             // success callback
                             function(position) {
                                 if (position > -1) {
-                                    setAudioPosition((position) + " sec");
+                                    setAudio<a href="../geolocation/Position/position.html">Position</a>((position) + " sec");
                                 }
                             },
                             // error callback
                             function(e) {
                                 console.log("Error getting pos=" + e);
-                                setAudioPosition("Error: " + e);
+                                setAudio<a href="../geolocation/Position/position.html">Position</a>("Error: " + e);
                             }
                         );
                     }, 1000);
@@ -120,9 +120,9 @@ Full Example
         
             // Pause audio
             // 
-            function pauseAudio() {
+            function <a href="../events/events.pause.html">pause</a>Audio() {
                 if (my_media) {
-                    my_media.pause();
+                    my_media.<a href="../events/events.pause.html">pause</a>();
                 }
             }
         
@@ -130,7 +130,7 @@ Full Example
             // 
             function stopAudio() {
                 if (my_media) {
-                    my_media.stop();
+                    my_<a href="media.stop.html">media.stop</a>();
                 }
                 clearInterval(mediaTimer);
                 mediaTimer = null;
@@ -151,7 +151,7 @@ Full Example
         
             // Set audio position
             // 
-            function setAudioPosition(position) {
+            function setAudio<a href="../geolocation/Position/position.html">Position</a>(position) {
                 document.getElementById('audio_position').innerHTML = position;
             }
         
@@ -159,7 +159,7 @@ Full Example
           </head>
           <body>
             <a href="#" class="btn large" onclick="playAudio('http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3');">Play Audio</a>
-            <a href="#" class="btn large" onclick="pauseAudio();">Pause Playing Audio</a>
+            <a href="#" class="btn large" onclick="<a href="../events/events.pause.html">pause</a>Audio();">Pause Playing Audio</a>
             <a href="#" class="btn large" onclick="stopAudio();">Stop Playing Audio</a>
             <p id="audio_position"></p>
           </body>
@@ -172,5 +172,5 @@ iOS Quirk
  
     Pass in this option to the **play** method to specify the number of times you want the media file to play. e.g:
     
-        var myMedia = new Media("http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3")
-        myMedia.play({ numberOfLoops: 2 })
+        var my<a href="media.html">Media</a> = new <a href="media.html">Media</a>("http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3")
+        my<a href="media.html">Media</a>.play({ numberOfLoops: 2 })

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/media/media.release.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/media/media.release.md b/www/docs/en/1.7.0/cordova/media/media.release.md
index 48497ed..5315b3e 100644
--- a/www/docs/en/1.7.0/cordova/media/media.release.md
+++ b/www/docs/en/1.7.0/cordova/media/media.release.md
@@ -29,7 +29,7 @@ Releases the underlying operating systems audio resources.
 Description
 -----------
 
-Function `media.release` is a synchronous function that releases the underlying operating systems audio resources.  This function is particularly important for Android as there are a finite amount of OpenCore instances for media playback.  Developers should call the 'release' function when they no longer need the Media resource.
+Function `media.release` is a synchronous function that releases the underlying operating systems audio resources.  This function is particularly important for Android as there are a finite amount of OpenCore instances for media playback.  Developers should call the 'release' function when they no longer need the <a href="media.html">Media</a> resource.
 
 Supported Platforms
 -------------------
@@ -38,36 +38,36 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
         // Audio player
         //
-        var my_media = new Media(src, onSuccess, onError);
+        var my_media = new <a href="media.html">Media</a>(src, onSuccess, onError);
         
-        my_media.play();
-        my_media.stop();
+        my_<a href="media.play.html">media.play</a>();
+        my_<a href="media.stop.html">media.stop</a>();
         my_media.release();
 
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
 
         <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                               "http://www.w3.org/TR/html4/strict.dtd">
         <html>
           <head>
-            <title>Media Example</title>
+            <title><a href="media.html">Media</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
         
             <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
             <script type="text/javascript" charset="utf-8">
         
             // Wait for Cordova to load
             //
-            document.addEventListener("deviceready", onDeviceReady, false);
+            document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
         
             // Cordova is ready
             //
-            function onDeviceReady() {
+            function on<a href="../device/device.html">Device</a>Ready() {
                 playAudio("http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3");
             }
         
@@ -79,27 +79,27 @@ Full Example
             // Play audio
             //
             function playAudio(src) {
-                // Create Media object from src
-                my_media = new Media(src, onSuccess, onError);
+                // Create <a href="media.html">Media</a> object from src
+                my_media = new <a href="media.html">Media</a>(src, onSuccess, onError);
         
                 // Play audio
-                my_media.play();
+                my_<a href="media.play.html">media.play</a>();
         
                 // Update my_media position every second
                 if (mediaTimer == null) {
                     mediaTimer = setInterval(function() {
                         // get my_media position
-                        my_media.getCurrentPosition(
+                        my_media.getCurrent<a href="../geolocation/Position/position.html">Position</a>(
                             // success callback
                             function(position) {
                                 if (position > -1) {
-                                    setAudioPosition((position) + " sec");
+                                    setAudio<a href="../geolocation/Position/position.html">Position</a>((position) + " sec");
                                 }
                             },
                             // error callback
                             function(e) {
                                 console.log("Error getting pos=" + e);
-                                setAudioPosition("Error: " + e);
+                                setAudio<a href="../geolocation/Position/position.html">Position</a>("Error: " + e);
                             }
                         );
                     }, 1000);
@@ -108,9 +108,9 @@ Full Example
         
             // Pause audio
             // 
-            function pauseAudio() {
+            function <a href="../events/events.pause.html">pause</a>Audio() {
                 if (my_media) {
-                    my_media.pause();
+                    my_media.<a href="../events/events.pause.html">pause</a>();
                 }
             }
         
@@ -118,7 +118,7 @@ Full Example
             // 
             function stopAudio() {
                 if (my_media) {
-                    my_media.stop();
+                    my_<a href="media.stop.html">media.stop</a>();
                 }
                 clearInterval(mediaTimer);
                 mediaTimer = null;
@@ -139,7 +139,7 @@ Full Example
         
             // Set audio position
             // 
-            function setAudioPosition(position) {
+            function setAudio<a href="../geolocation/Position/position.html">Position</a>(position) {
                 document.getElementById('audio_position').innerHTML = position;
             }
         
@@ -147,7 +147,7 @@ Full Example
           </head>
           <body>
             <a href="#" class="btn large" onclick="playAudio('http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3');">Play Audio</a>
-            <a href="#" class="btn large" onclick="pauseAudio();">Pause Playing Audio</a>
+            <a href="#" class="btn large" onclick="<a href="../events/events.pause.html">pause</a>Audio();">Pause Playing Audio</a>
             <a href="#" class="btn large" onclick="stopAudio();">Stop Playing Audio</a>
             <p id="audio_position"></p>
           </body>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/media/media.seekTo.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/media/media.seekTo.md b/www/docs/en/1.7.0/cordova/media/media.seekTo.md
index 65077bf..7addb28 100644
--- a/www/docs/en/1.7.0/cordova/media/media.seekTo.md
+++ b/www/docs/en/1.7.0/cordova/media/media.seekTo.md
@@ -34,7 +34,7 @@ Parameters
 Description
 -----------
 
-Function `media.seekTo` is an asynchronous function that updates the current position of the underlying audio file of a Media object. Also updates the ___position__ parameter within the Media object. 
+Function `media.seekTo` is an asynchronous function that updates the current position of the underlying audio file of a <a href="media.html">Media</a> object. Also updates the ___position__ parameter within the <a href="media.html">Media</a> object. 
 
 Supported Platforms
 -------------------
@@ -43,38 +43,38 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
         // Audio player
         //
-        var my_media = new Media(src, onSuccess, onError);
-		my_media.play();
+        var my_media = new <a href="media.html">Media</a>(src, onSuccess, onError);
+		my_<a href="media.play.html">media.play</a>();
         // SeekTo to 10 seconds after 5 seconds
         setTimeout(function() {
             my_media.seekTo(10000);
         }, 5000);
 
 
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
 
         <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                       "http://www.w3.org/TR/html4/strict.dtd">
         <html>
           <head>
-            <title>Media Example</title>
+            <title><a href="media.html">Media</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
         
             <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
             <script type="text/javascript" charset="utf-8">
         
             // Wait for Cordova to load
             //
-            document.addEventListener("deviceready", onDeviceReady, false);
+            document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
         
             // Cordova is ready
             //
-            function onDeviceReady() {
+            function on<a href="../device/device.html">Device</a>Ready() {
                 playAudio("http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3");
             }
         
@@ -86,19 +86,19 @@ Full Example
             // Play audio
             //
             function playAudio(src) {
-                // Create Media object from src
-                my_media = new Media(src, onSuccess, onError);
+                // Create <a href="media.html">Media</a> object from src
+                my_media = new <a href="media.html">Media</a>(src, onSuccess, onError);
         
                 // Play audio
-                my_media.play();
+                my_<a href="media.play.html">media.play</a>();
                 // Update media position every second
         		mediaTimer = setInterval(function() {
             		// get media position
-           			my_media.getCurrentPosition(
+           			my_media.getCurrent<a href="../geolocation/Position/position.html">Position</a>(
                 		// success callback
                 		function(position) {
                     		if (position > -1) {
-                        		setAudioPosition(position + " sec");
+                        		setAudio<a href="../geolocation/Position/position.html">Position</a>(position + " sec");
                     		}
                 		},
                 		// error callback
@@ -117,7 +117,7 @@ Full Example
             // 
             function stopAudio() {
                 if (my_media) {
-                    my_media.stop();
+                    my_<a href="media.stop.html">media.stop</a>();
                 }
                 clearInterval(mediaTimer);
                 mediaTimer = null;
@@ -138,7 +138,7 @@ Full Example
         
             // Set audio position
             // 
-            function setAudioPosition(position) {
+            function setAudio<a href="../geolocation/Position/position.html">Position</a>(position) {
                 document.getElementById('audio_position').innerHTML = position;
             }
         

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/media/media.startRecord.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/media/media.startRecord.md b/www/docs/en/1.7.0/cordova/media/media.startRecord.md
index 619a456..796d0fb 100644
--- a/www/docs/en/1.7.0/cordova/media/media.startRecord.md
+++ b/www/docs/en/1.7.0/cordova/media/media.startRecord.md
@@ -38,14 +38,14 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // Record audio
     // 
     function recordAudio() {
         var src = "myrecording.mp3";
-        var mediaRec = new Media(src,
+        var mediaRec = new <a href="media.html">Media</a>(src,
             // success callback
             function() {
                 console.log("recordAudio():Audio Success");
@@ -61,26 +61,26 @@ Quick Example
     }
 
 
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Device Properties Example</title>
+        <title><a href="../device/device.html">Device</a> Properties <a href="../storage/storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
 
         // Record audio
         // 
         function recordAudio() {
             var src = "myrecording.mp3";
-            var mediaRec = new Media(src, onSuccess, onError);
+            var mediaRec = new <a href="media.html">Media</a>(src, onSuccess, onError);
 
             // Record audio
             mediaRec.startRecord();
@@ -89,7 +89,7 @@ Full Example
             var recTime = 0;
             var recInterval = setInterval(function() {
                 recTime = recTime + 1;
-                setAudioPosition(recTime + " sec");
+                setAudio<a href="../geolocation/Position/position.html">Position</a>(recTime + " sec");
                 if (recTime >= 10) {
                     clearInterval(recInterval);
                     mediaRec.stopRecord();
@@ -99,7 +99,7 @@ Full Example
 
         // Cordova is ready
         //
-        function onDeviceReady() {
+        function on<a href="../device/device.html">Device</a>Ready() {
             recordAudio();
         }
     
@@ -118,7 +118,7 @@ Full Example
 
         // Set audio position
         // 
-        function setAudioPosition(position) {
+        function setAudio<a href="../geolocation/Position/position.html">Position</a>(position) {
             document.getElementById('audio_position').innerHTML = position;
         }
 
@@ -134,4 +134,4 @@ Full Example
 iOS Quirks
 ----------
 
-- The file to record to must already exist and should be of type .wav. The File API's can be used to create the file.
+- The file to record to must already exist and should be of type .wav. The <a href="../file/fileobj/fileobj.html">File</a> API's can be used to create the file.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/media/media.stop.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/media/media.stop.md b/www/docs/en/1.7.0/cordova/media/media.stop.md
index e3637b1..5438bf7 100644
--- a/www/docs/en/1.7.0/cordova/media/media.stop.md
+++ b/www/docs/en/1.7.0/cordova/media/media.stop.md
@@ -38,14 +38,14 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // Play audio
     //
     function playAudio(url) {
         // Play the audio file at url
-        var my_media = new Media(url,
+        var my_media = new <a href="media.html">Media</a>(url,
             // success callback
             function() {
                 console.log("playAudio():Audio Success");
@@ -56,7 +56,7 @@ Quick Example
         });
 
         // Play audio
-        my_media.play();
+        my_<a href="media.play.html">media.play</a>();
 
         // Pause after 10 seconds
         setTimeout(function() {
@@ -64,25 +64,25 @@ Quick Example
         }, 10000);        
     }
 
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
 
         <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                               "http://www.w3.org/TR/html4/strict.dtd">
         <html>
           <head>
-            <title>Media Example</title>
+            <title><a href="media.html">Media</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
         
             <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
             <script type="text/javascript" charset="utf-8">
         
             // Wait for Cordova to load
             //
-            document.addEventListener("deviceready", onDeviceReady, false);
+            document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
         
             // Cordova is ready
             //
-            function onDeviceReady() {
+            function on<a href="../device/device.html">Device</a>Ready() {
                 playAudio("http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3");
             }
         
@@ -94,27 +94,27 @@ Full Example
             // Play audio
             //
             function playAudio(src) {
-                // Create Media object from src
-                my_media = new Media(src, onSuccess, onError);
+                // Create <a href="media.html">Media</a> object from src
+                my_media = new <a href="media.html">Media</a>(src, onSuccess, onError);
         
                 // Play audio
-                my_media.play();
+                my_<a href="media.play.html">media.play</a>();
         
                 // Update my_media position every second
                 if (mediaTimer == null) {
                     mediaTimer = setInterval(function() {
                         // get my_media position
-                        my_media.getCurrentPosition(
+                        my_media.getCurrent<a href="../geolocation/Position/position.html">Position</a>(
                             // success callback
                             function(position) {
                                 if (position > -1) {
-                                    setAudioPosition((position) + " sec");
+                                    setAudio<a href="../geolocation/Position/position.html">Position</a>((position) + " sec");
                                 }
                             },
                             // error callback
                             function(e) {
                                 console.log("Error getting pos=" + e);
-                                setAudioPosition("Error: " + e);
+                                setAudio<a href="../geolocation/Position/position.html">Position</a>("Error: " + e);
                             }
                         );
                     }, 1000);
@@ -123,9 +123,9 @@ Full Example
         
             // Pause audio
             // 
-            function pauseAudio() {
+            function <a href="../events/events.pause.html">pause</a>Audio() {
                 if (my_media) {
-                    my_media.pause();
+                    my_media.<a href="../events/events.pause.html">pause</a>();
                 }
             }
         
@@ -154,7 +154,7 @@ Full Example
         
             // Set audio position
             // 
-            function setAudioPosition(position) {
+            function setAudio<a href="../geolocation/Position/position.html">Position</a>(position) {
                 document.getElementById('audio_position').innerHTML = position;
             }
         
@@ -162,7 +162,7 @@ Full Example
           </head>
           <body>
             <a href="#" class="btn large" onclick="playAudio('http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3');">Play Audio</a>
-            <a href="#" class="btn large" onclick="pauseAudio();">Pause Playing Audio</a>
+            <a href="#" class="btn large" onclick="<a href="../events/events.pause.html">pause</a>Audio();">Pause Playing Audio</a>
             <a href="#" class="btn large" onclick="stopAudio();">Stop Playing Audio</a>
             <p id="audio_position"></p>
           </body>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/media/media.stopRecord.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/media/media.stopRecord.md b/www/docs/en/1.7.0/cordova/media/media.stopRecord.md
index 099aefe..7ef81b2 100644
--- a/www/docs/en/1.7.0/cordova/media/media.stopRecord.md
+++ b/www/docs/en/1.7.0/cordova/media/media.stopRecord.md
@@ -18,18 +18,18 @@ license: >
     under the License.
 ---
 
-media.stopRecord
+<a href="media.stop.html">media.stop</a>Record
 ================
 
 Stops recording an audio file.
 
-    media.stopRecord();
+    <a href="media.stop.html">media.stop</a>Record();
 
 
 Description
 -----------
 
-Function `media.stopRecord` is a synchronous function that stops recording an audio file.
+Function `<a href="media.stop.html">media.stop</a>Record` is a synchronous function that stops recording an audio file.
 
 Supported Platforms
 -------------------
@@ -38,14 +38,14 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // Record audio
     // 
     function recordAudio() {
         var src = "myrecording.mp3";
-        var mediaRec = new Media(src,
+        var mediaRec = new <a href="media.html">Media</a>(src,
             // success callback
             function() {
                 console.log("recordAudio():Audio Success");
@@ -66,26 +66,26 @@ Quick Example
     }
 
 
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Device Properties Example</title>
+        <title><a href="../device/device.html">Device</a> Properties <a href="../storage/storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
 
         // Record audio
         // 
         function recordAudio() {
             var src = "myrecording.mp3";
-            var mediaRec = new Media(src, onSuccess, onError);
+            var mediaRec = new <a href="media.html">Media</a>(src, onSuccess, onError);
 
             // Record audio
             mediaRec.startRecord();
@@ -94,7 +94,7 @@ Full Example
             var recTime = 0;
             var recInterval = setInterval(function() {
                 recTime = recTime + 1;
-                setAudioPosition(recTime + " sec");
+                setAudio<a href="../geolocation/Position/position.html">Position</a>(recTime + " sec");
                 if (recTime >= 10) {
                     clearInterval(recInterval);
                     mediaRec.stopRecord();
@@ -104,7 +104,7 @@ Full Example
 
         // Cordova is ready
         //
-        function onDeviceReady() {
+        function on<a href="../device/device.html">Device</a>Ready() {
             recordAudio();
         }
     
@@ -123,7 +123,7 @@ Full Example
 
         // Set audio position
         // 
-        function setAudioPosition(position) {
+        function setAudio<a href="../geolocation/Position/position.html">Position</a>(position) {
             document.getElementById('audio_position').innerHTML = position;
         }
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/notification/notification.alert.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/notification/notification.alert.md b/www/docs/en/1.7.0/cordova/notification/notification.alert.md
index 92f80e9..e31684f 100644
--- a/www/docs/en/1.7.0/cordova/notification/notification.alert.md
+++ b/www/docs/en/1.7.0/cordova/notification/notification.alert.md
@@ -44,7 +44,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Bada 1.2 & 2.x
 
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // Android / BlackBerry WebWorks (OS 5.0 and higher) / iPhone
@@ -60,24 +60,24 @@ Quick Example
         'Done'                  // buttonName
     );
         
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Notification Example</title>
+        <title><a href="notification.html">Notification</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
 
         // Cordova is ready
         //
-        function onDeviceReady() {
+        function on<a href="../device/device.html">Device</a>Ready() {
             // Empty
         }
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/notification/notification.beep.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/notification/notification.beep.md b/www/docs/en/1.7.0/cordova/notification/notification.beep.md
index ac88772..ee9bc5e 100644
--- a/www/docs/en/1.7.0/cordova/notification/notification.beep.md
+++ b/www/docs/en/1.7.0/cordova/notification/notification.beep.md
@@ -36,37 +36,37 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Bada 1.2 & 2.x
 
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // Beep twice!
     navigator.notification.beep(2);
 
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Notification Example</title>
+        <title><a href="notification.html">Notification</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
 
         // Cordova is ready
         //
-        function onDeviceReady() {
+        function on<a href="../device/device.html">Device</a>Ready() {
             // Empty
         }
 
         // Show a custom alert
         //
         function showAlert() {
-		    navigator.notification.alert(
+		    navigator.<a href="notification.alert.html">notification.alert</a>(
 		        'You are the winner!',  // message
 		        'Game Over',            // title
 		        'Done'                  // buttonName
@@ -82,7 +82,7 @@ Full Example
         // Vibrate for 2 seconds
         //
         function vibrate() {
-            navigator.notification.vibrate(2000);
+            navigator.<a href="notification.vibrate.html">notification.vibrate</a>(2000);
         }
 
         </script>
@@ -97,7 +97,7 @@ Full Example
 Android Quirks
 --------------
 
-- Android plays the default "Notification ringtone" specified under the "Settings/Sound & Display" panel.
+- Android plays the default "<a href="notification.html">Notification</a> ringtone" specified under the "Settings/Sound & Display" panel.
 
 iPhone Quirks
 -------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/notification/notification.confirm.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/notification/notification.confirm.md b/www/docs/en/1.7.0/cordova/notification/notification.confirm.md
index 999269e..b5de8f4 100644
--- a/www/docs/en/1.7.0/cordova/notification/notification.confirm.md
+++ b/www/docs/en/1.7.0/cordova/notification/notification.confirm.md
@@ -44,7 +44,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Bada 1.2 & 2.x
 
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
 	// process the confirmation dialog result
@@ -63,24 +63,24 @@ Quick Example
         );
     }
         
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Notification Example</title>
+        <title><a href="notification.html">Notification</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
 
         // Cordova is ready
         //
-        function onDeviceReady() {
+        function on<a href="../device/device.html">Device</a>Ready() {
             // Empty
         }
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/notification/notification.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/notification/notification.md b/www/docs/en/1.7.0/cordova/notification/notification.md
index f337c57..5a0efa2 100644
--- a/www/docs/en/1.7.0/cordova/notification/notification.md
+++ b/www/docs/en/1.7.0/cordova/notification/notification.md
@@ -26,7 +26,7 @@ Notification
 Methods
 -------
 
-- notification.alert
-- notification.confirm
-- notification.beep
-- notification.vibrate
\ No newline at end of file
+- <a href="notification.alert.html">notification.alert</a>
+- <a href="notification.confirm.html">notification.confirm</a>
+- <a href="notification.beep.html">notification.beep</a>
+- <a href="notification.vibrate.html">notification.vibrate</a>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/notification/notification.vibrate.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/notification/notification.vibrate.md b/www/docs/en/1.7.0/cordova/notification/notification.vibrate.md
index 355f2fa..c96ac0d 100644
--- a/www/docs/en/1.7.0/cordova/notification/notification.vibrate.md
+++ b/www/docs/en/1.7.0/cordova/notification/notification.vibrate.md
@@ -36,38 +36,38 @@ Supported Platforms
 - Windows Phone 7
 - Bada 1.2 & 2.x
 
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // Vibrate for 2.5 seconds
     //
     navigator.notification.vibrate(2500);
 
-Full Example
+Full <a href="../storage/storage.opendatabase.html">Example</a>
 ------------
     
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Notification Example</title>
+        <title><a href="notification.html">Notification</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
 
         // Cordova is ready
         //
-        function onDeviceReady() {
+        function on<a href="../device/device.html">Device</a>Ready() {
             // Empty
         }
     
         // Show a custom alert
         //
         function showAlert() {
-		    navigator.notification.alert(
+		    navigator.<a href="notification.alert.html">notification.alert</a>(
 		        'You are the winner!',  // message
 		        'Game Over',            // title
 		        'Done'                  // buttonName
@@ -77,7 +77,7 @@ Full Example
         // Beep three times
         //
         function playBeep() {
-            navigator.notification.beep(3);
+            navigator.<a href="notification.beep.html">notification.beep</a>(3);
         }
     
         // Vibrate for 2 seconds

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/storage/database/database.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/storage/database/database.md b/www/docs/en/1.7.0/cordova/storage/database/database.md
index 7da886e..a5f2acf 100644
--- a/www/docs/en/1.7.0/cordova/storage/database/database.md
+++ b/www/docs/en/1.7.0/cordova/storage/database/database.md
@@ -32,7 +32,7 @@ Methods
 Details
 -------
 
-A Database object is returned from a call to `window.openDatabase()`.
+A Database object is returned from a call to `window.<a href="../storage.opendatabase.html">openDatabase</a>()`.
 
 Supported Platforms
 -------------------
@@ -41,7 +41,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 6.0 and higher)
 - iPhone
 
-Transaction Quick Example
+Transaction Quick <a href="../storage.opendatabase.html">Example</a>
 ------------------
 	function populateDB(tx) {
 		 tx.executeSql('DROP TABLE IF EXISTS DEMO');
@@ -58,34 +58,34 @@ Transaction Quick Example
 		alert("success!");
 	}
 	
-	var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+	var db = window.<a href="../storage.opendatabase.html">openDatabase</a>("Database", "1.0", "Cordova Demo", 200000);
 	db.transaction(populateDB, errorCB, successCB);
 
-Change Version Quick Example
+Change Version Quick <a href="../storage.opendatabase.html">Example</a>
 -------------------
 
-	var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+	var db = window.<a href="../storage.opendatabase.html">openDatabase</a>("Database", "1.0", "Cordova Demo", 200000);
 	db.changeVersion("1.0", "1.1");
 
-Full Example
+Full <a href="../storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Contact Example</title>
+        <title><a href="../../contacts/Contact/contact.html">Contact</a> <a href="../storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../../events/events.deviceready.html">deviceready</a>", on<a href="../../device/device.html">Device</a>Ready, false);
 
         // Cordova is ready
         //
-        function onDeviceReady() {
-			var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+        function on<a href="../../device/device.html">Device</a>Ready() {
+			var db = window.<a href="../storage.opendatabase.html">openDatabase</a>("Database", "1.0", "Cordova Demo", 200000);
 			db.transaction(populateDB, errorCB, successCB);
         }
 		
@@ -113,7 +113,7 @@ Full Example
         </script>
       </head>
       <body>
-        <h1>Example</h1>
+        <h1><a href="../storage.opendatabase.html">Example</a></h1>
         <p>Database</p>
       </body>
     </html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/storage/localstorage/localstorage.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/storage/localstorage/localstorage.md b/www/docs/en/1.7.0/cordova/storage/localstorage/localstorage.md
index 6c385c0..71f3d56 100644
--- a/www/docs/en/1.7.0/cordova/storage/localstorage/localstorage.md
+++ b/www/docs/en/1.7.0/cordova/storage/localstorage/localstorage.md
@@ -18,12 +18,12 @@ license: >
     under the License.
 ---
 
-localStorage
+local<a href="../storage.html">Storage</a>
 ===============
 
-Provides access to a W3C Storage interface (http://dev.w3.org/html5/webstorage/#the-localstorage-attribute)
+Provides access to a W3C <a href="../storage.html">Storage</a> interface (http://dev.w3.org/html5/webstorage/#the-localstorage-attribute)
 
-    var storage = window.localStorage;
+    var storage = window.local<a href="../storage.html">Storage</a>;
 
 Methods
 -------
@@ -37,9 +37,9 @@ Methods
 Details
 -----------
 
-localStorage provides an interface to a W3C Storage interface.  It allows one to save data as key-value pairs.
+local<a href="../storage.html">Storage</a> provides an interface to a W3C <a href="../storage.html">Storage</a> interface.  It allows one to save data as key-value pairs.
 
-Note: window.sessionStorage provides the same interface, but is cleared between app launches.
+Note: window.session<a href="../storage.html">Storage</a> provides the same interface, but is cleared between app launches.
 
 Supported Platforms
 -------------------
@@ -49,67 +49,67 @@ Supported Platforms
 - iPhone
 - Windows Phone 7
 
-Key Quick Example
+Key Quick <a href="../storage.opendatabase.html">Example</a>
 -------------
 
-    var keyName = window.localStorage.key(0);
+    var keyName = window.local<a href="../storage.html">Storage</a>.key(0);
 
-Set Item Quick Example
+Set Item Quick <a href="../storage.opendatabase.html">Example</a>
 -------------
 
-    window.localStorage.setItem("key", "value");
+    window.local<a href="../storage.html">Storage</a>.setItem("key", "value");
 
-Get Item Quick Example
+Get Item Quick <a href="../storage.opendatabase.html">Example</a>
 -------------
 
-	var value = window.localStorage.getItem("key");
+	var value = window.local<a href="../storage.html">Storage</a>.getItem("key");
 	// value is now equal to "value"
 
-Remove Item Quick Example
+Remove Item Quick <a href="../storage.opendatabase.html">Example</a>
 -------------
 
-	window.localStorage.removeItem("key");
+	window.local<a href="../storage.html">Storage</a>.removeItem("key");
 
-Clear Quick Example
+Clear Quick <a href="../storage.opendatabase.html">Example</a>
 -------------
 
-	window.localStorage.clear();
+	window.local<a href="../storage.html">Storage</a>.clear();
 
-Full Example
+Full <a href="../storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Contact Example</title>
+        <title><a href="../../contacts/Contact/contact.html">Contact</a> <a href="../storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../../events/events.deviceready.html">deviceready</a>", on<a href="../../device/device.html">Device</a>Ready, false);
 
         // Cordova is ready
         //
-        function onDeviceReady() {
-			window.localStorage.setItem("key", "value");
-			var keyname = window.localStorage.key(i);
+        function on<a href="../../device/device.html">Device</a>Ready() {
+			window.local<a href="../storage.html">Storage</a>.setItem("key", "value");
+			var keyname = window.local<a href="../storage.html">Storage</a>.key(i);
 			// keyname is now equal to "key"
-			var value = window.localStorage.getItem("key");
+			var value = window.local<a href="../storage.html">Storage</a>.getItem("key");
 			// value is now equal to "value"
-			window.localStorage.removeItem("key");
-			window.localStorage.setItem("key2", "value2");
-			window.localStorage.clear();
-			// localStorage is now empty
+			window.local<a href="../storage.html">Storage</a>.removeItem("key");
+			window.local<a href="../storage.html">Storage</a>.setItem("key2", "value2");
+			window.local<a href="../storage.html">Storage</a>.clear();
+			// local<a href="../storage.html">Storage</a> is now empty
         }
     
 
         </script>
       </head>
       <body>
-        <h1>Example</h1>
-        <p>localStorage</p>
+        <h1><a href="../storage.opendatabase.html">Example</a></h1>
+        <p>local<a href="../storage.html">Storage</a></p>
       </body>
     </html>
 
@@ -117,4 +117,4 @@ Full Example
 Windows Phone 7 Quirks
 -------------
 
-- dot notation is NOT available on Windows Phone. Be sure to use : window.localStorage.setItem/getItem, and not the w3 spec defined calls to window.localStorage.someKey = 'someValue';
\ No newline at end of file
+- dot notation is NOT available on Windows Phone. Be sure to use : window.local<a href="../storage.html">Storage</a>.setItem/getItem, and not the w3 spec defined calls to window.local<a href="../storage.html">Storage</a>.someKey = 'someValue';
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/storage/sqlresultset/sqlresultset.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/storage/sqlresultset/sqlresultset.md b/www/docs/en/1.7.0/cordova/storage/sqlresultset/sqlresultset.md
index b24199d..87d1891 100644
--- a/www/docs/en/1.7.0/cordova/storage/sqlresultset/sqlresultset.md
+++ b/www/docs/en/1.7.0/cordova/storage/sqlresultset/sqlresultset.md
@@ -21,7 +21,7 @@ license: >
 SQLResultSet
 =======
 
-When the executeSql method of a SQLTransaction is called it will invoke it's callback with a SQLResultSet.
+When the executeSql method of a <a href="../sqltransaction/sqltransaction.html">SQLTransaction</a> is called it will invoke it's callback with a SQLResultSet.
 
 Properties
 -------
@@ -33,7 +33,7 @@ Properties
 Details
 -------
 
-When you call the SQLTransaction executeSql method its callback methods will be called with a SQLResultSet object.  The result object has three properties.  The first is the `insertId` which will return the row number of a success SQL insert statement.  If the SQL statement is not an insert then the `insertId` is not set.  The `rowsAffected` is always 0 for a SQL select statement.  For insert or update statements it returns the number of rows that have been modified.  The final property is of type SQLResultSetList and it contains the data returned from a SQL select statement.
+When you call the <a href="../sqltransaction/sqltransaction.html">SQLTransaction</a> executeSql method its callback methods will be called with a SQLResultSet object.  The result object has three properties.  The first is the `insertId` which will return the row number of a success SQL insert statement.  If the SQL statement is not an insert then the `insertId` is not set.  The `rowsAffected` is always 0 for a SQL select statement.  For insert or update statements it returns the number of rows that have been modified.  The final property is of type <a href="../sqlresultsetlist/sqlresultsetlist.html">SQLResultSetList</a> and it contains the data returned from a SQL select statement.
 
 Supported Platforms
 -------------------
@@ -42,7 +42,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 6.0 and higher)
 - iPhone
 
-Execute SQL Quick Example
+Execute SQL Quick <a href="../storage.opendatabase.html">Example</a>
 ------------------
 
 	function queryDB(tx) {
@@ -64,23 +64,23 @@ Execute SQL Quick Example
 		alert("Error processing SQL: "+err.code);
 	}
 	
-	var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+	var db = window.<a href="../storage.opendatabase.html">open<a href="../database/database.html">Database</a></a>("<a href="../database/database.html">Database</a>", "1.0", "Cordova Demo", 200000);
 	db.transaction(queryDB, errorCB);
 
-Full Example
+Full <a href="../storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Contact Example</title>
+        <title><a href="../../contacts/Contact/contact.html">Contact</a> <a href="../storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../../events/events.deviceready.html">deviceready</a>", on<a href="../../device/device.html">Device</a>Ready, false);
 
 		// Populate the database 
 		//
@@ -119,21 +119,21 @@ Full Example
 		// Transaction success callback
 		//
 		function successCB() {
-			var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+			var db = window.<a href="../storage.opendatabase.html">open<a href="../database/database.html">Database</a></a>("<a href="../database/database.html">Database</a>", "1.0", "Cordova Demo", 200000);
 			db.transaction(queryDB, errorCB);
 		}
 
 		// Cordova is ready
 		//
-		function onDeviceReady() {
-			var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+		function on<a href="../../device/device.html">Device</a>Ready() {
+			var db = window.<a href="../storage.opendatabase.html">open<a href="../database/database.html">Database</a></a>("<a href="../database/database.html">Database</a>", "1.0", "Cordova Demo", 200000);
 			db.transaction(populateDB, errorCB, successCB);
 		}
 	
         </script>
       </head>
       <body>
-        <h1>Example</h1>
-        <p>Database</p>
+        <h1><a href="../storage.opendatabase.html">Example</a></h1>
+        <p><a href="../database/database.html">Database</a></p>
       </body>
     </html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/storage/sqlresultsetlist/sqlresultsetlist.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/storage/sqlresultsetlist/sqlresultsetlist.md b/www/docs/en/1.7.0/cordova/storage/sqlresultsetlist/sqlresultsetlist.md
index da416b7..8144a1a 100644
--- a/www/docs/en/1.7.0/cordova/storage/sqlresultsetlist/sqlresultsetlist.md
+++ b/www/docs/en/1.7.0/cordova/storage/sqlresultsetlist/sqlresultsetlist.md
@@ -18,10 +18,10 @@ license: >
     under the License.
 ---
 
-SQLResultSetList
+<a href="../sqlresultset/sqlresultset.html">SQLResultSet</a>List
 =======
 
-One of the properties of the SQLResultSet containing the rows returned from a SQL query.
+One of the properties of the <a href="../sqlresultset/sqlresultset.html">SQLResultSet</a> containing the rows returned from a SQL query.
 
 Properties
 -------
@@ -36,7 +36,7 @@ Methods
 Details
 -------
 
-The SQLResultSetList contains the data returned from a SQL select statement.  The object contains a length property letting you know how many rows the select statement has been returned.  To get a row of data you would call the `item` method specifying an index.  The item method returns a JavaScript Object who's properties are the columns of the database the select statement was executed against.
+The <a href="../sqlresultset/sqlresultset.html">SQLResultSet</a>List contains the data returned from a SQL select statement.  The object contains a length property letting you know how many rows the select statement has been returned.  To get a row of data you would call the `item` method specifying an index.  The item method returns a JavaScript Object who's properties are the columns of the database the select statement was executed against.
 
 Supported Platforms
 -------------------
@@ -45,7 +45,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 6.0 and higher)
 - iPhone
 
-Execute SQL Quick Example
+Execute SQL Quick <a href="../storage.opendatabase.html">Example</a>
 ------------------
 
 	function queryDB(tx) {
@@ -64,23 +64,23 @@ Execute SQL Quick Example
 		alert("Error processing SQL: "+err.code);
 	}
 	
-	var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+	var db = window.<a href="../storage.opendatabase.html">open<a href="../database/database.html">Database</a></a>("<a href="../database/database.html">Database</a>", "1.0", "Cordova Demo", 200000);
 	db.transaction(queryDB, errorCB);
 
-Full Example
+Full <a href="../storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Contact Example</title>
+        <title><a href="../../contacts/Contact/contact.html">Contact</a> <a href="../storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../../events/events.deviceready.html">deviceready</a>", on<a href="../../device/device.html">Device</a>Ready, false);
 
 		// Populate the database 
 		//
@@ -116,21 +116,21 @@ Full Example
 		// Transaction success callback
 		//
 		function successCB() {
-			var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+			var db = window.<a href="../storage.opendatabase.html">open<a href="../database/database.html">Database</a></a>("<a href="../database/database.html">Database</a>", "1.0", "Cordova Demo", 200000);
 			db.transaction(queryDB, errorCB);
 		}
 
 		// Cordova is ready
 		//
-		function onDeviceReady() {
-			var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+		function on<a href="../../device/device.html">Device</a>Ready() {
+			var db = window.<a href="../storage.opendatabase.html">open<a href="../database/database.html">Database</a></a>("<a href="../database/database.html">Database</a>", "1.0", "Cordova Demo", 200000);
 			db.transaction(populateDB, errorCB, successCB);
 		}
 	
         </script>
       </head>
       <body>
-        <h1>Example</h1>
-        <p>Database</p>
+        <h1><a href="../storage.opendatabase.html">Example</a></h1>
+        <p><a href="../database/database.html">Database</a></p>
       </body>
     </html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/storage/sqltransaction/sqltransaction.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/storage/sqltransaction/sqltransaction.md b/www/docs/en/1.7.0/cordova/storage/sqltransaction/sqltransaction.md
index 059e167..0258f4f 100644
--- a/www/docs/en/1.7.0/cordova/storage/sqltransaction/sqltransaction.md
+++ b/www/docs/en/1.7.0/cordova/storage/sqltransaction/sqltransaction.md
@@ -21,7 +21,7 @@ license: >
 SQLTransaction
 =======
 
-Contains methods that allow the user to execute SQL statements against the Database.
+Contains methods that allow the user to execute SQL statements against the <a href="../database/database.html">Database</a>.
 
 Methods
 -------
@@ -31,7 +31,7 @@ Methods
 Details
 -------
 
-When you call a Database objects transaction method it's callback methods will be called with a SQLTransaction object.  The user can build up a database transaction by calling the executeSql method multiple times.  
+When you call a <a href="../database/database.html">Database</a> objects transaction method it's callback methods will be called with a SQLTransaction object.  The user can build up a database transaction by calling the executeSql method multiple times.  
 
 Supported Platforms
 -------------------
@@ -40,7 +40,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 6.0 and higher)
 - iPhone
 
-Execute SQL Quick Example
+Execute SQL Quick <a href="../storage.opendatabase.html">Example</a>
 ------------------
 
 	function populateDB(tx) {
@@ -58,28 +58,28 @@ Execute SQL Quick Example
 		alert("success!");
 	}
 	
-	var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+	var db = window.<a href="../storage.opendatabase.html">open<a href="../database/database.html">Database</a></a>("<a href="../database/database.html">Database</a>", "1.0", "Cordova Demo", 200000);
 	db.transaction(populateDB, errorCB, successCB);
 
-Full Example
+Full <a href="../storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Contact Example</title>
+        <title><a href="../../contacts/Contact/contact.html">Contact</a> <a href="../storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../../events/events.deviceready.html">deviceready</a>", on<a href="../../device/device.html">Device</a>Ready, false);
 
         // Cordova is ready
         //
-        function onDeviceReady() {
-			var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
+        function on<a href="../../device/device.html">Device</a>Ready() {
+			var db = window.<a href="../storage.opendatabase.html">open<a href="../database/database.html">Database</a></a>("<a href="../database/database.html">Database</a>", "1.0", "Cordova Demo", 200000);
 			db.transaction(populateDB, errorCB, successCB);
         }
 		
@@ -107,7 +107,7 @@ Full Example
         </script>
       </head>
       <body>
-        <h1>Example</h1>
+        <h1><a href="../storage.opendatabase.html">Example</a></h1>
         <p>SQLTransaction</p>
       </body>
     </html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/storage/storage.md b/www/docs/en/1.7.0/cordova/storage/storage.md
index 9970c74..db98812 100644
--- a/www/docs/en/1.7.0/cordova/storage/storage.md
+++ b/www/docs/en/1.7.0/cordova/storage/storage.md
@@ -23,27 +23,27 @@ Storage
 
 > Provides access to the devices storage options.  
 
-This API is based on the [W3C Web SQL Database Specification](http://dev.w3.org/html5/webdatabase/) and [W3C Web Storage API Specification](http://dev.w3.org/html5/webstorage/). Some devices already provide an implementation of this spec. For those devices, the built-in support is used instead of replacing it with Cordova's implementation. For devices that don't have storage support, Cordova's implementation should be compatible with the W3C specification.
+This API is based on the [W3C Web SQL <a href="database/database.html">Database</a> Specification](http://dev.w3.org/html5/webdatabase/) and [W3C Web Storage API Specification](http://dev.w3.org/html5/webstorage/). Some devices already provide an implementation of this spec. For those devices, the built-in support is used instead of replacing it with Cordova's implementation. For devices that don't have storage support, Cordova's implementation should be compatible with the W3C specification.
 
 Methods
 -------
 
-- openDatabase
+- <a href="storage.opendatabase.html">open<a href="database/database.html">Database</a></a>
 
 Arguments
 ---------
 
-- database_name
-- database_version
-- database_displayname
-- database_size
+- <a href="parameters/name.html">database_name</a>
+- <a href="parameters/version.html">database_version</a>
+- <a href="parameters/display_name.html">database_displayname</a>
+- <a href="parameters/size.html">database_size</a>
 
 Objects
 -------
 
-- Database
-- SQLTransaction
-- SQLResultSet
-- SQLResultSetList
-- SQLError
-- localStorage
\ No newline at end of file
+- <a href="database/database.html">Database</a>
+- <a href="sqltransaction/sqltransaction.html">SQLTransaction</a>
+- <a href="sqlresultset/sqlresultset.html">SQLResultSet</a>
+- <a href="sqlresultsetlist/sqlresultsetlist.html"><a href="sqlresultset/sqlresultset.html">SQLResultSet</a>List</a>
+- <a href="sqlerror/sqlerror.html">SQLError</a>
+- <a href="localstorage/localstorage.html">localStorage</a>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/cordova/storage/storage.opendatabase.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/cordova/storage/storage.opendatabase.md b/www/docs/en/1.7.0/cordova/storage/storage.opendatabase.md
index 6ac6e0e..2db2026 100644
--- a/www/docs/en/1.7.0/cordova/storage/storage.opendatabase.md
+++ b/www/docs/en/1.7.0/cordova/storage/storage.opendatabase.md
@@ -18,19 +18,19 @@ license: >
     under the License.
 ---
 
-openDatabase
+open<a href="database/database.html">Database</a>
 ===============
 
-Returns a new Database object.
+Returns a new <a href="database/database.html">Database</a> object.
 
-    var dbShell = window.openDatabase(database_name, database_version, database_displayname, database_size);
+    var dbShell = window.open<a href="database/database.html">Database</a>(<a href="parameters/name.html">database_name</a>, <a href="parameters/version.html">database_version</a>, <a href="parameters/display_name.html">database_displayname</a>, <a href="parameters/size.html">database_size</a>);
 
 Description
 -----------
 
-window.openDatabase returns a new Database object.
+window.open<a href="database/database.html">Database</a> returns a new <a href="database/database.html">Database</a> object.
 
-This method will create a new SQL Lite Database and return a Database object.  Use the Database Object to manipulate the data.
+This method will create a new SQL Lite <a href="database/database.html">Database</a> and return a <a href="database/database.html">Database</a> object.  Use the <a href="database/database.html">Database</a> Object to manipulate the data.
 
 Supported Platforms
 -------------------
@@ -42,7 +42,7 @@ Supported Platforms
 Quick Example
 -------------
 
-    var db = window.openDatabase("test", "1.0", "Test DB", 1000000);
+    var db = window.open<a href="database/database.html">Database</a>("test", "1.0", "Test DB", 1000000);
 
 Full Example
 ------------
@@ -50,25 +50,25 @@ Full Example
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Contact Example</title>
+        <title><a href="../contacts/Contact/contact.html">Contact</a> Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
 
         // Cordova is ready
         //
-        function onDeviceReady() {
-			var db = window.openDatabase("test", "1.0", "Test DB", 1000000);
+        function on<a href="../device/device.html">Device</a>Ready() {
+			var db = window.open<a href="database/database.html">Database</a>("test", "1.0", "Test DB", 1000000);
         }
 		
         </script>
       </head>
       <body>
         <h1>Example</h1>
-        <p>Open Database</p>
+        <p>Open <a href="database/database.html">Database</a></p>
       </body>
     </html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/guide/getting-started/android/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/guide/getting-started/android/index.md b/www/docs/en/1.7.0/guide/getting-started/android/index.md
index 79e9ef9..ebb1381 100644
--- a/www/docs/en/1.7.0/guide/getting-started/android/index.md
+++ b/www/docs/en/1.7.0/guide/getting-started/android/index.md
@@ -99,7 +99,7 @@ This guide describes how to set up your development environment for Cordova and
     ![](img/guide/platforms/android/manifest.jpg)
 
 
-4. Hello World
+4. <a href="../webos/index.html">Hello World</a>
 --------------    
 
 - Create and open a new file named **index.html** in the **assets/www** directory. Paste the following code:
@@ -111,7 +111,7 @@ This guide describes how to set up your development environment for Cordova and
         <script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
         </head>
         <body>
-        <h1>Hello World</h1>
+        <h1><a href="../webos/index.html">Hello World</a></h1>
         </body>
         </html>
 
@@ -122,7 +122,7 @@ This guide describes how to set up your development environment for Cordova and
 - Eclipse will ask you to select an appropriate AVD. If there isn't one, then you'll need to create it.
 
 
-5B. Deploy to Device
+5B. Deploy to <a href="../../../cordova/device/device.html">Device</a>
 --------------------
 
 - Make sure USB debugging is enabled on your device and plug it into your system. (**Settings &gt; Applications &gt; Development**)

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/guide/getting-started/bada/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/guide/getting-started/bada/index.md b/www/docs/en/1.7.0/guide/getting-started/bada/index.md
index 8e657d8..890febf 100644
--- a/www/docs/en/1.7.0/guide/getting-started/bada/index.md
+++ b/www/docs/en/1.7.0/guide/getting-started/bada/index.md
@@ -39,7 +39,7 @@ This guide describes how to set up your development environment for Cordova and
 
 3. Setup New Project
 --------------------
-- In Bada IDE, select _File_ -> Import project -> Bada C++ / Flash Project. 
+- In Bada IDE, select _<a href="../../../cordova/file/fileobj/fileobj.html">File</a>_ -> Import project -> Bada C++ / Flash Project. 
     - Note: Bada 1.2 select "Bada Application Project"
     
     ![](img/guide/platforms/bada/import_bada_project.png)
@@ -54,7 +54,7 @@ This guide describes how to set up your development environment for Cordova and
     ![](img/guide/platforms/bada/bada_project.png)
  
  
-4. Hello World
+4. <a href="../webos/index.html">Hello World</a>
 --------------
 
 **Bada 2.x**: Your HTML/CSS/Javascript code lives under the Res/ folder. Make sure your index.html contains the following two lines in the <head> section.
@@ -82,7 +82,7 @@ This guide describes how to set up your development environment for Cordova and
 - Right click on your project&apos;s folder and select Run As -&gt; bada Simulator Application. You need to close the emulator every time you update your app!
 
 
-5B. Deploy to Device
+5B. Deploy to <a href="../../../cordova/device/device.html">Device</a>
 --------------------
 
 - Make sure your device is properly configured 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/guide/getting-started/blackberry/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/guide/getting-started/blackberry/index.md b/www/docs/en/1.7.0/guide/getting-started/blackberry/index.md
index 8aeb884..698e7ea 100644
--- a/www/docs/en/1.7.0/guide/getting-started/blackberry/index.md
+++ b/www/docs/en/1.7.0/guide/getting-started/blackberry/index.md
@@ -55,7 +55,7 @@ Cordova for BlackBerry makes use of the [BlackBerry WebWorks framework](https://
 - Open up the project.properties file with your favorite editor and edit the entries for `blackberry.bbwp.dir=` and/or `playbook.bbwp.dir=`. Set the  value(s) to the directory containing the `bbwp` binary in the WebWorks SDK(s) installed earlier.
 
 
-4.  Hello World
+4.  <a href="../webos/index.html">Hello World</a>
 --------------
 
 Build the Cordova sample project by typing `ant target build` in your command prompt/terminal while you are in your project's directory. Replace `target` with either `blackberry` or `playbook`. Note this is a sample Cordova project and not a basic hello world application. The provided index.html in the www contains example usages of many of the Cordova API.
@@ -75,7 +75,7 @@ BlackBerry smartphone simulators are only available on Windows. PlayBook simulat
 - While in your project directory, in command prompt/terminal type `ant target load-simulator`. Replace `target` with either `blackberry` or `playbook`.  Note, for PlayBook the simulator virtual image must already be started.
 - The application will be installed in the All Applications section in the simulator.  Note, on BlackBerry OS 5 the application is installed in the Downloads folder.
 
-5B.  Deploy to Device (Windows and Mac)
+5B.  Deploy to <a href="../../../cordova/device/device.html">Device</a> (Windows and Mac)
 --------------------------------------
 
 - Deploying to a device requires signing keys which can be obtained from RIM.
@@ -91,7 +91,7 @@ BlackBerry smartphone simulators are only available on Windows. PlayBook simulat
         - `playbook.sigtool.csk.password` : Signing key password.
         - `playbook.sigtool.p12.password` : Signing key password.
         - `playbook.device.ip` : IP address of device obtained when placing the device in developer mode through device security settings.
-        - `playbook.device.password` : Device password which is set through device security settings.
+        - `playbook.device.password` : <a href="../../../cordova/device/device.html">Device</a> password which is set through device security settings.
 - While in your project directory, in command prompt/terminal type `ant target load-device`. Replace `target` with either `blackberry` or `playbook`.
 - The application will be installed in the All Applications section in the device.  Note, on BlackBerry OS 5 the application is installed in the Downloads folder.
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/guide/getting-started/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/guide/getting-started/index.md b/www/docs/en/1.7.0/guide/getting-started/index.md
index 2bddf89..cef668b 100644
--- a/www/docs/en/1.7.0/guide/getting-started/index.md
+++ b/www/docs/en/1.7.0/guide/getting-started/index.md
@@ -21,10 +21,10 @@ license: >
 Getting Started Guides
 ======================
 
-- Getting Started with Android
-- Getting Started with BlackBerry
-- Getting Started with iOS
-- Getting Started with Symbian
-- Getting Started with WebOS
-- Getting Started with Windows Phone
-- Getting Started with Bada
+- <a href="android/index.html">Getting Started with Android</a>
+- <a href="blackberry/index.html">Getting Started with BlackBerry</a>
+- <a href="ios/index.html">Getting Started with iOS</a>
+- <a href="symbian/index.html">Getting Started with Symbian</a>
+- <a href="webos/index.html">Getting Started with WebOS</a>
+- <a href="windows-phone/index.html">Getting Started with Windows Phone</a>
+- <a href="bada/index.html">Getting Started with Bada</a>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/guide/getting-started/ios/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/guide/getting-started/ios/index.md b/www/docs/en/1.7.0/guide/getting-started/ios/index.md
index 14deaee..cf2ba1e 100644
--- a/www/docs/en/1.7.0/guide/getting-started/ios/index.md
+++ b/www/docs/en/1.7.0/guide/getting-started/ios/index.md
@@ -32,7 +32,7 @@ Video Tutorials:
 1. Requirements
 ---------------
 - Intel-based computer with Mac OS X Lion (10.7)
-- Necessary for Installing on Device:
+- Necessary for Installing on <a href="../../../cordova/device/device.html">Device</a>:
     - An Apple iOS device (iPhone, iPad, iPod Touch)
     - iOS developer certification
 
@@ -48,7 +48,7 @@ Video Tutorials:
 --------------------
 
 - Launch Xcode
-- Select the **File** menu
+- Select the **<a href="../../../cordova/file/fileobj/fileobj.html">File</a>** menu
 - Select **New**, then **New Project...**
 - Select **Cordova-based Application** from the list of templates
 
@@ -86,12 +86,12 @@ Video Tutorials:
 - Select the **Finish** button
 
 
-4. Hello World
+4. <a href="../webos/index.html">Hello World</a>
 --------------
 
 - Select the folder named **www** in your Project Navigator in Xcode
 - Select the **index.html** file
-- Type `<h1>Hello World</h1>` after the `<body>` tag
+- Type `<h1><a href="../webos/index.html">Hello World</a></h1>` after the `<body>` tag
 
 You can also add any associated JavaScript and CSS files there as well.
     
@@ -103,10 +103,10 @@ You can also add any associated JavaScript and CSS files there as well.
 - Select the **Run** button in your project window's toolbar
 
 
-5B. Deploy to Device
+5B. Deploy to <a href="../../../cordova/device/device.html">Device</a>
 --------------------
 
-- Open [AppName]-Info.plist (where [AppName] is your application's name), under the "Supporting Files" group
+- Open [AppName]-Info.plist (where [AppName] is your application's name), under the "Supporting <a href="../../../cordova/file/fileobj/fileobj.html">File</a>s" group
 - Change **BundleIdentifier** to the identifier provided by Apple, or your own bundle identifier. If you have a developer license, you can access and run the Assistant [here](http://developer.apple.com/iphone/manage/overview/index.action) and register your app.
 - Change the Active SDK in the Scheme drop-down menu on the toolbar to **[DEVICENAME]** where [DEVICENAME] is the name of the device you want to deploy to.
 - Select the **Run** button in your project window's toolbar

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/guide/getting-started/symbian/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/guide/getting-started/symbian/index.md b/www/docs/en/1.7.0/guide/getting-started/symbian/index.md
index aaac5e1..9fd0938 100644
--- a/www/docs/en/1.7.0/guide/getting-started/symbian/index.md
+++ b/www/docs/en/1.7.0/guide/getting-started/symbian/index.md
@@ -50,11 +50,11 @@ There are also [QT for Symbian](http://wiki.phonegap.com/w/page/16494811/PhoneGa
 - In cygwin, navigate to where you extracted Cordova and go into the Symbian directory</li>
 
  
-4. Hello World
+4. <a href="../webos/index.html">Hello World</a>
 --------------
 
 - Open up index.html located in phonegap/symbian/framework/www with your favourite editor. 
-- In the `body` tag, remove the line `"Build your phonegap app here! Dude!"` and add the line `<h1>Hello World</h1>`
+- In the `body` tag, remove the line `"Build your phonegap app here! Dude!"` and add the line `<h1><a href="../webos/index.html">Hello World</a></h1>`
 - In cygwin/terminal, type make. This will produce phonegap-symbian.wrt/app.wgz. 
 
 
@@ -66,7 +66,7 @@ There are also [QT for Symbian](http://wiki.phonegap.com/w/page/16494811/PhoneGa
 - Load the phonegap-symbian.wrt/app.wgz file into the emulator.
 
 
-5B. Deploy to Device
+5B. Deploy to <a href="../../../cordova/device/device.html">Device</a>
 --------------------
 
 - Load the phonegap-symbian.wrt/app.wgz file into the device using bluetooth or email.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/guide/getting-started/webos/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/guide/getting-started/webos/index.md b/www/docs/en/1.7.0/guide/getting-started/webos/index.md
index 68d7570..e87bd6a 100644
--- a/www/docs/en/1.7.0/guide/getting-started/webos/index.md
+++ b/www/docs/en/1.7.0/guide/getting-started/webos/index.md
@@ -65,7 +65,7 @@ In phonegap/webOS/framework/www, open up index.html with your favourite editor.
 - Type `make` in your terminal/cygwin while in the webOS directory.
 
 
-5B. Deploy to Device
+5B. Deploy to <a href="../../../cordova/device/device.html">Device</a>
 --------------------
 
 - Make sure your device is in [Developer Mode and plug it in.](http://developer.palm.com/index.php?option=com_content&amp;view=article&amp;id=1552&amp;Itemid=59#dev_mode)

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/guide/getting-started/windows-phone/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/guide/getting-started/windows-phone/index.md b/www/docs/en/1.7.0/guide/getting-started/windows-phone/index.md
index cc334e9..1497693 100644
--- a/www/docs/en/1.7.0/guide/getting-started/windows-phone/index.md
+++ b/www/docs/en/1.7.0/guide/getting-started/windows-phone/index.md
@@ -37,7 +37,7 @@ Video Tutorials:
 
 Note: Running in VM has issues, if you are on a Mac, you will need to setup a bootcamp partition with Windows 7 or Vista
 
-Necessary for Installing on Device and Submitting to Market Place:
+Necessary for Installing on <a href="../../../cordova/device/device.html">Device</a> and Submitting to Market Place:
 
 - Become an [App Hub member](http://create.msdn.com/en-US/home/membership).
 
@@ -84,7 +84,7 @@ Necessary for Installing on Device and Submitting to Market Place:
 In order to test your application on a device, the device must be registered. Click [here][register-url] to read documentation on deploying and testing on your Windows Phone.
 
 - Make sure your phone is connected, and the screen is unlocked
-- In Visual Studio, select 'Windows Phone Device' from the top drop-down menu.
+- In Visual Studio, select 'Windows Phone <a href="../../../cordova/device/device.html">Device</a>' from the top drop-down menu.
 - Hit the green **play button** beside the drop-down menu to start debugging or press F5.
 
     ![](img/guide/platforms/wp7/wpd.png)

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.7.0/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.7.0/index.md b/www/docs/en/1.7.0/index.md
index 1924993..4204baf 100644
--- a/www/docs/en/1.7.0/index.md
+++ b/www/docs/en/1.7.0/index.md
@@ -22,62 +22,62 @@ license: >
     <h1>API Reference</h1>
     <ul>
         <li>
-            <h2>Accelerometer</h2>
+            <h2><a href="cordova/accelerometer/accelerometer.html">Accelerometer</a></h2>
             <span>Tap into the device's motion sensor.</span>
         </li>
         <li>
-            <h2>Camera</h2>
-            <span>Capture a photo using the device's camera.</span>
+            <h2><a href="cordova/camera/camera.html">Camera</a></h2>
+            <span><a href="cordova/media/capture/capture.html">Capture</a> a photo using the device's camera.</span>
         </li>
         <li>
-            <h2>Capture</h2>
-            <span>Capture media files using device's media capture applications.</span>
+            <h2><a href="cordova/media/capture/capture.html">Capture</a></h2>
+            <span><a href="cordova/media/capture/capture.html">Capture</a> media files using device's media capture applications.</span>
         </li>
         <li>
-            <h2>Compass</h2>
+            <h2><a href="cordova/compass/compass.html">Compass</a></h2>
             <span>Obtain the direction that the device is pointing.</span>
         </li>
         <li>
-            <h2>Connection</h2>
+            <h2><a href="cordova/connection/connection.html">Connection</a></h2>
             <span>Quickly check the network state, and cellular network information.</span>
         </li>
         <li>
-            <h2>Contacts</h2>
+            <h2><a href="cordova/contacts/Contact/contact.html">Contact</a>s</h2>
             <span>Work with the devices contact database.</span>
         </li>
         <li>
-            <h2>Device</h2>
+            <h2><a href="cordova/device/device.html">Device</a></h2>
             <span>Gather device specific information.</span>
         </li>
         <li>
-            <h2>Events</h2>
+            <h2><a href="cordova/events/events.html">Events</a></h2>
             <span>Hook into native events through JavaScript.</span>
         </li>
         <li>
-            <h2>File</h2>
+            <h2><a href="cordova/file/fileobj/fileobj.html">File</a></h2>
             <span>Hook into native file system through JavaScript.</span>
         </li>
         <li>
-            <h2>Geolocation</h2>
+            <h2><a href="cordova/geolocation/geolocation.html">Geolocation</a></h2>
             <span>Make your application location aware.</span>
         </li>
         <li>
-            <h2>Media</h2>
+            <h2><a href="cordova/media/media.html">Media</a></h2>
             <span>Record and play back audio files.</span>
         </li>
         <li>
-            <h2>Notification</h2>
+            <h2><a href="cordova/notification/notification.html">Notification</a></h2>
             <span>Visual, audible, and tactile device notifications.</span>
         </li>
         <li>
-            <h2>Storage</h2>
+            <h2><a href="cordova/storage/storage.html">Storage</a></h2>
             <span>Hook into the devices native storage options.</span>
         </li>
     </ul>
     <h1>Guides</h1>
     <ul>
         <li>
-            <h2>Getting Started Guides</h2>
+            <h2><a href="guide/getting-started/index.html">Getting Started Guides</a></h2>
             <span>Setup each SDK and create your first Cordova app.</span>
         </li>
         <li>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.0/cordova/accelerometer/acceleration/acceleration.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.0/cordova/accelerometer/acceleration/acceleration.md b/www/docs/en/1.8.0/cordova/accelerometer/acceleration/acceleration.md
index 64fda48..8cc33f7 100644
--- a/www/docs/en/1.8.0/cordova/accelerometer/acceleration/acceleration.md
+++ b/www/docs/en/1.8.0/cordova/accelerometer/acceleration/acceleration.md
@@ -21,7 +21,7 @@ license: >
 Acceleration
 ============
 
-Contains `Accelerometer` data captured at a specific point in time.
+Contains `<a href="../accelerometer.html">Accelerometer</a>` data captured at a specific point in time.
 
 Properties
 ----------
@@ -34,7 +34,7 @@ Properties
 Description
 -----------
 
-This object is created and populated by Cordova, and returned by an `Accelerometer` method. The x, y, z acceleration values include the effect of gravity (9.81 m/s^2), so at when a device is lying flat on a table facing up, the value returned should be x=0, y=0, z=9.81.
+This object is created and populated by Cordova, and returned by an `<a href="../accelerometer.html">Accelerometer</a>` method. The x, y, z acceleration values include the effect of gravity (9.81 m/s^2), so at when a device is lying flat on a table facing up, the value returned should be x=0, y=0, z=9.81.
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - Bada 1.2 & 2.x
 - webOS
 
-Quick Example
+Quick <a href="../../storage/storage.opendatabase.html">Example</a>
 -------------
 
     function onSuccess(acceleration) {
@@ -60,27 +60,27 @@ Quick Example
         alert('onError!');
     };
 
-    navigator.accelerometer.getCurrentAcceleration(onSuccess, onError);
+    navigator.<a href="../accelerometer.getCurrentAcceleration.html">accelerometer.getCurrentAcceleration</a>(onSuccess, onError);
 
-Full Example
+Full <a href="../../storage/storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Acceleration Example</title>
+        <title>Acceleration <a href="../../storage/storage.opendatabase.html">Example</a></title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.8.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for Cordova to load
         //
-        document.addEventListener("deviceready", onDeviceReady, false);
+        document.addEventListener("<a href="../../events/events.deviceready.html">deviceready</a>", on<a href="../../device/device.html">Device</a>Ready, false);
 
         // Cordova is ready
         //
-        function onDeviceReady() {
-            navigator.accelerometer.getCurrentAcceleration(onSuccess, onError);
+        function on<a href="../../device/device.html">Device</a>Ready() {
+            navigator.<a href="../accelerometer.getCurrentAcceleration.html">accelerometer.getCurrentAcceleration</a>(onSuccess, onError);
         }
 
         // onSuccess: Get a snapshot of the current acceleration
@@ -101,7 +101,7 @@ Full Example
         </script>
       </head>
       <body>
-        <h1>Example</h1>
+        <h1><a href="../../storage/storage.opendatabase.html">Example</a></h1>
         <p>getCurrentAcceleration</p>
       </body>
     </html>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org