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:04 UTC

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

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/capture/captureAudio.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/capture/captureAudio.md b/www/docs/en/1.8.1/cordova/media/capture/captureAudio.md
index 9ca3302..7136e7c 100644
--- a/www/docs/en/1.8.1/cordova/media/capture/captureAudio.md
+++ b/www/docs/en/1.8.1/cordova/media/capture/captureAudio.md
@@ -24,7 +24,7 @@ capture.captureAudio
 > Start the audio recorder application and return information about captured audio clip file(s).
 
     navigator.device.capture.captureAudio( 
-	    CaptureCB captureSuccess, CaptureErrorCB captureError,  [CaptureAudioOptions options]
+	    <a href="<a href="capture.html">Capture</a>CB.html"><a href="capture.html">Capture</a>CB</a> captureSuccess, <a href="capture.html">Capture</a>ErrorCB captureError,  [<a href="capture.html">Capture</a>AudioOptions options]
 	);
 
 Description
@@ -32,9 +32,9 @@ Description
 
 This method starts an asynchronous operation to capture audio recordings using the device's default audio recording application.  The operation allows the device user to capture multiple recordings in a single session.
 
-The capture operation ends when either the user exits the audio recording application, or the maximum number of recordings, specified by the __limit__ parameter in CaptureAudioOptions, has been reached.  If no value is provided for the __limit__ parameter, a default value of one (1) is used, and the capture operation will terminate after the user records a single audio clip.
+The capture operation ends when either the user exits the audio recording application, or the maximum number of recordings, specified by the __limit__ parameter in <a href="capture.html">Capture</a>AudioOptions, has been reached.  If no value is provided for the __limit__ parameter, a default value of one (1) is used, and the capture operation will terminate after the user records a single audio clip.
 
-When the capture operation is finished, it will invoke the CaptureCB callback with an array of MediaFile objects describing each captured audio clip file.  If the operation is terminated by the user before an audio clip is captured, the CaptureErrorCB callback will be invoked with a CaptureError object with the CaptureError.`CAPTURE_NO_MEDIA_FILES` error code.
+When the capture operation is finished, it will invoke the <a href="<a href="capture.html">Capture</a>CB.html"><a href="capture.html">Capture</a>CB</a> callback with an array of <a href="<a href="../media.html">Media</a><a href="../../file/fileobj/fileobj.html">File</a>.html"><a href="../media.html">Media</a><a href="../../file/fileobj/fileobj.html">File</a></a> objects describing each captured audio clip file.  If the operation is terminated by the user before an audio clip is captured, the <a href="capture.html">Capture</a>ErrorCB callback will be invoked with a <a href="capture.html">Capture</a>Error object with the <a href="capture.html">Capture</a>Error.`CAPTURE_NO_MEDIA_FILES` error code.
 
 Supported Platforms
 -------------------
