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

[18/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/2.2.0/cordova/file/filewriter/filewriter.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/file/filewriter/filewriter.md b/www/docs/en/2.2.0/cordova/file/filewriter/filewriter.md
index 4f8c836..bb74c22 100644
--- a/www/docs/en/2.2.0/cordova/file/filewriter/filewriter.md
+++ b/www/docs/en/2.2.0/cordova/file/filewriter/filewriter.md
@@ -63,7 +63,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
 
-Seek Quick Example
+Seek Quick [Example](../../storage/storage.opendatabase.html)
 ------------------------------
 
 	function win(writer) {
@@ -77,7 +77,7 @@ Seek Quick Example
 	
     entry.createWriter(win, fail);
 
-Truncate Quick Example
+Truncate Quick [Example](../../storage/storage.opendatabase.html)
 --------------------------
 
 	function win(writer) {
@@ -90,7 +90,7 @@ Truncate Quick Example
 	
     entry.createWriter(win, fail);
 
-Write Quick Example
+Write Quick [Example](../../storage/storage.opendatabase.html)
 -------------------	
 
 	function win(writer) {
@@ -106,7 +106,7 @@ Write Quick Example
 	
     entry.createWriter(win, fail);
 
-Append Quick Example
+Append Quick [Example](../../storage/storage.opendatabase.html)
 --------------------	
 
 	function win(writer) {
@@ -123,7 +123,7 @@ Append Quick Example
 	
     entry.createWriter(win, fail);
 	
-Abort Quick Example
+Abort Quick [Example](../../storage/storage.opendatabase.html)
 -------------------
 
 	function win(writer) {
@@ -140,7 +140,7 @@ Abort Quick Example
 	
     entry.createWriter(win, fail);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
     <!DOCTYPE html>
     <html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/file/flags/flags.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/file/flags/flags.md b/www/docs/en/2.2.0/cordova/file/flags/flags.md
index 505b05c..4ce4be0 100644
--- a/www/docs/en/2.2.0/cordova/file/flags/flags.md
+++ b/www/docs/en/2.2.0/cordova/file/flags/flags.md
@@ -23,7 +23,7 @@ title: Flags
 Flags
 =====
 
-This object is used to supply arguments to the `DirectoryEntry` __getFile__ and __getDirectory__ methods, which look up or create files and directories, respectively.
+This object is used to supply arguments to the `[DirectoryEntry](../directoryentry/directoryentry.html)` __getFile__ and __getDirectory__ methods, which look up or create files and directories, respectively.
 
 Properties
 ----------
@@ -39,7 +39,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // Get the data directory, creating it if it doesn't exist.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/file/localfilesystem/localfilesystem.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/file/localfilesystem/localfilesystem.md b/www/docs/en/2.2.0/cordova/file/localfilesystem/localfilesystem.md
index fdb166e..12e2ec0 100644
--- a/www/docs/en/2.2.0/cordova/file/localfilesystem/localfilesystem.md
+++ b/www/docs/en/2.2.0/cordova/file/localfilesystem/localfilesystem.md
@@ -29,7 +29,7 @@ Methods
 ----------
 
 - __requestFileSystem:__ Requests a filesystem. _(Function)_
-- __resolveLocalFileSystemURI:__ Retrieve a DirectoryEntry or FileEntry using local URI. _(Function)_
+- __resolveLocalFileSystemURI:__ Retrieve a [DirectoryEntry](../directoryentry/directoryentry.html) or [FileEntry](../fileentry/fileentry.html) using local URI. _(Function)_
 
 Constants
 ---------
@@ -50,7 +50,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
 
-Request File System Quick Example
+Request [File](../fileobj/fileobj.html) System Quick [Example](../../storage/storage.opendatabase.html)
 ---------------------------------
 
 	function onSuccess(fileSystem) {
@@ -60,7 +60,7 @@ Request File System Quick Example
 	// request the persistent file system
 	window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onSuccess, onError);
 
-Resolve Local File System URI Quick Example
+Resolve Local [File](../fileobj/fileobj.html) System URI Quick [Example](../../storage/storage.opendatabase.html)
 -------------------------------------------
 
 	function onSuccess(fileEntry) {
@@ -69,7 +69,7 @@ Resolve Local File System URI Quick Example
 
 	window.resolveLocalFileSystemURI("file:///example.txt", onSuccess, onError);
 	
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/file/metadata/metadata.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/file/metadata/metadata.md b/www/docs/en/2.2.0/cordova/file/metadata/metadata.md
index a4df999..3dda5b6 100644
--- a/www/docs/en/2.2.0/cordova/file/metadata/metadata.md
+++ b/www/docs/en/2.2.0/cordova/file/metadata/metadata.md
@@ -33,7 +33,7 @@ Properties
 Details
 -------
 
-The `Metadata` object represents information about the state of a file or directory.  You can get an instance of a Metadata object by calling the __getMetadata__ method of a `DirectoryEntry` or `FileEntry` object.
+The `Metadata` object represents information about the state of a file or directory.  You can get an instance of a Metadata object by calling the __getMetadata__ method of a `[DirectoryEntry](../directoryentry/directoryentry.html)` or `[FileEntry](../fileentry/fileentry.html)` object.
 
 Supported Platforms
 -------------------
@@ -43,7 +43,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
 	function win(metadata) {

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/geolocation/Coordinates/coordinates.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/Coordinates/coordinates.md b/www/docs/en/2.2.0/cordova/geolocation/Coordinates/coordinates.md
index b09627d..003c48f 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/Coordinates/coordinates.md
+++ b/www/docs/en/2.2.0/cordova/geolocation/Coordinates/coordinates.md
@@ -39,7 +39,7 @@ Properties
 Description
 -----------
 
-The `Coordinates` object is created and populated by Cordova, and attached to the `Position` object. The `Position` object is then returned to the user through a callback function.
+The `Coordinates` object is created and populated by Cordova, and attached to the `[Position](../Position/position.html)` object. The `[Position](../Position/position.html)` object is then returned to the user through a callback function.
 
 Supported Platforms
 -------------------
@@ -52,7 +52,7 @@ Supported Platforms
 - webOS
 - Tizen
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -76,7 +76,7 @@ Quick Example
 
     navigator.geolocation.getCurrentPosition(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/2.2.0/cordova/geolocation/Position/position.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/Position/position.md b/www/docs/en/2.2.0/cordova/geolocation/Position/position.md
index 0909385..94d9c4f 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/Position/position.md
+++ b/www/docs/en/2.2.0/cordova/geolocation/Position/position.md
@@ -47,7 +47,7 @@ Supported Platforms
 - webOS
 - Tizen
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -72,7 +72,7 @@ Quick Example
 
     navigator.geolocation.getCurrentPosition(onSuccess, onError);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -108,7 +108,7 @@ Full Example
      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/2.2.0/cordova/geolocation/PositionError/positionError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/PositionError/positionError.md b/www/docs/en/2.2.0/cordova/geolocation/PositionError/positionError.md
index 2f06723..db51351 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/PositionError/positionError.md
+++ b/www/docs/en/2.2.0/cordova/geolocation/PositionError/positionError.md
@@ -23,7 +23,7 @@ title: PositionError
 PositionError
 ========
 
-A `PositionError` object is returned to the `geolocationError` callback when an error occurs.
+A `PositionError` object is returned to the `[geolocationError](../parameters/geolocationError.html)` callback when an error occurs.
 
 Properties
 ----------
@@ -41,7 +41,7 @@ Constants
 Description
 -----------
 
-The `PositionError` object is returned to the user through the `geolocationError` callback function when an error occurs with geolocation.
+The `PositionError` object is returned to the user through the `[geolocationError](../parameters/geolocationError.html)` callback function when an error occurs with geolocation.
 
 ### `PositionError.PERMISSION_DENIED`
 
@@ -57,6 +57,6 @@ satellite fix.
 ### `PositionError.TIMEOUT`
 
 Returned when the device was unable to retrieve a position within the
-time specified in the `geolocationOptions`' `timeout` property. When using
-in conjunction with `geolocation.watchPosition`, this error could be
-called into the `geolocationError` callback every `timeout` milliseconds.
+time specified in the `[geolocationOptions](../parameters/geolocation.options.html)`' `timeout` property. When using
+in conjunction with `[geolocation.watchPosition](../geolocation.watchPosition.html)`, this error could be
+called into the `[geolocationError](../parameters/geolocationError.html)` callback every `timeout` milliseconds.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/geolocation/geolocation.clearWatch.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/geolocation.clearWatch.md b/www/docs/en/2.2.0/cordova/geolocation/geolocation.clearWatch.md
index 4fd7923..1ffaaf0 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/geolocation.clearWatch.md
+++ b/www/docs/en/2.2.0/cordova/geolocation/geolocation.clearWatch.md
@@ -35,7 +35,7 @@ Parameters
 Description
 -----------
 
-`geolocation.clearWatch` stops watching changes to the device's location by clearing the `geolocation.watchPosition` referenced by `watchID`.
+`geolocation.clearWatch` stops watching changes to the device's location by clearing the `[geolocation.watchPosition](geolocation.watchPosition.html)` referenced by `watchID`.
 
 Supported Platforms
 -------------------
@@ -48,7 +48,7 @@ Supported Platforms
 - webOS
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Options: watch for changes in position, and use the most
@@ -61,7 +61,7 @@ Quick Example
     navigator.geolocation.clearWatch(watchID);
 
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -105,7 +105,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/2.2.0/cordova/geolocation/geolocation.getCurrentPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/geolocation.getCurrentPosition.md b/www/docs/en/2.2.0/cordova/geolocation/geolocation.getCurrentPosition.md
index 6de42c3..89fac32 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/geolocation.getCurrentPosition.md
+++ b/www/docs/en/2.2.0/cordova/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
 -----------
 
-`geolocation.getCurrentPositon` 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.
+`geolocation.getCurrentPositon` 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
@@ -53,7 +53,7 @@ Supported Platforms
 - webOS
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -80,7 +80,7 @@ Quick Example
 
     navigator.geolocation.getCurrentPosition(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/2.2.0/cordova/geolocation/geolocation.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/geolocation.md b/www/docs/en/2.2.0/cordova/geolocation/geolocation.md
index 3623d0d..f7ff4c2 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/geolocation.md
+++ b/www/docs/en/2.2.0/cordova/geolocation/geolocation.md
@@ -32,24 +32,24 @@ This API is based on the [W3C Geolocation API Specification](http://dev.w3.org/g
 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)
 
 Permissions
 -----------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/geolocation/geolocation.watchPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/geolocation.watchPosition.md b/www/docs/en/2.2.0/cordova/geolocation/geolocation.watchPosition.md
index 28b1cdc..f04dade 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/geolocation.watchPosition.md
+++ b/www/docs/en/2.2.0/cordova/geolocation/geolocation.watchPosition.md
@@ -39,12 +39,12 @@ Parameters
 Returns
 -------
 
-- __String__: returns a watch id that references the watch position interval. The watch id should 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 should be used with `[geolocation.clearWatch](geolocation.clearWatch.html)` to stop watching for changes in position.
 
 Description
 -----------
 
-`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.
+`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
 -------------------
@@ -57,7 +57,7 @@ Supported Platforms
 - webOS
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -83,7 +83,7 @@ Quick Example
     var watchID = navigator.geolocation.watchPosition(onSuccess, onError, { timeout: 30000 });
     
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -117,7 +117,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/2.2.0/cordova/geolocation/parameters/geolocation.options.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocation.options.md b/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocation.options.md
index 65f3bd6..9af53c2 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocation.options.md
+++ b/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocation.options.md
@@ -24,15 +24,15 @@ geolocationOptions
 ==================
 
 Optional parameters to customize the retrieval of the geolocation
-`Position`.
+`[Position](../Position/position.html)`.
 
     { maximumAge: 3000, timeout: 5000, enableHighAccuracy: true };
 
 Options
 -------
 
-- __enableHighAccuracy:__ Provides a hint that the application would like to receive the best possible results. By default, the device will attempt to retrieve a `Position` using network-based methods. Setting this property to `true` tells the framework to use more accurate methods, such as satellite positioning. _(Boolean)_
-- __timeout:__ The maximum length of time (milliseconds) that is allowed to pass from the call to `geolocation.getCurrentPosition` or `geolocation.watchPosition` until the corresponding `geolocationSuccess` callback is invoked. If the `geolocationSuccess` callback is not invoked within this time, the `geolocationError` callback will be invoked with a `PositionError.TIMEOUT` error code. NOTE: when used in conjunction with `geolocation.watchPosition`, the `geolocationError` callback could be called on an interval every `timeout` milliseconds! _(Number)_
+- __enableHighAccuracy:__ Provides a hint that the application would like to receive the best possible results. By default, the device will attempt to retrieve a `[Position](../Position/position.html)` using network-based methods. Setting this property to `true` tells the framework to use more accurate methods, such as satellite positioning. _(Boolean)_
+- __timeout:__ The maximum length of time (milliseconds) 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. If the `[geolocationSuccess](geolocationSuccess.html)` callback is not invoked within this time, the `[geolocationError](geolocationError.html)` callback will be invoked with a `[PositionError](../PositionError/positionError.html).TIMEOUT` error code. NOTE: when used in conjunction with `[geolocation.watchPosition](../geolocation.watchPosition.html)`, the `[geolocationError](geolocationError.html)` callback could be called on an interval every `timeout` milliseconds! _(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/2.2.0/cordova/geolocation/parameters/geolocationError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocationError.md b/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocationError.md
index 1cc1d9e..665914a 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocationError.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/geolocation/parameters/geolocationSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocationSuccess.md b/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocationSuccess.md
index 6e6a063..fe96449 100644
--- a/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocationSuccess.md
+++ b/www/docs/en/2.2.0/cordova/geolocation/parameters/geolocationSuccess.md
@@ -23,7 +23,7 @@ title: geolocationSuccess
 geolocationSuccess
 ==================
 
-The user's callback function that is called when a geolocation position becomes available (when using with `geolocation.getCurrentPosition`), or when the position changes (when using with `geolocation.watchPosition`).
+The user's callback function that is called when a geolocation position becomes available (when using with `[geolocation.getCurrentPosition](../geolocation.getCurrentPosition.html)`), or when the position changes (when using with `[geolocation.watchPosition](../geolocation.watchPosition.html)`).
 
     function(position) {
         // Do something
@@ -32,9 +32,9 @@ The user's callback function that is called when a geolocation position becomes
 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/2.2.0/cordova/globalization/GlobalizationError/globalizationerror.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/GlobalizationError/globalizationerror.md b/www/docs/en/2.2.0/cordova/globalization/GlobalizationError/globalizationerror.md
index 49783fe..b5fe495 100644
--- a/www/docs/en/2.2.0/cordova/globalization/GlobalizationError/globalizationerror.md
+++ b/www/docs/en/2.2.0/cordova/globalization/GlobalizationError/globalizationerror.md
@@ -23,7 +23,7 @@ title: GlobalizationError
 GlobalizationError
 ============
 
-An object representing a error from the Globalization API.
+An object representing a error from the [Globalization](../globalization.html) API.
 
 Properties
 ----------
@@ -47,7 +47,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
 When the following error callback is invoked, it should display a popup dialog with the text similar to "code: 3" and "message: ".
@@ -57,7 +57,7 @@ When the following error callback is invoked, it should display a popup dialog w
               'message: ' + error.message + '\n');
     };
 
-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/2.2.0/cordova/globalization/globalization.dateToString.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.dateToString.md b/www/docs/en/2.2.0/cordova/globalization/globalization.dateToString.md
index c97fcdf..9f30311 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.dateToString.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.dateToString.md
@@ -34,7 +34,7 @@ It returns the formatted date string to the successCB callback with a properties
 
 The inbound ``date`` parameter should be of type ``Date``.
 
-If there is an error formatting the date, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.FORMATTING\_ERROR.
+If there is an error formatting the date, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).FORMATTING\_ERROR.
 
 `options.formatLength` can be 'short', 'medium', 'long', or 'full'.
 `options.selector` can be 'date', 'time' or 'date and time'.
@@ -50,7 +50,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a popup dialog with text similar to "date: 9/25/2012 4:21PM" using the default options.
@@ -62,7 +62,7 @@ In the case when the browser is set to the en\_US locale, this should display a
       {formatLength:'short', selector:'date and time'}
     );
 
-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/2.2.0/cordova/globalization/globalization.getCurrencyPattern.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.getCurrencyPattern.md b/www/docs/en/2.2.0/cordova/globalization/globalization.getCurrencyPattern.md
index b9a74d8..bd98d03 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.getCurrencyPattern.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.getCurrencyPattern.md
@@ -42,7 +42,7 @@ It returns the pattern to the successCB callback with a properties object as a p
 
 The inbound `currencyCode` parameter should be a String of one of the ISO 4217 currency codes, for example 'USD'.
 
-If there is an error obtaining the pattern, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.FORMATTING\_ERROR.
+If there is an error obtaining the pattern, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).FORMATTING\_ERROR.
 
 Supported Platforms
 -------------------
@@ -51,7 +51,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale and the selected currency is United States Dollars, this should display a popup dialog with text similar to:
@@ -77,7 +77,7 @@ In the case when the browser is set to the en\_US locale and the selected curren
     );
 
 
-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/2.2.0/cordova/globalization/globalization.getDateNames.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.getDateNames.md b/www/docs/en/2.2.0/cordova/globalization/globalization.getDateNames.md
index 57c74fd..f6fffff 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.getDateNames.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.getDateNames.md
@@ -32,7 +32,7 @@ Description
 
 It returns the array of names to the successCB callback with a properties object as a parameter. That object should have a ``value`` property with an Array of Strings. That array will be the names starting from either the first month in the year or the first day of the week, depending on the option selected.
 
-If there is an error obtaining the names, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.UNKNOWN\_ERROR.
+If there is an error obtaining the names, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).UNKNOWN\_ERROR.
 
 `options.type` can be 'narrow', or 'wide'.
 `options.item` can be 'months', or 'days'.
@@ -48,7 +48,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a series of 12 popup dialogs, one per month, with text similar to "month: January"
@@ -64,7 +64,7 @@ In the case when the browser is set to the en\_US locale, this should display a
     );
 
 
-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/2.2.0/cordova/globalization/globalization.getDatePattern.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.getDatePattern.md b/www/docs/en/2.2.0/cordova/globalization/globalization.getDatePattern.md
index 11a2154..94a7e8b 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.getDatePattern.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.getDatePattern.md
@@ -37,7 +37,7 @@ It returns the pattern to the successCB callback with a properties object as a p
 - utc\_offset {Number}: The current difference in seconds between the client's time zone and coordinated universal time.
 - dst\_offset {Number}: The current daylight saving time offset in seconds between the client's non-daylight saving's time zone and the client's daylight saving's time zone.
 
-If there is an error obtaining the pattern, then the errorCB callback is invokedwith a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.PATTERN\_ERROR.
+If there is an error obtaining the pattern, then the errorCB callback is invokedwith a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).PATTERN\_ERROR.
 
 `options.formatLength` can be 'short', 'medium', 'long', or 'full'.
 `options.selector` can be 'date', 'time' or 'date and time'.
@@ -52,7 +52,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a popup dialog with text similar to "pattern: M/d/yyyy h:mm a".
@@ -65,7 +65,7 @@ In the case when the browser is set to the en\_US locale, this should display a
       );
     }
 
-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/2.2.0/cordova/globalization/globalization.getFirstDayOfWeek.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.getFirstDayOfWeek.md b/www/docs/en/2.2.0/cordova/globalization/globalization.getFirstDayOfWeek.md
index 002af75..0898153 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.getFirstDayOfWeek.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.getFirstDayOfWeek.md
@@ -32,7 +32,7 @@ Description
 
 The days of the week are numbered starting from 1 where 1 is considered to be Sunday. It returns the day to the successCB callback with a properties object as a parameter. That object should have a ``value`` property with a Number value.
 
-If there is an error obtaining the pattern, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.UNKNOWN\_ERROR.
+If there is an error obtaining the pattern, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).UNKNOWN\_ERROR.
 
 
 Supported Platforms
