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:28:00 UTC

[40/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.5.0/phonegap/geolocation/geolocation.clearWatch.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/geolocation/geolocation.clearWatch.md b/www/docs/en/1.5.0/phonegap/geolocation/geolocation.clearWatch.md
index 183ad85..33fade5 100644
--- a/www/docs/en/1.5.0/phonegap/geolocation/geolocation.clearWatch.md
+++ b/www/docs/en/1.5.0/phonegap/geolocation/geolocation.clearWatch.md
@@ -35,7 +35,7 @@ Parameters
 Description
 -----------
 
-Function `geolocation.clearWatch` stops watching changes to the device's location by clearing the `geolocation.watchPosition` referenced by `watchID`.
+Function `geolocation.clearWatch` stops watching changes to the device's location by clearing the `[geolocation.watchPosition](geolocation.watchPosition.html)` referenced by `watchID`.
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Options: retrieve the location every 3 seconds
@@ -58,7 +58,7 @@ Quick Example
     navigator.geolocation.clearWatch(watchID);
 
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -101,7 +101,7 @@ Full Example
             }
         }
     
-	    // onError Callback receives a PositionError object
+	    // onError Callback receives a [PositionError](PositionError/positionError.html) object
 	    //
 	    function onError(error) {
 	      alert('code: '    + error.code    + '\n' +

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/geolocation/geolocation.getCurrentPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/geolocation/geolocation.getCurrentPosition.md b/www/docs/en/1.5.0/phonegap/geolocation/geolocation.getCurrentPosition.md
index f290149..9e5c755 100644
--- a/www/docs/en/1.5.0/phonegap/geolocation/geolocation.getCurrentPosition.md
+++ b/www/docs/en/1.5.0/phonegap/geolocation/geolocation.getCurrentPosition.md
@@ -23,7 +23,7 @@ title: geolocation.getCurrentPosition
 geolocation.getCurrentPosition
 ==============================
 
-Returns the device's current position as a `Position` object.
+Returns the device's current position as a `[Position](Position/position.html)` object.
 
     navigator.geolocation.getCurrentPosition(geolocationSuccess, 
                                              [geolocationError], 
@@ -39,7 +39,7 @@ Parameters
 Description
 -----------
 
-Function `geolocation.getCurrentPosition` is an asynchronous function. It returns the device's current position to the `geolocationSuccess` callback with a `Position` object as the parameter.  If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.
+Function `geolocation.getCurrentPosition` is an asynchronous function. It returns the device's current position to the `[geolocationSuccess](parameters/geolocationSuccess.html)` callback with a `[Position](Position/position.html)` object as the parameter.  If there is an error, the `[geolocationError](parameters/geolocationError.html)` callback is invoked with a `[PositionError](PositionError/positionError.html)` object.
 
 
 Supported Platforms
@@ -51,7 +51,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -78,7 +78,7 @@ Quick Example
 
     navigator.geolocation.getCurrentPosition(onSuccess, onError);
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -113,7 +113,7 @@ Full Example
                                 'Timestamp: '          + new Date(position.timestamp)          + '<br />';
         }
     
-	    // onError Callback receives a PositionError object
+	    // onError Callback receives a [PositionError](PositionError/positionError.html) object
 	    //
 	    function onError(error) {
 	        alert('code: '    + error.code    + '\n' +

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/geolocation/geolocation.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/geolocation/geolocation.md b/www/docs/en/1.5.0/phonegap/geolocation/geolocation.md
index 5216bcd..5dd0de5 100644
--- a/www/docs/en/1.5.0/phonegap/geolocation/geolocation.md
+++ b/www/docs/en/1.5.0/phonegap/geolocation/geolocation.md
@@ -32,21 +32,21 @@ This API is based on the [W3C Geo location API Specification](http://dev.w3.org/
 Methods
 -------
 
-- geolocation.getCurrentPosition
-- geolocation.watchPosition
-- geolocation.clearWatch
+- [geolocation.getCurrentPosition](geolocation.getCurrentPosition.html)
+- [geolocation.watchPosition](geolocation.watchPosition.html)
+- [geolocation.clearWatch](geolocation.clearWatch.html)
 
 
 Arguments
 ---------
 
-- geolocationSuccess
-- geolocationError
-- geolocationOptions
+- [geolocationSuccess](parameters/geolocationSuccess.html)
+- [geolocationError](parameters/geolocationError.html)
+- [geolocationOptions](parameters/geolocation.options.html)
 
 Objects (Read-Only)
 -------------------
 
-- Position
-- PositionError
-- Coordinates
+- [Position](Position/position.html)
+- [PositionError](PositionError/positionError.html)
+- [Coordinates](Coordinates/coordinates.html)

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/geolocation/geolocation.watchPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/geolocation/geolocation.watchPosition.md b/www/docs/en/1.5.0/phonegap/geolocation/geolocation.watchPosition.md
index 2a72277..a6d2ff4 100644
--- a/www/docs/en/1.5.0/phonegap/geolocation/geolocation.watchPosition.md
+++ b/www/docs/en/1.5.0/phonegap/geolocation/geolocation.watchPosition.md
@@ -39,12 +39,12 @@ Parameters
 Returns
 -------
 
-- __String__: returns a watch id that references the watch position interval. The watch id can be used with `geolocation.clearWatch` to stop watching for changes in position.
+- __String__: returns a watch id that references the watch position interval. The watch id can be used with `[geolocation.clearWatch](geolocation.clearWatch.html)` to stop watching for changes in position.
 
 Description
 -----------
 
-Function `geolocation.watchPosition` is an asynchronous function. It returns the device's current position when a change in position has been detected.  When the device has retrieved a new location, the `geolocationSuccess` callback is invoked with a `Position` object as the parameter.  If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.
+Function `geolocation.watchPosition` is an asynchronous function. It returns the device's current position when a change in position has been detected.  When the device has retrieved a new location, the `[geolocationSuccess](parameters/geolocationSuccess.html)` callback is invoked with a `[Position](Position/position.html)` object as the parameter.  If there is an error, the `[geolocationError](parameters/geolocationError.html)` callback is invoked with a `[PositionError](PositionError/positionError.html)` object.
 
 Supported Platforms
 -------------------
@@ -55,7 +55,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -81,7 +81,7 @@ Quick Example
     var watchID = navigator.geolocation.watchPosition(onSuccess, onError, { frequency: 3000 });
     
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -115,7 +115,7 @@ Full Example
                                 '<hr />'      + element.innerHTML;
         }
     
-	    // onError Callback receives a PositionError object
+	    // onError Callback receives a [PositionError](PositionError/positionError.html) object
 	    //
 	    function onError(error) {
 	        alert('code: '    + error.code    + '\n' +

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocation.options.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocation.options.md b/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocation.options.md
index 9a9b424..e269e07 100644
--- a/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocation.options.md
+++ b/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocation.options.md
@@ -32,7 +32,7 @@ Options
 
 - __frequency:__ How often to retrieve the position in milliseconds. This option is not part of the W3C spec and will be removed in the future. maximumAge should be used instead. _(Number)_ (Default: 10000)
 - __enableHighAccuracy:__ Provides a hint that the application would like to receive the best possible results. _(Boolean)_
-- __timeout:__ The maximum length of time (msec) that is allowed to pass from the call to `geolocation.getCurrentPosition` or `geolocation.watchPosition` until the corresponding `geolocationSuccess` callback is invoked. _(Number)_
+- __timeout:__ The maximum length of time (msec) that is allowed to pass from the call to `[geolocation.getCurrentPosition](../geolocation.getCurrentPosition.html)` or `[geolocation.watchPosition](../geolocation.watchPosition.html)` until the corresponding `[geolocationSuccess](geolocationSuccess.html)` callback is invoked. _(Number)_
 - __maximumAge:__ Accept a cached position whose age is no greater than the specified time in milliseconds. _(Number)_
 
 Android Quirks

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationError.md b/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationError.md
index 1cc1d9e..665914a 100644
--- a/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationError.md
+++ b/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationError.md
@@ -32,4 +32,4 @@ The user's callback function that is called when there is an error for geolocati
 Parameters
 ----------
 
-- __error:__ The error returned by the device. (`PositionError`)
+- __error:__ The error returned by the device. (`[PositionError](../PositionError/positionError.html)`)

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationSuccess.md b/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationSuccess.md
index e7ec945..d2ce3d6 100644
--- a/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationSuccess.md
+++ b/www/docs/en/1.5.0/phonegap/geolocation/parameters/geolocationSuccess.md
@@ -32,9 +32,9 @@ The user's callback function that is called when a geolocation position is avail
 Parameters
 ----------
 
-- __position:__ The geolocation position returned by the device. (`Position`)
+- __position:__ The geolocation position returned by the device. (`[Position](../Position/position.html)`)
 
-Example
+[Example](../../storage/storage.opendatabase.html)
 -------
 
     function geolocationSuccess(position) {

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/MediaError/mediaError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/MediaError/mediaError.md b/www/docs/en/1.5.0/phonegap/media/MediaError/mediaError.md
index eb754bf..77e8375 100644
--- a/www/docs/en/1.5.0/phonegap/media/MediaError/mediaError.md
+++ b/www/docs/en/1.5.0/phonegap/media/MediaError/mediaError.md
@@ -23,7 +23,7 @@ title: MediaError
 MediaError
 ==========
 
-A `MediaError` object is returned to the `mediaError` callback function when an error occurs.
+A `MediaError` object is returned to the `[mediaError](../Parameters/mediaError.html)` callback function when an error occurs.
 
 Properties
 ----------
@@ -43,5 +43,5 @@ Constants
 Description
 -----------
 
-The `MediaError` object is returned to the user through the `mediaError` callback function when an error occurs.
+The `MediaError` object is returned to the user through the `[mediaError](../Parameters/mediaError.html)` callback function when an error occurs.
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/Parameters/mediaError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/Parameters/mediaError.md b/www/docs/en/1.5.0/phonegap/media/Parameters/mediaError.md
index 8132ca0..d4d330b 100644
--- a/www/docs/en/1.5.0/phonegap/media/Parameters/mediaError.md
+++ b/www/docs/en/1.5.0/phonegap/media/Parameters/mediaError.md
@@ -32,4 +32,4 @@ A user specified callback function that is invoked when there is an error in med
 Parameters
 ----------
 
-- __error:__ The error returned by the device. (`MediaError`)
+- __error:__ The error returned by the device. (`[MediaError](../MediaError/mediaError.html)`)

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/CaptureCB.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/CaptureCB.md b/www/docs/en/1.5.0/phonegap/media/capture/CaptureCB.md
index 4388e48..d0d3154 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/CaptureCB.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/CaptureCB.md
@@ -32,9 +32,9 @@ Description
 
 This function is invoked after a successful capture operation has completed.  This means a media file has been captured, and either the user has exited the media capture application, or the capture limit has been reached.
 
-Each MediaFile object describes a captured media file.  
+Each [MediaFile](MediaFile.html) object describes a captured media file.  
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // capture callback

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/CaptureError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/CaptureError.md b/www/docs/en/1.5.0/phonegap/media/capture/CaptureError.md
index b41213d..884c309 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/CaptureError.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/CaptureError.md
@@ -33,8 +33,8 @@ Properties
 Constants
 ---------
 
-- CaptureError.`CAPTURE_INTERNAL_ERR`: Camera or microphone failed to capture image or sound. 
-- CaptureError.`CAPTURE_APPLICATION_BUSY`: Camera application or audio capture application is currently serving other capture request.
+- CaptureError.`CAPTURE_INTERNAL_ERR`: [Camera](../../camera/camera.html) or microphone failed to capture image or sound. 
+- CaptureError.`CAPTURE_APPLICATION_BUSY`: [Camera](../../camera/camera.html) application or audio capture application is currently serving other capture request.
 - CaptureError.`CAPTURE_INVALID_ARGUMENT`: Invalid use of the API (e.g. limit parameter has value less than one).
 - CaptureError.`CAPTURE_NO_MEDIA_FILES`: User exited camera application or audio capture application before capturing anything.
 - CaptureError.`CAPTURE_NOT_SUPPORTED`: The requested capture operation is not supported.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/CaptureErrorCB.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/CaptureErrorCB.md b/www/docs/en/1.5.0/phonegap/media/capture/CaptureErrorCB.md
index a5ca339..37381e5 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/CaptureErrorCB.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/CaptureErrorCB.md
@@ -32,9 +32,9 @@ Description
 
 This function is invoked if an error occurs when trying to launch a media capture operation and the capture application is busy, if an error occurs while the capture operation is taking place, or if the capture operation has been canceled by the user before any media files have been captured.
 
-This function is invoked with a CaptureError object containing an appropriate error code.
+This function is invoked with a [CaptureError](CaptureError.html) object containing an appropriate error code.
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // capture error callback

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/ConfigurationData.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/ConfigurationData.md b/www/docs/en/1.5.0/phonegap/media/capture/ConfigurationData.md
index 373a8fd..7459960 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/ConfigurationData.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/ConfigurationData.md
@@ -45,7 +45,7 @@ Properties
 - __height:__ The height of the image or video in pixels.  In the case of a sound clip, this attribute has value 0. (Number)
 - __width:__ The width of the image or video in pixels.  In the case of a sound clip, this attribute has value 0. (Number)
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // retrieve supported image modes

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.getFormatData.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.getFormatData.md b/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.getFormatData.md
index 9ed744f..559e0d7 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.getFormatData.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.getFormatData.md
@@ -20,7 +20,7 @@ license: >
 title: MediaFile.getFormatData
 ---
 
-MediaFile.getFormatData
+[MediaFile](MediaFile.html).getFormatData
 =======================
 
 > Retrieves format information about the media capture file.
@@ -33,7 +33,7 @@ MediaFile.getFormatData
 Description
 -----------
 
-This function asynchronously attempts to retrieve the format information for the media file.  If successful, it invokes the MediaFileDataSuccessCB callback with a MediaFileData object.  If the attempt fails, this function will invoke the MediaFileDataErrorCB callback.
+This function asynchronously attempts to retrieve the format information for the media file.  If successful, it invokes the MediaFileDataSuccessCB callback with a [MediaFileData](MediaFileData.html) object.  If the attempt fails, this function will invoke the MediaFileDataErrorCB callback.
 
 Supported Platforms
 -------------------
@@ -45,12 +45,12 @@ Supported Platforms
 
 BlackBerry WebWorks Quirks
 --------------------------
-There is no API that provides format information of media files.  Therefore, all MediaFileData objects will be returned with default values.  See MediaFileData documentation.
+There is no API that provides format information of media files.  Therefore, all [MediaFileData](MediaFileData.html) objects will be returned with default values.  See [MediaFileData](MediaFileData.html) documentation.
 
 Android Quirks
 --------------
-The API for retrieving media file format information is limited.  Therefore, not all MediaFileData properties are supported.  See MediaFileData documentation.
+The API for retrieving media file format information is limited.  Therefore, not all [MediaFileData](MediaFileData.html) properties are supported.  See [MediaFileData](MediaFileData.html) documentation.
 
 iOS Quirks
 ----------
-The API for retrieving media file format information is limited.  Therefore, not all MediaFileData properties are supported.  See MediaFileData documentation.
\ No newline at end of file
+The API for retrieving media file format information is limited.  Therefore, not all [MediaFileData](MediaFileData.html) properties are supported.  See [MediaFileData](MediaFileData.html) documentation.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.md b/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.md
index 969567f..4d8c8a5 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/MediaFile.md
@@ -28,11 +28,11 @@ MediaFile
 Properties
 ----------
 
-- __name:__ The name of the file, without path information. (DOMString)
-- __fullPath:__ The full path of the file, including the name. (DOMString)
+- __name:__ The [name](../../storage/parameters/name.html) of the file, without path information. (DOMString)
+- __fullPath:__ The full path of the file, including the [name](../../storage/parameters/name.html). (DOMString)
 - __type:__ The mime type (DOMString)
 - __lastModifiedDate:__ The date and time that the file was last modified. (Date)
-- __size:__ The size of the file, in bytes. (Number)
+- __size:__ The [size](../../storage/parameters/size.html) of the file, in bytes. (Number)
 
 Methods
 -------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/MediaFileData.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/MediaFileData.md b/www/docs/en/1.5.0/phonegap/media/capture/MediaFileData.md
index 7f20b3f..b0cf847 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/MediaFileData.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/MediaFileData.md
@@ -36,7 +36,7 @@ Properties
 
 BlackBerry WebWorks Quirks
 --------------------------
-There is no API that provides format information of media files.  So the MediaFileData object returned by the MediaFile.getFormatData function will have the following default values:
+There is no API that provides format information of media files.  So the MediaFileData object returned by the [MediaFile.getFormatData]([MediaFile](MediaFile.html).getFormatData.html) function will have the following default values:
 
 - __codecs:__ Not supported. The attribute will always be null.
 - __bitrate:__ Not supported.  The attribute will always be 0.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/capture.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/capture.md b/www/docs/en/1.5.0/phonegap/media/capture/capture.md
index a9adab1..b8130b0 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/capture.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/capture.md
@@ -29,22 +29,22 @@ Objects
 -------
 
 - Capture
-- CaptureAudioOptions
-- CaptureImageOptions
-- CaptureVideoOptions
-- CaptureCB
-- CaptureErrorCB
-- ConfigurationData
-- MediaFile
-- MediaFileData
+- [CaptureAudioOptions](captureAudioOptions.html)
+- [CaptureImageOptions](captureImageOptions.html)
+- [CaptureVideoOptions](captureVideoOptions.html)
+- [CaptureCB](CaptureCB.html)
+- [CaptureErrorCB](CaptureErrorCB.html)
+- [ConfigurationData](ConfigurationData.html)
+- [MediaFile](MediaFile.html)
+- [MediaFileData](MediaFileData.html)
 
 Methods
 -------
 
-- capture.captureAudio
-- capture.captureImage
-- capture.captureVideo
-- MediaFile.getFormatData
+- [capture.captureAudio](captureAudio.html)
+- [capture.captureImage](captureImage.html)
+- [capture.captureVideo](captureVideo.html)
+- [MediaFile.getFormatData]([MediaFile](MediaFile.html).getFormatData.html)
 
 Scope
 -----
@@ -64,9 +64,9 @@ Properties
 Methods
 -------
 
-- capture.captureAudio: Launch the device audio recording application for recording audio clip(s).
-- capture.captureImage: Launch the device camera application for taking image(s).
-- capture.captureVideo: Launch the device video recorder application for recording video(s).
+- [capture.captureAudio](captureAudio.html): Launch the device audio recording application for recording audio clip(s).
+- [capture.captureImage](captureImage.html): Launch the device camera application for taking image(s).
+- [capture.captureVideo](captureVideo.html): Launch the device video recorder application for recording video(s).
 
 
 Supported Platforms

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/captureAudio.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/captureAudio.md b/www/docs/en/1.5.0/phonegap/media/capture/captureAudio.md
index b97c25a..d89521d 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/captureAudio.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/captureAudio.md
@@ -26,7 +26,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]
+	    [CaptureCB](CaptureCB.html) captureSuccess, [CaptureErrorCB](CaptureErrorCB.html) captureError,  [CaptureAudioOptions options]
 	);
 
 Description
@@ -34,9 +34,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 [CaptureAudioOptions](captureAudioOptions.html), 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 [CaptureCB](CaptureCB.html) callback with an array of [MediaFile](MediaFile.html) objects describing each captured audio clip file.  If the operation is terminated by the user before an audio clip is captured, the [CaptureErrorCB](CaptureErrorCB.html) callback will be invoked with a [CaptureError](CaptureError.html) object with the [CaptureError](CaptureError.html).`CAPTURE_NO_MEDIA_FILES` error code.
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // capture callback
@@ -66,7 +66,7 @@ Quick Example
     // start audio capture
     navigator.device.capture.captureAudio(captureSuccess, captureError, {limit:2});
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -130,7 +130,7 @@ Full Example
 BlackBerry WebWorks Quirks
 --------------------------
 
-- PhoneGap 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.
+- PhoneGap 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](CaptureError.html).`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/c4881540/www/docs/en/1.5.0/phonegap/media/capture/captureAudioOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/captureAudioOptions.md b/www/docs/en/1.5.0/phonegap/media/capture/captureAudioOptions.md
index 8b273e5..336b0a4 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/captureAudioOptions.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/captureAudioOptions.md
@@ -32,7 +32,7 @@ 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 [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // limit capture operation to 3 media files, no longer than 10 seconds each

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/captureImage.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/captureImage.md b/www/docs/en/1.5.0/phonegap/media/capture/captureImage.md
index 739bdc2..5fbc87b 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/captureImage.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/captureImage.md
@@ -26,7 +26,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]
+	    [CaptureCB](CaptureCB.html) captureSuccess, [CaptureErrorCB](CaptureErrorCB.html) captureError, [CaptureImageOptions options]
 	);
 
 Description
@@ -34,9 +34,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 [CaptureImageOptions](captureImageOptions.html), 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 [CaptureCB](CaptureCB.html) callback with an array of [MediaFile](MediaFile.html) objects describing each captured image file.  If the operation is terminated by the user before an image is captured, the [CaptureErrorCB](CaptureErrorCB.html) callback will be invoked with a [CaptureError](CaptureError.html) object with the [CaptureError](CaptureError.html).`CAPTURE_NO_MEDIA_FILES` error code.
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // capture callback
@@ -66,7 +66,7 @@ Quick Example
     // start image capture
     navigator.device.capture.captureImage(captureSuccess, captureError, {limit:2});
 
-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.5.0/phonegap/media/capture/captureImageOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/captureImageOptions.md b/www/docs/en/1.5.0/phonegap/media/capture/captureImageOptions.md
index 13cf3c9..fff19d5 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/captureImageOptions.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/captureImageOptions.md
@@ -31,7 +31,7 @@ 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 [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // limit capture operation to 3 images
@@ -42,15 +42,15 @@ Quick Example
 Android Quirks
 --------------
 
-- The __mode__ parameter is not supported.  The image size and format cannot be altered programmatically; however, the image size can be altered by the device user.  Images are saved in JPEG format (image/jpeg).
+- The __mode__ parameter is not supported.  The image [size](../../storage/parameters/size.html) and format cannot be altered programmatically; however, the image [size](../../storage/parameters/size.html) can be altered by the device user.  Images are saved in JPEG format (image/jpeg).
 
 BlackBerry WebWorks Quirks
 --------------------------
 
-- The __mode__ parameter is not supported.  The image size and format cannot be altered programmatically; however, the image size can be altered by the device user.  Images are saved in JPEG format (image/jpeg).
+- The __mode__ parameter is not supported.  The image [size](../../storage/parameters/size.html) and format cannot be altered programmatically; however, the image [size](../../storage/parameters/size.html) can be altered by the device user.  Images are saved in JPEG format (image/jpeg).
 
 iOS Quirks
 ----------
 
 - The __limit__ parameter is not supported. One image is taken per invocation.
-- The __mode__ parameter is not supported.  The image size and format cannot be altered programmatically.  Images are saved in JPEG format (image/jpeg).
+- The __mode__ parameter is not supported.  The image [size](../../storage/parameters/size.html) and format cannot be altered programmatically.  Images are saved in JPEG format (image/jpeg).

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/capture/captureVideo.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/captureVideo.md b/www/docs/en/1.5.0/phonegap/media/capture/captureVideo.md
index e73b2c6..2b028c9 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/captureVideo.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/captureVideo.md
@@ -26,7 +26,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]
+	    [CaptureCB](CaptureCB.html) captureSuccess, [CaptureErrorCB](CaptureErrorCB.html) captureError, [CaptureVideoOptions options]
 	);
 
 Description
@@ -34,9 +34,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 [CaptureVideoOptions](captureVideoOptions.html), 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 [CaptureCB](CaptureCB.html) callback with an array of [MediaFile](MediaFile.html) objects describing each captured video clip file.  If the operation is terminated by the user before an video clip is captured, the [CaptureErrorCB](CaptureErrorCB.html) callback will be invoked with a [CaptureError](CaptureError.html) object with the [CaptureError](CaptureError.html).`CAPTURE_NO_MEDIA_FILES` error code.
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // capture callback
@@ -66,7 +66,7 @@ Quick Example
     // start video capture
     navigator.device.capture.captureVideo(captureSuccess, captureError, {limit:2});
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -130,4 +130,4 @@ Full Example
 BlackBerry WebWorks Quirks
 --------------------------
 
-- PhoneGap 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.
+- PhoneGap for BlackBerry WebWorks attempts to launch the __Video Recorder__ application, provided by RIM, to capture the video recordings.  The developer will receive a [CaptureError](CaptureError.html).`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/c4881540/www/docs/en/1.5.0/phonegap/media/capture/captureVideoOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/capture/captureVideoOptions.md b/www/docs/en/1.5.0/phonegap/media/capture/captureVideoOptions.md
index 64925d7..9dee28f 100644
--- a/www/docs/en/1.5.0/phonegap/media/capture/captureVideoOptions.md
+++ b/www/docs/en/1.5.0/phonegap/media/capture/captureVideoOptions.md
@@ -32,7 +32,7 @@ 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 [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // limit capture operation to 3 video clips
@@ -44,19 +44,19 @@ Android Quirks
 --------------
 
 - The __duration__ parameter is not supported.  Recording lengths cannot be limited programmatically.
-- The __mode__ parameter is not supported.  The video size and format cannot be altered programmatically; however, these parameters can be changed by the device user. By default, videos are recorded in 3GPP (video/3gpp) format.
+- The __mode__ parameter is not supported.  The video [size](../../storage/parameters/size.html) and format cannot be altered programmatically; however, these parameters can be changed by the device user. By default, videos are recorded in 3GPP (video/3gpp) format.
 
 
 BlackBerry WebWorks Quirks
 --------------------------
 
 - The __duration__ parameter is not supported.  Recording lengths cannot be limited programmatically.
-- The __mode__ parameter is not supported.  The video size and format cannot be altered programmatically; however, these parameters can be changed by the device user. By default, videos are recorded in 3GPP (video/3gpp) format.
+- The __mode__ parameter is not supported.  The video [size](../../storage/parameters/size.html) and format cannot be altered programmatically; however, these parameters can be changed by the device user. By default, videos are recorded in 3GPP (video/3gpp) format.
 
 iOS Quirks
 ----------
 
 - The __limit__ parameter is not supported.  One video is recorded per invocation.
 - The __duration__ parameter is not supported.  Recording lengths cannot be limited programmatically.
-- The __mode__ parameter is not supported.  The video size and format cannot be altered programmatically. By default, videos are recorded in MOV (video/quicktime) format.
+- The __mode__ parameter is not supported.  The video [size](../../storage/parameters/size.html) and format cannot be altered programmatically. By default, videos are recorded in MOV (video/quicktime) format.
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/media.getCurrentPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.getCurrentPosition.md b/www/docs/en/1.5.0/phonegap/media/media.getCurrentPosition.md
index dcabbf9..86242df 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.getCurrentPosition.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.getCurrentPosition.md
@@ -36,7 +36,7 @@ Parameters
 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.getCurrentPosition` is an asynchronous function that returns the current position of the underlying audio file of a [Media](media.html) object. Also updates the ___position__ parameter within the [Media](media.html) object. 
 
 Supported Platforms
 -------------------
@@ -45,7 +45,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
         // Audio player
@@ -70,7 +70,7 @@ Quick Example
         }, 1000);
 
 
-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.5.0/phonegap/media/media.getDuration.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.getDuration.md b/www/docs/en/1.5.0/phonegap/media/media.getDuration.md
index 1cf3d91..4ad8749 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.getDuration.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.getDuration.md
@@ -40,7 +40,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
         // Audio player
@@ -62,7 +62,7 @@ Quick Example
        }, 100);
 
 
-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.5.0/phonegap/media/media.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.md b/www/docs/en/1.5.0/phonegap/media/media.md
index a357e22..aee72f7 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.md
@@ -41,15 +41,15 @@ Parameters
 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.getCurrentPosition](media.getCurrentPosition.html): Returns the current position within an audio file.
+- [media.getDuration](media.getDuration.html): Returns the duration of an audio file.
+- [media.play](media.play.html): Start or [resume](../events/events.resume.html) playing audio file.
+- [media.pause](media.pause.html): Pause playing audio file.
+- [media.release](media.release.html): Releases the underlying OS'es audio resources.
+- [media.seekTo](media.seekTo.html): Moves the position within the audio file.
+- [media.startRecord](media.startRecord.html): Start recording audio file.
+- [media.stopRecord](media.stopRecord.html): Stop recording audio file.
+- [media.stop](media.stop.html): Stop playing audio file.
 
 Additional ReadOnly Parameters
 ---------------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/media.pause.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.pause.md b/www/docs/en/1.5.0/phonegap/media/media.pause.md
index 2be41cd..dcd30d6 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.pause.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.pause.md
@@ -40,7 +40,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Play audio
@@ -67,7 +67,7 @@ Quick Example
     }
 
 
-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.5.0/phonegap/media/media.play.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.play.md b/www/docs/en/1.5.0/phonegap/media/media.play.md
index b1f51a4..9a8f942 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.play.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.play.md
@@ -40,7 +40,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Play audio
@@ -62,7 +62,7 @@ Quick Example
     }
 
 
-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.5.0/phonegap/media/media.release.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.release.md b/www/docs/en/1.5.0/phonegap/media/media.release.md
index c635f98..820ab45 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.release.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.release.md
@@ -31,7 +31,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 [Media](media.html) resource.
 
 Supported Platforms
 -------------------
@@ -40,7 +40,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
         // Audio player
@@ -51,7 +51,7 @@ Quick Example
         my_media.stop();
         my_media.release();
 
-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.5.0/phonegap/media/media.seekTo.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.seekTo.md b/www/docs/en/1.5.0/phonegap/media/media.seekTo.md
index f7e3af3..227f6a0 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.seekTo.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.seekTo.md
@@ -36,7 +36,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 [Media](media.html) object. Also updates the ___position__ parameter within the [Media](media.html) object. 
 
 Supported Platforms
 -------------------
@@ -45,7 +45,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
         // Audio player
@@ -58,7 +58,7 @@ Quick Example
         }, 5000);
 
 
-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.5.0/phonegap/media/media.startRecord.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.startRecord.md b/www/docs/en/1.5.0/phonegap/media/media.startRecord.md
index 2d3a925..c416fb9 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.startRecord.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.startRecord.md
@@ -40,7 +40,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Record audio
@@ -63,7 +63,7 @@ Quick Example
     }
 
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -136,4 +136,4 @@ Full Example
 iOS Quirks
 ----------
 
-- The file to record to must already exist and should be of type .wav. The File API's can be used to create the file.
+- The file to record to must already exist and should be of type .wav. The [File](../file/fileobj/fileobj.html) API's can be used to create the file.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/media/media.stop.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.stop.md b/www/docs/en/1.5.0/phonegap/media/media.stop.md
index 4aa29d7..772cc14 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.stop.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.stop.md
@@ -40,7 +40,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Play audio
@@ -66,7 +66,7 @@ Quick Example
         }, 10000);        
     }
 
-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.5.0/phonegap/media/media.stopRecord.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/media/media.stopRecord.md b/www/docs/en/1.5.0/phonegap/media/media.stopRecord.md
index cec511f..df98226 100644
--- a/www/docs/en/1.5.0/phonegap/media/media.stopRecord.md
+++ b/www/docs/en/1.5.0/phonegap/media/media.stopRecord.md
@@ -40,7 +40,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Record audio
@@ -68,7 +68,7 @@ Quick Example
     }
 
 
-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.5.0/phonegap/notification/notification.alert.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/notification/notification.alert.md b/www/docs/en/1.5.0/phonegap/notification/notification.alert.md
index 705b97b..3d6ea80 100644
--- a/www/docs/en/1.5.0/phonegap/notification/notification.alert.md
+++ b/www/docs/en/1.5.0/phonegap/notification/notification.alert.md
@@ -30,7 +30,7 @@ Shows a custom alert or dialog box.
 - __message:__ Dialog message (`String`)
 - __alertCallback:__ Callback to invoke when alert dialog is dismissed. (`Function`)
 - __title:__ Dialog title (`String`) (Optional, Default: "Alert")
-- __buttonName:__ Button name (`String`) (Optional, Default: "OK")
+- __buttonName:__ Button [name](../storage/parameters/name.html) (`String`) (Optional, Default: "OK")
     
 Description
 -----------
@@ -46,7 +46,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Android / BlackBerry WebWorks (OS 5.0 and higher) / iPhone
@@ -66,7 +66,7 @@ Quick Example
     //
     navigator.notification.alert('You are the winner!');
         
-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.5.0/phonegap/notification/notification.beep.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/notification/notification.beep.md b/www/docs/en/1.5.0/phonegap/notification/notification.beep.md
index 10a2f2d..0eaf8b2 100644
--- a/www/docs/en/1.5.0/phonegap/notification/notification.beep.md
+++ b/www/docs/en/1.5.0/phonegap/notification/notification.beep.md
@@ -38,13 +38,13 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Beep twice!
     navigator.notification.beep(2);
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -99,7 +99,7 @@ Full Example
 Android Quirks
 --------------
 
-- Android plays the default "Notification ringtone" specified under the "Settings/Sound & Display" panel.
+- Android plays the default "[Notification](notification.html) ringtone" specified under the "Settings/Sound & Display" panel.
 
 iPhone Quirks
 -------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/notification/notification.confirm.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/notification/notification.confirm.md b/www/docs/en/1.5.0/phonegap/notification/notification.confirm.md
index 4e0bd1a..189b202 100644
--- a/www/docs/en/1.5.0/phonegap/notification/notification.confirm.md
+++ b/www/docs/en/1.5.0/phonegap/notification/notification.confirm.md
@@ -45,7 +45,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 	// process the confirmation dialog result
@@ -64,7 +64,7 @@ Quick Example
         );
     }
         
-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.5.0/phonegap/notification/notification.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/notification/notification.md b/www/docs/en/1.5.0/phonegap/notification/notification.md
index f144c4d..3ab3d91 100644
--- a/www/docs/en/1.5.0/phonegap/notification/notification.md
+++ b/www/docs/en/1.5.0/phonegap/notification/notification.md
@@ -28,7 +28,7 @@ Notification
 Methods
 -------
 
-- notification.alert
-- notification.confirm
-- notification.beep
-- notification.vibrate
\ No newline at end of file
+- [notification.alert](notification.alert.html)
+- [notification.confirm](notification.confirm.html)
+- [notification.beep](notification.beep.html)
+- [notification.vibrate](notification.vibrate.html)
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/notification/notification.vibrate.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/notification/notification.vibrate.md b/www/docs/en/1.5.0/phonegap/notification/notification.vibrate.md
index 9df3e74..6a99946 100644
--- a/www/docs/en/1.5.0/phonegap/notification/notification.vibrate.md
+++ b/www/docs/en/1.5.0/phonegap/notification/notification.vibrate.md
@@ -38,14 +38,14 @@ Supported Platforms
 - iPhone
 - Windows Phone 7
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Vibrate for 2.5 seconds
     //
     navigator.notification.vibrate(2500);
 
-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.5.0/phonegap/storage/database/database.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/storage/database/database.md b/www/docs/en/1.5.0/phonegap/storage/database/database.md
index cf7ec84..e765c56 100644
--- a/www/docs/en/1.5.0/phonegap/storage/database/database.md
+++ b/www/docs/en/1.5.0/phonegap/storage/database/database.md
@@ -29,7 +29,7 @@ Methods
 -------
 
 - __transaction__: Runs a database transaction. 
-- __changeVersion__: method allows scripts to atomically verify the version number and change it at the same time as doing a schema update. 
+- __changeVersion__: method allows scripts to atomically verify the [version](../parameters/version.html) number and change it at the same time as doing a schema update. 
 
 Details
 -------
@@ -43,7 +43,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 6.0 and higher)
 - iPhone
 
-Transaction Quick Example
+Transaction Quick [Example](../storage.opendatabase.html)
 ------------------
 	function populateDB(tx) {
 		 tx.executeSql('DROP TABLE IF EXISTS DEMO');
@@ -63,13 +63,13 @@ Transaction Quick Example
 	var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
 	db.transaction(populateDB, errorCB, successCB);
 
-Change Version Quick Example
+Change Version Quick [Example](../storage.opendatabase.html)
 -------------------
 
 	var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
 	db.changeVersion("1.0", "1.1");
 
-Full Example
+Full [Example](../storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/storage/localstorage/localstorage.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/storage/localstorage/localstorage.md b/www/docs/en/1.5.0/phonegap/storage/localstorage/localstorage.md
index a7c6dfa..468486e 100644
--- a/www/docs/en/1.5.0/phonegap/storage/localstorage/localstorage.md
+++ b/www/docs/en/1.5.0/phonegap/storage/localstorage/localstorage.md
@@ -23,14 +23,14 @@ title: localStorage
 localStorage
 ===============
 
-Provides access to a W3C Storage interface (http://dev.w3.org/html5/webstorage/#the-localstorage-attribute)
+Provides access to a W3C [Storage](../storage.html) interface (http://dev.w3.org/html5/webstorage/#the-localstorage-attribute)
 
     var storage = window.localStorage;
 
 Methods
 -------
 
-- __key__: Returns the name of the key at the position specified. 
+- __key__: Returns the [name](../parameters/name.html) of the key at the position specified. 
 - __getItem__: Returns the item identified by it's key.
 - __setItem__: Saves and item at the key provided.
 - __removeItem__: Removes the item identified by it's key.
@@ -39,7 +39,7 @@ Methods
 Details
 -----------
 
-localStorage provides an interface to a W3C Storage interface.  It allows one to save data as key-value pairs.
+localStorage provides an interface to a W3C [Storage](../storage.html) interface.  It allows one to save data as key-value pairs.
 
 Supported Platforms
 -------------------
@@ -48,33 +48,33 @@ Supported Platforms
 - BlackBerry WebWorks (OS 6.0 and higher)
 - iPhone
 
-Key Quick Example
+Key Quick [Example](../storage.opendatabase.html)
 -------------
 
     var keyName = window.localStorage.key(0);
 
-Set Item Quick Example
+Set Item Quick [Example](../storage.opendatabase.html)
 -------------
 
     window.localStorage.setItem("key", "value");
 
-Get Item Quick Example
+Get Item Quick [Example](../storage.opendatabase.html)
 -------------
 
 	var value = window.localStorage.getItem("key");
 	// value is now equal to "value"
 
-Remove Item Quick Example
+Remove Item Quick [Example](../storage.opendatabase.html)
 -------------
 
 	window.localStorage.removeItem("key");
 
-Clear Quick Example
+Clear Quick [Example](../storage.opendatabase.html)
 -------------
 
 	window.localStorage.clear();
 
-Full Example
+Full [Example](../storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/storage/parameters/display_name.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/storage/parameters/display_name.md b/www/docs/en/1.5.0/phonegap/storage/parameters/display_name.md
index b26e5f9..4e50843 100644
--- a/www/docs/en/1.5.0/phonegap/storage/parameters/display_name.md
+++ b/www/docs/en/1.5.0/phonegap/storage/parameters/display_name.md
@@ -23,4 +23,4 @@ title: display_name
 display_name
 ==================
 
-The display name of the database.
\ No newline at end of file
+The display [name](name.html) of the database.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/storage/sqlresultset/sqlresultset.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/storage/sqlresultset/sqlresultset.md b/www/docs/en/1.5.0/phonegap/storage/sqlresultset/sqlresultset.md
index baf32b0..fd63137 100644
--- a/www/docs/en/1.5.0/phonegap/storage/sqlresultset/sqlresultset.md
+++ b/www/docs/en/1.5.0/phonegap/storage/sqlresultset/sqlresultset.md
@@ -23,7 +23,7 @@ title: SQLResultSet
 SQLResultSet
 =======
 
-When the executeSql method of a SQLTransaction is called it will invoke it's callback with a SQLResultSet.
+When the executeSql method of a [SQLTransaction](../sqltransaction/sqltransaction.html) is called it will invoke it's callback with a SQLResultSet.
 
 Properties
 -------
@@ -35,7 +35,7 @@ Properties
 Details
 -------
 
-When you call the SQLTransaction executeSql method it's callback methods will be called with a SQLResultSet object.  The result object has three properties.  The first is the `insertId` which will return the row number of a success SQL insert statement.  If the SQL statement is not an insert then the `insertId` is not set.  The `rowAffected` is always 0 for a SQL select statement.  For insert or update statements it returns the number of rows that have been modified.  The final property is of type SQLResultSetList and it contains the data returned from a SQL select statement.
+When you call the [SQLTransaction](../sqltransaction/sqltransaction.html) executeSql method it's callback methods will be called with a SQLResultSet object.  The result object has three properties.  The first is the `insertId` which will return the row number of a success SQL insert statement.  If the SQL statement is not an insert then the `insertId` is not set.  The `rowAffected` is always 0 for a SQL select statement.  For insert or update statements it returns the number of rows that have been modified.  The final property is of type [SQLResultSetList](../sqlresultsetlist/sqlresultsetlist.html) and it contains the data returned from a SQL select statement.
 
 Supported Platforms
 -------------------
@@ -44,7 +44,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 6.0 and higher)
 - iPhone
 
-Execute SQL Quick Example
+Execute SQL Quick [Example](../storage.opendatabase.html)
 ------------------
 
 	function queryDB(tx) {
@@ -64,10 +64,10 @@ Execute SQL Quick Example
 		alert("Error processing SQL: "+err.code);
 	}
 	
-	var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
+	var db = window.openDatabase("[Database](../database/database.html)", "1.0", "PhoneGap Demo", 200000);
 	db.transaction(queryDB, errorCB);
 
-Full Example
+Full [Example](../storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -117,14 +117,14 @@ Full Example
 		// Transaction success callback
 		//
 		function successCB() {
-			var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
+			var db = window.openDatabase("[Database](../database/database.html)", "1.0", "PhoneGap Demo", 200000);
 			db.transaction(queryDB, errorCB);
 		}
 
 		// PhoneGap is ready
 		//
 		function onDeviceReady() {
-			var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
+			var db = window.openDatabase("[Database](../database/database.html)", "1.0", "PhoneGap Demo", 200000);
 			db.transaction(populateDB, errorCB, successCB);
 		}
 	

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/storage/sqlresultsetlist/sqlresultsetlist.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/storage/sqlresultsetlist/sqlresultsetlist.md b/www/docs/en/1.5.0/phonegap/storage/sqlresultsetlist/sqlresultsetlist.md
index 02bfe87..368cae2 100644
--- a/www/docs/en/1.5.0/phonegap/storage/sqlresultsetlist/sqlresultsetlist.md
+++ b/www/docs/en/1.5.0/phonegap/storage/sqlresultsetlist/sqlresultsetlist.md
@@ -23,7 +23,7 @@ title: SQLResultSetList
 SQLResultSetList
 =======
 
-One of the properties of the SQLResultSet containing the rows returned from a SQL query.
+One of the properties of the [SQLResultSet](../sqlresultset/sqlresultset.html) containing the rows returned from a SQL query.
 
 Properties
 -------
@@ -47,7 +47,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 6.0 and higher)
 - iPhone
 
-Execute SQL Quick Example
+Execute SQL Quick [Example](../storage.opendatabase.html)
 ------------------
 
 	function queryDB(tx) {
@@ -66,10 +66,10 @@ Execute SQL Quick Example
 		alert("Error processing SQL: "+err.code);
 	}
 
-	var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
+	var db = window.openDatabase("[Database](../database/database.html)", "1.0", "PhoneGap Demo", 200000);
 	db.transaction(queryDB, errorCB);
 
-Full Example
+Full [Example](../storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -118,14 +118,14 @@ Full Example
 		// Transaction success callback
 		//
 		function successCB() {
-			var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
+			var db = window.openDatabase("[Database](../database/database.html)", "1.0", "PhoneGap Demo", 200000);
 			db.transaction(queryDB, errorCB);
 		}
 
 		// PhoneGap is ready
 		//
 		function onDeviceReady() {
-			var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
+			var db = window.openDatabase("[Database](../database/database.html)", "1.0", "PhoneGap Demo", 200000);
 			db.transaction(populateDB, errorCB, successCB);
 		}
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/storage/sqltransaction/sqltransaction.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/storage/sqltransaction/sqltransaction.md b/www/docs/en/1.5.0/phonegap/storage/sqltransaction/sqltransaction.md
index dca7675..d4c7491 100644
--- a/www/docs/en/1.5.0/phonegap/storage/sqltransaction/sqltransaction.md
+++ b/www/docs/en/1.5.0/phonegap/storage/sqltransaction/sqltransaction.md
@@ -23,7 +23,7 @@ title: SQLTransaction
 SQLTransaction
 =======
 
-Contains methods that allow the user to execute SQL statements against the Database.
+Contains methods that allow the user to execute SQL statements against the [Database](../database/database.html).
 
 Methods
 -------
@@ -33,7 +33,7 @@ Methods
 Details
 -------
 
-When you call a Database objects transaction method it's callback methods will be called with a SQLTransaction object.  The user can build up a database transaction by calling the executeSql method multiple times.  
+When you call a [Database](../database/database.html) objects transaction method it's callback methods will be called with a SQLTransaction object.  The user can build up a database transaction by calling the executeSql method multiple times.  
 
 Supported Platforms
 -------------------
@@ -42,7 +42,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 6.0 and higher)
 - iPhone
 
-Execute SQL Quick Example
+Execute SQL Quick [Example](../storage.opendatabase.html)
 ------------------
 
 	function populateDB(tx) {
@@ -60,10 +60,10 @@ Execute SQL Quick Example
 		alert("success!");
 	}
 	
-	var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
+	var db = window.openDatabase("[Database](../database/database.html)", "1.0", "PhoneGap Demo", 200000);
 	db.transaction(populateDB, errorCB, successCB);
 
-Full Example
+Full [Example](../storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -81,7 +81,7 @@ Full Example
         // PhoneGap is ready
         //
         function onDeviceReady() {
-			var db = window.openDatabase("Database", "1.0", "PhoneGap Demo", 200000);
+			var db = window.openDatabase("[Database](../database/database.html)", "1.0", "PhoneGap Demo", 200000);
 			db.transaction(populateDB, errorCB, successCB);
         }
 		

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

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.5.0/phonegap/storage/storage.opendatabase.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/storage/storage.opendatabase.md b/www/docs/en/1.5.0/phonegap/storage/storage.opendatabase.md
index f6d98ed..da9d177 100644
--- a/www/docs/en/1.5.0/phonegap/storage/storage.opendatabase.md
+++ b/www/docs/en/1.5.0/phonegap/storage/storage.opendatabase.md
@@ -23,16 +23,16 @@ title: openDatabase
 openDatabase
 ===============
 
-Returns a new Database object.
+Returns a new [Database](database/database.html) object.
 
     var dbShell = window.openDatabase(name, version, display_name, size);
 
 Description
 -----------
 
-window.openDatabase returns a new Database object.
+window.openDatabase returns a new [Database](database/database.html) object.
 
-This method will create a new SQL Lite Database and return a Database object.  Use the Database Object to manipulate the data.
+This method will create a new SQL Lite [Database](database/database.html) and return a [Database](database/database.html) object.  Use the [Database](database/database.html) Object to manipulate the data.
 
 Supported Platforms
 -------------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.6.0/cordova/accelerometer/acceleration/acceleration.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.6.0/cordova/accelerometer/acceleration/acceleration.md b/www/docs/en/1.6.0/cordova/accelerometer/acceleration/acceleration.md
index f784855..c9d7d77 100644
--- a/www/docs/en/1.6.0/cordova/accelerometer/acceleration/acceleration.md
+++ b/www/docs/en/1.6.0/cordova/accelerometer/acceleration/acceleration.md
@@ -23,7 +23,7 @@ title: Acceleration
 Acceleration
 ============
 
-Contains `Accelerometer` data captured at a specific point in time.
+Contains `[Accelerometer](../accelerometer.html)` data captured at a specific point in time.
 
 Properties
 ----------
@@ -36,7 +36,7 @@ Properties
 Description
 -----------
 
-This object is created and populated by Cordova, and returned by an `Accelerometer` method. The x, y, z acceleration values include the effect of gravity (9.81 m/s^2), so at when a device is lying flat on a table facing up, the value returned should be x=0, y=0, z=9.81.
+This object is created and populated by Cordova, and returned by an `[Accelerometer](../accelerometer.html)` method. The x, y, z acceleration values include the effect of gravity (9.81 m/s^2), so at when a device is lying flat on a table facing up, the value returned should be x=0, y=0, z=9.81.
 
 Supported Platforms
 -------------------
@@ -46,7 +46,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 (Mango)
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     function onSuccess(acceleration) {
@@ -62,7 +62,7 @@ Quick Example
 
     navigator.accelerometer.getCurrentAcceleration(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.6.0/cordova/accelerometer/accelerometer.clearWatch.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.clearWatch.md b/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.clearWatch.md
index d367b64..4269871 100644
--- a/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.clearWatch.md
+++ b/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.clearWatch.md
@@ -23,11 +23,11 @@ title: accelerometer.clearWatch
 accelerometer.clearWatch
 ========================
 
-Stop watching the `Acceleration` referenced by the watch ID parameter.
+Stop watching the `[Acceleration](acceleration/acceleration.html)` referenced by the watch ID parameter.
 
     navigator.accelerometer.clearWatch(watchID);
 
-- __watchID__: The ID returned by `accelerometer.watchAcceleration`.
+- __watchID__: The ID returned by `[accelerometer.watchAcceleration](accelerometer.watchAcceleration.html)`.
 
 Supported Platforms
 -------------------
@@ -37,7 +37,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 (Mango)
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     var watchID = navigator.accelerometer.watchAcceleration(onSuccess, onError, options);
@@ -46,7 +46,7 @@ Quick Example
     
     navigator.accelerometer.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.6.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md b/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md
index 33defcc..8e31b56 100644
--- a/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md
+++ b/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.getCurrentAcceleration.md
@@ -32,7 +32,7 @@ Description
 
 The accelerometer is a motion sensor that detects the change (delta) in movement relative to the current device orientation. The accelerometer can detect 3D movement along the x, y, and z axis.
 
-The acceleration is returned using the `accelerometerSuccess` callback function.
+The acceleration is returned using the `[accelerometerSuccess](parameters/accelerometerSuccess.html)` callback function.
 
 Supported Platforms
 -------------------
@@ -42,7 +42,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 (Mango)
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     function onSuccess(acceleration) {
@@ -58,7 +58,7 @@ Quick Example
 
     navigator.accelerometer.getCurrentAcceleration(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.6.0/cordova/accelerometer/accelerometer.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.md b/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.md
index dbcc466..d8f2eff 100644
--- a/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.md
+++ b/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.md
@@ -28,18 +28,18 @@ Accelerometer
 Methods
 -------
 
-- accelerometer.getCurrentAcceleration
-- accelerometer.watchAcceleration
-- accelerometer.clearWatch
+- [accelerometer.getCurrentAcceleration](accelerometer.getCurrentAcceleration.html)
+- [accelerometer.watchAcceleration](accelerometer.watchAcceleration.html)
+- [accelerometer.clearWatch](accelerometer.clearWatch.html)
 
 Arguments
 ---------
 
-- accelerometerSuccess
-- accelerometerError
-- accelerometerOptions
+- [accelerometerSuccess](parameters/accelerometerSuccess.html)
+- [accelerometerError](parameters/accelerometerError.html)
+- [accelerometerOptions](parameters/accelerometerOptions.html)
 
 Objects (Read-Only)
 -------------------
 
-- Acceleration
\ No newline at end of file
+- [Acceleration](acceleration/acceleration.html)
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.watchAcceleration.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.watchAcceleration.md b/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.watchAcceleration.md
index dfe1b0a..728bf4f 100644
--- a/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.watchAcceleration.md
+++ b/www/docs/en/1.6.0/cordova/accelerometer/accelerometer.watchAcceleration.md
@@ -34,9 +34,9 @@ Description
 
 The accelerometer is a motion sensor that detects the change (delta) in movement relative to the current position. The accelerometer can detect 3D movement along the x, y, and z axis.
 
-The `accelerometer.watchAcceleration` gets the device's current acceleration at a regular interval. Each time the `Acceleration` is retrieved, the `accelerometerSuccess` callback function is executed. Specify the interval in milliseconds via the `frequency` parameter in the `acceleratorOptions` object.
+The `accelerometer.watchAcceleration` gets the device's current acceleration at a regular interval. Each time the `[Acceleration](acceleration/acceleration.html)` is retrieved, the `[accelerometerSuccess](parameters/accelerometerSuccess.html)` callback function is executed. Specify the interval in milliseconds via the `frequency` parameter in the `acceleratorOptions` object.
 
-The returned watch ID references references the accelerometer watch interval. The watch ID can be used with `accelerometer.clearWatch` to stop watching the accelerometer.
+The returned watch ID references references the accelerometer watch interval. The watch ID can be used with `[accelerometer.clearWatch](accelerometer.clearWatch.html)` to stop watching the accelerometer.
 
 Supported Platforms
 -------------------
@@ -47,7 +47,7 @@ Supported Platforms
 - Windows Phone 7 (Mango)
 
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     function onSuccess(acceleration) {
@@ -65,7 +65,7 @@ Quick Example
     
     var watchID = navigator.accelerometer.watchAcceleration(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.6.0/cordova/accelerometer/parameters/accelerometerOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.6.0/cordova/accelerometer/parameters/accelerometerOptions.md b/www/docs/en/1.6.0/cordova/accelerometer/parameters/accelerometerOptions.md
index 716c9ca..7443ca5 100644
--- a/www/docs/en/1.6.0/cordova/accelerometer/parameters/accelerometerOptions.md
+++ b/www/docs/en/1.6.0/cordova/accelerometer/parameters/accelerometerOptions.md
@@ -28,4 +28,4 @@ An optional parameter to customize the retrieval of the accelerometer.
 Options
 -------
 
-- __frequency:__ How often to retrieve the `Acceleration` in milliseconds. _(Number)_ (Default: 10000)
\ No newline at end of file
+- __frequency:__ How often to retrieve the `[Acceleration](../acceleration/acceleration.html)` in milliseconds. _(Number)_ (Default: 10000)
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/1.6.0/cordova/accelerometer/parameters/accelerometerSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.6.0/cordova/accelerometer/parameters/accelerometerSuccess.md b/www/docs/en/1.6.0/cordova/accelerometer/parameters/accelerometerSuccess.md
index 49a0889..37d0d4c 100644
--- a/www/docs/en/1.6.0/cordova/accelerometer/parameters/accelerometerSuccess.md
+++ b/www/docs/en/1.6.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.6.0/cordova/camera/camera.getPicture.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.6.0/cordova/camera/camera.getPicture.md b/www/docs/en/1.6.0/cordova/camera/camera.getPicture.md
index 42591de..385cd54 100644
--- a/www/docs/en/1.6.0/cordova/camera/camera.getPicture.md
+++ b/www/docs/en/1.6.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.  _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.  _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
 -------------------
@@ -63,7 +63,7 @@ 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:
@@ -96,7 +96,7 @@ Take photo and retrieve image file location:
     }
 
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>


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