@@ -44,33 +44,33 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick <a href="../../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // capture callback
-    var captureSuccess = function(mediaFiles) {
+    var captureSuccess = function(media<a href="../../file/fileobj/fileobj.html">File</a>s) {
         var i, path, len;
-        for (i = 0, len = mediaFiles.length; i < len; i += 1) {
-            path = mediaFiles[i].fullPath;
+        for (i = 0, len = media<a href="../../file/fileobj/fileobj.html">File</a>s.length; i < len; i += 1) {
+            path = media<a href="../../file/fileobj/fileobj.html">File</a>s[i].fullPath;
             // do something interesting with the file
         }
     };
 
     // capture error callback
     var captureError = function(error) {
-        navigator.notification.alert('Error code: ' + error.code, null, 'Capture Error');
+        navigator.<a href="../../notification/notification.alert.html">notification.alert</a>('Error code: ' + error.code, null, '<a href="capture.html">Capture</a> Error');
     };
 
     // start audio capture
     navigator.device.capture.captureAudio(captureSuccess, captureError, {limit:2});
 
-Full Example
+Full <a href="../../storage/storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Capture Audio</title>
+        <title><a href="capture.html">Capture</a> Audio</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.8.1.js"></script>
         <script type="text/javascript" charset="utf-8" src="json2.js"></script>
@@ -78,10 +78,10 @@ Full Example
 
         // Called when capture operation is finished
         //
-        function captureSuccess(mediaFiles) {
+        function captureSuccess(media<a href="../../file/fileobj/fileobj.html">File</a>s) {
             var i, len;
-            for (i = 0, len = mediaFiles.length; i < len; i += 1) {
-                uploadFile(mediaFiles[i]);
+            for (i = 0, len = media<a href="../../file/fileobj/fileobj.html">File</a>s.length; i < len; i += 1) {
+                upload<a href="../../file/fileobj/fileobj.html">File</a>(media<a href="../../file/fileobj/fileobj.html">File</a>s[i]);
             }	    
         }
 
@@ -89,7 +89,7 @@ Full Example
         // 
         function captureError(error) {
 	        var msg = 'An error occurred during capture: ' + error.code;
-            navigator.notification.alert(msg, null, 'Uh oh!');
+            navigator.<a href="../../notification/notification.alert.html">notification.alert</a>(msg, null, 'Uh oh!');
         }
 
         // A button will call this function
@@ -101,10 +101,10 @@ Full Example
         }
 
         // Upload files to server
-        function uploadFile(mediaFile) {
-            var ft = new FileTransfer(),
-                path = mediaFile.fullPath,
-                name = mediaFile.name;
+        function upload<a href="../../file/fileobj/fileobj.html">File</a>(media<a href="../../file/fileobj/fileobj.html">File</a>) {
+            var ft = new <a href="../../file/filetransfer/filetransfer.html"><a href="../../file/fileobj/fileobj.html">File</a>Transfer</a>(),
+                path = media<a href="../../file/fileobj/fileobj.html">File</a>.fullPath,
+                name = media<a href="../../file/fileobj/fileobj.html">File</a>.name;
 
             ft.upload(path,
                 "http://my.domain.com/upload.php",
@@ -121,14 +121,14 @@ Full Example
         </script>
         </head>
         <body>
-            <button onclick="captureAudio();">Capture Audio</button> <br>
+            <button onclick="captureAudio();"><a href="capture.html">Capture</a> Audio</button> <br>
         </body>
     </html>
 
 BlackBerry WebWorks Quirks
 --------------------------
 
-- Cordova for BlackBerry WebWorks attempts to launch the __Voice Notes Recorder__ application, provided by RIM, to capture the audio recordings.  The developer will receive a CaptureError.`CAPTURE_NOT_SUPPORTED` error code if the application is not installed on the device.
+- Cordova for BlackBerry WebWorks attempts to launch the __Voice Notes Recorder__ application, provided by RIM, to capture the audio recordings.  The developer will receive a <a href="capture.html">Capture</a>Error.`CAPTURE_NOT_SUPPORTED` error code if the application is not installed on the device.
 
 iOS Quirks
 ----------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/capture/captureAudioOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/capture/captureAudioOptions.md b/www/docs/en/1.8.1/cordova/media/capture/captureAudioOptions.md
index ff303f5..08a05cd 100644
--- a/www/docs/en/1.8.1/cordova/media/capture/captureAudioOptions.md
+++ b/www/docs/en/1.8.1/cordova/media/capture/captureAudioOptions.md
@@ -18,7 +18,7 @@ license: >
     under the License.
 ---
 
-CaptureAudioOptions
+<a href="capture.html">Capture</a>AudioOptions
 ===================
 
 > Encapsulates audio capture configuration options.
@@ -30,13 +30,13 @@ Properties
 - __duration:__ The maximum duration of an audio sound clip, in seconds.
 - __mode:__ The selected audio mode.  The value must match one of the elements in `capture.supportedAudioModes`.
 
-Quick Example
+Quick <a href="../../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // limit capture operation to 3 media files, no longer than 10 seconds each
     var options = { limit: 3, duration: 10 };
 
-    navigator.device.capture.captureAudio(captureSuccess, captureError, options);
+    navigator.device.<a href="captureAudio.html">capture.captureAudio</a>(captureSuccess, captureError, options);
 
 Android Quirks
 --------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/capture/captureImage.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/capture/captureImage.md b/www/docs/en/1.8.1/cordova/media/capture/captureImage.md
index 17f1e08..e7c3df6 100644
--- a/www/docs/en/1.8.1/cordova/media/capture/captureImage.md
+++ b/www/docs/en/1.8.1/cordova/media/capture/captureImage.md
@@ -24,7 +24,7 @@ capture.captureImage
 > Start the camera application and return information about captured image file(s).
 
     navigator.device.capture.captureImage( 
-	    CaptureCB captureSuccess, CaptureErrorCB captureError, [CaptureImageOptions options]
+	    <a href="<a href="capture.html">Capture</a>CB.html"><a href="capture.html">Capture</a>CB</a> captureSuccess, <a href="capture.html">Capture</a>ErrorCB captureError, [<a href="capture.html">Capture</a>ImageOptions options]
 	);
 
 Description
@@ -32,9 +32,9 @@ Description
 
 This method starts an asynchronous operation to capture images using the device camera application.  The operation allows the device user to capture multiple images in a single session.
 
-The capture operation ends when either the user exits the camera application, or the maximum number of images, specified by the __limit__ parameter in CaptureImageOptions, has been reached.  If no value is provided for the __limit__ parameter, a default value of one (1) is used, and the capture operation will terminate after the user captures a single image.
+The capture operation ends when either the user exits the camera application, or the maximum number of images, specified by the __limit__ parameter in <a href="capture.html">Capture</a>ImageOptions, has been reached.  If no value is provided for the __limit__ parameter, a default value of one (1) is used, and the capture operation will terminate after the user captures a single image.
 
-When the capture operation is finished, it will invoke the CaptureCB callback with an array of MediaFile objects describing each captured image file.  If the operation is terminated by the user before an image is captured, the CaptureErrorCB callback will be invoked with a CaptureError object with the CaptureError.`CAPTURE_NO_MEDIA_FILES` error code.
+When the capture operation is finished, it will invoke the <a href="<a href="capture.html">Capture</a>CB.html"><a href="capture.html">Capture</a>CB</a> callback with an array of <a href="<a href="../media.html">Media</a><a href="../../file/fileobj/fileobj.html">File</a>.html"><a href="../media.html">Media</a><a href="../../file/fileobj/fileobj.html">File</a></a> objects describing each captured image file.  If the operation is terminated by the user before an image is captured, the <a href="capture.html">Capture</a>ErrorCB callback will be invoked with a <a href="capture.html">Capture</a>Error object with the <a href="capture.html">Capture</a>Error.`CAPTURE_NO_MEDIA_FILES` error code.
 
 Supported Platforms
 -------------------
@@ -50,33 +50,33 @@ Windows Phone 7 Quirks
 Invoking the native camera application while your device is connected
 via Zune will not work, and the error callback will be triggered.
 
-Quick Example
+Quick <a href="../../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // capture callback
-    var captureSuccess = function(mediaFiles) {
+    var captureSuccess = function(media<a href="../../file/fileobj/fileobj.html">File</a>s) {
         var i, path, len;
-        for (i = 0, len = mediaFiles.length; i < len; i += 1) {
-            path = mediaFiles[i].fullPath;
+        for (i = 0, len = media<a href="../../file/fileobj/fileobj.html">File</a>s.length; i < len; i += 1) {
+            path = media<a href="../../file/fileobj/fileobj.html">File</a>s[i].fullPath;
             // do something interesting with the file
         }
     };
 
     // capture error callback
     var captureError = function(error) {
-        navigator.notification.alert('Error code: ' + error.code, null, 'Capture Error');
+        navigator.<a href="../../notification/notification.alert.html">notification.alert</a>('Error code: ' + error.code, null, '<a href="capture.html">Capture</a> Error');
     };
 
     // start image capture
     navigator.device.capture.captureImage(captureSuccess, captureError, {limit:2});
 
-Full Example
+Full <a href="../../storage/storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Capture Image</title>
+        <title><a href="capture.html">Capture</a> Image</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.8.1.js"></script>
         <script type="text/javascript" charset="utf-8" src="json2.js"></script>
@@ -84,10 +84,10 @@ Full Example
 
         // Called when capture operation is finished
         //
-        function captureSuccess(mediaFiles) {
+        function captureSuccess(media<a href="../../file/fileobj/fileobj.html">File</a>s) {
             var i, len;
-            for (i = 0, len = mediaFiles.length; i < len; i += 1) {
-                uploadFile(mediaFiles[i]);
+            for (i = 0, len = media<a href="../../file/fileobj/fileobj.html">File</a>s.length; i < len; i += 1) {
+                upload<a href="../../file/fileobj/fileobj.html">File</a>(media<a href="../../file/fileobj/fileobj.html">File</a>s[i]);
             }	    
         }
 
@@ -95,7 +95,7 @@ Full Example
         // 
         function captureError(error) {
 	        var msg = 'An error occurred during capture: ' + error.code;
-            navigator.notification.alert(msg, null, 'Uh oh!');
+            navigator.<a href="../../notification/notification.alert.html">notification.alert</a>(msg, null, 'Uh oh!');
         }
 
         // A button will call this function
@@ -107,10 +107,10 @@ Full Example
         }
 
         // Upload files to server
-        function uploadFile(mediaFile) {
-            var ft = new FileTransfer(),
-                path = mediaFile.fullPath,
-                name = mediaFile.name;
+        function upload<a href="../../file/fileobj/fileobj.html">File</a>(media<a href="../../file/fileobj/fileobj.html">File</a>) {
+            var ft = new <a href="../../file/filetransfer/filetransfer.html"><a href="../../file/fileobj/fileobj.html">File</a>Transfer</a>(),
+                path = media<a href="../../file/fileobj/fileobj.html">File</a>.fullPath,
+                name = media<a href="../../file/fileobj/fileobj.html">File</a>.name;
 
             ft.upload(path,
                 "http://my.domain.com/upload.php",
@@ -127,7 +127,7 @@ Full Example
         </script>
         </head>
         <body>
-            <button onclick="captureImage();">Capture Image</button> <br>
+            <button onclick="captureImage();"><a href="capture.html">Capture</a> Image</button> <br>
         </body>
     </html>
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/capture/captureImageOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/capture/captureImageOptions.md b/www/docs/en/1.8.1/cordova/media/capture/captureImageOptions.md
index b9f0333..a0891fe 100644
--- a/www/docs/en/1.8.1/cordova/media/capture/captureImageOptions.md
+++ b/www/docs/en/1.8.1/cordova/media/capture/captureImageOptions.md
@@ -18,7 +18,7 @@ license: >
     under the License.
 ---
 
-CaptureImageOptions
+<a href="capture.html">Capture</a>ImageOptions
 ===================
 
 > Encapsulates image capture configuration options.
@@ -29,13 +29,13 @@ Properties
 - __limit:__ The maximum number of images the device user can capture in a single capture operation.  The value must be greater than or equal to 1 (defaults to 1).
 - __mode:__ The selected image mode.  The value must match one of the elements in `capture.supportedImageModes`.
 
-Quick Example
+Quick <a href="../../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // limit capture operation to 3 images
     var options = { limit: 3 };
 
-    navigator.device.capture.captureImage(captureSuccess, captureError, options);
+    navigator.device.<a href="captureImage.html">capture.captureImage</a>(captureSuccess, captureError, options);
 
 Android Quirks
 --------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/capture/captureVideo.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/capture/captureVideo.md b/www/docs/en/1.8.1/cordova/media/capture/captureVideo.md
index 6145d8a..1ed4054 100644
--- a/www/docs/en/1.8.1/cordova/media/capture/captureVideo.md
+++ b/www/docs/en/1.8.1/cordova/media/capture/captureVideo.md
@@ -24,7 +24,7 @@ capture.captureVideo
 > Start the video recorder application and return information about captured video clip file(s).
 
     navigator.device.capture.captureVideo( 
-	    CaptureCB captureSuccess, CaptureErrorCB captureError, [CaptureVideoOptions options]
+	    <a href="<a href="capture.html">Capture</a>CB.html"><a href="capture.html">Capture</a>CB</a> captureSuccess, <a href="capture.html">Capture</a>ErrorCB captureError, [<a href="capture.html">Capture</a>VideoOptions options]
 	);
 
 Description
@@ -32,9 +32,9 @@ Description
 
 This method starts an asynchronous operation to capture video recordings using the device video recording application.  The operation allows the device user to capture multiple recordings in a single session.
 
-The capture operation ends when either the user exits the video recording application, or the maximum number of recordings, specified by the __limit__ parameter in CaptureVideoOptions, has been reached.  If no value is provided for the __limit__ parameter, a default value of one (1) is used, and the capture operation will terminate after the user records a single video clip.
+The capture operation ends when either the user exits the video recording application, or the maximum number of recordings, specified by the __limit__ parameter in <a href="capture.html">Capture</a>VideoOptions, has been reached.  If no value is provided for the __limit__ parameter, a default value of one (1) is used, and the capture operation will terminate after the user records a single video clip.
 
-When the capture operation is finished, it will invoke the CaptureCB callback with an array of MediaFile objects describing each captured video clip file.  If the operation is terminated by the user before an video clip is captured, the CaptureErrorCB callback will be invoked with a CaptureError object with the CaptureError.`CAPTURE_NO_MEDIA_FILES` error code.
+When the capture operation is finished, it will invoke the <a href="<a href="capture.html">Capture</a>CB.html"><a href="capture.html">Capture</a>CB</a> callback with an array of <a href="<a href="../media.html">Media</a><a href="../../file/fileobj/fileobj.html">File</a>.html"><a href="../media.html">Media</a><a href="../../file/fileobj/fileobj.html">File</a></a> objects describing each captured video clip file.  If the operation is terminated by the user before an video clip is captured, the <a href="capture.html">Capture</a>ErrorCB callback will be invoked with a <a href="capture.html">Capture</a>Error object with the <a href="capture.html">Capture</a>Error.`CAPTURE_NO_MEDIA_FILES` error code.
 
 Supported Platforms
 -------------------
@@ -44,33 +44,33 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick <a href="../../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // capture callback
-    var captureSuccess = function(mediaFiles) {
+    var captureSuccess = function(media<a href="../../file/fileobj/fileobj.html">File</a>s) {
         var i, path, len;
-        for (i = 0, len = mediaFiles.length; i < len; i += 1) {
-            path = mediaFiles[i].fullPath;
+        for (i = 0, len = media<a href="../../file/fileobj/fileobj.html">File</a>s.length; i < len; i += 1) {
+            path = media<a href="../../file/fileobj/fileobj.html">File</a>s[i].fullPath;
             // do something interesting with the file
         }
     };
 
     // capture error callback
     var captureError = function(error) {
-        navigator.notification.alert('Error code: ' + error.code, null, 'Capture Error');
+        navigator.<a href="../../notification/notification.alert.html">notification.alert</a>('Error code: ' + error.code, null, '<a href="capture.html">Capture</a> Error');
     };
 
     // start video capture
     navigator.device.capture.captureVideo(captureSuccess, captureError, {limit:2});
 
-Full Example
+Full <a href="../../storage/storage.opendatabase.html">Example</a>
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>Capture Video</title>
+        <title><a href="capture.html">Capture</a> Video</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.8.1.js"></script>
         <script type="text/javascript" charset="utf-8" src="json2.js"></script>
@@ -78,10 +78,10 @@ Full Example
 
         // Called when capture operation is finished
         //
-        function captureSuccess(mediaFiles) {
+        function captureSuccess(media<a href="../../file/fileobj/fileobj.html">File</a>s) {
             var i, len;
-            for (i = 0, len = mediaFiles.length; i < len; i += 1) {
-                uploadFile(mediaFiles[i]);
+            for (i = 0, len = media<a href="../../file/fileobj/fileobj.html">File</a>s.length; i < len; i += 1) {
+                upload<a href="../../file/fileobj/fileobj.html">File</a>(media<a href="../../file/fileobj/fileobj.html">File</a>s[i]);
             }	    
         }
 
@@ -89,7 +89,7 @@ Full Example
         // 
         function captureError(error) {
 	        var msg = 'An error occurred during capture: ' + error.code;
-            navigator.notification.alert(msg, null, 'Uh oh!');
+            navigator.<a href="../../notification/notification.alert.html">notification.alert</a>(msg, null, 'Uh oh!');
         }
 
         // A button will call this function
@@ -101,10 +101,10 @@ Full Example
         }
 
         // Upload files to server
-        function uploadFile(mediaFile) {
-            var ft = new FileTransfer(),
-                path = mediaFile.fullPath,
-                name = mediaFile.name;
+        function upload<a href="../../file/fileobj/fileobj.html">File</a>(media<a href="../../file/fileobj/fileobj.html">File</a>) {
+            var ft = new <a href="../../file/filetransfer/filetransfer.html"><a href="../../file/fileobj/fileobj.html">File</a>Transfer</a>(),
+                path = media<a href="../../file/fileobj/fileobj.html">File</a>.fullPath,
+                name = media<a href="../../file/fileobj/fileobj.html">File</a>.name;
 
             ft.upload(path,
                 "http://my.domain.com/upload.php",
@@ -121,11 +121,11 @@ Full Example
         </script>
         </head>
         <body>
-            <button onclick="captureVideo();">Capture Video</button> <br>
+            <button onclick="captureVideo();"><a href="capture.html">Capture</a> Video</button> <br>
         </body>
     </html>
 
 BlackBerry WebWorks Quirks
 --------------------------
 
-- Cordova for BlackBerry WebWorks attempts to launch the __Video Recorder__ application, provided by RIM, to capture the video recordings.  The developer will receive a CaptureError.`CAPTURE_NOT_SUPPORTED` error code if the application is not installed on the device.
+- Cordova for BlackBerry WebWorks attempts to launch the __Video Recorder__ application, provided by RIM, to capture the video recordings.  The developer will receive a <a href="capture.html">Capture</a>Error.`CAPTURE_NOT_SUPPORTED` error code if the application is not installed on the device.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/capture/captureVideoOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/capture/captureVideoOptions.md b/www/docs/en/1.8.1/cordova/media/capture/captureVideoOptions.md
index 29667ad..7b31d89 100644
--- a/www/docs/en/1.8.1/cordova/media/capture/captureVideoOptions.md
+++ b/www/docs/en/1.8.1/cordova/media/capture/captureVideoOptions.md
@@ -18,7 +18,7 @@ license: >
     under the License.
 ---
 
-CaptureVideoOptions
+<a href="capture.html">Capture</a>VideoOptions
 ===================
 
 > Encapsulates video capture configuration options.
@@ -30,13 +30,13 @@ Properties
 - __duration:__ The maximum duration of a video clip, in seconds.
 - __mode:__ The selected video capture mode.  The value must match one of the elements in `capture.supportedVideoModes`.
 
-Quick Example
+Quick <a href="../../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // limit capture operation to 3 video clips
     var options = { limit: 3 };
 
-    navigator.device.capture.captureVideo(captureSuccess, captureError, options);
+    navigator.device.<a href="captureVideo.html">capture.captureVideo</a>(captureSuccess, captureError, options);
 
 Android Quirks
 --------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/media.getCurrentPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.getCurrentPosition.md b/www/docs/en/1.8.1/cordova/media/media.getCurrentPosition.md
index 31dfd29..635614e 100644
--- a/www/docs/en/1.8.1/cordova/media/media.getCurrentPosition.md
+++ b/www/docs/en/1.8.1/cordova/media/media.getCurrentPosition.md
@@ -18,23 +18,23 @@ license: >
     under the License.
 ---
 
-media.getCurrentPosition
+media.getCurrent<a href="../geolocation/Position/position.html">Position</a>
 ========================
 
 Returns the current position within an audio file.
 
-    media.getCurrentPosition(mediaSuccess, [mediaError]);
+    media.getCurrent<a href="../geolocation/Position/position.html">Position</a>(mediaSuccess, [<a href="Parameters/mediaError.html">mediaError</a>]);
 
 Parameters
 ----------
 
 - __mediaSuccess__: The callback that is called with the current position in seconds.
-- __mediaError__: (Optional) The callback that is called if there was an error.
+- __<a href="Parameters/mediaError.html">mediaError</a>__: (Optional) The callback that is called if there was an error.
 
 Description
 -----------
 
-Function `media.getCurrentPosition` is an asynchronous function that returns the current position of the underlying audio file of a Media object. Also updates the ___position__ parameter within the Media object. 
+Function `media.getCurrent<a href="../geolocation/Position/position.html">Position</a>` is an asynchronous function that returns 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
 -------------------
@@ -44,17 +44,17 @@ 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);
 
         // Update media position every second
         var 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) {
@@ -69,25 +69,25 @@ Quick Example
         }, 1000);
 
 
-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.8.1.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");
             }
         
@@ -99,27 +99,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);
@@ -128,9 +128,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>();
                 }
             }
         
@@ -138,7 +138,7 @@ Full Example
             // 
             function stopAudio() {
                 if (my_media) {
-                    my_media.stop();
+                    my_<a href="media.stop.html">media.stop</a>();
                 }
                 clearInterval(mediaTimer);
                 mediaTimer = null;
@@ -159,7 +159,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;
             }
         
@@ -167,7 +167,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.8.1/cordova/media/media.getDuration.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.getDuration.md b/www/docs/en/1.8.1/cordova/media/media.getDuration.md
index 1908e6b..98d2235 100644
--- a/www/docs/en/1.8.1/cordova/media/media.getDuration.md
+++ b/www/docs/en/1.8.1/cordova/media/media.getDuration.md
@@ -39,12 +39,12 @@ 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);
 
         // Get duration
         var counter = 0;
@@ -61,25 +61,25 @@ Quick Example
        }, 100);
 
 
-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.8.1.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,27 +91,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);
@@ -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>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/media.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.md b/www/docs/en/1.8.1/cordova/media/media.md
index 76f0b71..45ed8ba 100644
--- a/www/docs/en/1.8.1/cordova/media/media.md
+++ b/www/docs/en/1.8.1/cordova/media/media.md
@@ -23,7 +23,7 @@ Media
 
 > The `Media` object provides the ability to record and play back audio files on a device.
 
-    var media = new Media(src, mediaSuccess, [mediaError], [mediaStatus]);
+    var media = new Media(src, mediaSuccess, [<a href="Parameters/mediaError.html">mediaError</a>], [mediaStatus]);
 
 
 Note: The current implementation does not adhere to a W3C specification for media capture, and is provided for convenience only.  A future implementation will adhere to the latest W3C specification and may deprecate the current APIs.
@@ -33,27 +33,27 @@ Parameters
 
 - __src__: A URI containing the audio content. _(DOMString)_
 - __mediaSuccess__: (Optional) The callback that is invoked after a Media object has completed the current play/record or stop action. _(Function)_
-- __mediaError__: (Optional) The callback that is invoked if there was an error. _(Function)_
+- __<a href="Parameters/mediaError.html">mediaError</a>__: (Optional) The callback that is invoked if there was an error. _(Function)_
 - __mediaStatus__: (Optional) The callback that is invoked to indicate status changes. _(Function)_
 
 Methods
 -------
 
-- media.getCurrentPosition: Returns the current position within an audio file.
-- media.getDuration: Returns the duration of an audio file.
-- media.play: Start or resume playing audio file.
-- media.pause: Pause playing audio file.
-- media.release: Releases the underlying OS'es audio resources.
-- media.seekTo: Moves the position within the audio file.
-- media.startRecord: Start recording audio file.
-- media.stopRecord: Stop recording audio file.
-- media.stop: Stop playing audio file.
+- media.getCurrent<a href="../geolocation/Position/position.html">Position</a>: Returns the current position within an audio file.
+- <a href="media.getDuration.html">media.getDuration</a>: Returns the duration of an audio file.
+- <a href="media.play.html">media.play</a>: Start or <a href="../events/events.resume.html">resume</a> playing audio file.
+- media.<a href="../events/events.pause.html">pause</a>: Pause playing audio file.
+- <a href="media.release.html">media.release</a>: Releases the underlying OS'es audio resources.
+- <a href="media.seekTo.html">media.seekTo</a>: Moves the position within the audio file.
+- <a href="media.startRecord.html">media.startRecord</a>: Start recording audio file.
+- <a href="media.stop.html">media.stop</a>Record: Stop recording audio file.
+- <a href="media.stop.html">media.stop</a>: Stop playing audio file.
 
 Additional ReadOnly Parameters
 ---------------------
 
 - __position__: The position within the audio playback in seconds.
-    - Not automatically updated during play, call `getCurrentPosition` to update.
+    - Not automatically updated during play, call `getCurrent<a href="../geolocation/Position/position.html">Position</a>` to update.
 - __duration__: The duration of the media in seconds.
 
 Supported Platforms
@@ -91,11 +91,11 @@ Permissions
 
 #### www/plugins.xml
 
-    <plugin name="Capture" value="org.apache.cordova.media.MediaCapture" />
+    <plugin name="<a href="capture/capture.html">Capture</a>" value="org.apache.cordova.media.Media<a href="capture/capture.html">Capture</a>" />
 
 ### iOS
 
-#### App/Supporting Files/Cordova.plist
+#### App/Supporting <a href="../file/fileobj/fileobj.html">File</a>s/Cordova.plist
 
     <key>Plugins</key>
     <dict>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/media.pause.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.pause.md b/www/docs/en/1.8.1/cordova/media/media.pause.md
index 74c2a16..78768c3 100644
--- a/www/docs/en/1.8.1/cordova/media/media.pause.md
+++ b/www/docs/en/1.8.1/cordova/media/media.pause.md
@@ -18,18 +18,18 @@ license: >
     under the License.
 ---
 
-media.pause
+media.<a href="../events/events.pause.html">pause</a>
 ===========
 
 Pauses playing an audio file.
 
-    media.pause();
+    media.<a href="../events/events.pause.html">pause</a>();
 
 
 Description
 -----------
 
-Function `media.pause` is a synchronous function that pauses playing an audio file.
+Function `media.<a href="../events/events.pause.html">pause</a>` is a synchronous function that <a href="../events/events.pause.html">pause</a>s playing an audio file.
 
 Supported Platforms
 -------------------
@@ -39,14 +39,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");
@@ -57,34 +57,34 @@ Quick Example
         });
 
         // Play audio
-        my_media.play();
+        my_<a href="media.play.html">media.play</a>();
 
         // Pause after 10 seconds
         setTimeout(function() {
-            media.pause();
+            media.<a href="../events/events.pause.html">pause</a>();
         }, 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.8.1.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");
             }
         
@@ -96,27 +96,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);
@@ -125,9 +125,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>();
                 }
             }
         
@@ -135,7 +135,7 @@ Full Example
             // 
             function stopAudio() {
                 if (my_media) {
-                    my_media.stop();
+                    my_<a href="media.stop.html">media.stop</a>();
                 }
                 clearInterval(mediaTimer);
                 mediaTimer = null;
@@ -156,7 +156,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;
             }
         
@@ -164,7 +164,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.8.1/cordova/media/media.play.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.play.md b/www/docs/en/1.8.1/cordova/media/media.play.md
index 029cd2d..512d4af 100644
--- a/www/docs/en/1.8.1/cordova/media/media.play.md
+++ b/www/docs/en/1.8.1/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
 -------------------
@@ -39,14 +39,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");
@@ -61,25 +61,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.8.1.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");
             }
         
@@ -92,8 +92,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();
@@ -102,17 +102,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);
@@ -121,9 +121,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>();
                 }
             }
         