@@ -42,7 +42,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a popup dialog with text similar to "day: 1".
@@ -52,7 +52,7 @@ In the case when the browser is set to the en\_US locale, this should display a
       function () {alert('Error getting day\n');}
     );
 
-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/2.2.0/cordova/globalization/globalization.getLocaleName.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.getLocaleName.md b/www/docs/en/2.2.0/cordova/globalization/globalization.getLocaleName.md
index 692190e..f0eb173 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.getLocaleName.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.getLocaleName.md
@@ -34,7 +34,7 @@ Description
 It returns the locale identifier string to the successCB callback with a
 properties object as a parameter. That object should have a ``value`` property with a String value.
 
-If there is an error getting the locale, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.UNKNOWN\_ERROR.
+If there is an error getting the locale, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).UNKNOWN\_ERROR.
 
 
 Supported Platforms
@@ -45,7 +45,7 @@ Supported Platforms
 - iPhone
 
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a popup dialog with the text "locale: en\_US".
@@ -55,7 +55,7 @@ In the case when the browser is set to the en\_US locale, this should display a
       function () {alert('Error getting locale\n');}
     );
 
-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/2.2.0/cordova/globalization/globalization.getNumberPattern.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.getNumberPattern.md b/www/docs/en/2.2.0/cordova/globalization/globalization.getNumberPattern.md
index 98e8ebe..8267e4b 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.getNumberPattern.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.getNumberPattern.md
@@ -41,7 +41,7 @@ It returns the pattern to the successCB callback with a properties object as a p
 - decimal: {String}: The decimal symbol to use for parsing and formatting.
 - grouping: {String}: The grouping symbol to use for parsing and formatting.
 
