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

[12/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.4.0/cordova/file/directoryentry/directoryentry.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/directoryentry/directoryentry.md b/www/docs/en/2.4.0/cordova/file/directoryentry/directoryentry.md
index 4eb9e8b..019b6c1 100644
--- a/www/docs/en/2.4.0/cordova/file/directoryentry/directoryentry.md
+++ b/www/docs/en/2.4.0/cordova/file/directoryentry/directoryentry.md
@@ -49,7 +49,7 @@ The following methods can be invoked on a DirectoryEntry object:
 - __toURL__: Return a URL that can be used to locate a directory.
 - __remove__: Delete a directory.  The directory must be empty.
 - __getParent__: Look up the parent directory.
-- __createReader__: Create a new DirectoryReader that can read entries from a directory.
+- __createReader__: Create a new [DirectoryReader](../directoryreader/directoryreader.html) that can read entries from a directory.
 - __getDirectory__: Create or look up a directory.
 - __getFile__: Create or look up a file.
 - __removeRecursively__: Delete a directory and all of its contents.
@@ -71,8 +71,8 @@ Look up metadata about a directory.
 
 __Parameters:__
 
-- __successCallback__ - A callback that is called with a Metadata object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs retrieving the Metadata. Invoked with a FileError object. _(Function)_
+- __successCallback__ - A callback that is called with a [Metadata](../metadata/metadata.html) object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs retrieving the [Metadata](../metadata/metadata.html). Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 
 __Quick Example__
@@ -148,7 +148,7 @@ __Quick Example__
 	    window.requestFileSystem(localFileSystem, 0, onFSWin, onFSFail);
     }
 
-	setFolderMetadata(LocalFileSystem.PERSISTENT, "Backups", "com.apple.MobileBackup", 1);
+	setFolderMetadata([LocalFileSystem](../localfilesystem/localfilesystem.html).PERSISTENT, "Backups", "com.apple.MobileBackup", 1);
 
 moveTo
 ------
@@ -167,7 +167,7 @@ __Parameters:__
 - __parent__ - The parent directory to which to move the directory. _(DirectoryEntry)_
 - __newName__ - The new name of the directory. Defaults to the current name if unspecified. _(DOMString)_
 - __successCallback__ - A callback that is called with the DirectoryEntry object of the new directory. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to move the directory.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to move the directory.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 
 __Quick Example__
@@ -205,7 +205,7 @@ __Parameters:__
 - __parent__ - The parent directory to which to copy the directory. _(DirectoryEntry)_
 - __newName__ - The new name of the directory. Defaults to the current name if unspecified. _(DOMString)_
 - __successCallback__ - A callback that is called with the DirectoryEntry object of the new directory. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to copy the underlying directory.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to copy the underlying directory.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 
 __Quick Example__
@@ -252,7 +252,7 @@ Deletes a directory. It is an error to attempt to:
 __Parameters:__
 
 - __successCallback__ - A callback that is called after the directory has been deleted.  Invoked with no parameters. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the directory.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the directory.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -276,7 +276,7 @@ Look up the parent DirectoryEntry containing the directory.
 __Parameters:__
 
 - __successCallback__ - A callback that is called with the directory's parent DirectoryEntry. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to retrieve the parent DirectoryEntry.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to retrieve the parent DirectoryEntry.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -295,7 +295,7 @@ __Quick Example__
 createReader
 ------------
 
-Creates a new DirectoryReader to read entries in a directory.
+Creates a new [DirectoryReader](../directoryreader/directoryreader.html) to read entries in a directory.
 
 __Quick Example__
 
@@ -315,7 +315,7 @@ __Parameters:__
 - __path__ - The path to the directory to be looked up or created.  Either an absolute path, or a relative path from this DirectoryEntry. _(DOMString)_
 - __options__ - Options to specify whether the directory is created if it doesn't exist.  _(Flags)_
 - __successCallback__ - A callback that is invoked with a DirectoryEntry object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs creating or looking up the directory.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs creating or looking up the directory.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -342,8 +342,8 @@ __Parameters:__
 
 - __path__ - The path to the file to be looked up or created.  Either an absolute path, or a relative path from this DirectoryEntry. _(DOMString)_
 - __options__ - Options to specify whether the file is created if it doesn't exist.  _(Flags)_
-- __successCallback__ - A callback that is invoked with a FileEntry object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs creating or looking up the file.  Invoked with a FileError object. _(Function)_
+- __successCallback__ - A callback that is invoked with a [FileEntry](../fileentry/fileentry.html) object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs creating or looking up the file.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -371,7 +371,7 @@ be deleted.   It is an error to attempt to:
 __Parameters:__
 
 - __successCallback__ - A callback that is called after the DirectoryEntry has been deleted.  Invoked with no parameters. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the DirectoryEntry.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the DirectoryEntry.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/directoryreader/directoryreader.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/directoryreader/directoryreader.md b/www/docs/en/2.4.0/cordova/file/directoryreader/directoryreader.md
index f07dcd4..f27fd65 100644
--- a/www/docs/en/2.4.0/cordova/file/directoryreader/directoryreader.md
+++ b/www/docs/en/2.4.0/cordova/file/directoryreader/directoryreader.md
@@ -47,8 +47,8 @@ Read the entries in this directory.
 
 __Parameters:__
 