@@ -131,7 +131,7 @@ Full Example
             // 
             function stopAudio() {
                 if (my_media) {
-                    my_media.stop();
+                    my_<a href="media.stop.html">media.stop</a>();
                 }
                 clearInterval(mediaTimer);
                 mediaTimer = null;
@@ -152,7 +152,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;
             }
         
@@ -160,7 +160,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>
@@ -178,5 +178,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.8.1/cordova/media/media.release.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.release.md b/www/docs/en/1.8.1/cordova/media/media.release.md
index bc4844b..dfa0479 100644
--- a/www/docs/en/1.8.1/cordova/media/media.release.md
+++ b/www/docs/en/1.8.1/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
 -------------------
@@ -39,36 +39,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.8.1.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");
             }
         
@@ -80,27 +80,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);
@@ -109,9 +109,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>();
                 }
             }
         
@@ -119,7 +119,7 @@ Full Example
             // 
             function stopAudio() {
                 if (my_media) {
-                    my_media.stop();
+                    my_<a href="media.stop.html">media.stop</a>();
                 }
                 clearInterval(mediaTimer);
                 mediaTimer = null;
@@ -140,7 +140,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;
             }
         
@@ -148,7 +148,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.8.1/cordova/media/media.seekTo.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.seekTo.md b/www/docs/en/1.8.1/cordova/media/media.seekTo.md
index 6dfd5bb..b3bef06 100644
--- a/www/docs/en/1.8.1/cordova/media/media.seekTo.md
+++ b/www/docs/en/1.8.1/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
 -------------------