-If there is an error obtaining the pattern, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.PATTERN\_ERROR.
+If there is an error obtaining the pattern, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).PATTERN\_ERROR.
 
 `options.type` can be 'decimal', 'percent', or 'currency'.
 The default options are `{type:'decimal'}`. The `options` parameter is optional.
@@ -54,7 +54,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a popup dialog with text similar to:
@@ -83,7 +83,7 @@ In the case when the browser is set to the en\_US locale, this should display a
       {type:'decimal'}
     );
 
-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/2.2.0/cordova/globalization/globalization.getPreferredLanguage.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.getPreferredLanguage.md b/www/docs/en/2.2.0/cordova/globalization/globalization.getPreferredLanguage.md
index bcea2ca..3b245a4 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.getPreferredLanguage.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.getPreferredLanguage.md
@@ -34,7 +34,7 @@ Description
 It returns the language identifier string to the successCB callback with a
 properties object as a parameter. That object should have a ``value`` property with a String value.
 
-If there is an error getting the language, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.UNKNOWN\_ERROR.
+If there is an error getting the language, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).UNKNOWN\_ERROR.
 
 Supported Platforms
 -------------------
@@ -44,7 +44,7 @@ Supported Platforms
 - iPhone
 
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a popup dialog with the text "language: English".
@@ -54,7 +54,7 @@ In the case when the browser is set to the en\_US locale, this should display a
       function () {alert('Error getting language\n');}
     );
 
