You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/09/11 06:41:16 UTC

[32/51] [partial] docs commit: Reverting autolinking change because of inconsistencies.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/contacts/ContactName/contactname.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/contacts/ContactName/contactname.md b/www/docs/en/1.5.0/phonegap/contacts/ContactName/contactname.md
index fad3b26..4b1b542 100644
--- a/www/docs/en/1.5.0/phonegap/contacts/ContactName/contactname.md
+++ b/www/docs/en/1.5.0/phonegap/contacts/ContactName/contactname.md
@@ -18,25 +18,25 @@ license: >
     under the License.
 ---
 
-<a href="../Contact/contact.html">Contact</a>Name
+ContactName
 ===========
 
-Contains <a href="../../storage/parameters/name.html">name</a> properties of a `<a href="../Contact/contact.html">Contact</a>` object.
+Contains name properties of a `Contact` object.
 
 Properties
 ----------
 
-- __formatted:__ The complete <a href="../../storage/parameters/name.html">name</a> of the contact. _(DOMString)_
-- __familyName:__ The contacts family <a href="../../storage/parameters/name.html">name</a>. _(DOMString)_
-- __givenName:__ The contacts given <a href="../../storage/parameters/name.html">name</a>. _(DOMString)_
-- __middleName:__ The contacts middle <a href="../../storage/parameters/name.html">name</a>. _(DOMString)_
+- __formatted:__ The complete name of the contact. _(DOMString)_
+- __familyName:__ The contacts family name. _(DOMString)_
+- __givenName:__ The contacts given name. _(DOMString)_
+- __middleName:__ The contacts middle name. _(DOMString)_
 - __honorificPrefix:__ The contacts prefix (example Mr. or Dr.) _(DOMString)_
 - __honorificSuffix:__ The contacts suffix (example Esq.). _(DOMString)_
 
 Details
 -------
 
-The `<a href="../Contact/contact.html">Contact</a>Name` object stores <a href="../../storage/parameters/name.html">name</a> properties of a contact.
+The `ContactName` object stores name properties of a contact.
 
 Supported Platforms
 -------------------
@@ -45,77 +45,77 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick <a href="../../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     function onSuccess(contacts) {
 		for (var i=0; i<contacts.length; i++) {
-			alert("Formatted: " + contacts[i].<a href="../../storage/parameters/name.html">name</a>.formatted + "\n" + 
-					"Family Name: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.familyName + "\n" + 
-					"Given Name: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.givenName + "\n" + 
-					"Middle Name: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.middleName + "\n" + 
-					"Suffix: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.honorificSuffix + "\n" + 
-					"Prefix: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.honorificSuffix);
+			alert("Formatted: " + contacts[i].name.formatted + "\n" + 
+					"Family Name: "  + contacts[i].name.familyName + "\n" + 
+					"Given Name: "  + contacts[i].name.givenName + "\n" + 
+					"Middle Name: "  + contacts[i].name.middleName + "\n" + 
+					"Suffix: "  + contacts[i].name.honorificSuffix + "\n" + 
+					"Prefix: "  + contacts[i].name.honorificSuffix);
 		}
     };
 