@@ -44,38 +44,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.8.1.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");
             }
         
@@ -87,19 +87,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
@@ -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;
             }
         

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/media/media.startRecord.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.startRecord.md b/www/docs/en/1.8.1/cordova/media/media.startRecord.md
index f34b5e5..daf4789 100644
--- a/www/docs/en/1.8.1/cordova/media/media.startRecord.md
+++ b/www/docs/en/1.8.1/cordova/media/media.startRecord.md
@@ -39,14 +39,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");
@@ -62,26 +62,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.8.1.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();
@@ -90,7 +90,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();
@@ -100,7 +100,7 @@ Full Example
 
         // Cordova is ready
         //
-        function onDeviceReady() {
+        function on<a href="../device/device.html">Device</a>Ready() {
             recordAudio();
         }
     
@@ -119,7 +119,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;
         }
 
@@ -139,4 +139,4 @@ BlackBerry WebWorks Quirks
 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.8.1/cordova/media/media.stop.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.stop.md b/www/docs/en/1.8.1/cordova/media/media.stop.md
index b7d1420..e8bca77 100644
--- a/www/docs/en/1.8.1/cordova/media/media.stop.md
+++ b/www/docs/en/1.8.1/cordova/media/media.stop.md
@@ -39,14 +39,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");
@@ -57,7 +57,7 @@ Quick Example
         });
 
         // Play audio
