Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
3a51a57
Brand: Cordova
jsoref Sep 10, 2012
a031384
Brand: Eclipse
jsoref Sep 10, 2012
c94e4d3
Brand: WebWorks
jsoref Sep 10, 2012
9500e2b
Spelling: actuality
jsoref Sep 10, 2012
1710d92
Spelling: application
jsoref Sep 10, 2012
fcab873
Spelling: asynchronously
jsoref Sep 10, 2012
dfbc982
Spelling: button
jsoref Sep 10, 2012
713d578
Spelling: capability
jsoref Sep 10, 2012
446a3ed
Spelling: developer
jsoref Sep 10, 2012
ec398f1
Spelling: contact
jsoref Sep 10, 2012
ebe473a
Spelling: contributor
jsoref Sep 10, 2012
559112f
Spelling: critical
jsoref Sep 10, 2012
9c42d97
Spelling: declare
jsoref Sep 10, 2012
93496d0
Spelling: deployment
jsoref Sep 10, 2012
135e3f5
Spelling: directory
jsoref Sep 10, 2012
e0f7457
Spelling: download
jsoref Sep 10, 2012
127ec33
Spelling: elements
jsoref Sep 10, 2012
5f02615
Spelling: following
jsoref Sep 10, 2012
c5142de
Spelling: incubator
jsoref Sep 10, 2012
84ebe13
Spelling: interpreting
jsoref Sep 10, 2012
1725ed2
Spelling: listener
jsoref Sep 10, 2012
3e8bf6f
Spelling: listeners
jsoref Sep 10, 2012
6a56758
Spelling: marshal
jsoref Sep 10, 2012
9bd15dc
Spelling: message
jsoref Sep 10, 2012
4c91e7d
Spelling: nickname
jsoref Sep 10, 2012
262e1cd
Spelling: occurred
jsoref Sep 10, 2012
f944403
Spelling: particularly
jsoref Sep 10, 2012
b357c63
Spelling: position
jsoref Sep 10, 2012
c58f2a1
Spelling: progress
jsoref Sep 10, 2012
b2d7529
Spelling: reachability
jsoref Sep 10, 2012
c49928b
Spelling: signaled
jsoref Sep 10, 2012
4da45ad
Spelling: software
jsoref Sep 10, 2012
0c0a990
Spelling: specify
jsoref Sep 10, 2012
9ffe6cd
Spelling: success
jsoref Sep 10, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ By the way, you rock! Thanks for helping us improve the documentation!

Are you new to Git or contributing on GitHub?