-- __successCallback__ - A callback that is passed an array of FileEntry and DirectoryEntry objects. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs retrieving the directory listing. Invoked with a FileError object. _(Function)_
+- __successCallback__ - A callback that is passed an array of [FileEntry](../fileentry/fileentry.html) and [DirectoryEntry](../directoryentry/directoryentry.html) objects. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs retrieving the directory listing. Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 	

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/file.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/file.md b/www/docs/en/2.4.0/cordova/file/file.md
index 9dccf00..a4a7229 100644
--- a/www/docs/en/2.4.0/cordova/file/file.md
+++ b/www/docs/en/2.4.0/cordova/file/file.md
@@ -20,7 +20,7 @@ license: >
 title: File
 ---
 
-File
+[File](fileobj/fileobj.html)
 ==========
 
 >  This API is based on the W3C [File API](http://www.w3.org/TR/FileAPI). An API to read, write and navigate file system hierarchies.
@@ -28,21 +28,21 @@ File
 Objects
 -------
 
-- DirectoryEntry
-- DirectoryReader
-- File
-- FileEntry
-- FileError
-- FileReader
-- FileSystem
-- FileTransfer
-- FileTransferError
-- FileUploadOptions
-- FileUploadResult
-- FileWriter
-- Flags
-- LocalFileSystem
-- Metadata
+- [DirectoryEntry](directoryentry/directoryentry.html)
+- [DirectoryReader](directoryreader/directoryreader.html)
+- [File](fileobj/fileobj.html)
+- [FileEntry](fileentry/fileentry.html)
+- [FileError](fileerror/fileerror.html)
+- [FileReader](filereader/filereader.html)
+- [FileSystem](filesystem/filesystem.html)
+- [FileTransfer](filetransfer/filetransfer.html)
+- [FileTransferError](filetransfererror/filetransfererror.html)
+- [FileUploadOptions](fileuploadoptions/fileuploadoptions.html)
+- [FileUploadResult](fileuploadresult/fileuploadresult.html)
+- [FileWriter](filewriter/filewriter.html)
+- [Flags](flags/flags.html)
+- [LocalFileSystem](localfilesystem/localfilesystem.html)
+- [Metadata](metadata/metadata.html)
 
 Permissions
 -----------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/fileentry/fileentry.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/fileentry/fileentry.md b/www/docs/en/2.4.0/cordova/file/fileentry/fileentry.md
index 9e8b758..0e4e105 100644
--- a/www/docs/en/2.4.0/cordova/file/fileentry/fileentry.md
+++ b/www/docs/en/2.4.0/cordova/file/fileentry/fileentry.md
@@ -48,8 +48,8 @@ Methods
 - __toURL__: Return a URL that can be used to locate a file.
 - __remove__: Delete a file.
 - __getParent__: Look up the parent directory.
-- __createWriter__: Creates a FileWriter object that can be used to write to a file.
-- __file__: Creates a File object containing file properties.
+- __createWriter__: Creates a [FileWriter](../filewriter/filewriter.html) object that can be used to write to a file.
+- __file__: Creates a [File](../fileobj/fileobj.html) object containing file properties.
 
 
 Supported Platforms
@@ -69,8 +69,8 @@ Look up metadata about a file.
 
 __Parameters:__
 
-- __successCallback__ - A callback that is called with a Metadata object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs retrieving the Metadata. Invoked with a FileError object. _(Function)_
+- __successCallback__ - A callback that is called with a [Metadata](../metadata/metadata.html) object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs retrieving the [Metadata](../metadata/metadata.html). Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 
 __Quick Example__
@@ -147,7 +147,7 @@ __Quick Example__
 	    window.requestFileSystem(localFileSystem, 0, onFSWin, onFSFail);
     }
 
-	setFileMetadata(LocalFileSystem.PERSISTENT, "Backups/sqlite.db", "com.apple.MobileBackup", 1);
+	setFileMetadata([LocalFileSystem](../localfilesystem/localfilesystem.html).PERSISTENT, "Backups/sqlite.db", "com.apple.MobileBackup", 1);
 
 moveTo
 ------
@@ -164,7 +164,7 @@ __Parameters:__
 - __parent__ - The parent directory to which to move the file. _(DirectoryEntry)_
 - __newName__ - The new name of the file. Defaults to the current name if unspecified. _(DOMString)_
 - __successCallback__ - A callback that is called with the FileEntry object of the new file. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to move the file.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to move the file.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 
 __Quick Example__
@@ -199,7 +199,7 @@ __Parameters:__
 - __parent__ - The parent directory to which to copy the file. _(DirectoryEntry)_
 - __newName__ - The new name of the file. Defaults to the current name if unspecified. _(DOMString)_
 - __successCallback__ - A callback that is called with the FileEntry object of the new file. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to copy the file.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to copy the file.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 
 __Quick Example__
@@ -242,7 +242,7 @@ Deletes a file.
 __Parameters:__
 
 - __successCallback__ - A callback that is called after the file has been deleted.  Invoked with no parameters. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the file.  Invoked with a FileError object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to delete the file.  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -261,12 +261,12 @@ __Quick Example__
 getParent
 ---------
 
-Look up the parent DirectoryEntry containing the file.
+Look up the parent [DirectoryEntry](../directoryentry/directoryentry.html) containing the file.
 
 __Parameters:__
 