-        my_media.play();
+        my_<a href="media.play.html">media.play</a>();
 
         // Pause after 10 seconds
         setTimeout(function() {
@@ -65,25 +65,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.8.1.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");
             }
         
@@ -95,27 +95,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);
@@ -124,9 +124,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>();
                 }
             }
         
@@ -155,7 +155,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;
             }
         
@@ -163,7 +163,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.8.1/cordova/media/media.stopRecord.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/media/media.stopRecord.md b/www/docs/en/1.8.1/cordova/media/media.stopRecord.md
index 7ee003d..b81b6f5 100644
--- a/www/docs/en/1.8.1/cordova/media/media.stopRecord.md
+++ b/www/docs/en/1.8.1/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
 -------------------
@@ -39,14 +39,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");
@@ -67,26 +67,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.8.1.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();
@@ -95,7 +95,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();
@@ -105,7 +105,7 @@ Full Example
 
         // Cordova is ready
         //
-        function onDeviceReady() {
+        function on<a href="../device/device.html">Device</a>Ready() {
             recordAudio();
         }
     
@@ -124,7 +124,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.8.1/cordova/notification/notification.alert.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/notification/notification.alert.md b/www/docs/en/1.8.1/cordova/notification/notification.alert.md
index 57a49d8..166a5f3 100644
--- a/www/docs/en/1.8.1/cordova/notification/notification.alert.md
+++ b/www/docs/en/1.8.1/cordova/notification/notification.alert.md
@@ -45,7 +45,7 @@ Supported Platforms
 - Bada 1.2 & 2.x
 - webOS
 
-Quick Example
+Quick <a href="../storage/storage.opendatabase.html">Example</a>
 -------------
 
     // Android / BlackBerry WebWorks (OS 5.0 and higher) / iPhone
@@ -61,24 +61,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.8.1.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.8.1/cordova/notification/notification.beep.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/notification/notification.beep.md b/www/docs/en/1.8.1/cordova/notification/notification.beep.md
index 8ef9232..b74e290 100644
--- a/www/docs/en/1.8.1/cordova/notification/notification.beep.md
+++ b/www/docs/en/1.8.1/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.8.1.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.8.1/cordova/notification/notification.confirm.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/notification/notification.confirm.md b/www/docs/en/1.8.1/cordova/notification/notification.confirm.md
index eaa65ca..72ff4b7 100644
--- a/www/docs/en/1.8.1/cordova/notification/notification.confirm.md
+++ b/www/docs/en/1.8.1/cordova/notification/notification.confirm.md
@@ -51,7 +51,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
@@ -70,24 +70,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.8.1.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.8.1/cordova/notification/notification.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/notification/notification.md b/www/docs/en/1.8.1/cordova/notification/notification.md
index 3cdd531..5e34de8 100644
--- a/www/docs/en/1.8.1/cordova/notification/notification.md
+++ b/www/docs/en/1.8.1/cordova/notification/notification.md
@@ -26,10 +26,10 @@ Notification
 Methods
 -------
 
-- notification.alert
-- notification.confirm
-- notification.beep
-- notification.vibrate
+- <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>
 
 Permissions
 -----------
@@ -64,7 +64,7 @@ Permissions
 
 ### iOS
 
-#### App/Supporting Files/Cordova.plist
+#### App/Supporting <a href="../file/fileobj/fileobj.html">File</a>s/Cordova.plist
 
     <key>Plugins</key>
     <dict>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/89392fa8/www/docs/en/1.8.1/cordova/notification/notification.vibrate.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.8.1/cordova/notification/notification.vibrate.md b/www/docs/en/1.8.1/cordova/notification/notification.vibrate.md
index 3a48c45..bb450f3 100644
--- a/www/docs/en/1.8.1/cordova/notification/notification.vibrate.md
+++ b/www/docs/en/1.8.1/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.8.1.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


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