-    function onError(<a href="../parameters/contactError.html">contactError</a>) {
+    function onError(contactError) {
         alert('onError!');
     };
 
-    var options = new <a href="../Contact/contact.html">Contact</a>FindOptions();
+    var options = new ContactFindOptions();
 	options.filter="";
-	filter = ["displayName","<a href="../../storage/parameters/name.html">name</a>"];
-    navigator.<a href="../contacts.find.html">contacts.find</a>(filter, onSuccess, onError, options);
+	filter = ["displayName","name"];
+    navigator.contacts.find(filter, onSuccess, onError, options);
 
-Full <a href="../../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title><a href="../Contact/contact.html">Contact</a> <a href="../../storage/storage.opendatabase.html">Example</a></title>
+        <title>Contact Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for PhoneGap to load
         //
-        document.addEventListener("<a href="../../events/events.deviceready.html">deviceready</a>", on<a href="../../device/device.html">Device</a>Ready, false);
+        document.addEventListener("deviceready", onDeviceReady, false);
 
         // PhoneGap is ready
         //
-        function on<a href="../../device/device.html">Device</a>Ready() {
-			var options = new <a href="../Contact/contact.html">Contact</a>FindOptions();
+        function onDeviceReady() {
+			var options = new ContactFindOptions();
 			options.filter="";
-			filter = ["displayName","<a href="../../storage/parameters/name.html">name</a>"];
-			navigator.<a href="../contacts.find.html">contacts.find</a>(filter, onSuccess, onError, options);
+			filter = ["displayName","name"];
+			navigator.contacts.find(filter, onSuccess, onError, options);
         }
     
         // onSuccess: Get a snapshot of the current contacts
         //
 		function onSuccess(contacts) {
 			for (var i=0; i<contacts.length; i++) {
-				alert("Formatted: " + contacts[i].<a href="../../storage/parameters/name.html">name</a>.formatted + "\n" + 
-						"Family Name: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.familyName + "\n" + 
-						"Given Name: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.givenName + "\n" + 
-						"Middle Name: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.middleName + "\n" + 
-						"Suffix: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.honorificSuffix + "\n" + 
-						"Prefix: "  + contacts[i].<a href="../../storage/parameters/name.html">name</a>.honorificPrefix);
+				alert("Formatted: " + contacts[i].name.formatted + "\n" + 
+						"Family Name: "  + contacts[i].name.familyName + "\n" + 
+						"Given Name: "  + contacts[i].name.givenName + "\n" + 
+						"Middle Name: "  + contacts[i].name.middleName + "\n" + 
+						"Suffix: "  + contacts[i].name.honorificSuffix + "\n" + 
+						"Prefix: "  + contacts[i].name.honorificPrefix);
 			}
 		};
     
         // onError: Failed to get the contacts
         //
-        function onError(<a href="../parameters/contactError.html">contactError</a>) {
+        function onError(contactError) {
             alert('onError!');
         }
 
         </script>
       </head>
       <body>
-        <h1><a href="../../storage/storage.opendatabase.html">Example</a></h1>
-        <p>Find <a href="../Contact/contact.html">Contact</a>s</p>
+        <h1>Example</h1>
+        <p>Find Contacts</p>
       </body>
     </html>
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/contacts/ContactOrganization/contactorganization.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/contacts/ContactOrganization/contactorganization.md b/www/docs/en/1.5.0/phonegap/contacts/ContactOrganization/contactorganization.md
index 4752cda..b0a1eb4 100644
--- a/www/docs/en/1.5.0/phonegap/contacts/ContactOrganization/contactorganization.md
+++ b/www/docs/en/1.5.0/phonegap/contacts/ContactOrganization/contactorganization.md
@@ -18,23 +18,23 @@ license: >
     under the License.
 ---
 
-<a href="../Contact/contact.html">Contact</a>Organization
+ContactOrganization
 ===================
 
-Contains organization properties of a `<a href="../Contact/contact.html">Contact</a>` object.
+Contains organization properties of a `Contact` object.
 
 Properties
 ----------
-- __pref:__ Set to `true` if this `<a href="../Contact/contact.html">Contact</a>Organization` contains the user's preferred value. _(boolean)_
+- __pref:__ Set to `true` if this `ContactOrganization` contains the user's preferred value. _(boolean)_
 - __type:__ A string that tells you what type of field this is (example: 'home'). _(DOMString)
-- __<a href="../../storage/parameters/name.html">name</a>:__ The <a href="../../storage/parameters/name.html">name</a> of the organization. _(DOMString)_
+- __name:__ The name of the organization. _(DOMString)_
 - __department:__ The department the contract works for. _(DOMString)_
 - __title:__ The contacts title at the organization. _(DOMString)_
 
 Details
 -------
 
-The `<a href="../Contact/contact.html">Contact</a>Organization` object stores a contact's organization properties.  A `<a href="../Contact/contact.html">Contact</a>` object stores one or more `<a href="../Contact/contact.html">Contact</a>Organization` objects in an array. 
+The `ContactOrganization` object stores a contact's organization properties.  A `Contact` object stores one or more `ContactOrganization` objects in an array. 
 
 Supported Platforms
 -------------------
@@ -43,7 +43,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick <a href="../../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     function onSuccess(contacts) {
@@ -51,44 +51,44 @@ Quick <a href="../../storage/storage.opendatabase.html">Example</a>
 			for (var j=0; j<contacts[i].organizations.length; j++) {
 				alert("Pref: " + contacts[i].organizations[j].pref + "\n" +
 						"Type: " + contacts[i].organizations[j].type + "\n" +
-						"Name: " + contacts[i].organizations[j].<a href="../../storage/parameters/name.html">name</a> + "\n" + 
+						"Name: " + contacts[i].organizations[j].name + "\n" + 
 						"Department: "  + contacts[i].organizations[j].department + "\n" + 
 						"Title: "  + contacts[i].organizations[j].title);
 			}
 		}
     };
 
-    function onError(<a href="../parameters/contactError.html">contactError</a>) {
+    function onError(contactError) {
         alert('onError!');
     };
 
-    var options = new <a href="../Contact/contact.html">Contact</a>FindOptions();
+    var options = new ContactFindOptions();
 	options.filter="";
 	filter = ["displayName","organizations"];
-    navigator.<a href="../contacts.find.html">contacts.find</a>(filter, onSuccess, onError, options);
+    navigator.contacts.find(filter, onSuccess, onError, options);
 
-Full <a href="../../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title><a href="../Contact/contact.html">Contact</a> <a href="../../storage/storage.opendatabase.html">Example</a></title>
+        <title>Contact Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for PhoneGap to load
         //
-        document.addEventListener("<a href="../../events/events.deviceready.html">deviceready</a>", on<a href="../../device/device.html">Device</a>Ready, false);
+        document.addEventListener("deviceready", onDeviceReady, false);
 
         // PhoneGap is ready
         //
-        function on<a href="../../device/device.html">Device</a>Ready() {
-			var options = new <a href="../Contact/contact.html">Contact</a>FindOptions();
+        function onDeviceReady() {
+			var options = new ContactFindOptions();
 			options.filter="";
 			filter = ["displayName","organizations"];
-			navigator.<a href="../contacts.find.html">contacts.find</a>(filter, onSuccess, onError, options);
+			navigator.contacts.find(filter, onSuccess, onError, options);
         }
     
         // onSuccess: Get a snapshot of the current contacts
@@ -98,7 +98,7 @@ Full <a href="../../storage/storage.opendatabase.html">Example</a>
 				for (var j=0; j<contacts[i].organizations.length; j++) {
 					alert("Pref: " + contacts[i].organizations[j].pref + "\n" +
 							"Type: " + contacts[i].organizations[j].type + "\n" +
-							"Name: " + contacts[i].organizations[j].<a href="../../storage/parameters/name.html">name</a> + "\n" + 
+							"Name: " + contacts[i].organizations[j].name + "\n" + 
 							"Department: "  + contacts[i].organizations[j].department + "\n" + 
 							"Title: "  + contacts[i].organizations[j].title);
 				}
@@ -107,15 +107,15 @@ Full <a href="../../storage/storage.opendatabase.html">Example</a>
     
         // onError: Failed to get the contacts
         //
-        function onError(<a href="../parameters/contactError.html">contactError</a>) {
+        function onError(contactError) {
             alert('onError!');
         }
 
         </script>
       </head>
       <body>
-        <h1><a href="../../storage/storage.opendatabase.html">Example</a></h1>
-        <p>Find <a href="../Contact/contact.html">Contact</a>s</p>
+        <h1>Example</h1>
+        <p>Find Contacts</p>
       </body>
     </html>
 	
@@ -136,7 +136,7 @@ BlackBerry WebWorks (OS 5.0 and higher) Quirks
 --------------------------------------------
 - __pref:__ This property is not supported by BlackBerry devices and will always return `false`.
 - __type:__ This property is not supported by BlackBerry devices and will always return `null`.
-- __<a href="../../storage/parameters/name.html">name</a>:__ Partially supported.  The first organization <a href="../../storage/parameters/name.html">name</a> will be stored in the BlackBerry __company__ field.
+- __name:__ Partially supported.  The first organization name will be stored in the BlackBerry __company__ field.
 - __department:__ This property is not supported, and will always be returned as `null`.
 - __title:__ Partially supported.  The first organization title will be stored in the BlackBerry __jobTitle__ field.
 
@@ -144,8 +144,8 @@ iOS Quirks
 -----------
 - __pref:__ This property is not supported on iOS devices and will always return `false`.
 - __type:__ This property is not supported on iOS devices and will always return `null`.
-- __<a href="../../storage/parameters/name.html">name</a>:__ Partially supported.  The first organization <a href="../../storage/parameters/name.html">name</a> will be stored in the iOS __kABPersonOrganizationProperty__ field.
-- __department__: Partially supported.  The first department <a href="../../storage/parameters/name.html">name</a> will be stored in the iOS __kABPersonDepartmentProperty__ field.
+- __name:__ Partially supported.  The first organization name will be stored in the iOS __kABPersonOrganizationProperty__ field.
+- __department__: Partially supported.  The first department name will be stored in the iOS __kABPersonDepartmentProperty__ field.
 - __title__: Partially supported.  The first title will be stored in the iOS __kABPersonJobTitleProperty__ field.
 
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/contacts/contacts.create.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/contacts/contacts.create.md b/www/docs/en/1.5.0/phonegap/contacts/contacts.create.md
index 1884f12..981786c 100644
--- a/www/docs/en/1.5.0/phonegap/contacts/contacts.create.md
+++ b/www/docs/en/1.5.0/phonegap/contacts/contacts.create.md
@@ -21,16 +21,16 @@ license: >
 contacts.create
 ===============
 
-Returns a new <a href="Contact/contact.html">Contact</a> object.
+Returns a new Contact object.
 
     var contact = navigator.contacts.create(properties);
 
 Description
 -----------
 
-contacts.create is a synchronous function that returns a new `<a href="Contact/contact.html">Contact</a>` object.
+contacts.create is a synchronous function that returns a new `Contact` object.
 
-This method does not persist the <a href="Contact/contact.html">Contact</a> object to the device contacts database.  To persist the <a href="Contact/contact.html">Contact</a> object to the device, invoke the `<a href="Contact/contact.html">Contact</a>.save` method.
+This method does not persist the Contact object to the device contacts database.  To persist the Contact object to the device, invoke the `Contact.save` method.
 
 Supported Platforms
 -------------------
@@ -39,39 +39,39 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
-    var my<a href="Contact/contact.html">Contact</a> = navigator.contacts.create({"displayName": "Test User"});
+    var myContact = navigator.contacts.create({"displayName": "Test User"});
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title><a href="Contact/contact.html">Contact</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>Contact Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for PhoneGap to load
         //
-        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+        document.addEventListener("deviceready", onDeviceReady, false);
 
         // PhoneGap is ready
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
-			var my<a href="Contact/contact.html">Contact</a> = navigator.contacts.create({"displayName": "Test User"});
-			my<a href="Contact/contact.html">Contact</a>.gender = "male";
-			console.log("The contact, " + my<a href="Contact/contact.html">Contact</a>.displayName + ", is of the " + my<a href="Contact/contact.html">Contact</a>.gender + " gender");
+        function onDeviceReady() {
+			var myContact = navigator.contacts.create({"displayName": "Test User"});
+			myContact.gender = "male";
+			console.log("The contact, " + myContact.displayName + ", is of the " + myContact.gender + " gender");
         }
     
 
         </script>
       </head>
       <body>
-        <h1><a href="../storage/storage.opendatabase.html">Example</a></h1>
-        <p>Create <a href="Contact/contact.html">Contact</a></p>
+        <h1>Example</h1>
+        <p>Create Contact</p>
       </body>
     </html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/contacts/contacts.find.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/contacts/contacts.find.md b/www/docs/en/1.5.0/phonegap/contacts/contacts.find.md
index d9d0a5e..8b3605d 100644
--- a/www/docs/en/1.5.0/phonegap/contacts/contacts.find.md
+++ b/www/docs/en/1.5.0/phonegap/contacts/contacts.find.md
@@ -21,26 +21,26 @@ license: >
 contacts.find
 =============
 
-Queries the device contacts database and returns one or more `<a href="Contact/contact.html">Contact</a>` objects, each containing the fields specified.
+Queries the device contacts database and returns one or more `Contact` objects, each containing the fields specified.
 
-    navigator.contacts.find(<a href="parameters/contactFields.html">contactFields</a>, <a href="parameters/contactSuccess.html">contactSuccess</a>, <a href="parameters/contactError.html">contactError</a>, <a href="parameters/contactFindOptions.html">contactFindOptions</a>);
+    navigator.contacts.find(contactFields, contactSuccess, contactError, contactFindOptions);
 
 Description
 -----------
 
-contacts.find is an asynchronous function that queries the device contacts database and returns an array of `<a href="Contact/contact.html">Contact</a>` objects.  The resulting objects are passed to the `<a href="parameters/contactSuccess.html">contactSuccess</a>` callback function specified by the __<a href="parameters/contactSuccess.html">contactSuccess</a>__ parameter.  
+contacts.find is an asynchronous function that queries the device contacts database and returns an array of `Contact` objects.  The resulting objects are passed to the `contactSuccess` callback function specified by the __contactSuccess__ parameter.  
 
-Users must specify the contact fields to be used as a search qualifier in the __<a href="parameters/contactFields.html">contactFields</a>__ parameter.  Only the fields specified in the __<a href="parameters/contactFields.html">contactFields</a>__ parameter will be returned as properties of the `<a href="Contact/contact.html">Contact</a>` objects that are passed to the __<a href="parameters/contactSuccess.html">contactSuccess</a>__ callback function.  A zero-length __<a href="parameters/contactFields.html">contactFields</a>__ parameter will result in an array of `<a href="Contact/contact.html">Contact</a>` objects with only the `id` property populated. A __<a href="parameters/contactFields.html">contactFields</a>__ value of ["*"] will return all contact fields. 
+Users must specify the contact fields to be used as a search qualifier in the __contactFields__ parameter.  Only the fields specified in the __contactFields__ parameter will be returned as properties of the `Contact` objects that are passed to the __contactSuccess__ callback function.  A zero-length __contactFields__ parameter will result in an array of `Contact` objects with only the `id` property populated. A __contactFields__ value of ["*"] will return all contact fields. 
 
-The __<a href="parameters/contactFindOptions.html">contactFindOptions</a>.filter__ string can be used as a search filter when querying the contacts database.  If provided, a case-insensitive, partial value match is applied to each field specified in the __<a href="parameters/contactFields.html">contactFields</a>__ parameter.  If a match is found in a comparison with _any_ of the specified fields, the contact is returned.
+The __contactFindOptions.filter__ string can be used as a search filter when querying the contacts database.  If provided, a case-insensitive, partial value match is applied to each field specified in the __contactFields__ parameter.  If a match is found in a comparison with _any_ of the specified fields, the contact is returned.
 
 Parameters
 ----------
 
-- __<a href="parameters/contactFields.html">contactFields</a>:__ <a href="Contact/contact.html">Contact</a> fields to be used as search qualifier. Only these fields will have values in the resulting `<a href="Contact/contact.html">Contact</a>` objects. _(DOMString[])_ [Required]
-- __<a href="parameters/contactSuccess.html">contactSuccess</a>:__ Success callback function that is invoked with the contacts returned from the contacts database. [Required]
-- __<a href="parameters/contactError.html">contactError</a>:__ Error callback function. Invoked when error occurs. [Optional]
-- __<a href="parameters/contactFindOptions.html">contactFindOptions</a>:__ Search options to filter contacts. [Optional]
+- __contactFields:__ Contact fields to be used as search qualifier. Only these fields will have values in the resulting `Contact` objects. _(DOMString[])_ [Required]
+- __contactSuccess:__ Success callback function that is invoked with the contacts returned from the contacts database. [Required]
+- __contactError:__ Error callback function. Invoked when error occurs. [Optional]
+- __contactFindOptions:__ Search options to filter contacts. [Optional]
 
 Supported Platforms
 -------------------
@@ -49,45 +49,45 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     function onSuccess(contacts) {
         alert('Found ' + contacts.length + ' contacts.');
     };
 
-    function onError(<a href="parameters/contactError.html">contactError</a>) {
+    function onError(contactError) {
         alert('onError!');
     };
 
-    // find all contacts with 'Bob' in any <a href="../storage/parameters/name.html">name</a> field
-    var options = new <a href="Contact/contact.html">Contact</a>FindOptions();
+    // find all contacts with 'Bob' in any name field
+    var options = new ContactFindOptions();
 	options.filter="Bob"; 
-	var fields = ["displayName", "<a href="../storage/parameters/name.html">name</a>"];
+	var fields = ["displayName", "name"];
     navigator.contacts.find(fields, onSuccess, onError, options);
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title><a href="Contact/contact.html">Contact</a> <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>Contact Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for PhoneGap to load
         //
-        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+        document.addEventListener("deviceready", onDeviceReady, false);
 
         // PhoneGap is ready
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
-		    // find all contacts with 'Bob' in any <a href="../storage/parameters/name.html">name</a> field
-		    var options = new <a href="Contact/contact.html">Contact</a>FindOptions();
+        function onDeviceReady() {
+		    // find all contacts with 'Bob' in any name field
+		    var options = new ContactFindOptions();
 			options.filter="Bob"; 
-			var fields = ["displayName", "<a href="../storage/parameters/name.html">name</a>"];
+			var fields = ["displayName", "name"];
 		    navigator.contacts.find(fields, onSuccess, onError, options);
         }
     
@@ -101,15 +101,15 @@ Full <a href="../storage/storage.opendatabase.html">Example</a>
     
         // onError: Failed to get the contacts
         //
-        function onError(<a href="parameters/contactError.html">contactError</a>) {
+        function onError(contactError) {
             alert('onError!');
         }
 
         </script>
       </head>
       <body>
-        <h1><a href="../storage/storage.opendatabase.html">Example</a></h1>
-        <p>Find <a href="Contact/contact.html">Contact</a>s</p>
+        <h1>Example</h1>
+        <p>Find Contacts</p>
       </body>
     </html>
     

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/contacts/contacts.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/contacts/contacts.md b/www/docs/en/1.5.0/phonegap/contacts/contacts.md
index 554a82d..03eb3d8 100644
--- a/www/docs/en/1.5.0/phonegap/contacts/contacts.md
+++ b/www/docs/en/1.5.0/phonegap/contacts/contacts.md
@@ -18,7 +18,7 @@ license: >
     under the License.
 ---
 
-<a href="Contact/contact.html">Contact</a>s
+Contacts
 ========
 
 > The `contacts` object provides access to the device contacts database.  
@@ -26,24 +26,24 @@ license: >
 Methods
 -------
 
-- <a href="contacts.create.html">contacts.create</a>
-- <a href="contacts.find.html">contacts.find</a>
+- contacts.create
+- contacts.find
 
 Arguments
 ---------
 
-- <a href="parameters/contactFields.html">contactFields</a>
-- <a href="parameters/contactSuccess.html">contactSuccess</a>
-- <a href="parameters/contactError.html">contactError</a>
-- <a href="parameters/contactFindOptions.html">contactFindOptions</a>
+- contactFields
+- contactSuccess
+- contactError
+- contactFindOptions
 
 Objects
 -------
 
-- <a href="Contact/contact.html">Contact</a>
-- <a href="Contact/contact.html">Contact</a>Name
-- <a href="Contact/contact.html">Contact</a>Field
-- <a href="Contact/contact.html">Contact</a>Address
-- <a href="Contact/contact.html">Contact</a>Organization
-- <a href="Contact/contact.html">Contact</a>FindOptions
-- <a href="Contact/contact.html">Contact</a>Error
\ No newline at end of file
+- Contact
+- ContactName
+- ContactField
+- ContactAddress
+- ContactOrganization
+- ContactFindOptions
+- ContactError
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFields.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFields.md b/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFields.md
index 2275132..1951960 100644
--- a/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFields.md
+++ b/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFields.md
@@ -21,6 +21,6 @@ license: >
 contactFields
 =============
 
-Required parameter of the `<a href="../contacts.find.html">contacts.find</a>` method.  Use this parameter to specify which fields should be included in the `<a href="../Contact/contact.html">Contact</a>` objects resulting from a find operation.
+Required parameter of the `contacts.find` method.  Use this parameter to specify which fields should be included in the `Contact` objects resulting from a find operation.
 
-    ["<a href="../../storage/parameters/name.html">name</a>", "phoneNumbers", "emails"]
+    ["name", "phoneNumbers", "emails"]

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFindOptions.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFindOptions.md b/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFindOptions.md
index 9d92f9c..f2f3e12 100644
--- a/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFindOptions.md
+++ b/www/docs/en/1.5.0/phonegap/contacts/parameters/contactFindOptions.md
@@ -21,7 +21,7 @@ license: >
 contactFindOptions
 ==================
 
-Optional parameter of the `<a href="../contacts.find.html">contacts.find</a>` method.  Use this parameter to filter the contacts returned from the contacts database.
+Optional parameter of the `contacts.find` method.  Use this parameter to filter the contacts returned from the contacts database.
 
     { 
 		filter: "",

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/contacts/parameters/contactSuccess.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/contacts/parameters/contactSuccess.md b/www/docs/en/1.5.0/phonegap/contacts/parameters/contactSuccess.md
index 0394b6d..925105f 100644
--- a/www/docs/en/1.5.0/phonegap/contacts/parameters/contactSuccess.md
+++ b/www/docs/en/1.5.0/phonegap/contacts/parameters/contactSuccess.md
@@ -21,7 +21,7 @@ license: >
 contactSuccess
 ==============
 
-Success callback function that provides the `<a href="../Contact/contact.html">Contact</a>` array resulting from a `<a href="../contacts.find.html">contacts.find</a>` operation.
+Success callback function that provides the `Contact` array resulting from a `contacts.find` operation.
 
     function(contacts) {
         // Do something
@@ -30,9 +30,9 @@ Success callback function that provides the `<a href="../Contact/contact.html">C
 Parameters
 ----------
 
-- __contacts:__ The contact array resulting from a find operation. (`<a href="../Contact/contact.html">Contact</a>`)
+- __contacts:__ The contact array resulting from a find operation. (`Contact`)
 
-<a href="../../storage/storage.opendatabase.html">Example</a>
+Example
 -------
 
     function contactSuccess(contacts) {

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/device/device.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/device/device.md b/www/docs/en/1.5.0/phonegap/device/device.md
index a5d0259..a8e02c4 100644
--- a/www/docs/en/1.5.0/phonegap/device/device.md
+++ b/www/docs/en/1.5.0/phonegap/device/device.md
@@ -26,11 +26,11 @@ Device
 Properties
 ----------
 
-- device.<a href="../storage/parameters/name.html">name</a>
-- <a href="device.phonegap.html">device.phonegap</a>
-- <a href="device.platform.html">device.platform</a>
-- <a href="device.uuid.html">device.uuid</a>
-- device.<a href="../storage/parameters/version.html">version</a>
+- device.name
+- device.phonegap
+- device.platform
+- device.uuid
+- device.version
 
 Variable Scope
 --------------
@@ -39,5 +39,5 @@ Since `device` is assigned to the `window` object, it is implicitly in the globa
 
     // These reference the same `device`
     //
-    var phoneName = window.device.<a href="../storage/parameters/name.html">name</a>;
-    var phoneName = device.<a href="../storage/parameters/name.html">name</a>;
\ No newline at end of file
+    var phoneName = window.device.name;
+    var phoneName = device.name;
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/device/device.name.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/device/device.name.md b/www/docs/en/1.5.0/phonegap/device/device.name.md
index 4b1a58a..ceb9f66 100644
--- a/www/docs/en/1.5.0/phonegap/device/device.name.md
+++ b/www/docs/en/1.5.0/phonegap/device/device.name.md
@@ -18,17 +18,17 @@ license: >
     under the License.
 ---
 
-device.<a href="../storage/parameters/name.html">name</a>
+device.name
 ===========
 
-Get the device's model <a href="../storage/parameters/name.html">name</a>.
+Get the device's model name.
 
-    var string = device.<a href="../storage/parameters/name.html">name</a>;
+    var string = device.name;
     
 Description
 -----------
 
-`device.<a href="../storage/parameters/name.html">name</a>` returns the <a href="../storage/parameters/name.html">name</a> of the device's model or product. This value is set by the device manufacturer and may be different across <a href="../storage/parameters/version.html">version</a>s of the same product.
+`device.name` returns the name of the device's model or product. This value is set by the device manufacturer and may be different across versions of the same product.
 
 Supported Platforms
 -------------------
@@ -39,41 +39,41 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
-    // Android:    Nexus One       returns "Passion" (Nexus One code <a href="../storage/parameters/name.html">name</a>)
+    // Android:    Nexus One       returns "Passion" (Nexus One code name)
     //             Motorola Droid  returns "voles"
     // BlackBerry: Bold 8900       returns "8900"
-    // iPhone:     All devices     returns a <a href="../storage/parameters/name.html">name</a> set by iTunes e.g. "Joe's iPhone"
+    // iPhone:     All devices     returns a name set by iTunes e.g. "Joe's iPhone"
     //
-    var <a href="../storage/parameters/name.html">name</a> = device.<a href="../storage/parameters/name.html">name</a>;
+    var name = device.name;
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title><a href="device.html">Device</a> Properties <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>Device Properties Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for PhoneGap to load
         //
-        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="device.html">Device</a>Ready, false);
+        document.addEventListener("deviceready", onDeviceReady, false);
 
         // PhoneGap is ready
         //
-        function on<a href="device.html">Device</a>Ready() {
+        function onDeviceReady() {
             var element = document.getElementById('deviceProperties');
     
-            element.innerHTML = '<a href="device.html">Device</a> Name: '     + device.<a href="../storage/parameters/name.html">name</a>     + '<br />' + 
-                                '<a href="device.html">Device</a> PhoneGap: ' + <a href="device.phonegap.html">device.phonegap</a> + '<br />' + 
-                                '<a href="device.html">Device</a> Platform: ' + <a href="device.platform.html">device.platform</a> + '<br />' + 
-                                '<a href="device.html">Device</a> UUID: '     + <a href="device.uuid.html">device.uuid</a>     + '<br />' + 
-                                '<a href="device.html">Device</a> Version: '  + device.<a href="../storage/parameters/version.html">version</a>  + '<br />';
+            element.innerHTML = 'Device Name: '     + device.name     + '<br />' + 
+                                'Device PhoneGap: ' + device.phonegap + '<br />' + 
+                                'Device Platform: ' + device.platform + '<br />' + 
+                                'Device UUID: '     + device.uuid     + '<br />' + 
+                                'Device Version: '  + device.version  + '<br />';
         }
 
         </script>
@@ -87,13 +87,13 @@ Full <a href="../storage/storage.opendatabase.html">Example</a>
 Android Quirks
 --------------
 
-- Gets the [product <a href="../storage/parameters/name.html">name</a>](http://developer.android.com/reference/android/os/Build.html#PRODUCT) instead of the [model <a href="../storage/parameters/name.html">name</a>](http://developer.android.com/reference/android/os/Build.html#MODEL).
-    - The product <a href="../storage/parameters/name.html">name</a> is often the code <a href="../storage/parameters/name.html">name</a> given during production.
+- Gets the [product name](http://developer.android.com/reference/android/os/Build.html#PRODUCT) instead of the [model name](http://developer.android.com/reference/android/os/Build.html#MODEL).
+    - The product name is often the code name given during production.
     - e.g. Nexus One returns "Passion", Motorola Droid returns "voles"
 
 iPhone Quirks
 -------------
 
-- Gets the [device's custom <a href="../storage/parameters/name.html">name</a>](http://developer.apple.com/iphone/library/documentation/uikit/reference/UI<a href="device.html">Device</a>_Class/Reference/UI<a href="device.html">Device</a>.html#//apple_ref/doc/uid/TP40006902-CH3-SW13) instead of the [device model <a href="../storage/parameters/name.html">name</a>](http://developer.apple.com/iphone/library/documentation/uikit/reference/UI<a href="device.html">Device</a>_Class/Reference/UI<a href="device.html">Device</a>.html#//apple_ref/doc/uid/TP40006902-CH3-SW1).
-    - The custom <a href="../storage/parameters/name.html">name</a> is set by the owner in iTunes.
+- Gets the [device's custom name](http://developer.apple.com/iphone/library/documentation/uikit/reference/UIDevice_Class/Reference/UIDevice.html#//apple_ref/doc/uid/TP40006902-CH3-SW13) instead of the [device model name](http://developer.apple.com/iphone/library/documentation/uikit/reference/UIDevice_Class/Reference/UIDevice.html#//apple_ref/doc/uid/TP40006902-CH3-SW1).
+    - The custom name is set by the owner in iTunes.
     - e.g. "Joe's iPhone"
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/device/device.phonegap.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/device/device.phonegap.md b/www/docs/en/1.5.0/phonegap/device/device.phonegap.md
index 63e6439..9889411 100644
--- a/www/docs/en/1.5.0/phonegap/device/device.phonegap.md
+++ b/www/docs/en/1.5.0/phonegap/device/device.phonegap.md
@@ -21,14 +21,14 @@ license: >
 device.phonegap
 ===============
 
-Get the <a href="../storage/parameters/version.html">version</a> of phonegap running on the device.
+Get the version of phonegap running on the device.
 
     var string = device.phonegap;
     
 Description
 -----------
 
-`device.phonegap` returns the <a href="../storage/parameters/version.html">version</a> of phonegap running on the device.
+`device.phonegap` returns the version of phonegap running on the device.
 
 Supported Platforms
 -------------------
@@ -39,36 +39,36 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
-    var <a href="../storage/parameters/name.html">name</a> = device.phonegap;
+    var name = device.phonegap;
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title><a href="device.html">Device</a> Properties <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>Device Properties Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for PhoneGap to load
         //
-        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="device.html">Device</a>Ready, false);
+        document.addEventListener("deviceready", onDeviceReady, false);
 
         // PhoneGap is ready
         //
-        function on<a href="device.html">Device</a>Ready() {
+        function onDeviceReady() {
             var element = document.getElementById('deviceProperties');
     
-            element.innerHTML = '<a href="device.html">Device</a> Name: '     + device.<a href="../storage/parameters/name.html">name</a>     + '<br />' + 
-                                '<a href="device.html">Device</a> PhoneGap: ' + device.phonegap + '<br />' + 
-                                '<a href="device.html">Device</a> Platform: ' + <a href="device.platform.html">device.platform</a> + '<br />' + 
-                                '<a href="device.html">Device</a> UUID: '     + <a href="device.uuid.html">device.uuid</a>     + '<br />' + 
-                                '<a href="device.html">Device</a> Version: '  + device.<a href="../storage/parameters/version.html">version</a>  + '<br />';
+            element.innerHTML = 'Device Name: '     + device.name     + '<br />' + 
+                                'Device PhoneGap: ' + device.phonegap + '<br />' + 
+                                'Device Platform: ' + device.platform + '<br />' + 
+                                'Device UUID: '     + device.uuid     + '<br />' + 
+                                'Device Version: '  + device.version  + '<br />';
         }
 
         </script>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/device/device.platform.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/device/device.platform.md b/www/docs/en/1.5.0/phonegap/device/device.platform.md
index 085b6a3..b24191c 100644
--- a/www/docs/en/1.5.0/phonegap/device/device.platform.md
+++ b/www/docs/en/1.5.0/phonegap/device/device.platform.md
@@ -21,7 +21,7 @@ license: >
 device.platform
 ===============
 
-Get the device's operating system <a href="../storage/parameters/name.html">name</a>.
+Get the device's operating system name.
 
     var string = device.platform;
 
@@ -34,7 +34,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     // Depending on the device, a few examples are:
@@ -45,31 +45,31 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
     //   - "WinCE"
     var devicePlatform = device.platform;
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title><a href="device.html">Device</a> Properties <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>Device Properties Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for PhoneGap to load
         //
-        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="device.html">Device</a>Ready, false);
+        document.addEventListener("deviceready", onDeviceReady, false);
 
         // PhoneGap is ready
         //
-        function on<a href="device.html">Device</a>Ready() {
+        function onDeviceReady() {
             var element = document.getElementById('deviceProperties');
     
-            element.innerHTML = '<a href="device.html">Device</a> Name: '     + device.<a href="../storage/parameters/name.html">name</a>     + '<br />' + 
-                                '<a href="device.html">Device</a> PhoneGap: ' + <a href="device.phonegap.html">device.phonegap</a> + '<br />' + 
-                                '<a href="device.html">Device</a> Platform: ' + device.platform + '<br />' + 
-                                '<a href="device.html">Device</a> UUID: '     + <a href="device.uuid.html">device.uuid</a>     + '<br />' + 
-                                '<a href="device.html">Device</a> Version: '  + device.<a href="../storage/parameters/version.html">version</a>  + '<br />';
+            element.innerHTML = 'Device Name: '     + device.name     + '<br />' + 
+                                'Device PhoneGap: ' + device.phonegap + '<br />' + 
+                                'Device Platform: ' + device.platform + '<br />' + 
+                                'Device UUID: '     + device.uuid     + '<br />' + 
+                                'Device Version: '  + device.version  + '<br />';
         }
 
         </script>
@@ -87,4 +87,4 @@ All devices return `iPhone` as the platform. This is inaccurate because Apple ha
 BlackBerry Quirks
 -----------------
 
-<a href="device.html">Device</a>s may return the device platform <a href="../storage/parameters/version.html">version</a> instead of the platform <a href="../storage/parameters/name.html">name</a>.  For example, the Storm2 9550 would return '2.13.0.95' or similar.
\ No newline at end of file
+Devices may return the device platform version instead of the platform name.  For example, the Storm2 9550 would return '2.13.0.95' or similar.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/device/device.uuid.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/device/device.uuid.md b/www/docs/en/1.5.0/phonegap/device/device.uuid.md
index 577f583..0ef05e4 100644
--- a/www/docs/en/1.5.0/phonegap/device/device.uuid.md
+++ b/www/docs/en/1.5.0/phonegap/device/device.uuid.md
@@ -39,7 +39,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     // Android: Returns a random 64-bit integer (as a string, again!)
@@ -48,7 +48,7 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
     // BlackBerry: Returns the PIN number of the device
     //             This is a nine-digit unique integer (as a string, though!)
     //
-    // iPhone: (Paraphrased from the UI<a href="device.html">Device</a> Class documentation)
+    // iPhone: (Paraphrased from the UIDevice Class documentation)
     //         Returns a string of hash values created from multiple hardware identifies.
     //         It is guaranteed to be unique for every device and cannot be tied
     //         to the user account.
@@ -57,31 +57,31 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
     // 
     var deviceID = device.uuid;
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title><a href="device.html">Device</a> Properties <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>Device Properties Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for PhoneGap to load
         //
-        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="device.html">Device</a>Ready, false);
+        document.addEventListener("deviceready", onDeviceReady, false);
 
         // PhoneGap is ready
         //
-        function on<a href="device.html">Device</a>Ready() {
+        function onDeviceReady() {
             var element = document.getElementById('deviceProperties');
     
-            element.innerHTML = '<a href="device.html">Device</a> Name: '     + device.<a href="../storage/parameters/name.html">name</a>     + '<br />' + 
-                                '<a href="device.html">Device</a> PhoneGap: ' + <a href="device.phonegap.html">device.phonegap</a> + '<br />' + 
-                                '<a href="device.html">Device</a> Platform: ' + <a href="device.platform.html">device.platform</a> + '<br />' + 
-                                '<a href="device.html">Device</a> UUID: '     + device.uuid     + '<br />' + 
-                                '<a href="device.html">Device</a> Version: '  + device.<a href="../storage/parameters/version.html">version</a>  + '<br />';
+            element.innerHTML = 'Device Name: '     + device.name     + '<br />' + 
+                                'Device PhoneGap: ' + device.phonegap + '<br />' + 
+                                'Device Platform: ' + device.platform + '<br />' + 
+                                'Device UUID: '     + device.uuid     + '<br />' + 
+                                'Device Version: '  + device.version  + '<br />';
         }
 
         </script>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/device/device.version.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/device/device.version.md b/www/docs/en/1.5.0/phonegap/device/device.version.md
index db0cb6f..f247f8b 100644
--- a/www/docs/en/1.5.0/phonegap/device/device.version.md
+++ b/www/docs/en/1.5.0/phonegap/device/device.version.md
@@ -18,12 +18,12 @@ license: >
     under the License.
 ---
 
-device.<a href="../storage/parameters/version.html">version</a>
+device.version
 ==============
 
-Get the operating system <a href="../storage/parameters/version.html">version</a>.
+Get the operating system version.
 
-    var string = device.<a href="../storage/parameters/version.html">version</a>;
+    var string = device.version;
 
 Supported Platforms
 -------------------
@@ -34,7 +34,7 @@ Supported Platforms
 - iPhone
 - Windows Phone 7 ( Mango )
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     // Android:    Froyo OS would return "2.2"
@@ -45,34 +45,34 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
     //
     // iPhone:     iOS 3.2 returns "3.2"
     //
-    // Windows Phone 7: returns current OS <a href="../storage/parameters/version.html">version</a> number, ex. on Mango returns 7.10.7720
-    var deviceVersion = device.<a href="../storage/parameters/version.html">version</a>;
+    // Windows Phone 7: returns current OS version number, ex. on Mango returns 7.10.7720
+    var deviceVersion = device.version;
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title><a href="device.html">Device</a> Properties <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>Device Properties Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
         // Wait for PhoneGap to load
         //
-        document.addEventListener("<a href="../events/events.deviceready.html">deviceready</a>", on<a href="device.html">Device</a>Ready, false);
+        document.addEventListener("deviceready", onDeviceReady, false);
 
         // PhoneGap is ready
         //
-        function on<a href="device.html">Device</a>Ready() {
+        function onDeviceReady() {
             var element = document.getElementById('deviceProperties');
         
-            element.innerHTML = '<a href="device.html">Device</a> Name: '     + device.<a href="../storage/parameters/name.html">name</a>     + '<br />' + 
-                                '<a href="device.html">Device</a> PhoneGap: ' + <a href="device.phonegap.html">device.phonegap</a> + '<br />' + 
-                                '<a href="device.html">Device</a> Platform: ' + <a href="device.platform.html">device.platform</a> + '<br />' + 
-                                '<a href="device.html">Device</a> UUID: '     + <a href="device.uuid.html">device.uuid</a>     + '<br />' + 
-                                '<a href="device.html">Device</a> Version: '  + device.<a href="../storage/parameters/version.html">version</a>  + '<br />';
+            element.innerHTML = 'Device Name: '     + device.name     + '<br />' + 
+                                'Device PhoneGap: ' + device.phonegap + '<br />' + 
+                                'Device Platform: ' + device.platform + '<br />' + 
+                                'Device UUID: '     + device.uuid     + '<br />' + 
+                                'Device Version: '  + device.version  + '<br />';
         }
 
         </script>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.backbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.backbutton.md b/www/docs/en/1.5.0/phonegap/events/events.backbutton.md
index 902b1d1..d3edbde 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.backbutton.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.backbutton.md
@@ -30,7 +30,7 @@ Details
 
 If you need to override the default back button behaviour you can register an event listener for the 'backbutton' event.  It is no longer necessary to call any other method to over ride the back button behaviour.  Now, you only need to register an event listener for 'backbutton'.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
@@ -38,7 +38,7 @@ Supported Platforms
 - Android
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     document.addEventListener("backbutton", onBackKeyDown, false);
@@ -47,30 +47,30 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
         // Handle the back button
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>PhoneGap Back Button <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Back Button Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         //
         function onLoad() {
-            document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+            document.addEventListener("deviceready", onDeviceReady, false);
         }
 
         // PhoneGap is loaded and it is now safe to call PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
             // Register the event listener
             document.addEventListener("backbutton", onBackKeyDown, false);
         }

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.batterycritical.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.batterycritical.md b/www/docs/en/1.5.0/phonegap/events/events.batterycritical.md
index 75fc6ca..5e67484 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.batterycritical.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.batterycritical.md
@@ -35,7 +35,7 @@ The batterycritical handler will be called with an object that contains two prop
 - __level:__ The percentage of battery (0-100). _(Number)_
 - __isPlugged:__ A boolean that represents whether or not the device is plugged in or not. _(Boolean)_
 
-Typically, you will want to attach an event listener with `window.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `window.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
@@ -44,7 +44,7 @@ Supported Platforms
 - Android
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     window.addEventListener("batterycritical", onBatteryCritical, false);
@@ -54,30 +54,30 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
        	alert("Battery Level Critical " + info.level + "%\nRecharge Soon!"); 
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>PhoneGap <a href="../device/device.html">Device</a> Ready <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Device Ready Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         // 
 	    function onLoad() {
-    	    document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+    	    document.addEventListener("deviceready", onDeviceReady, false);
     	}
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
 		    window.addEventListener("batterycritical", onBatteryCritical, false);
         }
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.batterylow.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.batterylow.md b/www/docs/en/1.5.0/phonegap/events/events.batterylow.md
index ebf756e..6ac5848 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.batterylow.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.batterylow.md
@@ -35,7 +35,7 @@ The batterylow handler will be called with an object that contains two propertie
 - __level:__ The percentage of battery (0-100). _(Number)_
 - __isPlugged:__ A boolean that represents whether or not the device is plugged in or not. _(Boolean)_
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
@@ -44,7 +44,7 @@ Supported Platforms
 - Android
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     window.addEventListener("batterylow", onBatteryLow, false);
@@ -54,30 +54,30 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
        	alert("Battery Level Low " + info.level + "%"); 
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>PhoneGap <a href="../device/device.html">Device</a> Ready <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Device Ready Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         // 
 	    function onLoad() {
-    	    document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+    	    document.addEventListener("deviceready", onDeviceReady, false);
     	}
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
 		    window.addEventListener("batterylow", onBatteryLow, false);
         }
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.batterystatus.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.batterystatus.md b/www/docs/en/1.5.0/phonegap/events/events.batterystatus.md
index c7312d5..81e453b 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.batterystatus.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.batterystatus.md
@@ -35,7 +35,7 @@ The battery status handler will be called with an object that contains two prope
 - __level:__ The percentage of battery (0-100). _(Number)_
 - __isPlugged:__ A boolean that represents whether or not the device is plugged in or not. _(Boolean)_
 
-Typically, you will want to attach an event listener with `window.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `window.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
@@ -44,40 +44,40 @@ Supported Platforms
 - Android
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     window.addEventListener("batterystatus", onBatteryStatus, false);
 
     function onBatteryStatus(info) {
-        // Handle the <a href="events.online.html">online</a> event
+        // Handle the online event
        	console.log("Level: " + info.level + " isPlugged: " + info.isPlugged); 
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>PhoneGap <a href="../device/device.html">Device</a> Ready <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Device Ready Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         // 
 	    function onLoad() {
-    	    document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+    	    document.addEventListener("deviceready", onDeviceReady, false);
     	}
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
 		    window.addEventListener("batterystatus", onBatteryStatus, false);
         }
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.deviceready.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.deviceready.md b/www/docs/en/1.5.0/phonegap/events/events.deviceready.md
index 406ca52..61f7f3c 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.deviceready.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.deviceready.md
@@ -43,39 +43,39 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
-    document.addEventListener("deviceready", on<a href="../device/device.html">Device</a>Ready, false);
+    document.addEventListener("deviceready", onDeviceReady, false);
 
-    function on<a href="../device/device.html">Device</a>Ready() {
+    function onDeviceReady() {
         // Now safe to use the PhoneGap API
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>PhoneGap <a href="../device/device.html">Device</a> Ready <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Device Ready Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
         // it will call the event `deviceready`.
         //
         function onLoad() {
-            document.addEventListener("deviceready", on<a href="../device/device.html">Device</a>Ready, false);
+            document.addEventListener("deviceready", onDeviceReady, false);
         }
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
             // Now safe to use the PhoneGap API
         }
 
@@ -100,13 +100,13 @@ A workaround is to manually query `PhoneGap.available` until PhoneGap has fully
           function() {
               if (PhoneGap.available) {
                   window.clearInterval(intervalID);
-                  on<a href="../device/device.html">Device</a>Ready();
+                  onDeviceReady();
               }
           },
           500
         );
     }
 
-    function on<a href="../device/device.html">Device</a>Ready() {
+    function onDeviceReady() {
         // Now safe to use the PhoneGap API
     }

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.endcallbutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.endcallbutton.md b/www/docs/en/1.5.0/phonegap/events/events.endcallbutton.md
index ce24f46..41ff6d7 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.endcallbutton.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.endcallbutton.md
@@ -30,14 +30,14 @@ Details
 
 If you need to override the default end call behaviour you can register an event listener for the 'endcallbutton' event.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
 
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     document.addEventListener("endcallbutton", onEndCallKeyDown, false);
@@ -46,31 +46,31 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
         // Handle the end call button
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                           "http://www.w3.org/TR/html4/strict.dtd">
     <html>
       <head>
-        <title>PhoneGap End Call Button <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap End Call Button Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         //
         function onLoad() {
-            document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+            document.addEventListener("deviceready", onDeviceReady, false);
         }
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
             // Register the event listener
             document.addEventListener("endcallbutton", onEndCallKeyDown, false);
         }

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.md b/www/docs/en/1.5.0/phonegap/events/events.md
index 2e7e1c0..41825ec 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.md
@@ -26,19 +26,19 @@ Events
 Event Types
 -----------
 
-- <a href="events.deviceready.html">deviceready</a>
-- <a href="events.pause.html">pause</a>
-- <a href="events.resume.html">resume</a>
-- <a href="events.online.html">online</a>
-- <a href="events.offline.html">offline</a>
-- <a href="events.backbutton.html">backbutton</a>
-- <a href="events.batterycritical.html">batterycritical</a>
-- <a href="events.batterylow.html">batterylow</a>
-- <a href="events.batterystatus.html">batterystatus</a>
-- <a href="events.menubutton.html">menubutton</a>
-- <a href="events.searchbutton.html">searchbutton</a>
-- <a href="events.startcallbutton.html">startcallbutton</a>
-- <a href="events.endcallbutton.html">endcallbutton</a>
-- <a href="events.volumedownbutton.html">volumedownbutton</a>
-- <a href="events.volumeupbutton.html">volumeupbutton</a>
+- deviceready
+- pause
+- resume
+- online
+- offline
+- backbutton
+- batterycritical
+- batterylow
+- batterystatus
+- menubutton
+- searchbutton
+- startcallbutton
+- endcallbutton
+- volumedownbutton
+- volumeupbutton
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.menubutton.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.menubutton.md b/www/docs/en/1.5.0/phonegap/events/events.menubutton.md
index 2cf32f1..95218ee 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.menubutton.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.menubutton.md
@@ -30,7 +30,7 @@ Details
 
 If you need to override the default menu button behaviour you can register an event listener for the 'menubutton' event.
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
@@ -38,7 +38,7 @@ Supported Platforms
 - Android
 - BlackBerry WebWorks (OS 5.0 and higher)
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     document.addEventListener("menubutton", onMenuKeyDown, false);
@@ -47,31 +47,31 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
         // Handle the back button
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                           "http://www.w3.org/TR/html4/strict.dtd">
     <html>
       <head>
-        <title>PhoneGap Menu Button <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Menu Button Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         //
         function onLoad() {
-            document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+            document.addEventListener("deviceready", onDeviceReady, false);
         }
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
             // Register the event listener
             document.addEventListener("menubutton", onMenuKeyDown, false);
         }

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.offline.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.offline.md b/www/docs/en/1.5.0/phonegap/events/events.offline.md
index e1915a9..7d60d71 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.offline.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.offline.md
@@ -30,7 +30,7 @@ Details
 
 When the application's network connection changes to being offline, the offline event is fired.  
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
@@ -39,7 +39,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     document.addEventListener("offline", onOffline, false);
@@ -48,30 +48,30 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
         // Handle the offline event
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>PhoneGap Offline <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Offline Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         //
         function onLoad() {
-            document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+            document.addEventListener("deviceready", onDeviceReady, false);
         }
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
 		    document.addEventListener("offline", onOffline, false);
         }
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.online.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.online.md b/www/docs/en/1.5.0/phonegap/events/events.online.md
index 648ca38..0432a00 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.online.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.online.md
@@ -30,7 +30,7 @@ Details
 
 When the application's network connection changes to being online, the online event is fired.  
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
@@ -39,7 +39,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     document.addEventListener("online", onOnline, false);
@@ -48,30 +48,30 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
         // Handle the online event
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>PhoneGap Online <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Online Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         //
         function onLoad() {
-            document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+            document.addEventListener("deviceready", onDeviceReady, false);
         }
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
             document.addEventListener("online", onOnline, false);
         }
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.pause.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.pause.md b/www/docs/en/1.5.0/phonegap/events/events.pause.md
index fa77ff2..2d6e66d 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.pause.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.pause.md
@@ -30,7 +30,7 @@ Details
 
 PhoneGap consists of two code bases: native and JavaScript. While the native code puts the application into the background the pause event is fired.  
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
@@ -39,7 +39,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     document.addEventListener("pause", onPause, false);
@@ -48,30 +48,30 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
         // Handle the pause event
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>PhoneGap Pause <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Pause Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         //
         function onLoad() {
-            document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+            document.addEventListener("deviceready", onDeviceReady, false);
         }
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
 		    document.addEventListener("pause", onPause, false);
         }
 
@@ -88,4 +88,4 @@ Full <a href="../storage/storage.opendatabase.html">Example</a>
 
 iOS Quirks
 --------------------------
-In the pause handler, any calls that go through Objective-C will not work, nor will any calls that are interactive, like alerts. This means that you cannot call console.log (and its variants), or any calls from Plugins or the PhoneGap API. These will only be processed when the app <a href="events.resume.html">resume</a>s (processed on the next run-loop).
+In the pause handler, any calls that go through Objective-C will not work, nor will any calls that are interactive, like alerts. This means that you cannot call console.log (and its variants), or any calls from Plugins or the PhoneGap API. These will only be processed when the app resumes (processed on the next run-loop).

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/af6a5545/www/docs/en/1.5.0/phonegap/events/events.resume.md
----------------------------------------------------------------------
diff --git a/www/docs/en/1.5.0/phonegap/events/events.resume.md b/www/docs/en/1.5.0/phonegap/events/events.resume.md
index 33b80a5..cdbe4cd 100644
--- a/www/docs/en/1.5.0/phonegap/events/events.resume.md
+++ b/www/docs/en/1.5.0/phonegap/events/events.resume.md
@@ -30,7 +30,7 @@ Details
 
 PhoneGap consists of two code bases: native and JavaScript. While the native code pulls the application from the background the resume event is fired.  
 
-Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap '<a href="events.deviceready.html">deviceready</a>' event.
+Typically, you will want to attach an event listener with `document.addEventListener` once you receive the PhoneGap 'deviceready' event.
 
 Supported Platforms
 -------------------
@@ -39,7 +39,7 @@ Supported Platforms
 - BlackBerry WebWorks (OS 5.0 and higher)
 - iOS
 
-Quick <a href="../storage/storage.opendatabase.html">Example</a>
+Quick Example
 -------------
 
     document.addEventListener("resume", onResume, false);
@@ -48,30 +48,30 @@ Quick <a href="../storage/storage.opendatabase.html">Example</a>
         // Handle the resume event
     }
 
-Full <a href="../storage/storage.opendatabase.html">Example</a>
+Full Example
 ------------
 
     <!DOCTYPE html>
     <html>
       <head>
-        <title>PhoneGap Resume <a href="../storage/storage.opendatabase.html">Example</a></title>
+        <title>PhoneGap Resume Example</title>
 
         <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
         <script type="text/javascript" charset="utf-8">
 
-        // Call on<a href="../device/device.html">Device</a>Ready when PhoneGap is loaded.
+        // Call onDeviceReady when PhoneGap is loaded.
         //
         // At this point, the document has loaded but cordova-1.5.0.js has not.
         // When PhoneGap is loaded and talking with the native device,
-        // it will call the event `<a href="events.deviceready.html">deviceready</a>`.
+        // it will call the event `deviceready`.
         //
         function onLoad() {
-            document.addEventListener("<a href="events.deviceready.html">deviceready</a>", on<a href="../device/device.html">Device</a>Ready, false);
+            document.addEventListener("deviceready", onDeviceReady, false);
         }
 
         // PhoneGap is loaded and it is now safe to make calls PhoneGap methods
         //
-        function on<a href="../device/device.html">Device</a>Ready() {
+        function onDeviceReady() {
             document.addEventListener("resume", onResume, false);
         }
 


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