We have [written a few Git tutorials](http://wiki.apache.org/cordova/ContributerWorkflow)
We have [written a few Git tutorials](http://wiki.apache.org/cordova/ContributorWorkflow)
to help you get started with contributing to the documentation.

### Sending Pull Requests
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.2/phonegap/camera/camera.getPicture.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Full Example

// Called if something bad happens.
//
function onFail(mesage) {
function onFail(message) {
alert('Failed because: ' + message);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Parameters
Description
-----------

Function `geolocation.getCurrentPositon` is an asynchronous function. It returns the device's current position to the `geolocationSuccess` callback with a `Position` object as the parameter. If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.
Function `geolocation.getCurrentPosition` is an asynchronous function. It returns the device's current position to the `geolocationSuccess` callback with a `Position` object as the parameter. If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.


Supported Platforms
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Example
BlackBerry Quirks
-----------------

Provides the network status as the value of `reachablity`
Provides the network status as the value of `reachability`

function reachableCallback(reachability) {
var hasConnection = (reachability !== NetworkStatus.NOT_REACHABLE);
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.3/phonegap/camera/camera.getPicture.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Full Example

// Called if something bad happens.
//
function onFail(mesage) {
function onFail(message) {
alert('Failed because: ' + message);
}

Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.3/phonegap/file/filereader/filereader.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Methods
Details
-------

The `FileReader` object is a way to read files from the devices file system. Files can be read as text or as a base64 data encoded string. Users register their own event listners to receive the loadstart, progress, load, loadend, error and abort events.
The `FileReader` object is a way to read files from the devices file system. Files can be read as text or as a base64 data encoded string. Users register their own event listeners to receive the loadstart, progress, load, loadend, error and abort events.

Supported Platforms
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.3/phonegap/file/filewriter/filewriter.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Properties
- __position:__ The current position of the file pointer. _(long)_
- __error:__ An object containing errors. _(FileError)_
- __onwritestart:__ Called when the write starts. . _(Function)_
- __onprogress:__ Called while writing the file, reports progress (progess.loaded/progress.total). _(Function)_
- __onprogress:__ Called while writing the file, reports progress (progress.loaded/progress.total). _(Function)_
- __onload:__ Called when the write has successfully completed. _(Function)_
- __onabort:__ Called when the write has been aborted. For instance, by invoking the abort() method. _(Function)_
- __onerror:__ Called when the write has failed. _(Function)_
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Parameters
Description
-----------

Function `geolocation.getCurrentPositon` is an asynchronous function. It returns the device's current position to the `geolocationSuccess` callback with a `Position` object as the parameter. If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.
Function `geolocation.getCurrentPosition` is an asynchronous function. It returns the device's current position to the `geolocationSuccess` callback with a `Position` object as the parameter. If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.


Supported Platforms
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Example
BlackBerry Quirks
-----------------

Provides the network status as the value of `reachablity`
Provides the network status as the value of `reachability`

function reachableCallback(reachability) {
var hasConnection = (reachability !== NetworkStatus.NOT_REACHABLE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Methods
Details
-------

The SQLResultSetList contains the data returned from a SQL select statement. The object contains a length property letting you know how many rows the select statement has been returned. To get a row of data you would call the `item` method specifing an index. The item method returns a JavaScript Object who's properties are the columns of the database the select statement was executed against.
The SQLResultSetList contains the data returned from a SQL select statement. The object contains a length property letting you know how many rows the select statement has been returned. To get a row of data you would call the `item` method specifying an index. The item method returns a JavaScript Object who's properties are the columns of the database the select statement was executed against.

Supported Platforms
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.4/phonegap/camera/camera.getPicture.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Full Example

// Called if something bad happens.
//
function onFail(mesage) {
function onFail(message) {
alert('Failed because: ' + message);
}

Expand Down
4 changes: 2 additions & 2 deletions docs/en/0.9.4/phonegap/contacts/Contact/contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Properties
- __photos:__ An array of the contact's photos. _(ContactField[])_
- __categories:__ An array of all the contacts user defined categories. _(ContactField[])_
- __urls:__ An array of web pages associated to the contact. _(ContactField[])_
- __timezone:__ The timezone of the conact. _(DOMString)_
- __timezone:__ The timezone of the contact. _(DOMString)_

Methods
-------
Expand Down Expand Up @@ -229,7 +229,7 @@ BlackBerry WebWorks (OS 5.0 and higher) Quirks

iOS Quirks
----------
- __displayName:__ This property is not supported by iOS and will be returned as `null` unless there is no ContactName specified. If there is no ContactName, then composite name, __nickame__ or "" is returned for __displayName__, respectively.
- __displayName:__ This property is not supported by iOS and will be returned as `null` unless there is no ContactName specified. If there is no ContactName, then composite name, __nickname__ or "" is returned for __displayName__, respectively.
- __revision:__ This property is output only and can not be modified. It is returned as a JavaScript Date object.
- __birthday:__ For input, this property must be provided as a JavaScript Date object. It is returned as a JavaScript Date object.
- __gender:__ This property is not supported by iOS devices, and will always be returned as `null`.
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.4/phonegap/file/filereader/filereader.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Methods
Details
-------

The `FileReader` object is a way to read files from the devices file system. Files can be read as text or as a base64 data encoded string. Users register their own event listners to receive the loadstart, progress, load, loadend, error and abort events.
The `FileReader` object is a way to read files from the devices file system. Files can be read as text or as a base64 data encoded string. Users register their own event listeners to receive the loadstart, progress, load, loadend, error and abort events.

Supported Platforms
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.4/phonegap/file/filewriter/filewriter.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Properties
- __position:__ The current position of the file pointer. _(long)_
- __error:__ An object containing errors. _(FileError)_
- __onwritestart:__ Called when the write starts. . _(Function)_
- __onprogress:__ Called while writing the file, reports progress (progess.loaded/progress.total). _(Function)_ -NOT SUPPORTED
- __onprogress:__ Called while writing the file, reports progress (progress.loaded/progress.total). _(Function)_ -NOT SUPPORTED
- __onabort:__ Called when the write has been aborted. For instance, by invoking the abort() method. _(Function)_
- __onerror:__ Called when the write has failed. _(Function)_
- __onwriteend:__ Called when the request has completed (either in success or failure). _(Function)_
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Parameters
Description
-----------

Function `geolocation.getCurrentPositon` is an asynchronous function. It returns the device's current position to the `geolocationSuccess` callback with a `Position` object as the parameter. If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.
Function `geolocation.getCurrentPosition` is an asynchronous function. It returns the device's current position to the `geolocationSuccess` callback with a `Position` object as the parameter. If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.


Supported Platforms
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.4/phonegap/media/media.release.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Releases the underlying operating systems audio resources.
Description
-----------

Function `media.release` is a synchronous function that releases the underlying operating systems audio resources. This function is particularily important for Android as there are a finite amount of OpenCore instances for media playback. Developers should call the 'release' function when they no longer need the Media resource.
Function `media.release` is a synchronous function that releases the underlying operating systems audio resources. This function is particularly important for Android as there are a finite amount of OpenCore instances for media playback. Developers should call the 'release' function when they no longer need the Media resource.

Supported Platforms
-------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Example
BlackBerry Quirks
-----------------

Provides the network status as the value of `reachablity`
Provides the network status as the value of `reachability`

function reachableCallback(reachability) {
var hasConnection = (reachability !== NetworkStatus.NOT_REACHABLE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Methods
Details
-------

The SQLResultSetList contains the data returned from a SQL select statement. The object contains a length property letting you know how many rows the select statement has been returned. To get a row of data you would call the `item` method specifing an index. The item method returns a JavaScript Object who's properties are the columns of the database the select statement was executed against.
The SQLResultSetList contains the data returned from a SQL select statement. The object contains a length property letting you know how many rows the select statement has been returned. To get a row of data you would call the `item` method specifying an index. The item method returns a JavaScript Object who's properties are the columns of the database the select statement was executed against.

Supported Platforms
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.5.1/phonegap/camera/camera.getPicture.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Full Example

// Called if something bad happens.
//
function onFail(mesage) {
function onFail(message) {
alert('Failed because: ' + message);
}

Expand Down
4 changes: 2 additions & 2 deletions docs/en/0.9.5.1/phonegap/contacts/Contact/contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Properties
- __photos:__ An array of the contact's photos. _(ContactField[])_
- __categories:__ An array of all the contacts user defined categories. _(ContactField[])_
- __urls:__ An array of web pages associated to the contact. _(ContactField[])_
- __timezone:__ The timezone of the conact. _(DOMString)_
- __timezone:__ The timezone of the contact. _(DOMString)_

Methods
-------
Expand Down Expand Up @@ -229,7 +229,7 @@ BlackBerry WebWorks (OS 5.0 and higher) Quirks

iOS Quirks
----------
- __displayName:__ This property is not supported by iOS and will be returned as `null` unless there is no ContactName specified. If there is no ContactName, then composite name, __nickame__ or "" is returned for __displayName__, respectively.
- __displayName:__ This property is not supported by iOS and will be returned as `null` unless there is no ContactName specified. If there is no ContactName, then composite name, __nickname__ or "" is returned for __displayName__, respectively.
- __revision:__ This property is output only and can not be modified. It is returned as a JavaScript Date object.
- __birthday:__ For input, this property must be provided as a JavaScript Date object. It is returned as a JavaScript Date object.
- __gender:__ This property is not supported by iOS devices, and will always be returned as `null`.
Expand Down
4 changes: 2 additions & 2 deletions docs/en/0.9.5.1/phonegap/events/events.backbutton.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This is an event that fires when the user presses the back button on Android.
Details
-------

If you need to over ride the default back button behaviour on Android you can register and event listenter 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'.
If you need to over ride the default back button behaviour on Android you can register and 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 'deviceready' event.

Expand All @@ -42,7 +42,7 @@ Quick Example
document.addEventListener("backbutton", onBackKeyDown, false);

function onBackKeyDown() {
// Handle the back buton
// Handle the back button
}

Full Example
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.5.1/phonegap/file/filereader/filereader.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Methods
Details
-------

The `FileReader` object is a way to read files from the devices file system. Files can be read as text or as a base64 data encoded string. Users register their own event listners to receive the loadstart, progress, load, loadend, error and abort events.
The `FileReader` object is a way to read files from the devices file system. Files can be read as text or as a base64 data encoded string. Users register their own event listeners to receive the loadstart, progress, load, loadend, error and abort events.

Supported Platforms
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.5.1/phonegap/file/filewriter/filewriter.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Properties
- __position:__ The current position of the file pointer. _(long)_
- __error:__ An object containing errors. _(FileError)_
- __onwritestart:__ Called when the write starts. . _(Function)_
- __onprogress:__ Called while writing the file, reports progress (progess.loaded/progress.total). _(Function)_ -NOT SUPPORTED
- __onprogress:__ Called while writing the file, reports progress (progress.loaded/progress.total). _(Function)_ -NOT SUPPORTED
- __onwrite:__ Called when the request has completed successfully. _(Function)_
- __onabort:__ Called when the write has been aborted. For instance, by invoking the abort() method. _(Function)_
- __onerror:__ Called when the write has failed. _(Function)_
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Parameters
Description
-----------

Function `geolocation.getCurrentPositon` is an asynchronous function. It returns the device's current position to the `geolocationSuccess` callback with a `Position` object as the parameter. If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.
Function `geolocation.getCurrentPosition` is an asynchronous function. It returns the device's current position to the `geolocationSuccess` callback with a `Position` object as the parameter. If there is an error, the `geolocationError` callback is invoked with a `PositionError` object.


Supported Platforms
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.5.1/phonegap/media/media.release.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Releases the underlying operating systems audio resources.
Description
-----------

Function `media.release` is a synchronous function that releases the underlying operating systems audio resources. This function is particularily important for Android as there are a finite amount of OpenCore instances for media playback. Developers should call the 'release' function when they no longer need the Media resource.
Function `media.release` is a synchronous function that releases the underlying operating systems audio resources. This function is particularly important for Android as there are a finite amount of OpenCore instances for media playback. Developers should call the 'release' function when they no longer need the Media resource.

Supported Platforms
-------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Example
BlackBerry Quirks
-----------------

Provides the network status as the value of `reachablity`
Provides the network status as the value of `reachability`

function reachableCallback(reachability) {
var hasConnection = (reachability !== NetworkStatus.NOT_REACHABLE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Methods
Details
-------

The SQLResultSetList contains the data returned from a SQL select statement. The object contains a length property letting you know how many rows the select statement has been returned. To get a row of data you would call the `item` method specifing an index. The item method returns a JavaScript Object who's properties are the columns of the database the select statement was executed against.
The SQLResultSetList contains the data returned from a SQL select statement. The object contains a length property letting you know how many rows the select statement has been returned. To get a row of data you would call the `item` method specifying an index. The item method returns a JavaScript Object who's properties are the columns of the database the select statement was executed against.

Supported Platforms
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.5/phonegap/camera/camera.getPicture.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Full Example

// Called if something bad happens.
//
function onFail(mesage) {
function onFail(message) {
alert('Failed because: ' + message);
}

Expand Down
4 changes: 2 additions & 2 deletions docs/en/0.9.5/phonegap/contacts/Contact/contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Properties
- __photos:__ An array of the contact's photos. _(ContactField[])_
- __categories:__ An array of all the contacts user defined categories. _(ContactField[])_
- __urls:__ An array of web pages associated to the contact. _(ContactField[])_
- __timezone:__ The timezone of the conact. _(DOMString)_
- __timezone:__ The timezone of the contact. _(DOMString)_

Methods
-------
Expand Down Expand Up @@ -229,7 +229,7 @@ BlackBerry WebWorks (OS 5.0 and higher) Quirks

iOS Quirks
----------
- __displayName:__ This property is not supported by iOS and will be returned as `null` unless there is no ContactName specified. If there is no ContactName, then composite name, __nickame__ or "" is returned for __displayName__, respectively.
- __displayName:__ This property is not supported by iOS and will be returned as `null` unless there is no ContactName specified. If there is no ContactName, then composite name, __nickname__ or "" is returned for __displayName__, respectively.
- __revision:__ This property is output only and can not be modified. It is returned as a JavaScript Date object.
- __birthday:__ For input, this property must be provided as a JavaScript Date object. It is returned as a JavaScript Date object.
- __gender:__ This property is not supported by iOS devices, and will always be returned as `null`.
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.5/phonegap/file/filereader/filereader.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Methods
Details
-------

The `FileReader` object is a way to read files from the devices file system. Files can be read as text or as a base64 data encoded string. Users register their own event listners to receive the loadstart, progress, load, loadend, error and abort events.
The `FileReader` object is a way to read files from the devices file system. Files can be read as text or as a base64 data encoded string. Users register their own event listeners to receive the loadstart, progress, load, loadend, error and abort events.

Supported Platforms
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/en/0.9.5/phonegap/file/filewriter/filewriter.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Properties
- __position:__ The current position of the file pointer. _(long)_
- __error:__ An object containing errors. _(FileError)_
- __onwritestart:__ Called when the write starts. . _(Function)_
- __onprogress:__ Called while writing the file, reports progress (progess.loaded/progress.total). _(Function)_ -NOT SUPPORTED
- __onprogress:__ Called while writing the file, reports progress (progress.loaded/progress.total). _(Function)_ -NOT SUPPORTED
- __onwrite:__ Called when the request has completed successfully. _(Function)_
- __onabort:__ Called when the write has been aborted. For instance, by invoking the abort() method. _(Function)_
- __onerror:__ Called when the write has failed. _(Function)_
Expand Down
Loading