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/10/21 00:27:47 UTC

[27/78] [abbrv] [partial] docs commit: Making links in docs manual instead of automatic.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/accelerometer/parameters/accelerometerSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/accelerometer/parameters/accelerometerSuccess.md b/www/docs/en/1.9.0/cordova/accelerometer/parameters/accelerometerSuccess.md
index 49a0889..37d0d4c 100644
--- a/www/docs/en/1.9.0/cordova/accelerometer/parameters/accelerometerSuccess.md
+++ b/www/docs/en/1.9.0/cordova/accelerometer/parameters/accelerometerSuccess.md
@@ -23,7 +23,7 @@ title: accelerometerSuccess
 accelerometerSuccess
 ====================
 
-onSuccess callback function that provides the Acceleration information.
+onSuccess callback function that provides the [Acceleration](../acceleration/acceleration.html) information.
 
     function(acceleration) {
         // Do something
@@ -34,7 +34,7 @@ Parameters
 
 - __acceleration:__ The acceleration at a single moment in time. (Acceleration)
 
-Example
+[Example](../../storage/storage.opendatabase.html)
 -------
 
     function onSuccess(acceleration) {

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/camera/camera.cleanup.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/camera/camera.cleanup.md b/www/docs/en/1.9.0/cordova/camera/camera.cleanup.md
index 0756c6f..5998349 100644
--- a/www/docs/en/1.9.0/cordova/camera/camera.cleanup.md
+++ b/www/docs/en/1.9.0/cordova/camera/camera.cleanup.md
@@ -30,7 +30,7 @@ Cleans up the image files that were taken by the camera, that were stored in a t
 Description
 -----------
 
-Cleans up the image files stored in the temporary storage location, when the function `camera.getPicture` is used with  `Camera.sourceType = Camera.PictureSourceType.CAMERA` and `Camera.destinationType = Camera.DestinationType.FILE_URI`
+Cleans up the image files stored in the temporary storage location, when the function `[camera.getPicture](camera.getPicture.html)` is used with  `[Camera](camera.html).sourceType = [Camera](camera.html).PictureSourceType.CAMERA` and `[Camera](camera.html).destinationType = [Camera](camera.html).DestinationType.FILE_URI`
 
 
 Supported Platforms
@@ -39,7 +39,7 @@ Supported Platforms
 - iOS
 
 
-Example
+[Example](../storage/storage.opendatabase.html)
 -------------
 
     navigator.camera.cleanup(onSuccess, onFail); 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/camera/camera.getPicture.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/camera/camera.getPicture.md b/www/docs/en/1.9.0/cordova/camera/camera.getPicture.md
index 49f4792..6beba9a 100644
--- a/www/docs/en/1.9.0/cordova/camera/camera.getPicture.md
+++ b/www/docs/en/1.9.0/cordova/camera/camera.getPicture.md
@@ -30,11 +30,11 @@ Takes a photo using the camera or retrieves a photo from the device's album.  Th
 Description
 -----------
 
-Function `camera.getPicture` opens the device's default camera application so that the user can take a picture (if `Camera.sourceType = Camera.PictureSourceType.CAMERA`, which is the default). Once the photo is taken, the camera application closes and your application is restored.
+Function `camera.getPicture` opens the device's default camera application so that the user can take a picture (if `[Camera](camera.html).sourceType = [Camera](camera.html).PictureSourceType.CAMERA`, which is the default). Once the photo is taken, the camera application closes and your application is restored.
 
-If `Camera.sourceType = Camera.PictureSourceType.PHOTOLIBRARY` or `Camera.PictureSourceType.SAVEDPHOTOALBUM`, then a photo chooser dialog is shown, from which a photo from the album can be selected.
+If `[Camera](camera.html).sourceType = [Camera](camera.html).PictureSourceType.PHOTOLIBRARY` or `[Camera](camera.html).PictureSourceType.SAVEDPHOTOALBUM`, then a photo chooser dialog is shown, from which a photo from the album can be selected.
 
-The return value will be sent to the `cameraSuccess` function, in one of the following formats, depending on the `cameraOptions` you specify:
+The return value will be sent to the `[cameraSuccess](parameter/cameraSuccess.html)` function, in one of the following formats, depending on the `[cameraOptions](parameter/cameraOptions.html)` you specify:
 
 - A `String` containing the Base64 encoded photo image.
 - A `String` representing the image file location on local storage (default).
@@ -45,7 +45,7 @@ You can do whatever you want with the encoded image or URI, for example:
 - Save the data locally (`LocalStorage`, [Lawnchair](http://brianleroux.github.com/lawnchair/), etc)
 - Post the data to a remote server
 
-Note: The image quality of pictures taken using the camera on newer devices is quite good, and images from the Photo Album will not be downscaled to a lower quality, even if a quality parameter is specified.  _Encoding such images using Base64 has caused memory issues on some of these devices (iPhone 4, BlackBerry Torch 9800)._  Therefore, using FILE_URI as the 'Camera.destinationType' is highly recommended.
+Note: The image quality of pictures taken using the camera on newer devices is quite good, and images from the Photo Album will not be downscaled to a lower quality, even if a quality parameter is specified.  _Encoding such images using Base64 has caused memory issues on some of these devices (iPhone 4, BlackBerry Torch 9800)._  Therefore, using FILE_URI as the '[Camera](camera.html).destinationType' is highly recommended.
 
 Supported Platforms
 -------------------
@@ -68,7 +68,7 @@ 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 [Example](../storage/storage.opendatabase.html)
 -------------
 
 Take photo and retrieve Base64-encoded image:
@@ -101,7 +101,7 @@ Take photo and retrieve image file location:
     }
 
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/camera/camera.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/camera/camera.md b/www/docs/en/1.9.0/cordova/camera/camera.md
index 9f9b0f9..6eff64a 100644
--- a/www/docs/en/1.9.0/cordova/camera/camera.md
+++ b/www/docs/en/1.9.0/cordova/camera/camera.md
@@ -28,8 +28,8 @@ Camera
 Methods
 -------
 
-- camera.getPicture
-- camera.cleanup
+- [camera.getPicture](camera.getPicture.html)
+- [camera.cleanup](camera.cleanup.html)
 
 Permissions
 -----------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/camera/parameter/CameraPopoverOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/camera/parameter/CameraPopoverOptions.md b/www/docs/en/1.9.0/cordova/camera/parameter/CameraPopoverOptions.md
index 139fa44..c6518f3 100644
--- a/www/docs/en/1.9.0/cordova/camera/parameter/CameraPopoverOptions.md
+++ b/www/docs/en/1.9.0/cordova/camera/parameter/CameraPopoverOptions.md
@@ -43,7 +43,7 @@ CameraPopoverOptions
 
 - __height:__ height, in pixels, of the element on the screen to anchor popover onto. (`Number`)
 
-- __arrowDir:__ Direction the arrow on the popover should point.  Defined in Camera.PopoverArrowDirection (`Number`)
+- __arrowDir:__ Direction the arrow on the popover should point.  Defined in [Camera](../camera.html).PopoverArrowDirection (`Number`)
         
             Camera.PopoverArrowDirection = {
                 ARROW_UP : 1,        // matches iOS UIPopoverArrowDirection constants
@@ -55,7 +55,7 @@ CameraPopoverOptions
   
 Note that the size of the popover may change to adjust to the direction of the arrow and orientation of the screen.  Make sure to account for orientation changes when specifying the anchor element location. 
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
      var popover = new CameraPopoverOptions(300,300,100,100,Camera.PopoverArrowDirection.ARROW_ANY);

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/camera/parameter/cameraOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/camera/parameter/cameraOptions.md b/www/docs/en/1.9.0/cordova/camera/parameter/cameraOptions.md
index 31ff030..691095c 100644
--- a/www/docs/en/1.9.0/cordova/camera/parameter/cameraOptions.md
+++ b/www/docs/en/1.9.0/cordova/camera/parameter/cameraOptions.md
@@ -77,13 +77,13 @@ Options
 
 - __correctOrientation:__ Rotate the image to correct for the orientation of the device during capture. (`Boolean`)
 - __saveToPhotoAlbum:__ Save the image to the photo album on the device after capture. (`Boolean`)
-- __popoverOptions:__ iOS only options to specify popover location in iPad.  Defined in CameraPopoverOptions
+- __popoverOptions:__ iOS only options to specify popover location in iPad.  Defined in [CameraPopoverOptions](CameraPopoverOptions.html)
   
 Android Quirks
 --------------
 
 - Ignores the `allowEdit` parameter.
-- Camera.PictureSourceType.PHOTOLIBRARY and Camera.PictureSourceType.SAVEDPHOTOALBUM both display the same photo album.
+- [Camera](../camera.html).PictureSourceType.PHOTOLIBRARY and [Camera](../camera.html).PictureSourceType.SAVEDPHOTOALBUM both display the same photo album.
 
 BlackBerry Quirks
 -----------------
@@ -91,9 +91,9 @@ BlackBerry Quirks
 - Ignores the `quality` parameter.
 - Ignores the `sourceType` parameter.
 - Ignores the `allowEdit` parameter.
-- Application must have key injection permissions to close native Camera application after photo is taken.
+- Application must have key injection permissions to close native [Camera](../camera.html) application after photo is taken.
 - Using Large image sizes may result in inability to encode image on later model devices with high resolution cameras (e.g. Torch 9800).
-- Camera.MediaType is not supported.
+- [Camera](../camera.html).MediaType is not supported.
 - Ignores the `correctOrientation` parameter.
 - Ignores the `saveToPhotoAlbum` parameter.
 
@@ -103,7 +103,7 @@ webOS Quirks
 - Ignores the `quality` parameter.
 - Ignores the `sourceType` parameter.
 - Ignores the `allowEdit` parameter.
-- Camera.MediaType is not supported.
+- [Camera](../camera.html).MediaType is not supported.
 - Ignores the `correctOrientation` parameter.
 - Ignores the `saveToPhotoAlbum` parameter.
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/camera/parameter/cameraSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/camera/parameter/cameraSuccess.md b/www/docs/en/1.9.0/cordova/camera/parameter/cameraSuccess.md
index d8e58ca..5b58248 100644
--- a/www/docs/en/1.9.0/cordova/camera/parameter/cameraSuccess.md
+++ b/www/docs/en/1.9.0/cordova/camera/parameter/cameraSuccess.md
@@ -32,9 +32,9 @@ onSuccess callback function that provides the image data.
 Parameters
 ----------
 
-- __imageData:__ Base64 encoding of the image data, OR the image file URI, depending on `cameraOptions` used. (`String`)
+- __imageData:__ Base64 encoding of the image data, OR the image file URI, depending on `[cameraOptions](cameraOptions.html)` used. (`String`)
 
-Example
+[Example](../../storage/storage.opendatabase.html)
 -------
 
     // Show image

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/compass.clearWatch.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/compass.clearWatch.md b/www/docs/en/1.9.0/cordova/compass/compass.clearWatch.md
index 0a549a6..4c97d24 100644
--- a/www/docs/en/1.9.0/cordova/compass/compass.clearWatch.md
+++ b/www/docs/en/1.9.0/cordova/compass/compass.clearWatch.md
@@ -27,7 +27,7 @@ Stop watching the compass referenced by the watch ID parameter.
 
     navigator.compass.clearWatch(watchID);
 
-- __watchID__: The ID returned by `compass.watchHeading`.
+- __watchID__: The ID returned by `[compass.watchHeading](compass.watchHeading.html)`.
 
 Supported Platforms
 -------------------
@@ -38,7 +38,7 @@ Supported Platforms
 - Bada 1.2 & 2.x
 - webOS
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     var watchID = navigator.compass.watchHeading(onSuccess, onError, options);
@@ -47,7 +47,7 @@ Quick Example
     
     navigator.compass.clearWatch(watchID);
     
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/compass.clearWatchFilter.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/compass.clearWatchFilter.md b/www/docs/en/1.9.0/cordova/compass/compass.clearWatchFilter.md
index 3d509d8..214eb1e 100644
--- a/www/docs/en/1.9.0/cordova/compass/compass.clearWatchFilter.md
+++ b/www/docs/en/1.9.0/cordova/compass/compass.clearWatchFilter.md
@@ -23,4 +23,4 @@ title: compass.clearWatchFilter
 compass.clearWatchFilter
 ========================
 
-No longer supported as of 1.6.  See `compass.clearWatch`.
\ No newline at end of file
+No longer supported as of 1.6.  See `[compass.clearWatch](compass.clearWatch.html)`.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/compass.getCurrentHeading.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/compass.getCurrentHeading.md b/www/docs/en/1.9.0/cordova/compass/compass.getCurrentHeading.md
index 20c6bb6..a38a259 100644
--- a/www/docs/en/1.9.0/cordova/compass/compass.getCurrentHeading.md
+++ b/www/docs/en/1.9.0/cordova/compass/compass.getCurrentHeading.md
@@ -32,7 +32,7 @@ Description
 
 The compass is a sensor that detects the direction or heading that the device is pointed.  It measures the heading in degrees from 0 to 359.99.
 
-The compass heading information is returned via a CompassHeading object using the `compassSuccess` callback function.
+The compass heading information is returned via a CompassHeading object using the `[compassSuccess](parameters/compassSuccess.html)` callback function.
 
 Supported Platforms
 -------------------
@@ -43,7 +43,7 @@ Supported Platforms
 - Bada 1.2 & 2.x
 - webOS
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     function onSuccess(heading) {
@@ -56,7 +56,7 @@ Quick Example
 
     navigator.compass.getCurrentHeading(onSuccess, onError);
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/compass.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/compass.md b/www/docs/en/1.9.0/cordova/compass/compass.md
index bb57495..7b8b95c 100644
--- a/www/docs/en/1.9.0/cordova/compass/compass.md
+++ b/www/docs/en/1.9.0/cordova/compass/compass.md
@@ -28,19 +28,19 @@ Compass
 Methods
 -------
 
-- compass.getCurrentHeading
-- compass.watchHeading
-- compass.clearWatch
-- compass.watchHeadingFilter 	(obsolete)
+- [compass.getCurrentHeading](compass.getCurrentHeading.html)
+- [compass.watchHeading](compass.watchHeading.html)
+- [compass.clearWatch](compass.clearWatch.html)
+- [compass.watchHeadingFilter](compass.watchHeadingFilter.html) 	(obsolete)
 - compass.clearWatchFilter		(obsolete)
 
 Arguments
 ---------
 
-- compassSuccess
-- compassError
-- compassOptions
-- compassHeading
+- [compassSuccess](parameters/compassSuccess.html)
+- [compassError](parameters/compassError.html)
+- [compassOptions](parameters/compassOptions.html)
+- [compassHeading](parameters/compassHeading.html)
 
 Permissions
 -----------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/compass.watchHeading.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/compass.watchHeading.md b/www/docs/en/1.9.0/cordova/compass/compass.watchHeading.md
index 16423db..2d1a57d 100644
--- a/www/docs/en/1.9.0/cordova/compass/compass.watchHeading.md
+++ b/www/docs/en/1.9.0/cordova/compass/compass.watchHeading.md
@@ -32,9 +32,9 @@ Description
 
 The compass is a sensor that detects the direction or heading that the device is pointed.  It measures the heading in degrees from 0 to 359.99.
 
-The `compass.watchHeading` gets the device's current heading at a regular interval. Each time the heading is retrieved, the `headingSuccess` callback function is executed. Specify the interval in milliseconds via the `frequency` parameter in the `compassOptions` object.
+The `compass.watchHeading` gets the device's current heading at a regular interval. Each time the heading is retrieved, the `headingSuccess` callback function is executed. Specify the interval in milliseconds via the `frequency` parameter in the `[compassOptions](parameters/compassOptions.html)` object.
 
-The returned watch ID references references the compass watch interval. The watch ID can be used with `compass.clearWatch` to stop watching the compass.
+The returned watch ID references references the compass watch interval. The watch ID can be used with `[compass.clearWatch](compass.clearWatch.html)` to stop watching the compass.
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - webOS
 
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     function onSuccess(heading) {
@@ -62,7 +62,7 @@ Quick Example
     
     var watchID = navigator.compass.watchHeading(onSuccess, onError, options);
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -130,6 +130,6 @@ Full Example
 iOS Quirks
 --------------
 
-In iOS `compass.watchHeading` can also get the device's current heading when it changes by a specified number of degrees. Each time the heading changes by the specified number of degrees or more, the `headingSuccess` callback function is called. Specify the degrees of change via the `filter` parameter in the `compassOptions` object.  Clear the watch as normal by passing the returned watch ID to `compass.clearWatch`.  This functionality replaces the previously separate, iOS only functions, watchHeadingFilter and clearWatchFilter, which were removed in 1.6.
+In iOS `compass.watchHeading` can also get the device's current heading when it changes by a specified number of degrees. Each time the heading changes by the specified number of degrees or more, the `headingSuccess` callback function is called. Specify the degrees of change via the `filter` parameter in the `[compassOptions](parameters/compassOptions.html)` object.  Clear the watch as normal by passing the returned watch ID to `[compass.clearWatch](compass.clearWatch.html)`.  This functionality replaces the previously separate, iOS only functions, watchHeadingFilter and clearWatchFilter, which were removed in 1.6.
 
 In iOS only one watchHeading can be in effect at one time.  If a watchHeading via filter is in effect, calling getCurrentHeading or watchHeading will use the existing filter value for specifying heading changes. On iOS watching heading changes via a filter is more efficient than via time.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/compass.watchHeadingFilter.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/compass.watchHeadingFilter.md b/www/docs/en/1.9.0/cordova/compass/compass.watchHeadingFilter.md
index d3531cf..b2aaebe 100644
--- a/www/docs/en/1.9.0/cordova/compass/compass.watchHeadingFilter.md
+++ b/www/docs/en/1.9.0/cordova/compass/compass.watchHeadingFilter.md
@@ -23,4 +23,4 @@ title: compass.watchHeadingFilter
 compass.watchHeadingFilter
 ==========================
 
-No longer supported as of 1.6, see `compass.watchHeading` for equivalent functionality.
+No longer supported as of 1.6, see `[compass.watchHeading](compass.watchHeading.html)` for equivalent functionality.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/compassError/compassError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/compassError/compassError.md b/www/docs/en/1.9.0/cordova/compass/compassError/compassError.md
index 25a2547..254f12b 100644
--- a/www/docs/en/1.9.0/cordova/compass/compassError/compassError.md
+++ b/www/docs/en/1.9.0/cordova/compass/compassError/compassError.md
@@ -23,7 +23,7 @@ title: CompassError
 CompassError
 ==========
 
-A `CompassError` object is returned to the `compassError` callback function when an error occurs.
+A `CompassError` object is returned to the `[compassError](../parameters/compassError.html)` callback function when an error occurs.
 
 Properties
 ----------
@@ -38,6 +38,6 @@ Constants
 Description
 -----------
 
-The `CompassError` object is returned to the user through the `compassError` callback function when an error occurs.
+The `CompassError` object is returned to the user through the `[compassError](../parameters/compassError.html)` callback function when an error occurs.
 
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/parameters/compassError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/parameters/compassError.md b/www/docs/en/1.9.0/cordova/compass/parameters/compassError.md
index fc209a5..facf067 100644
--- a/www/docs/en/1.9.0/cordova/compass/parameters/compassError.md
+++ b/www/docs/en/1.9.0/cordova/compass/parameters/compassError.md
@@ -25,7 +25,7 @@ compassError
 
 onError callback function for compass functions. 
 
-Example
+[Example](../../storage/storage.opendatabase.html)
 -------
 
 function(CompassError) {

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/parameters/compassHeading.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/parameters/compassHeading.md b/www/docs/en/1.9.0/cordova/compass/parameters/compassHeading.md
index 1743f37..1d2bddc 100644
--- a/www/docs/en/1.9.0/cordova/compass/parameters/compassHeading.md
+++ b/www/docs/en/1.9.0/cordova/compass/parameters/compassHeading.md
@@ -23,7 +23,7 @@ title: compassHeading
 compassHeading
 ==========
 
-A `CompassHeading` object is returned to the `compassSuccess` callback function when an error occurs.
+A `CompassHeading` object is returned to the `[compassSuccess](compassSuccess.html)` callback function when an error occurs.
 
 Properties
 ----------
@@ -35,7 +35,7 @@ Properties
 Description
 -----------
 
-The `CompassHeading` object is returned to the user through the `compassSuccess` callback function.
+The `CompassHeading` object is returned to the user through the `[compassSuccess](compassSuccess.html)` callback function.
 
 Android Quirks
 --------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/compass/parameters/compassSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/compass/parameters/compassSuccess.md b/www/docs/en/1.9.0/cordova/compass/parameters/compassSuccess.md
index 43ece54..597fe5a 100644
--- a/www/docs/en/1.9.0/cordova/compass/parameters/compassSuccess.md
+++ b/www/docs/en/1.9.0/cordova/compass/parameters/compassSuccess.md
@@ -23,7 +23,7 @@ title: compassSuccess
 compassSuccess
 ==============
 
-onSuccess callback function that provides the compass heading information via a compassHeading object.
+onSuccess callback function that provides the compass heading information via a [compassHeading](compassHeading.html) object.
 
     function(heading) {
         // Do something
@@ -35,7 +35,7 @@ Parameters
 
 - __heading:__ The heading information. _(compassHeading)_
 
-Example
+[Example](../../storage/storage.opendatabase.html)
 -------
 
     function onSuccess(heading) {

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/connection/connection.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/connection/connection.md b/www/docs/en/1.9.0/cordova/connection/connection.md
index b1d6af7..c32649b 100644
--- a/www/docs/en/1.9.0/cordova/connection/connection.md
+++ b/www/docs/en/1.9.0/cordova/connection/connection.md
@@ -30,7 +30,7 @@ This object is accessed under the `navigator.network` interface.
 Properties
 ----------
 
-- connection.type
+- [connection.type](connection.type.html)
 
 Constants
 ---------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/connection/connection.type.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/connection/connection.type.md b/www/docs/en/1.9.0/cordova/connection/connection.type.md
index 03f0521..ebf040f 100644
--- a/www/docs/en/1.9.0/cordova/connection/connection.type.md
+++ b/www/docs/en/1.9.0/cordova/connection/connection.type.md
@@ -40,7 +40,7 @@ Supported Platforms
 - Bada 2.x
 - webOS
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     function checkConnection() {
@@ -60,7 +60,7 @@ Quick Example
     
     checkConnection();
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -93,7 +93,7 @@ Full Example
 	        states[Connection.CELL_4G]	= 'Cell 4G connection';
 	        states[Connection.NONE]   	= 'No network connection';
 
-	        alert('Connection type: ' + states[networkState]);
+	        alert('[Connection](connection.html) type: ' + states[networkState]);
 	    }
         
         </script>
@@ -123,4 +123,4 @@ webOS Quirks
 Windows Phone Quirks
 --------------------
 
-- Windows Phone Emulator always detects `navigator.network.connection.type` as `Connection.UNKNOWN`.
+- Windows Phone Emulator always detects `navigator.network.connection.type` as `[Connection](connection.html).UNKNOWN`.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/Contact/contact.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/Contact/contact.md b/www/docs/en/1.9.0/cordova/contacts/Contact/contact.md
index c781de4..64af53e 100644
--- a/www/docs/en/1.9.0/cordova/contacts/Contact/contact.md
+++ b/www/docs/en/1.9.0/cordova/contacts/Contact/contact.md
@@ -47,14 +47,14 @@ Methods
 -------
 
 - __clone__: Returns a new Contact object that is a deep copy of the calling object, with the id property set to `null`. 
-- __remove__: Removes the contact from the device contacts database.  An error callback is called with a `ContactError` object if the removal is unsuccessful.
+- __remove__: Removes the contact from the device contacts database.  An error callback is called with a `[ContactError](../ContactError/contactError.html)` object if the removal is unsuccessful.
 - __save__: Saves a new contact to the device contacts database, or updates an existing contact if a contact with the same __id__ already exists.
 
 
 Details
 -------
 
-The `Contact` object represents a user contact.  Contacts can be created, saved to, or removed from the device contacts database.  Contacts can also be retrieved (individually or in bulk) from the database by invoking the `contacts.find` method.
+The `Contact` object represents a user contact.  [Contacts](../contacts.html) can be created, saved to, or removed from the device contacts database.  [Contacts](../contacts.html) can also be retrieved (individually or in bulk) from the database by invoking the `[contacts.find](../contacts.find.html)` method.
 
 _Note: Not all of the above contact fields are supported on every device platform.  Please check each platform's Quirks section for information about which fields are supported._
 
@@ -66,7 +66,7 @@ Supported Platforms
 - iOS
 - Bada 1.2 & 2.0
 
-Save Quick Example
+Save Quick [Example](../../storage/storage.opendatabase.html)
 ------------------
 
 	function onSuccess(contact) {
@@ -74,7 +74,7 @@ Save Quick Example
 	};
 
 	function onError(contactError) {
-		alert("Error = " + contactError.code);
+		alert("Error = " + [contactError](../parameters/contactError.html).code);
 	};
 
 	// create a new contact object
@@ -83,7 +83,7 @@ Save Quick Example
 	contact.nickname = "Plumber"; 		//specify both to support all devices
 	
 	// populate some fields
-	var name = new ContactName();
+	var name = new [ContactName](../ContactName/contactname.html)();
 	name.givenName = "Jane";
 	name.familyName = "Doe";
 	contact.name = name;
@@ -91,7 +91,7 @@ Save Quick Example
 	// save to device
 	contact.save(onSuccess,onError);
 
-Clone Quick Example
+Clone Quick [Example](../../storage/storage.opendatabase.html)
 -------------------
 
 	// clone the contact object
@@ -100,7 +100,7 @@ Clone Quick Example
 	console.log("Original contact name = " + contact.name.givenName);
 	console.log("Cloned contact name = " + clone.name.givenName); 
 
-Remove Quick Example
+Remove Quick [Example](../../storage/storage.opendatabase.html)
 --------------------
 
     function onSuccess() {
@@ -114,7 +114,7 @@ Remove Quick Example
 	// remove the contact from the device
 	contact.remove(onSuccess,onError);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -136,7 +136,7 @@ Full Example
 		    var contact = navigator.contacts.create();
 			contact.displayName = "Plumber";
 			contact.nickname = "Plumber"; 		//specify both to support all devices
-			var name = new ContactName();
+			var name = new [ContactName](../ContactName/contactname.html)();
 			name.givenName = "Jane";
 			name.familyName = "Doe";
 			contact.name = name;
@@ -163,7 +163,7 @@ Full Example
         // onSaveError: Failed to get the contacts
         //
         function onSaveError(contactError) {
-			alert("Error = " + contactError.code);
+			alert("Error = " + [contactError](../parameters/contactError.html).code);
         }
         
         // onRemoveSuccess: Get a snapshot of the current contacts
@@ -175,7 +175,7 @@ Full Example
         // onRemoveError: Failed to get the contacts
         //
         function onRemoveError(contactError) {
-			alert("Error = " + contactError.code);
+			alert("Error = " + [contactError](../parameters/contactError.html).code);
         }
 
         </script>
@@ -219,9 +219,9 @@ BlackBerry WebWorks (OS 5.0 and higher) Quirks
 
 iOS Quirks
 ----------
-- __displayName:__ This property is not supported by iOS and will be returned as `null` unless there is no ContactName specified.  If there is no ContactName, then composite name, __nickname__ or "" is returned for __displayName__, respectively. 
+- __displayName:__ This property is not supported by iOS and will be returned as `null` unless there is no [ContactName](../ContactName/contactname.html) specified.  If there is no [ContactName](../ContactName/contactname.html), then composite name, __nickname__ or "" is returned for __displayName__, respectively. 
 - __birthday:__ For input, this property must be provided as a JavaScript Date object. It is returned as a JavaScript Date object.
-- __photos:__ Returned Photo is stored in the application's temporary directory and a File URL to photo is returned.  Contents of temporary folder is deleted when application exits. 
+- __photos:__ Returned Photo is stored in the application's temporary directory and a [File](../../file/fileobj/fileobj.html) URL to photo is returned.  Contents of temporary folder is deleted when application exits. 
 - __categories:__  This property is not currently supported and will always be returned as `null`.
 
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/ContactAddress/contactaddress.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/ContactAddress/contactaddress.md b/www/docs/en/1.9.0/cordova/contacts/ContactAddress/contactaddress.md
index 22d88e4..63ced34 100644
--- a/www/docs/en/1.9.0/cordova/contacts/ContactAddress/contactaddress.md
+++ b/www/docs/en/1.9.0/cordova/contacts/ContactAddress/contactaddress.md
@@ -23,7 +23,7 @@ title: ContactAddress
 ContactAddress
 ==============
 
-Contains address properties for a `Contact` object.
+Contains address properties for a `[Contact](../Contact/contact.html)` object.
 
 Properties
 ----------
@@ -39,7 +39,7 @@ Properties
 Details
 -------
 
-The `ContactAddress` object stores the properties of a single address of a contact.  A `Contact` object can have one or more addresses in a  `ContactAddress[]` array. 
+The `ContactAddress` object stores the properties of a single address of a contact.  A `[Contact](../Contact/contact.html)` object can have one or more addresses in a  `ContactAddress[]` array. 
 
 Supported Platforms
 -------------------
@@ -49,7 +49,7 @@ Supported Platforms
 - iOS
 - Bada 1.2 & 2.0
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
 	// display the address information for all contacts
@@ -78,7 +78,7 @@ Quick Example
 	var filter = ["displayName","addresses"];
     navigator.contacts.find(filter, onSuccess, onError, options);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -97,7 +97,7 @@ Full Example
         //
         function onDeviceReady() {
 		    // find all contacts
-		    var options = new ContactFindOptions();
+		    var options = new [ContactFindOptions](../ContactFindOptions/contactfindoptions.html)();
 			options.filter=""; 
 			var filter = ["displayName","addresses"];
 		    navigator.contacts.find(filter, onSuccess, onError, options);

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/ContactError/contactError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/ContactError/contactError.md b/www/docs/en/1.9.0/cordova/contacts/ContactError/contactError.md
index 0c6d3c4..bb2ae8a 100644
--- a/www/docs/en/1.9.0/cordova/contacts/ContactError/contactError.md
+++ b/www/docs/en/1.9.0/cordova/contacts/ContactError/contactError.md
@@ -23,7 +23,7 @@ title: ContactError
 ContactError
 ========
 
-A `ContactError` object is returned to the `contactError` callback when an error occurs.
+A `ContactError` object is returned to the `[contactError](../parameters/contactError.html)` callback when an error occurs.
 
 Properties
 ----------
@@ -44,5 +44,5 @@ Constants
 Description
 -----------
 
-The `ContactError` object is returned to the user through the `contactError` callback function when an error occurs.
+The `ContactError` object is returned to the user through the `[contactError](../parameters/contactError.html)` callback function when an error occurs.
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/ContactField/contactfield.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/ContactField/contactfield.md b/www/docs/en/1.9.0/cordova/contacts/ContactField/contactfield.md
index c253ca2..afd82c3 100644
--- a/www/docs/en/1.9.0/cordova/contacts/ContactField/contactfield.md
+++ b/www/docs/en/1.9.0/cordova/contacts/ContactField/contactfield.md
@@ -23,7 +23,7 @@ title: ContactField
 ContactField
 ============
 
-Supports generic fields in a `Contact` object.  Some properties that are stored as `ContactField` objects include email addresses, phone numbers, and urls.
+Supports generic fields in a `[Contact](../Contact/contact.html)` object.  Some properties that are stored as `ContactField` objects include email addresses, phone numbers, and urls.
 
 Properties
 ----------
@@ -35,9 +35,9 @@ Properties
 Details
 -------
 
-The `ContactField` object is a reusable component that is used to support contact fields in a generic fashion.  Each `ContactField` object contains a value property, a type property, and a pref property.  A `Contact` object stores several properties in `ContactField[]` arrays, such as phone numbers and email addresses.
+The `ContactField` object is a reusable component that is used to support contact fields in a generic fashion.  Each `ContactField` object contains a value property, a type property, and a pref property.  A `[Contact](../Contact/contact.html)` object stores several properties in `ContactField[]` arrays, such as phone numbers and email addresses.
 
-In most instances, there are no pre-determined values for the __type__ attribute of a `ContactField` object.  For example, a phone number can have __type__ values of 'home', 'work', 'mobile', 'iPhone', or any other value that is supported by the contact database on a particular device platform.  However, in the case of the `Contact` __photos__ field, Cordova makes use of the __type__ field to indicate the format of the returned image.  Cordova will return __type: 'url'__ when the __value__ attribute contains a URL to the photo image, or __type: 'base64'__ when the returned __value__ attribute contains a Base64 encoded image string.
+In most instances, there are no pre-determined values for the __type__ attribute of a `ContactField` object.  For example, a phone number can have __type__ values of 'home', 'work', 'mobile', 'iPhone', or any other value that is supported by the contact database on a particular device platform.  However, in the case of the `[Contact](../Contact/contact.html)` __photos__ field, Cordova makes use of the __type__ field to indicate the format of the returned image.  Cordova will return __type: 'url'__ when the __value__ attribute contains a URL to the photo image, or __type: 'base64'__ when the returned __value__ attribute contains a Base64 encoded image string.
 
 Supported Platforms
 -------------------
@@ -47,7 +47,7 @@ Supported Platforms
 - iOS
 - Bada 1.2 & 2.0
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
 	// create a new contact
@@ -63,7 +63,7 @@ Quick Example
 	// save the contact
 	contact.save();
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -95,7 +95,7 @@ Full Example
 			contact.save();
 
 			// search contacts, returning display name and phone numbers
-			var options = new ContactFindOptions();
+			var options = new [ContactFindOptions](../ContactFindOptions/contactfindoptions.html)();
 			options.filter="";
 			filter = ["displayName","phoneNumbers"];
 			navigator.contacts.find(filter, onSuccess, onError, options);

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/ContactFindOptions/contactfindoptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/ContactFindOptions/contactfindoptions.md b/www/docs/en/1.9.0/cordova/contacts/ContactFindOptions/contactfindoptions.md
index 80144ff..9943c7d 100644
--- a/www/docs/en/1.9.0/cordova/contacts/ContactFindOptions/contactfindoptions.md
+++ b/www/docs/en/1.9.0/cordova/contacts/ContactFindOptions/contactfindoptions.md
@@ -23,7 +23,7 @@ title: ContactFindOptions
 ContactFindOptions
 ==================
 
-Contains properties that can be used to filter the results of a `contacts.find` operation.
+Contains properties that can be used to filter the results of a `[contacts.find](../contacts.find.html)` operation.
 
 Properties
 ----------
@@ -40,7 +40,7 @@ Supported Platforms
 - iOS
 - Bada 1.2 & 2.0
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
 	// success callback
@@ -64,7 +64,7 @@ Quick Example
 	// find contacts
     navigator.contacts.find(filter, onSuccess, onError, options);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/ContactName/contactname.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/ContactName/contactname.md b/www/docs/en/1.9.0/cordova/contacts/ContactName/contactname.md
index 19d353f..5ad9d08 100644
--- a/www/docs/en/1.9.0/cordova/contacts/ContactName/contactname.md
+++ b/www/docs/en/1.9.0/cordova/contacts/ContactName/contactname.md
@@ -23,7 +23,7 @@ title: ContactName
 ContactName
 ===========
 
-Contains name properties of a `Contact` object.
+Contains name properties of a `[Contact](../Contact/contact.html)` object.
 
 Properties
 ----------
@@ -48,7 +48,7 @@ Supported Platforms
 - iOS
 - Bada 1.2 & 2.0
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     function onSuccess(contacts) {
@@ -71,7 +71,7 @@ Quick Example
 	filter = ["displayName","name"];
     navigator.contacts.find(filter, onSuccess, onError, options);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -89,7 +89,7 @@ Full Example
         // Cordova is ready
         //
         function onDeviceReady() {
-			var options = new ContactFindOptions();
+			var options = new [ContactFindOptions](../ContactFindOptions/contactfindoptions.html)();
 			options.filter="";
 			filter = ["displayName","name"];
 			navigator.contacts.find(filter, onSuccess, onError, options);

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/ContactOrganization/contactorganization.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/ContactOrganization/contactorganization.md b/www/docs/en/1.9.0/cordova/contacts/ContactOrganization/contactorganization.md
index 896bf6f..4c3431d 100644
--- a/www/docs/en/1.9.0/cordova/contacts/ContactOrganization/contactorganization.md
+++ b/www/docs/en/1.9.0/cordova/contacts/ContactOrganization/contactorganization.md
@@ -23,7 +23,7 @@ title: ContactOrganization
 ContactOrganization
 ===================
 
-Contains organization properties of a `Contact` object.
+Contains organization properties of a `[Contact](../Contact/contact.html)` object.
 
 Properties
 ----------
@@ -36,7 +36,7 @@ Properties
 Details
 -------
 
-The `ContactOrganization` object stores a contact's organization properties.  A `Contact` object stores one or more `ContactOrganization` objects in an array. 
+The `ContactOrganization` object stores a contact's organization properties.  A `[Contact](../Contact/contact.html)` object stores one or more `ContactOrganization` objects in an array. 
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - iOS
 - Bada 1.2
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     function onSuccess(contacts) {
@@ -70,7 +70,7 @@ Quick Example
 	filter = ["displayName","organizations"];
     navigator.contacts.find(filter, onSuccess, onError, options);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -88,7 +88,7 @@ Full Example
         // Cordova is ready
         //
         function onDeviceReady() {
-			var options = new ContactFindOptions();
+			var options = new [ContactFindOptions](../ContactFindOptions/contactfindoptions.html)();
 			options.filter="";
 			filter = ["displayName","organizations"];
 			navigator.contacts.find(filter, onSuccess, onError, options);

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/contacts.create.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/contacts.create.md b/www/docs/en/1.9.0/cordova/contacts/contacts.create.md
index 89bbfa9..839cc38 100644
--- a/www/docs/en/1.9.0/cordova/contacts/contacts.create.md
+++ b/www/docs/en/1.9.0/cordova/contacts/contacts.create.md
@@ -23,16 +23,16 @@ title: contacts.create
 contacts.create
 ===============
 
-Returns a new Contact object.
+Returns a new [Contact](Contact/contact.html) object.
 
     var contact = navigator.contacts.create(properties);
 
 Description
 -----------
 
-contacts.create is a synchronous function that returns a new `Contact` object.
+contacts.create is a synchronous function that returns a new `[Contact](Contact/contact.html)` object.
 
-This method does not persist the Contact object to the device contacts database.  To persist the Contact object to the device, invoke the `Contact.save` method.
+This method does not persist the [Contact](Contact/contact.html) object to the device contacts database.  To persist the [Contact](Contact/contact.html) object to the device, invoke the `[Contact](Contact/contact.html).save` method.
 
 Supported Platforms
 -------------------
@@ -42,12 +42,12 @@ Supported Platforms
 - iOS
 - Bada 1.2 & 2.0
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     var myContact = navigator.contacts.create({"displayName": "Test User"});
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/contacts.find.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/contacts.find.md b/www/docs/en/1.9.0/cordova/contacts/contacts.find.md
index ad858f4..9729621 100644
--- a/www/docs/en/1.9.0/cordova/contacts/contacts.find.md
+++ b/www/docs/en/1.9.0/cordova/contacts/contacts.find.md
@@ -23,23 +23,23 @@ title: contacts.find
 contacts.find
 =============
 
-Queries the device contacts database and returns one or more `Contact` objects, each containing the fields specified.
+Queries the device contacts database and returns one or more `[Contact](Contact/contact.html)` objects, each containing the fields specified.
 
     navigator.contacts.find(contactFields, contactSuccess, contactError, contactFindOptions);
 
 Description
 -----------
 
-contacts.find is an asynchronous function that queries the device contacts database and returns an array of `Contact` objects.  The resulting objects are passed to the `contactSuccess` callback function specified by the __contactSuccess__ parameter.  
+contacts.find is an asynchronous function that queries the device contacts database and returns an array of `[Contact](Contact/contact.html)` objects.  The resulting objects are passed to the `[contactSuccess](parameters/contactSuccess.html)` callback function specified by the __contactSuccess__ parameter.  
 
-Users must specify the contact fields to be used as a search qualifier in the __contactFields__ parameter.  Only the fields specified in the __contactFields__ parameter will be returned as properties of the `Contact` objects that are passed to the __contactSuccess__ callback function.  A zero-length __contactFields__ parameter will result in an array of `Contact` objects with only the `id` property populated. A __contactFields__ value of ["*"] will return all contact fields. 
+Users must specify the contact fields to be used as a search qualifier in the __contactFields__ parameter.  Only the fields specified in the __contactFields__ parameter will be returned as properties of the `[Contact](Contact/contact.html)` objects that are passed to the __contactSuccess__ callback function.  A zero-length __contactFields__ parameter will result in an array of `[Contact](Contact/contact.html)` objects with only the `id` property populated. A __contactFields__ value of ["*"] will return all contact fields. 
 
 The __contactFindOptions.filter__ string can be used as a search filter when querying the contacts database.  If provided, a case-insensitive, partial value match is applied to each field specified in the __contactFields__ parameter.  If a match is found in a comparison with _any_ of the specified fields, the contact is returned.
 
 Parameters
 ----------
 
-- __contactFields:__ Contact fields to be used as search qualifier. Only these fields will have values in the resulting `Contact` objects. _(DOMString[])_ [Required]
+- __contactFields:__ [Contact](Contact/contact.html) fields to be used as search qualifier. Only these fields will have values in the resulting `[Contact](Contact/contact.html)` objects. _(DOMString[])_ [Required]
 - __contactSuccess:__ Success callback function that is invoked with the contacts returned from the contacts database. [Required]
 - __contactError:__ Error callback function. Invoked when error occurs. [Optional]
 - __contactFindOptions:__ Search options to filter contacts. [Optional]
@@ -52,7 +52,7 @@ Supported Platforms
 - iOS
 - Bada 1.2 & 2.0
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     function onSuccess(contacts) {
@@ -69,7 +69,7 @@ Quick Example
 	var fields = ["displayName", "name"];
     navigator.contacts.find(fields, onSuccess, onError, options);
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -88,7 +88,7 @@ Full Example
         //
         function onDeviceReady() {
 		    // find all contacts with 'Bob' in any name field
-		    var options = new ContactFindOptions();
+		    var options = new [ContactFindOptions](ContactFindOptions/contactfindoptions.html)();
 			options.filter="Bob"; 
 			var fields = ["displayName", "name"];
 		    navigator.contacts.find(fields, onSuccess, onError, options);

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/contacts.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/contacts.md b/www/docs/en/1.9.0/cordova/contacts/contacts.md
index 0b4e923..a3c3b7d 100644
--- a/www/docs/en/1.9.0/cordova/contacts/contacts.md
+++ b/www/docs/en/1.9.0/cordova/contacts/contacts.md
@@ -28,27 +28,27 @@ Contacts
 Methods
 -------
 
-- contacts.create
-- contacts.find
+- [contacts.create](contacts.create.html)
+- [contacts.find](contacts.find.html)
 
 Arguments
 ---------
 
-- contactFields
-- contactSuccess
-- contactError
-- contactFindOptions
+- [contactFields](parameters/contactFields.html)
+- [contactSuccess](parameters/contactSuccess.html)
+- [contactError](parameters/contactError.html)
+- [contactFindOptions](parameters/contactFindOptions.html)
 
 Objects
 -------
 
-- Contact
-- ContactName
-- ContactField
-- ContactAddress
-- ContactOrganization
-- ContactFindOptions
-- ContactError
+- [Contact](Contact/contact.html)
+- [ContactName](ContactName/contactname.html)
+- [ContactField](ContactField/contactfield.html)
+- [ContactAddress](ContactAddress/contactaddress.html)
+- [ContactOrganization](ContactOrganization/contactorganization.html)
+- [ContactFindOptions](ContactFindOptions/contactfindoptions.html)
+- [ContactError](ContactError/contactError.html)
 
 Permissions
 -----------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/parameters/contactFields.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/parameters/contactFields.md b/www/docs/en/1.9.0/cordova/contacts/parameters/contactFields.md
index ae27dd7..368541b 100644
--- a/www/docs/en/1.9.0/cordova/contacts/parameters/contactFields.md
+++ b/www/docs/en/1.9.0/cordova/contacts/parameters/contactFields.md
@@ -23,6 +23,6 @@ title: contactFields
 contactFields
 =============
 
-Required parameter of the `contacts.find` method.  Use this parameter to specify which fields should be included in the `Contact` objects resulting from a find operation.
+Required parameter of the `[contacts.find](../contacts.find.html)` method.  Use this parameter to specify which fields should be included in the `[Contact](../Contact/contact.html)` objects resulting from a find operation.
 
     ["name", "phoneNumbers", "emails"]

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/parameters/contactFindOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/parameters/contactFindOptions.md b/www/docs/en/1.9.0/cordova/contacts/parameters/contactFindOptions.md
index b166110..9459ec4 100644
--- a/www/docs/en/1.9.0/cordova/contacts/parameters/contactFindOptions.md
+++ b/www/docs/en/1.9.0/cordova/contacts/parameters/contactFindOptions.md
@@ -23,7 +23,7 @@ title: contactFindOptions
 contactFindOptions
 ==================
 
-Optional parameter of the `contacts.find` method.  Use this parameter to filter the contacts returned from the contacts database.
+Optional parameter of the `[contacts.find](../contacts.find.html)` method.  Use this parameter to filter the contacts returned from the contacts database.
 
     { 
 		filter: "",

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/contacts/parameters/contactSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/contacts/parameters/contactSuccess.md b/www/docs/en/1.9.0/cordova/contacts/parameters/contactSuccess.md
index 22137b6..6b5204c 100644
--- a/www/docs/en/1.9.0/cordova/contacts/parameters/contactSuccess.md
+++ b/www/docs/en/1.9.0/cordova/contacts/parameters/contactSuccess.md
@@ -23,7 +23,7 @@ title: contactSuccess
 contactSuccess
 ==============
 
-Success callback function that provides the `Contact` array resulting from a `contacts.find` operation.
+Success callback function that provides the `[Contact](../Contact/contact.html)` array resulting from a `[contacts.find](../contacts.find.html)` operation.
 
     function(contacts) {
         // Do something
@@ -32,9 +32,9 @@ Success callback function that provides the `Contact` array resulting from a `co
 Parameters
 ----------
 
-- __contacts:__ The contact array resulting from a find operation. (`Contact`)
+- __contacts:__ The contact array resulting from a find operation. (`[Contact](../Contact/contact.html)`)
 
-Example
+[Example](../../storage/storage.opendatabase.html)
 -------
 
     function contactSuccess(contacts) {

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/device/device.cordova.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/device/device.cordova.md b/www/docs/en/1.9.0/cordova/device/device.cordova.md
index cb27be5..4d6d7fd 100644
--- a/www/docs/en/1.9.0/cordova/device/device.cordova.md
+++ b/www/docs/en/1.9.0/cordova/device/device.cordova.md
@@ -41,12 +41,12 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Bada 1.2 & 2.x
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     var name = device.cordova;
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/device/device.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/device/device.md b/www/docs/en/1.9.0/cordova/device/device.md
index ea0873f..0e0ec3e 100644
--- a/www/docs/en/1.9.0/cordova/device/device.md
+++ b/www/docs/en/1.9.0/cordova/device/device.md
@@ -28,11 +28,11 @@ Device
 Properties
 ----------
 
-- device.name
-- device.cordova
-- device.platform
-- device.uuid
-- device.version
+- [device.name](device.name.html)
+- [device.cordova](device.cordova.html)
+- [device.platform](device.platform.html)
+- [device.uuid](device.uuid.html)
+- [device.version](device.version.html)
 
 Variable Scope
 --------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/device/device.name.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/device/device.name.md b/www/docs/en/1.9.0/cordova/device/device.name.md
index 1321afe..5f829c9 100644
--- a/www/docs/en/1.9.0/cordova/device/device.name.md
+++ b/www/docs/en/1.9.0/cordova/device/device.name.md
@@ -42,7 +42,7 @@ Supported Platforms
 - Bada 1.2 & 2.x
 - webOS
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Android:    Nexus One       returns "Passion" (Nexus One code name)
@@ -52,7 +52,7 @@ Quick Example
     //
     var name = device.name;
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/device/device.platform.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/device/device.platform.md b/www/docs/en/1.9.0/cordova/device/device.platform.md
index d6d4f62..2ab7220 100644
--- a/www/docs/en/1.9.0/cordova/device/device.platform.md
+++ b/www/docs/en/1.9.0/cordova/device/device.platform.md
@@ -37,7 +37,7 @@ Supported Platforms
 - Bada 1.2 & 2.x
 - webOS
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Depending on the device, a few examples are:
@@ -48,7 +48,7 @@ Quick Example
     //   - "WinCE"
     var devicePlatform = device.platform;
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/device/device.uuid.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/device/device.uuid.md b/www/docs/en/1.9.0/cordova/device/device.uuid.md
index 5a83e1c..f93dc86 100644
--- a/www/docs/en/1.9.0/cordova/device/device.uuid.md
+++ b/www/docs/en/1.9.0/cordova/device/device.uuid.md
@@ -42,7 +42,7 @@ Supported Platforms
 - Bada 1.2 & 2.x
 - webOS
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Android: Returns a random 64-bit integer (as a string, again!)
@@ -61,7 +61,7 @@ Quick Example
     // webOS: returns the device NDUID
     var deviceID = device.uuid;
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/device/device.version.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/device/device.version.md b/www/docs/en/1.9.0/cordova/device/device.version.md
index 6cb9fe3..ff8d2ac 100644
--- a/www/docs/en/1.9.0/cordova/device/device.version.md
+++ b/www/docs/en/1.9.0/cordova/device/device.version.md
@@ -37,7 +37,7 @@ Supported Platforms
 - Bada 1.2 & 2.x
 - webOS
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Android:    Froyo OS would return "2.2"
@@ -52,7 +52,7 @@ Quick Example
     // webOS: webOS 2.2.4 return 2.2.4
     var deviceVersion = device.version;
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.backbutton.md b/www/docs/en/1.9.0/cordova/events/events.backbutton.md
index d5c0716..7362a2c 100644
--- a/www/docs/en/1.9.0/cordova/events/events.backbutton.md
+++ b/www/docs/en/1.9.0/cordova/events/events.backbutton.md
@@ -32,7 +32,7 @@ Details
 
 If you need to override the default back button behaviour you can register an event listener for the 'backbutton' event.  It is no longer necessary to call any other method to over ride the back button behaviour.  Now, you only need to register an event listener for 'backbutton'.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
@@ -41,7 +41,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("backbutton", onBackKeyDown, false);
@@ -50,7 +50,7 @@ Quick Example
         // Handle the back button
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.batterycritical.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.batterycritical.md b/www/docs/en/1.9.0/cordova/events/events.batterycritical.md
index 0d6d453..08a3d41 100644
--- a/www/docs/en/1.9.0/cordova/events/events.batterycritical.md
+++ b/www/docs/en/1.9.0/cordova/events/events.batterycritical.md
@@ -37,7 +37,7 @@ The batterycritical handler will be called with an object that contains two prop
 - __level:__ The percentage of battery (0-100). _(Number)_
 - __isPlugged:__ A boolean that represents whether or not the device is plugged in or not. _(Boolean)_
 
-Typically, you will want to attach an event listener with `window.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `window.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - Android
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     window.addEventListener("batterycritical", onBatteryCritical, false);
@@ -56,7 +56,7 @@ Quick Example
        	alert("Battery Level Critical " + info.level + "%\nRecharge Soon!"); 
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.batterylow.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.batterylow.md b/www/docs/en/1.9.0/cordova/events/events.batterylow.md
index cf8bb83..529f935 100644
--- a/www/docs/en/1.9.0/cordova/events/events.batterylow.md
+++ b/www/docs/en/1.9.0/cordova/events/events.batterylow.md
@@ -37,7 +37,7 @@ The batterylow handler will be called with an object that contains two propertie
 - __level:__ The percentage of battery (0-100). _(Number)_
 - __isPlugged:__ A boolean that represents whether or not the device is plugged in or not. _(Boolean)_
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - Android
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     window.addEventListener("batterylow", onBatteryLow, false);
@@ -56,7 +56,7 @@ Quick Example
        	alert("Battery Level Low " + info.level + "%"); 
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.batterystatus.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.batterystatus.md b/www/docs/en/1.9.0/cordova/events/events.batterystatus.md
index 955fee0..8aa5fb1 100644
--- a/www/docs/en/1.9.0/cordova/events/events.batterystatus.md
+++ b/www/docs/en/1.9.0/cordova/events/events.batterystatus.md
@@ -37,7 +37,7 @@ The battery status handler will be called with an object that contains two prope
 - __level:__ The percentage of battery (0-100). _(Number)_
 - __isPlugged:__ A boolean that represents whether or not the device is plugged in or not. _(Boolean)_
 
-Typically, you will want to attach an event listener with `window.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `window.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
@@ -55,7 +55,7 @@ The `level` property is unavailable as Windows Phone 7 does not provide
 native APIs for determining battery level. The `isPlugged` parameter
 _is_ supported.
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     window.addEventListener("batterystatus", onBatteryStatus, false);
@@ -65,7 +65,7 @@ Quick Example
        	console.log("Level: " + info.level + " isPlugged: " + info.isPlugged); 
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.deviceready.md b/www/docs/en/1.9.0/cordova/events/events.deviceready.md
index 9bf113d..c8d6aae 100644
--- a/www/docs/en/1.9.0/cordova/events/events.deviceready.md
+++ b/www/docs/en/1.9.0/cordova/events/events.deviceready.md
@@ -47,7 +47,7 @@ Supported Platforms
 - Windows Phone 7
 - Bada 1.2 & 2.x
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("deviceready", onDeviceReady, false);
@@ -56,7 +56,7 @@ Quick Example
         // Now safe to use the Cordova API
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.endcallbutton.md b/www/docs/en/1.9.0/cordova/events/events.endcallbutton.md
index e2c5f57..21f7af2 100644
--- a/www/docs/en/1.9.0/cordova/events/events.endcallbutton.md
+++ b/www/docs/en/1.9.0/cordova/events/events.endcallbutton.md
@@ -32,14 +32,14 @@ Details
 
 If you need to override the default end call behaviour you can register an event listener for the 'endcallbutton' event.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
 
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("endcallbutton", onEndCallKeyDown, false);
@@ -48,7 +48,7 @@ Quick Example
         // Handle the end call button
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.md b/www/docs/en/1.9.0/cordova/events/events.md
index ae7cc8c..32d048a 100644
--- a/www/docs/en/1.9.0/cordova/events/events.md
+++ b/www/docs/en/1.9.0/cordova/events/events.md
@@ -28,21 +28,21 @@ Events
 Event Types
 -----------
 
-- deviceready
-- pause
-- resume
-- online
-- offline
-- backbutton
-- batterycritical
-- batterylow
-- batterystatus
-- menubutton
-- searchbutton
-- startcallbutton
-- endcallbutton
-- volumedownbutton
-- volumeupbutton
+- [deviceready](events.deviceready.html)
+- [pause](events.pause.html)
+- [resume](events.resume.html)
+- [online](events.online.html)
+- [offline](events.offline.html)
+- [backbutton](events.backbutton.html)
+- [batterycritical](events.batterycritical.html)
+- [batterylow](events.batterylow.html)
+- [batterystatus](events.batterystatus.html)
+- [menubutton](events.menubutton.html)
+- [searchbutton](events.searchbutton.html)
+- [startcallbutton](events.startcallbutton.html)
+- [endcallbutton](events.endcallbutton.html)
+- [volumedownbutton](events.volumedownbutton.html)
+- [volumeupbutton](events.volumeupbutton.html)
 
 Permissions
 -----------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.menubutton.md b/www/docs/en/1.9.0/cordova/events/events.menubutton.md
index a244457..fe4ec82 100644
--- a/www/docs/en/1.9.0/cordova/events/events.menubutton.md
+++ b/www/docs/en/1.9.0/cordova/events/events.menubutton.md
@@ -32,7 +32,7 @@ Details
 
 If you need to override the default menu button behaviour you can register an event listener for the 'menubutton' event.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
@@ -40,7 +40,7 @@ Supported Platforms
 - Android
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("menubutton", onMenuKeyDown, false);
@@ -49,7 +49,7 @@ Quick Example
         // Handle the back button
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.offline.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.offline.md b/www/docs/en/1.9.0/cordova/events/events.offline.md
index 8962a87..a06c20a 100644
--- a/www/docs/en/1.9.0/cordova/events/events.offline.md
+++ b/www/docs/en/1.9.0/cordova/events/events.offline.md
@@ -32,7 +32,7 @@ Details
 
 When the application's network connection changes to being offline, the offline event is fired.  
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
@@ -42,7 +42,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("offline", onOffline, false);
@@ -51,7 +51,7 @@ Quick Example
         // Handle the offline event
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.online.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.online.md b/www/docs/en/1.9.0/cordova/events/events.online.md
index af20118..63f2f81 100644
--- a/www/docs/en/1.9.0/cordova/events/events.online.md
+++ b/www/docs/en/1.9.0/cordova/events/events.online.md
@@ -32,7 +32,7 @@ Details
 
 When the application's network connection changes to being online, the online event is fired.  
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
@@ -42,7 +42,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("online", onOnline, false);
@@ -51,7 +51,7 @@ Quick Example
         // Handle the online event
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.pause.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.pause.md b/www/docs/en/1.9.0/cordova/events/events.pause.md
index 86b4431..3f7c468 100644
--- a/www/docs/en/1.9.0/cordova/events/events.pause.md
+++ b/www/docs/en/1.9.0/cordova/events/events.pause.md
@@ -32,7 +32,7 @@ Details
 
 Cordova consists of two code bases: native and JavaScript. While the native code puts the application into the background the pause event is fired.  
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
@@ -42,7 +42,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("pause", onPause, false);
@@ -51,7 +51,7 @@ Quick Example
         // Handle the pause event
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.resume.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.resume.md b/www/docs/en/1.9.0/cordova/events/events.resume.md
index 5b6be43..d10f305 100644
--- a/www/docs/en/1.9.0/cordova/events/events.resume.md
+++ b/www/docs/en/1.9.0/cordova/events/events.resume.md
@@ -32,7 +32,7 @@ Details
 
 Cordova consists of two code bases: native and JavaScript. While the native code pulls the application from the background the resume event is fired.  
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
@@ -42,7 +42,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("resume", onResume, false);
@@ -51,7 +51,7 @@ Quick Example
         // Handle the resume event
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.searchbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.searchbutton.md b/www/docs/en/1.9.0/cordova/events/events.searchbutton.md
index 4636f69..252c300 100644
--- a/www/docs/en/1.9.0/cordova/events/events.searchbutton.md
+++ b/www/docs/en/1.9.0/cordova/events/events.searchbutton.md
@@ -32,14 +32,14 @@ Details
 
 If you need to override the default search button behaviour on Android you can register an event listener for the 'searchbutton' event.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
 
 - Android
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("searchbutton", onSearchKeyDown, false);
@@ -48,7 +48,7 @@ Quick Example
         // Handle the search button
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.startcallbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.startcallbutton.md b/www/docs/en/1.9.0/cordova/events/events.startcallbutton.md
index 51d2407..c1fa77e 100644
--- a/www/docs/en/1.9.0/cordova/events/events.startcallbutton.md
+++ b/www/docs/en/1.9.0/cordova/events/events.startcallbutton.md
@@ -32,14 +32,14 @@ Details
 
 If you need to override the default start call behaviour you can register an event listener for the 'startcallbutton' event.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
 
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("startcallbutton", onStartCallKeyDown, false);
@@ -48,7 +48,7 @@ Quick Example
         // Handle the start call button
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.volumedownbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.volumedownbutton.md b/www/docs/en/1.9.0/cordova/events/events.volumedownbutton.md
index ee6a8ed..b5cdb88 100644
--- a/www/docs/en/1.9.0/cordova/events/events.volumedownbutton.md
+++ b/www/docs/en/1.9.0/cordova/events/events.volumedownbutton.md
@@ -32,14 +32,14 @@ Details
 
 If you need to override the default volume down behaviour you can register an event listener for the 'volumedownbutton' event.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
 
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("volumedownbutton", onVolumeDownKeyDown, false);
@@ -48,7 +48,7 @@ Quick Example
         // Handle the volume down button
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/events/events.volumeupbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/events/events.volumeupbutton.md b/www/docs/en/1.9.0/cordova/events/events.volumeupbutton.md
index 3841500..e763f84 100644
--- a/www/docs/en/1.9.0/cordova/events/events.volumeupbutton.md
+++ b/www/docs/en/1.9.0/cordova/events/events.volumeupbutton.md
@@ -32,14 +32,14 @@ Details
 
 If you need to override the default volume up behaviour you can register an event listener for the 'volumeupbutton' event.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova 'deviceready' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the Cordova '[deviceready](events.deviceready.html)' event.
 
 Supported Platforms
 -------------------
 
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     document.addEventListener("volumeupbutton", onVolumeUpKeyDown, false);
@@ -48,7 +48,7 @@ Quick Example
         // Handle the volume up button
     }
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.9.0/cordova/file/directoryentry/directoryentry.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.9.0/cordova/file/directoryentry/directoryentry.md b/www/docs/en/1.9.0/cordova/file/directoryentry/directoryentry.md
index 6bcedf1..895c644 100644
--- a/www/docs/en/1.9.0/cordova/file/directoryentry/directoryentry.md
+++ b/www/docs/en/1.9.0/cordova/file/directoryentry/directoryentry.md
@@ -49,7 +49,7 @@ The following methods can be invoked on a DirectoryEntry object:
 - __toURL__: Return a URL that can be used to locate a directory.
 - __remove__: Delete a directory.  The directory must be empty.
 - __getParent__: Look up the parent directory.
-- __createReader__: Create a new DirectoryReader that can read entries from a directory.
+- __createReader__: Create a new [DirectoryReader](../directoryreader/directoryreader.html) that can read entries from a directory.
 - __getDirectory__: Create or look up a directory.
 - __getFile__: Create or look up a file.
 - __removeRecursively__: Delete a directory and all of its contents.
@@ -70,8 +70,8 @@ Look up metadata about a directory.
 
 __Parameters:__
 
-- __successCallback__ - A callback that is called with a Metadata object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs retrieving the Metadata. Invoked with a FileError object. _(Function)_
+- __successCallback__ - A callback that is called with a [Metadata](../metadata/metadata.html) object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs retrieving the [Metadata](../metadata/metadata.html). Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 
 __Quick Example__
@@ -134,7 +134,7 @@ __Parameters:__
 - __parent__ - The parent directory to which to move the directory. _(DirectoryEntry)_
 - __newName__ - The new name of the directory. Defaults to the current name if unspecified. _(DOMString)_
 - __successCallback__ - A callback that is called with the DirectoryEntry object of the new directory. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to move the directory.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to move the directory.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 
 __Quick Example__
@@ -172,7 +172,7 @@ __Parameters:__
 - __parent__ - The parent directory to which to copy the directory. _(DirectoryEntry)_
 - __newName__ - The new name of the directory. Defaults to the current name if unspecified. _(DOMString)_
 - __successCallback__ - A callback that is called with the DirectoryEntry object of the new directory. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to copy the underlying directory.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to copy the underlying directory.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 
 __Quick Example__
@@ -219,7 +219,7 @@ Deletes a directory. It is an error to attempt to:
 __Parameters:__
 
 - __successCallback__ - A callback that is called after the directory has been deleted.  Invoked with no parameters. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the directory.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the directory.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -243,7 +243,7 @@ Look up the parent DirectoryEntry containing the directory.
 __Parameters:__
 
 - __successCallback__ - A callback that is called with the directory's parent DirectoryEntry. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to retrieve the parent DirectoryEntry.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to retrieve the parent DirectoryEntry.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -262,7 +262,7 @@ __Quick Example__
 createReader
 ------------
 
-Creates a new DirectoryReader to read entries in a directory.
+Creates a new [DirectoryReader](../directoryreader/directoryreader.html) to read entries in a directory.
 
 __Quick Example__
 
@@ -282,7 +282,7 @@ __Parameters:__
 - __path__ - The path to the directory to be looked up or created.  Either an absolute path, or a relative path from this DirectoryEntry. _(DOMString)_
 - __options__ - Options to specify whether the directory is created if it doesn't exist.  _(Flags)_
 - __successCallback__ - A callback that is invoked with a DirectoryEntry object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs creating or looking up the directory.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs creating or looking up the directory.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -309,8 +309,8 @@ __Parameters:__
 
 - __path__ - The path to the file to be looked up or created.  Either an absolute path, or a relative path from this DirectoryEntry. _(DOMString)_
 - __options__ - Options to specify whether the file is created if it doesn't exist.  _(Flags)_
-- __successCallback__ - A callback that is invoked with a FileEntry object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs creating or looking up the file.  Invoked with a FileError object. _(Function)_
+- __successCallback__ - A callback that is invoked with a [FileEntry](../fileentry/fileentry.html) object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs creating or looking up the file.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -338,7 +338,7 @@ be deleted.   It is an error to attempt to:
 __Parameters:__
 
 - __successCallback__ - A callback that is called after the DirectoryEntry has been deleted.  Invoked with no parameters. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the DirectoryEntry.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the DirectoryEntry.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 


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