-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/2.2.0/cordova/globalization/globalization.isDayLightSavingsTime.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.isDayLightSavingsTime.md b/www/docs/en/2.2.0/cordova/globalization/globalization.isDayLightSavingsTime.md
index 3552901..413d1b7 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.isDayLightSavingsTime.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.isDayLightSavingsTime.md
@@ -34,7 +34,7 @@ It returns whether or not daylight savings time is in effect to the successCB ca
 
 The inbound parameter `date` should be of type `Date`.
 
-If there is an error reading the date, then the errorCB callback is invoked. The expected code for this error is GlobalizationError.UNKNOWN\_ERROR.
+If there is an error reading the date, then the errorCB callback is invoked. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).UNKNOWN\_ERROR.
 
 Supported Platforms
 -------------------
@@ -43,7 +43,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case during the summer when the browser is set to a DST-enabled timezone, this should display a popup dialog with text similar to "dst: true".
@@ -54,7 +54,7 @@ In the case during the summer when the browser is set to a DST-enabled timezone,
       function () {alert('Error getting names\n');}
     );
 
-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/2.2.0/cordova/globalization/globalization.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.md b/www/docs/en/2.2.0/cordova/globalization/globalization.md
index c000869..0c6227e 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.md
@@ -28,23 +28,23 @@ The `globalization` object obtains information and performs operations specific
 Objects
 -------
 