-- __successCallback__ - A callback that is called with the file's parent DirectoryEntry. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when attempting to retrieve the parent DirectoryEntry.  Invoked with a FileError object. _(Function)_
+- __successCallback__ - A callback that is called with the file's parent [DirectoryEntry](../directoryentry/directoryentry.html). _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when attempting to retrieve the parent [DirectoryEntry](../directoryentry/directoryentry.html).  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -285,12 +285,12 @@ __Quick Example__
 createWriter
 ------------
 
-Create a FileWriter object associated with the file that the FileEntry represents.
+Create a [FileWriter](../filewriter/filewriter.html) object associated with the file that the FileEntry represents.
 
 __Parameters:__
 
-- __successCallback__ - A callback that is called with a FileWriter object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs while attempting to create the FileWriter.  Invoked with a FileError object. _(Function)_
+- __successCallback__ - A callback that is called with a [FileWriter](../filewriter/filewriter.html) object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs while attempting to create the [FileWriter](../filewriter/filewriter.html).  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 
@@ -309,12 +309,12 @@ __Quick Example__
 file
 ----
 
-Return a File object that represents the current state of the file that this FileEntry represents.
+Return a [File](../fileobj/fileobj.html) object that represents the current state of the file that this FileEntry represents.
 
 __Parameters:__
 
-- __successCallback__ - A callback that is called with a File object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs when creating the File object (e.g. the underlying file no longer exists).  Invoked with a FileError object. _(Function)_
+- __successCallback__ - A callback that is called with a [File](../fileobj/fileobj.html) object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs when creating the [File](../fileobj/fileobj.html) object (e.g. the underlying file no longer exists).  Invoked with a [FileError](../fileerror/fileerror.html) object. _(Function)_
 
 __Quick Example__
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/fileerror/fileerror.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/fileerror/fileerror.md b/www/docs/en/2.4.0/cordova/file/fileerror/fileerror.md
index dac6d35..3a4068c 100644
--- a/www/docs/en/2.4.0/cordova/file/fileerror/fileerror.md
+++ b/www/docs/en/2.4.0/cordova/file/fileerror/fileerror.md
@@ -23,7 +23,7 @@ title: FileError
 FileError
 ========
 
-A 'FileError' object is set when an error occurs in any of the File API methods. 
+A 'FileError' object is set when an error occurs in any of the [File](../fileobj/fileobj.html) API methods. 
 
 Properties
 ----------
@@ -49,4 +49,4 @@ Constants
 Description
 -----------
 
-The `FileError` object is the only parameter of any of the File API's error callbacks.  Developers must read the code property to determine the type of error.
\ No newline at end of file
+The `FileError` object is the only parameter of any of the [File](../fileobj/fileobj.html) API's error callbacks.  Developers must read the code property to determine the type of error.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/fileobj/fileobj.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/fileobj/fileobj.md b/www/docs/en/2.4.0/cordova/file/fileobj/fileobj.md
index a23ad2b..81a53b2 100644
--- a/www/docs/en/2.4.0/cordova/file/fileobj/fileobj.md
+++ b/www/docs/en/2.4.0/cordova/file/fileobj/fileobj.md
@@ -42,7 +42,7 @@ Methods
 Details
 -------
 
-The `File` object contains attributes of a single file.  You can get an instance of a File object by calling the __file__ method of a `FileEntry` object.
+The `File` object contains attributes of a single file.  You can get an instance of a File object by calling the __file__ method of a `[FileEntry](../fileentry/fileentry.html)` object.
 
 Supported Platforms
 -------------------
@@ -57,7 +57,7 @@ Supported Platforms
 slice
 --------------
 