-- GlobalizationError
+- [GlobalizationError](GlobalizationError/globalizationerror.html)
 
 Methods
 -------
 
-- globalization.getPreferredLanguage
-- globalization.getLocaleName
-- globalization.dateToString
-- globalization.stringToDate
-- globalization.getDatePattern
-- globalization.getDateNames
-- globalization.isDayLightSavingsTime
-- globalization.getFirstDayOfWeek
-- globalization.numberToString
-- globalization.stringToNumber
-- globalization.getNumberPattern
-- globalization.getCurrencyPattern
+- [globalization.getPreferredLanguage](globalization.getPreferredLanguage.html)
+- [globalization.getLocaleName](globalization.getLocaleName.html)
+- [globalization.dateToString](globalization.dateToString.html)
+- [globalization.stringToDate](globalization.stringToDate.html)
+- [globalization.getDatePattern](globalization.getDatePattern.html)
+- [globalization.getDateNames](globalization.getDateNames.html)
+- [globalization.isDayLightSavingsTime](globalization.isDayLightSavingsTime.html)
+- [globalization.getFirstDayOfWeek](globalization.getFirstDayOfWeek.html)
+- [globalization.numberToString](globalization.numberToString.html)
+- [globalization.stringToNumber](globalization.stringToNumber.html)
+- [globalization.getNumberPattern](globalization.getNumberPattern.html)
+- [globalization.getCurrencyPattern](globalization.getCurrencyPattern.html)
 
 Variable Scope
 --------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/globalization/globalization.numberToString.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.numberToString.md b/www/docs/en/2.2.0/cordova/globalization/globalization.numberToString.md
index 68c2f4a..8675bb2 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.numberToString.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.numberToString.md
@@ -32,7 +32,7 @@ Description
 
 It returns the formatted number string to the successCB callback with a properties object as a parameter. That object should have a ``value`` property with a String value.
 
-If there is an error formatting the number, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.FORMATTING\_ERROR.
+If there is an error formatting the number, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).FORMATTING\_ERROR.
 
 `options.type` can be 'decimal', 'percent', or 'currency'. The default options are `{type:'decimal'}`. The `options` parameter is optional.
 
@@ -43,7 +43,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a popup dialog with text similar to "number: 3.142"
@@ -55,7 +55,7 @@ In the case when the browser is set to the en\_US locale, this should display a
       {type:'decimal'}
     );
 
-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/2.2.0/cordova/globalization/globalization.stringToDate.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.stringToDate.md b/www/docs/en/2.2.0/cordova/globalization/globalization.stringToDate.md
index a0189ad..9c51741 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.stringToDate.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.stringToDate.md
@@ -50,7 +50,7 @@ The inbound `dateString` parameter should be of type `String`.
 The default options are `{formatLength:'short', selector:'date and time'}`.
 The options parameter is optional.
 
-If there is an error parsing the date string, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.PARSING\_ERROR.
+If there is an error parsing the date string, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).PARSING\_ERROR.
 
 
 Supported Platforms
@@ -60,7 +60,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a popup dialog with text similar to "month:8 day:25 year:2012". Note that the month integer is one less than the string, as the month integer represents an index.
@@ -75,7 +75,7 @@ In the case when the browser is set to the en\_US locale, this should display a
     );
 
 
-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/2.2.0/cordova/globalization/globalization.stringToNumber.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/globalization/globalization.stringToNumber.md b/www/docs/en/2.2.0/cordova/globalization/globalization.stringToNumber.md
index cfb8cf5..bb0ff88 100644
--- a/www/docs/en/2.2.0/cordova/globalization/globalization.stringToNumber.md
+++ b/www/docs/en/2.2.0/cordova/globalization/globalization.stringToNumber.md
@@ -32,7 +32,7 @@ Description
 
 It returns the number to the successCB callback with a properties object as a parameter. That object should have a ``value`` property with a Number value.
 
-If there is an error parsing the number string, then the errorCB callback is invoked with a GlobalizationError object as a parameter. The expected code for this error is GlobalizationError.PARSING\_ERROR.
+If there is an error parsing the number string, then the errorCB callback is invoked with a [GlobalizationError](GlobalizationError/globalizationerror.html) object as a parameter. The expected code for this error is [GlobalizationError](GlobalizationError/globalizationerror.html).PARSING\_ERROR.
 
 `options.type` can be 'decimal', 'percent', or 'currency'.
 The default options are `{type:'decimal'}`. The `options` parameter is optional.
@@ -45,7 +45,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iPhone
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
 In the case when the browser is set to the en\_US locale, this should display a popup dialog with text similar to "number: 1234.56".
@@ -58,7 +58,7 @@ In the case when the browser is set to the en\_US locale, this should display a
     );
 
 