-Return a new File object, for which FileReader will return only the specified portion of the file.
+Return a new File object, for which [FileReader](../filereader/filereader.html) will return only the specified portion of the file.
 Negative values for __start__ or __end__ are measured from the end of the file.
 The indexes are always relative to the current slice (see the full example).
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/filereader/filereader.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/filereader/filereader.md b/www/docs/en/2.4.0/cordova/file/filereader/filereader.md
index f6ce240..d245a5f 100644
--- a/www/docs/en/2.4.0/cordova/file/filereader/filereader.md
+++ b/www/docs/en/2.4.0/cordova/file/filereader/filereader.md
@@ -66,7 +66,7 @@ __Parameters:__
 - file - the file object to read
 
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
 	function win(file) {
@@ -92,7 +92,7 @@ __Parameters:__
 - file - the file object to read
 - encoding - the encoding to use to encode the file's content. Default is UTF8.
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
 	function win(file) {
@@ -110,7 +110,7 @@ Quick Example
 	
     entry.file(win, fail);
 
-Abort Quick Example
+Abort Quick [Example](../../storage/storage.opendatabase.html)
 -------------------
 
 	function win(file) {
@@ -129,7 +129,7 @@ Abort Quick Example
 	
     entry.file(win, fail);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -149,7 +149,7 @@ Full Example
         // Cordova is ready
         //
         function onDeviceReady() {
-			window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
+			window.requestFileSystem([LocalFileSystem](../localfilesystem/localfilesystem.html).PERSISTENT, 0, gotFS, fail);
         }
 		
 		function gotFS(fileSystem) {

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/filesystem/filesystem.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/filesystem/filesystem.md b/www/docs/en/2.4.0/cordova/file/filesystem/filesystem.md
index fc21b26..c80072c 100644
--- a/www/docs/en/2.4.0/cordova/file/filesystem/filesystem.md
+++ b/www/docs/en/2.4.0/cordova/file/filesystem/filesystem.md
@@ -34,7 +34,7 @@ Properties
 Details
 -------
 
-The `FileSystem` object represents information about the file system. The name of the file system will be unique across the list of exposed file systems.  The root property contains a `DirectoryEntry` object which represents the root directory of the file system.
+The `FileSystem` object represents information about the file system. The name of the file system will be unique across the list of exposed file systems.  The root property contains a `[DirectoryEntry](../directoryentry/directoryentry.html)` object which represents the root directory of the file system.
 
 Supported Platforms
 -------------------
@@ -45,7 +45,7 @@ Supported Platforms
 - Windows Phone 7 and 8
 - Windows 8
 
-File System Quick Example
+[File](../fileobj/fileobj.html) System Quick [Example](../../storage/storage.opendatabase.html)
 -------------------------
 
 	function onSuccess(fileSystem) {
@@ -54,9 +54,9 @@ File System Quick Example
 	}
 	
 	// request the persistent file system
-	window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onSuccess, null);
+	window.requestFileSystem([LocalFileSystem](../localfilesystem/localfilesystem.html).PERSISTENT, 0, onSuccess, null);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -74,7 +74,7 @@ Full Example
         // Cordova is ready
         //
         function onDeviceReady() {
-			window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFileSystemSuccess, fail);
+			window.requestFileSystem([LocalFileSystem](../localfilesystem/localfilesystem.html).PERSISTENT, 0, onFileSystemSuccess, fail);
         }
 
 		function onFileSystemSuccess(fileSystem) {

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/filetransfer/filetransfer.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/filetransfer/filetransfer.md b/www/docs/en/2.4.0/cordova/file/filetransfer/filetransfer.md
index ff50656..0ef177f 100644
--- a/www/docs/en/2.4.0/cordova/file/filetransfer/filetransfer.md
+++ b/www/docs/en/2.4.0/cordova/file/filetransfer/filetransfer.md
@@ -40,7 +40,7 @@ Methods
 Details
 -------
 
-The `FileTransfer` object provides a way to upload files to a remote server using an HTTP multi-part POST request.  Both HTTP and HTTPS protocols are supported.  Optional parameters can be specified by passing a FileUploadOptions object to the upload method.  On successful upload, the success callback will be called with a FileUploadResult object.  If an error occurs, the error callback will be invoked with a FileTransferError object.
+The `FileTransfer` object provides a way to upload files to a remote server using an HTTP multi-part POST request.  Both HTTP and HTTPS protocols are supported.  Optional parameters can be specified by passing a [FileUploadOptions](../fileuploadoptions/fileuploadoptions.html) object to the upload method.  On successful upload, the success callback will be called with a [FileUploadResult](../fileuploadresult/fileuploadresult.html) object.  If an error occurs, the error callback will be invoked with a [FileTransferError](../filetransfererror/filetransfererror.html) object.
 It is also possible to download a file from remote and save it on the device (only iOS and Android).
 
 Supported Platforms
@@ -59,8 +59,8 @@ __Parameters:__
 
 - __filePath__ - Full path of the file on the device
 - __server__ - URL of the server to receive the file (must already be encoded using encodeURI())
-- __successCallback__ - A callback that is called with a Metadata object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs retrieving the Metadata. Invoked with a FileTransferError object. _(Function)_
+- __successCallback__ - A callback that is called with a [Metadata](../metadata/metadata.html) object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs retrieving the [Metadata](../metadata/metadata.html). Invoked with a [FileTransferError](../filetransfererror/filetransfererror.html) object. _(Function)_
 - __options__ - Optional parameters such as file name and mimetype
 - __trustAllHosts__ - Optional parameter, defaults to false. If set to true then it will accept all security certificates. This is useful as Android rejects self signed security certificates. Not recommended for production use. Supported on Android and iOS. _(boolean)_
 
@@ -80,7 +80,7 @@ __Quick Example__
         console.log("upload error target " + error.target);
     }
 	
-	var options = new FileUploadOptions();
+	var options = new [FileUploadOptions](../fileuploadoptions/fileuploadoptions.html)();
 	options.fileKey="file";
 	options.fileName=fileURI.substr(fileURI.lastIndexOf('/')+1);
 	options.mimeType="text/plain";
@@ -199,8 +199,8 @@ __Parameters:__
 
 - __source__ - URL of the server to download the file (must already be encoded using encodeURI())
 - __target__ - Full path of the file on the device
-- __successCallback__ - A callback that is called with a FileEntry object. _(Function)_
-- __errorCallback__ - A callback that is called if an error occurs retrieving the Metadata. Invoked with a FileTransferError object. _(Function)_
+- __successCallback__ - A callback that is called with a [FileEntry](../fileentry/fileentry.html) object. _(Function)_
+- __errorCallback__ - A callback that is called if an error occurs retrieving the [Metadata](../metadata/metadata.html). Invoked with a [FileTransferError](../filetransfererror/filetransfererror.html) object. _(Function)_
 - __trustAllHosts__ - Optional parameter, defaults to false. If set to true then it will accept all security certificates. This is useful as Android rejects self signed security certificates. Not recommended for production use. Supported on Android and iOS. _(boolean)_
 
 __Quick Example__
@@ -226,7 +226,7 @@ __Quick Example__
 abort
 --------------
 
-Aborts an in-progress transfer. The onerror callback will be called with a FileTransferError object which has an error code of FileTransferError.ABORT_ERR.
+Aborts an in-progress transfer. The onerror callback will be called with a [FileTransferError](../filetransfererror/filetransfererror.html) object which has an error code of [FileTransferError](../filetransfererror/filetransfererror.html).ABORT_ERR.
 
 __Supported Platforms__
 
@@ -249,7 +249,7 @@ __Quick Example__
         console.log("upload error target " + error.target);
     }
 	
-	var options = new FileUploadOptions();
+	var options = new [FileUploadOptions](../fileuploadoptions/fileuploadoptions.html)();
 	options.fileKey="file";
 	options.fileName=fileURI.substr(fileURI.lastIndexOf('/')+1);
 	options.mimeType="text/plain";

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/fileuploadoptions/fileuploadoptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/fileuploadoptions/fileuploadoptions.md b/www/docs/en/2.4.0/cordova/file/fileuploadoptions/fileuploadoptions.md
index e28cfcc..3e89008 100644
--- a/www/docs/en/2.4.0/cordova/file/fileuploadoptions/fileuploadoptions.md
+++ b/www/docs/en/2.4.0/cordova/file/fileuploadoptions/fileuploadoptions.md
@@ -23,7 +23,7 @@ title: FileUploadOptions
 FileUploadOptions
 ========
 
-A `FileUploadOptions` object can be passed to the FileTransfer objects upload method in order to specify additional parameters to the upload script.
+A `FileUploadOptions` object can be passed to the [FileTransfer](../filetransfer/filetransfer.html) objects upload method in order to specify additional parameters to the upload script.
 
 Properties
 ----------
@@ -39,7 +39,7 @@ Properties
 Description
 -----------
 
-A `FileUploadOptions` object can be passed to the FileTransfer objects upload method in order to specify additional parameters to the upload script.
+A `FileUploadOptions` object can be passed to the [FileTransfer](../filetransfer/filetransfer.html) objects upload method in order to specify additional parameters to the upload script.
 
 WP7 Quirk
 ---------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/fileuploadresult/fileuploadresult.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/fileuploadresult/fileuploadresult.md b/www/docs/en/2.4.0/cordova/file/fileuploadresult/fileuploadresult.md
index de8f5c7..19fd630 100644
--- a/www/docs/en/2.4.0/cordova/file/fileuploadresult/fileuploadresult.md
+++ b/www/docs/en/2.4.0/cordova/file/fileuploadresult/fileuploadresult.md
@@ -23,7 +23,7 @@ title: FileUploadResult
 FileUploadResult
 ========
 
-A `FileUploadResult` object is returned via the success callback of the FileTransfer upload method.
+A `FileUploadResult` object is returned via the success callback of the [FileTransfer](../filetransfer/filetransfer.html) upload method.
 
 Properties
 ----------
@@ -35,7 +35,7 @@ Properties
 Description
 -----------
 
-The `FileUploadResult` object is returned via the success callback of the FileTransfer upload method.
+The `FileUploadResult` object is returned via the success callback of the [FileTransfer](../filetransfer/filetransfer.html) upload method.
 
 iOS Quirks
 ----------

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c4881540/www/docs/en/2.4.0/cordova/file/filewriter/filewriter.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/filewriter/filewriter.md b/www/docs/en/2.4.0/cordova/file/filewriter/filewriter.md
index 04dbaae..556ae17 100644
--- a/www/docs/en/2.4.0/cordova/file/filewriter/filewriter.md
+++ b/www/docs/en/2.4.0/cordova/file/filewriter/filewriter.md
@@ -64,7 +64,7 @@ Supported Platforms
 - Windows Phone 7 and 8
 - Windows 8
 
-Seek Quick Example
+Seek Quick [Example](../../storage/storage.opendatabase.html)
 ------------------------------
 
 	function win(writer) {
@@ -78,7 +78,7 @@ Seek Quick Example
 	
     entry.createWriter(win, fail);
 
-Truncate Quick Example
+Truncate Quick [Example](../../storage/storage.opendatabase.html)
 --------------------------
 
 	function win(writer) {
@@ -91,7 +91,7 @@ Truncate Quick Example
 	
     entry.createWriter(win, fail);
 
-Write Quick Example
+Write Quick [Example](../../storage/storage.opendatabase.html)
 -------------------	
 
 	function win(writer) {
@@ -107,7 +107,7 @@ Write Quick Example
 	
     entry.createWriter(win, fail);
 
-Append Quick Example
+Append Quick [Example](../../storage/storage.opendatabase.html)
 --------------------	
 
 	function win(writer) {
@@ -124,7 +124,7 @@ Append Quick Example
 	
     entry.createWriter(win, fail);
 	
-Abort Quick Example
+Abort Quick [Example](../../storage/storage.opendatabase.html)
 -------------------
 
 	function win(writer) {
@@ -141,7 +141,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.4.0/cordova/file/flags/flags.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/flags/flags.md b/www/docs/en/2.4.0/cordova/file/flags/flags.md
index c6f155e..3776f96 100644
--- a/www/docs/en/2.4.0/cordova/file/flags/flags.md
+++ b/www/docs/en/2.4.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
 ----------
@@ -40,7 +40,7 @@ Supported Platforms
 - Windows Phone 7 and 8
 - Windows 8
 
-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.4.0/cordova/file/localfilesystem/localfilesystem.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/localfilesystem/localfilesystem.md b/www/docs/en/2.4.0/cordova/file/localfilesystem/localfilesystem.md
index 6116219..7c8b9d0 100644
--- a/www/docs/en/2.4.0/cordova/file/localfilesystem/localfilesystem.md
+++ b/www/docs/en/2.4.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
 ---------
@@ -51,7 +51,7 @@ Supported Platforms
 - Windows Phone 7 and 8
 - Windows 8
 
-Request File System Quick Example
+Request [File](../fileobj/fileobj.html) System Quick [Example](../../storage/storage.opendatabase.html)
 ---------------------------------
 
 	function onSuccess(fileSystem) {
@@ -61,7 +61,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) {
@@ -70,7 +70,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.4.0/cordova/file/metadata/metadata.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/file/metadata/metadata.md b/www/docs/en/2.4.0/cordova/file/metadata/metadata.md
index 9d7a8e5..6d5ac04 100644
--- a/www/docs/en/2.4.0/cordova/file/metadata/metadata.md
+++ b/www/docs/en/2.4.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
 -------------------
@@ -44,7 +44,7 @@ Supported Platforms
 - Windows Phone 7 and 8
 - Windows 8
 
-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.4.0/cordova/geolocation/Coordinates/coordinates.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/Coordinates/coordinates.md b/www/docs/en/2.4.0/cordova/geolocation/Coordinates/coordinates.md
index 4c3891c..5053b54 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/Coordinates/coordinates.md
+++ b/www/docs/en/2.4.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
 -------------------
@@ -53,7 +53,7 @@ Supported Platforms
 - Tizen
 - Windows 8
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -77,7 +77,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.4.0/cordova/geolocation/Position/position.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/Position/position.md b/www/docs/en/2.4.0/cordova/geolocation/Position/position.md
index 90bd084..e8d5344 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/Position/position.md
+++ b/www/docs/en/2.4.0/cordova/geolocation/Position/position.md
@@ -48,7 +48,7 @@ Supported Platforms
 - Tizen
 - Windows 8
 
-Quick Example
+Quick [Example](../../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -73,7 +73,7 @@ Quick Example
 
     navigator.geolocation.getCurrentPosition(onSuccess, onError);
 
-Full Example
+Full [Example](../../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -109,7 +109,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.4.0/cordova/geolocation/PositionError/positionError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/PositionError/positionError.md b/www/docs/en/2.4.0/cordova/geolocation/PositionError/positionError.md
index 2f06723..db51351 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/PositionError/positionError.md
+++ b/www/docs/en/2.4.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.4.0/cordova/geolocation/geolocation.clearWatch.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/geolocation.clearWatch.md b/www/docs/en/2.4.0/cordova/geolocation/geolocation.clearWatch.md
index a8d0ff4..59a19b7 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/geolocation.clearWatch.md
+++ b/www/docs/en/2.4.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
 -------------------
@@ -49,7 +49,7 @@ Supported Platforms
 - Tizen
 - Windows 8
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // Options: watch for changes in position, and use the most
@@ -62,7 +62,7 @@ Quick Example
     navigator.geolocation.clearWatch(watchID);
 
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -106,7 +106,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.4.0/cordova/geolocation/geolocation.getCurrentPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/geolocation.getCurrentPosition.md b/www/docs/en/2.4.0/cordova/geolocation/geolocation.getCurrentPosition.md
index 7530f65..3e96e9a 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/geolocation.getCurrentPosition.md
+++ b/www/docs/en/2.4.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.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.
+`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
@@ -54,7 +54,7 @@ Supported Platforms
 - Tizen
 - Windows 8
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -81,7 +81,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.4.0/cordova/geolocation/geolocation.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/geolocation.md b/www/docs/en/2.4.0/cordova/geolocation/geolocation.md
index 88f381f..97943da 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/geolocation.md
+++ b/www/docs/en/2.4.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.4.0/cordova/geolocation/geolocation.watchPosition.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/geolocation.watchPosition.md b/www/docs/en/2.4.0/cordova/geolocation/geolocation.watchPosition.md
index 5fa8fa2..deb61d8 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/geolocation.watchPosition.md
+++ b/www/docs/en/2.4.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
 -------------------
@@ -58,7 +58,7 @@ Supported Platforms
 - Tizen
 - Windows 8
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     // onSuccess Callback
@@ -84,7 +84,7 @@ Quick Example
     var watchID = navigator.geolocation.watchPosition(onSuccess, onError, { timeout: 30000 });
     
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -118,7 +118,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.4.0/cordova/geolocation/parameters/geolocation.options.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/parameters/geolocation.options.md b/www/docs/en/2.4.0/cordova/geolocation/parameters/geolocation.options.md
index 65f3bd6..9af53c2 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/parameters/geolocation.options.md
+++ b/www/docs/en/2.4.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.4.0/cordova/geolocation/parameters/geolocationError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/parameters/geolocationError.md b/www/docs/en/2.4.0/cordova/geolocation/parameters/geolocationError.md
index 1cc1d9e..665914a 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/parameters/geolocationError.md
+++ b/www/docs/en/2.4.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.4.0/cordova/geolocation/parameters/geolocationSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/geolocation/parameters/geolocationSuccess.md b/www/docs/en/2.4.0/cordova/geolocation/parameters/geolocationSuccess.md
index 6e6a063..fe96449 100644
--- a/www/docs/en/2.4.0/cordova/geolocation/parameters/geolocationSuccess.md
+++ b/www/docs/en/2.4.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.4.0/cordova/globalization/GlobalizationError/globalizationerror.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/GlobalizationError/globalizationerror.md b/www/docs/en/2.4.0/cordova/globalization/GlobalizationError/globalizationerror.md
index b161e7f..100c6bf 100644
--- a/www/docs/en/2.4.0/cordova/globalization/GlobalizationError/globalizationerror.md
+++ b/www/docs/en/2.4.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.4.0/cordova/globalization/globalization.dateToString.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.dateToString.md b/www/docs/en/2.4.0/cordova/globalization/globalization.dateToString.md
index 5991ad0..881c476 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.dateToString.md
+++ b/www/docs/en/2.4.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'.
@@ -51,7 +51,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 8
 
-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.
@@ -63,7 +63,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.4.0/cordova/globalization/globalization.getCurrencyPattern.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.getCurrencyPattern.md b/www/docs/en/2.4.0/cordova/globalization/globalization.getCurrencyPattern.md
index 0771003..f058ee4 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.getCurrencyPattern.md
+++ b/www/docs/en/2.4.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.4.0/cordova/globalization/globalization.getDateNames.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.getDateNames.md b/www/docs/en/2.4.0/cordova/globalization/globalization.getDateNames.md
index a32d884..8113111 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.getDateNames.md
+++ b/www/docs/en/2.4.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'.
@@ -49,7 +49,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 8
 
-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"
@@ -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.4.0/cordova/globalization/globalization.getDatePattern.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.getDatePattern.md b/www/docs/en/2.4.0/cordova/globalization/globalization.getDatePattern.md
index 63ea630..152119a 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.getDatePattern.md
+++ b/www/docs/en/2.4.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'.
@@ -53,7 +53,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 8
 
-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".
@@ -66,7 +66,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.4.0/cordova/globalization/globalization.getFirstDayOfWeek.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.getFirstDayOfWeek.md b/www/docs/en/2.4.0/cordova/globalization/globalization.getFirstDayOfWeek.md
index f999799..9fc9d1b 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.getFirstDayOfWeek.md
+++ b/www/docs/en/2.4.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
@@ -43,7 +43,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 8
 
-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".
@@ -53,7 +53,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.4.0/cordova/globalization/globalization.getLocaleName.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.getLocaleName.md b/www/docs/en/2.4.0/cordova/globalization/globalization.getLocaleName.md
index 45f1482..71f70b0 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.getLocaleName.md
+++ b/www/docs/en/2.4.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
@@ -46,7 +46,7 @@ Supported Platforms
 - Windows Phone 8
 
 
-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".
@@ -56,7 +56,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.4.0/cordova/globalization/globalization.getNumberPattern.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.getNumberPattern.md b/www/docs/en/2.4.0/cordova/globalization/globalization.getNumberPattern.md
index 471c560..4fabd1c 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.getNumberPattern.md
+++ b/www/docs/en/2.4.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.
@@ -55,7 +55,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 8
 
-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:
@@ -84,7 +84,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.4.0/cordova/globalization/globalization.getPreferredLanguage.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.getPreferredLanguage.md b/www/docs/en/2.4.0/cordova/globalization/globalization.getPreferredLanguage.md
index d1c484b..4204957 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.getPreferredLanguage.md
+++ b/www/docs/en/2.4.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
 -------------------
@@ -45,7 +45,7 @@ Supported Platforms
 - Windows Phone 8
 
 
-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".
@@ -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 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.4.0/cordova/globalization/globalization.isDayLightSavingsTime.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.isDayLightSavingsTime.md b/www/docs/en/2.4.0/cordova/globalization/globalization.isDayLightSavingsTime.md
index 0299a9d..347eb94 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.isDayLightSavingsTime.md
+++ b/www/docs/en/2.4.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
 -------------------
@@ -44,7 +44,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 8
 
-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".
@@ -55,7 +55,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.4.0/cordova/globalization/globalization.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.md b/www/docs/en/2.4.0/cordova/globalization/globalization.md
index c000869..0c6227e 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.md
+++ b/www/docs/en/2.4.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.4.0/cordova/globalization/globalization.numberToString.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.numberToString.md b/www/docs/en/2.4.0/cordova/globalization/globalization.numberToString.md
index b109ac1..7b34439 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.numberToString.md
+++ b/www/docs/en/2.4.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.
 
@@ -44,7 +44,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 8
 
-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"
@@ -56,7 +56,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.4.0/cordova/globalization/globalization.stringToDate.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.stringToDate.md b/www/docs/en/2.4.0/cordova/globalization/globalization.stringToDate.md
index c4e10bf..c31ced2 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.stringToDate.md
+++ b/www/docs/en/2.4.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
@@ -61,7 +61,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 8
 
-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.
@@ -76,7 +76,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.4.0/cordova/globalization/globalization.stringToNumber.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/globalization/globalization.stringToNumber.md b/www/docs/en/2.4.0/cordova/globalization/globalization.stringToNumber.md
index 3fdb3fd..7d0ab5a 100644
--- a/www/docs/en/2.4.0/cordova/globalization/globalization.stringToNumber.md
+++ b/www/docs/en/2.4.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.
@@ -46,7 +46,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 8
 
-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".
@@ -59,7 +59,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.4.0/cordova/inappbrowser/inappbrowser.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/inappbrowser/inappbrowser.md b/www/docs/en/2.4.0/cordova/inappbrowser/inappbrowser.md
index ebd82a2..6edae6a 100644
--- a/www/docs/en/2.4.0/cordova/inappbrowser/inappbrowser.md
+++ b/www/docs/en/2.4.0/cordova/inappbrowser/inappbrowser.md
@@ -23,14 +23,14 @@ title: InAppBrowser
 InAppBrowser
 ============
 
-> The InAppBrowser is a web-browser that is shown in your app when you use the `window.open` call.
+> The InAppBrowser is a web-browser that is shown in your app when you use the `[window.open](window.open.html)` call.
 
     var ref = window.open('http://apache.org', '_blank', 'location=yes');
     
 Description
 -----------
 
-The object returned from a call to `window.open`.
+The object returned from a call to `[window.open](window.open.html)`.
 
 Methods
 ----------
@@ -87,13 +87,13 @@ Supported Platforms
 - iOS
 - Windows Phone 7 + 8
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     var ref = window.open('http://apache.org', '_blank', 'location=yes');
     ref.addEventListener('loadstart', function() { alert(event.url); });
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -147,7 +147,7 @@ Supported Platforms
 - iOS
 - Windows Phone 7 + 8
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     var ref = window.open('http://apache.org', '_blank', 'location=yes');
@@ -155,7 +155,7 @@ Quick Example
     ref.addEventListener('loadstart', myCallback);
     ref.removeEventListener('loadstart', myCallback);
 
-Full Example
+Full [Example](../storage/storage.opendatabase.html)
 ------------
 
     <!DOCTYPE html>
@@ -219,13 +219,13 @@ Supported Platforms
 - iOS
 - Windows Phone 7 + 8
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     var ref = window.open('http://apache.org', '_blank', 'location=yes');
     ref.close();
 
-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.4.0/cordova/inappbrowser/window.open.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/inappbrowser/window.open.md b/www/docs/en/2.4.0/cordova/inappbrowser/window.open.md
index 9c6f7c0..73c2eaa 100644
--- a/www/docs/en/2.4.0/cordova/inappbrowser/window.open.md
+++ b/www/docs/en/2.4.0/cordova/inappbrowser/window.open.md
@@ -23,11 +23,11 @@ title: window.open
 window.open
 ===========
 
-Opens a URL in a new InAppBrowser instance, the current browser instance, or the system browser.
+Opens a URL in a new [InAppBrowser](inappbrowser.html) instance, the current browser instance, or the system browser.
 
     var ref = window.open(url, target, options);
     
-- __ref:__ reference to the InAppBrowser window (`InAppBrowser`)
+- __ref:__ reference to the [InAppBrowser](inappbrowser.html) window (`[InAppBrowser](inappbrowser.html)`)
 - __url:__ the URL to load (`String`). Call encodeURI() on this if you have Unicode characters in your URL.
 - __target:__ the target to load the URL in (`String`) (Optional, Default: "_self")
 
@@ -36,7 +36,7 @@ Opens a URL in a new InAppBrowser instance, the current browser instance, or the
         _system - always open in the system web browser 
     
     
-- __options:__ options for the InAppBrowser (`String`) (Optional, Default: "location=yes")
+- __options:__ options for the [InAppBrowser](inappbrowser.html) (`String`) (Optional, Default: "location=yes")
     
     The options string must not contain any blank space, each feature name and value must be separated by a comma. Feature names are case insensitive. Only the value below is supported on all platforms:
 
@@ -60,13 +60,13 @@ Supported Platforms
 - BlackBerry 10
 - Windows Phone 7 + 8
 
-Quick Example
+Quick [Example](../storage/storage.opendatabase.html)
 -------------
 
     var ref = window.open('http://apache.org', '_blank', 'location=yes');
     var ref2 = window.open(encodeURI('http://ja.m.wikipedia.org/wiki/ハングル'), '_blank', 'location=yes');
 
-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.4.0/cordova/media/MediaError/mediaError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/media/MediaError/mediaError.md b/www/docs/en/2.4.0/cordova/media/MediaError/mediaError.md
index eb754bf..77e8375 100644
--- a/www/docs/en/2.4.0/cordova/media/MediaError/mediaError.md
+++ b/www/docs/en/2.4.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.4.0/cordova/media/Parameters/mediaError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/media/Parameters/mediaError.md b/www/docs/en/2.4.0/cordova/media/Parameters/mediaError.md
index 8132ca0..d4d330b 100644
--- a/www/docs/en/2.4.0/cordova/media/Parameters/mediaError.md
+++ b/www/docs/en/2.4.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.4.0/cordova/media/capture/CaptureCB.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/media/capture/CaptureCB.md b/www/docs/en/2.4.0/cordova/media/capture/CaptureCB.md
index 4388e48..d0d3154 100644
--- a/www/docs/en/2.4.0/cordova/media/capture/CaptureCB.md
+++ b/www/docs/en/2.4.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.4.0/cordova/media/capture/CaptureError.md
----------------------------------------------------------------------
diff --git a/www/docs/en/2.4.0/cordova/media/capture/CaptureError.md b/www/docs/en/2.4.0/cordova/media/capture/CaptureError.md
index b41213d..884c309 100644
--- a/www/docs/en/2.4.0/cordova/media/capture/CaptureError.md
+++ b/www/docs/en/2.4.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.


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