-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/2.2.0/cordova/media/MediaError/mediaError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/MediaError/mediaError.md b/www/docs/en/2.2.0/cordova/media/MediaError/mediaError.md
index eb754bf..77e8375 100644
--- a/www/docs/en/2.2.0/cordova/media/MediaError/mediaError.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/Parameters/mediaError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/Parameters/mediaError.md b/www/docs/en/2.2.0/cordova/media/Parameters/mediaError.md
index 8132ca0..d4d330b 100644
--- a/www/docs/en/2.2.0/cordova/media/Parameters/mediaError.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/capture/CaptureCB.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/CaptureCB.md b/www/docs/en/2.2.0/cordova/media/capture/CaptureCB.md
index 4388e48..d0d3154 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/CaptureCB.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/capture/CaptureError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/CaptureError.md b/www/docs/en/2.2.0/cordova/media/capture/CaptureError.md
index b41213d..884c309 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/CaptureError.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/capture/CaptureErrorCB.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/CaptureErrorCB.md b/www/docs/en/2.2.0/cordova/media/capture/CaptureErrorCB.md
index a5ca339..37381e5 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/CaptureErrorCB.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/capture/ConfigurationData.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/ConfigurationData.md b/www/docs/en/2.2.0/cordova/media/capture/ConfigurationData.md
index 373a8fd..7459960 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/ConfigurationData.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/capture/MediaFile.getFormatData.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/MediaFile.getFormatData.md b/www/docs/en/2.2.0/cordova/media/capture/MediaFile.getFormatData.md
index 9ed744f..559e0d7 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/MediaFile.getFormatData.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/capture/MediaFileData.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/MediaFileData.md b/www/docs/en/2.2.0/cordova/media/capture/MediaFileData.md
index 7f20b3f..b0cf847 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/MediaFileData.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/capture/capture.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/capture.md b/www/docs/en/2.2.0/cordova/media/capture/capture.md
index d40c9e1..7ee8bad 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/capture.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/capture/captureAudio.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/captureAudio.md b/www/docs/en/2.2.0/cordova/media/capture/captureAudio.md
index 63a2d23..4f6468c 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/captureAudio.md
+++ b/www/docs/en/2.2.0/cordova/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
 --------------------------
 
-- Cordova for BlackBerry WebWorks attempts to launch the __Voice Notes Recorder__ application, provided by RIM, to capture the audio recordings.  The developer will receive a CaptureError.`CAPTURE_NOT_SUPPORTED` error code if the application is not installed on the device.
+- Cordova for BlackBerry WebWorks attempts to launch the __Voice Notes Recorder__ application, provided by RIM, to capture the audio recordings.  The developer will receive a [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/2.2.0/cordova/media/capture/captureAudioOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/captureAudioOptions.md b/www/docs/en/2.2.0/cordova/media/capture/captureAudioOptions.md
index 8b273e5..336b0a4 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/captureAudioOptions.md
+++ b/www/docs/en/2.2.0/cordova/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/2.2.0/cordova/media/capture/captureImage.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/captureImage.md b/www/docs/en/2.2.0/cordova/media/capture/captureImage.md
index a2bb50f..a10af2b 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/captureImage.md
+++ b/www/docs/en/2.2.0/cordova/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
 -------------------
@@ -53,7 +53,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)
 -------------
 
     // capture callback
@@ -73,7 +73,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/2.2.0/cordova/media/capture/captureImageOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/captureImageOptions.md b/www/docs/en/2.2.0/cordova/media/capture/captureImageOptions.md
index 13cf3c9..0cda7dd 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/captureImageOptions.md
+++ b/www/docs/en/2.2.0/cordova/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

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/media/capture/captureVideo.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/captureVideo.md b/www/docs/en/2.2.0/cordova/media/capture/captureVideo.md
index 8d3fa4f..86f79d0 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/captureVideo.md
+++ b/www/docs/en/2.2.0/cordova/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
 -------------------
@@ -47,7 +47,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Bada 2.x
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // capture callback
@@ -67,7 +67,7 @@ Quick Example
     // start video capture
     navigator.device.capture.captureVideo(captureSuccess, captureError, {limit:2});
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -131,7 +131,7 @@ Full Example
 BlackBerry WebWorks Quirks
 --------------------------
 
-- Cordova for BlackBerry WebWorks attempts to launch the __Video Recorder__ application, provided by RIM, to capture the video recordings.  The developer will receive a CaptureError.`CAPTURE_NOT_SUPPORTED` error code if the application is not installed on the device.
+- Cordova for BlackBerry WebWorks attempts to launch the __Video Recorder__ application, provided by RIM, to capture the video recordings.  The developer will receive a [CaptureError](CaptureError.html).`CAPTURE_NOT_SUPPORTED` error code if the application is not installed on the device.
 
 Bada 2.x Quirks
 ---------------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/media/capture/captureVideoOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/capture/captureVideoOptions.md b/www/docs/en/2.2.0/cordova/media/capture/captureVideoOptions.md
index 64925d7..2ecc98d 100644
--- a/www/docs/en/2.2.0/cordova/media/capture/captureVideoOptions.md
+++ b/www/docs/en/2.2.0/cordova/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

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/media/media.getCurrentPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.getCurrentPosition.md b/www/docs/en/2.2.0/cordova/media/media.getCurrentPosition.md
index c81e796..8b6bf5a 100644
--- a/www/docs/en/2.2.0/cordova/media/media.getCurrentPosition.md
+++ b/www/docs/en/2.2.0/cordova/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
 -------------------
@@ -47,7 +47,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
         // Audio player
@@ -72,7 +72,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/2.2.0/cordova/media/media.getDuration.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.getDuration.md b/www/docs/en/2.2.0/cordova/media/media.getDuration.md
index c4c15b9..65ab517 100644
--- a/www/docs/en/2.2.0/cordova/media/media.getDuration.md
+++ b/www/docs/en/2.2.0/cordova/media/media.getDuration.md
@@ -42,7 +42,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
         // Audio player
@@ -64,7 +64,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/2.2.0/cordova/media/media.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.md b/www/docs/en/2.2.0/cordova/media/media.md
index 4992a7e..cbad425 100644
--- a/www/docs/en/2.2.0/cordova/media/media.md
+++ b/www/docs/en/2.2.0/cordova/media/media.md
@@ -52,15 +52,15 @@ The following constants are reported as the only parameter to the __mediaStatus_
 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/2.2.0/cordova/media/media.pause.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.pause.md b/www/docs/en/2.2.0/cordova/media/media.pause.md
index 6a3305b..ed0ea31 100644
--- a/www/docs/en/2.2.0/cordova/media/media.pause.md
+++ b/www/docs/en/2.2.0/cordova/media/media.pause.md
@@ -42,7 +42,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Tizen
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Play audio
@@ -69,7 +69,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/2.2.0/cordova/media/media.play.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.play.md b/www/docs/en/2.2.0/cordova/media/media.play.md
index aeffd8d..15ccfb2 100644
--- a/www/docs/en/2.2.0/cordova/media/media.play.md
+++ b/www/docs/en/2.2.0/cordova/media/media.play.md
@@ -42,7 +42,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Play audio
@@ -64,7 +64,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/2.2.0/cordova/media/media.release.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.release.md b/www/docs/en/2.2.0/cordova/media/media.release.md
index 151633e..abfa0ea 100644
--- a/www/docs/en/2.2.0/cordova/media/media.release.md
+++ b/www/docs/en/2.2.0/cordova/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
 -------------------
@@ -42,7 +42,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
         // Audio player
@@ -53,7 +53,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/2.2.0/cordova/media/media.seekTo.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.seekTo.md b/www/docs/en/2.2.0/cordova/media/media.seekTo.md
index 04ee14a..79a80dd 100644
--- a/www/docs/en/2.2.0/cordova/media/media.seekTo.md
+++ b/www/docs/en/2.2.0/cordova/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
 -------------------
@@ -47,7 +47,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
         // Audio player
@@ -60,7 +60,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/2.2.0/cordova/media/media.startRecord.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.startRecord.md b/www/docs/en/2.2.0/cordova/media/media.startRecord.md
index 93e11bd..c7a78a7 100644
--- a/www/docs/en/2.2.0/cordova/media/media.startRecord.md
+++ b/www/docs/en/2.2.0/cordova/media/media.startRecord.md
@@ -41,7 +41,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Record audio
@@ -64,7 +64,7 @@ Quick Example
     }
 
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -146,7 +146,7 @@ BlackBerry WebWorks Quirks
 iOS Quirks
 ----------
 
-- The file to record to must already exist and should be of type .wav. The File API's can be used to create the file.
+- The file to record to must already exist and should be of type .wav. The [File](../file/fileobj/fileobj.html) API's can be used to create the file.
 
 Tizen Quirks
 ----------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.2.0/cordova/media/media.stop.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.stop.md b/www/docs/en/2.2.0/cordova/media/media.stop.md
index b083573..f26175c 100644
--- a/www/docs/en/2.2.0/cordova/media/media.stop.md
+++ b/www/docs/en/2.2.0/cordova/media/media.stop.md
@@ -42,7 +42,7 @@ Supported Platforms
 - Windows Phone 7 ( Mango )
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Play audio
@@ -68,7 +68,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/2.2.0/cordova/media/media.stopRecord.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/media/media.stopRecord.md b/www/docs/en/2.2.0/cordova/media/media.stopRecord.md
index 4ba702a..b4d5a3e 100644
--- a/www/docs/en/2.2.0/cordova/media/media.stopRecord.md
+++ b/www/docs/en/2.2.0/cordova/media/media.stopRecord.md
@@ -41,7 +41,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 ( Mango )
     
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Record audio
@@ -69,7 +69,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/2.2.0/cordova/notification/notification.alert.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.2.0/cordova/notification/notification.alert.md b/www/docs/en/2.2.0/cordova/notification/notification.alert.md
index 197104b..e4ddcd0 100644
--- a/www/docs/en/2.2.0/cordova/notification/notification.alert.md
+++ b/www/docs/en/2.2.0/cordova/notification/notification.alert.md
@@ -48,7 +48,7 @@ Supported Platforms
 - webOS
 - Tizen
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Android / BlackBerry WebWorks (OS 5.0 and higher) / iPhone / Tizen
@@ -64,7 +64,7 @@ Quick Example
         'Done'                  // buttonName
     );
         
-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