You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2013/06/12 19:51:11 UTC

[36/46] docs commit: feedback from 1st round of queries

feedback from 1st round of queries


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/5f4e3d98
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/5f4e3d98
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/5f4e3d98

Branch: refs/heads/master
Commit: 5f4e3d982e2fb617e1696103ad2f5df9ac8f6f14
Parents: efd1aa0
Author: Mike Sierra <le...@gmail.com>
Authored: Mon May 20 11:24:24 2013 -0400
Committer: Mike Sierra <le...@gmail.com>
Committed: Mon May 20 11:24:24 2013 -0400

----------------------------------------------------------------------
 docs/en/edge/cordova/camera/camera.cleanup.md             | 6 +++---
 docs/en/edge/cordova/camera/parameter/cameraOptions.md    | 4 ++--
 docs/en/edge/cordova/compass/compass.getCurrentHeading.md | 4 ++--
 docs/en/edge/cordova/compass/parameters/compassHeading.md | 2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f4e3d98/docs/en/edge/cordova/camera/camera.cleanup.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/camera/camera.cleanup.md b/docs/en/edge/cordova/camera/camera.cleanup.md
index 883cd12..e56440a 100644
--- a/docs/en/edge/cordova/camera/camera.cleanup.md
+++ b/docs/en/edge/cordova/camera/camera.cleanup.md
@@ -20,15 +20,15 @@ license: Licensed to the Apache Software Foundation (ASF) under one
 camera.cleanup
 =================
 
-Cleans up the photos taken by the camera and made available in a
-temporary storage location.
+Removes intermediate photos taken by the camera from temporary
+storage.
 
     navigator.camera.cleanup( cameraSuccess, cameraError );
 
 Description
 -----------
 
-Cleans up the image files stored in the temporary storage location
+Removes intermediate image files that are kept in temporary storage
 after calling `camera.getPicture`. Applies only when the value of
 `Camera.sourceType` equals `Camera.PictureSourceType.CAMERA` and the
 `Camera.destinationType` equals `Camera.DestinationType.FILE_URI`.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f4e3d98/docs/en/edge/cordova/camera/parameter/cameraOptions.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/camera/parameter/cameraOptions.md b/docs/en/edge/cordova/camera/parameter/cameraOptions.md
index 4e70f9f..6aff0b0 100644
--- a/docs/en/edge/cordova/camera/parameter/cameraOptions.md
+++ b/docs/en/edge/cordova/camera/parameter/cameraOptions.md
@@ -35,9 +35,9 @@ Optional parameters to customize the camera settings.
 Options
 -------
 
-- __quality__: Quality of saved image. Range is [0, 100]. _(Number)_
+- __quality__: Quality of the saved image, expressed as a range of 0-100, where 100 is typically full resolution with no loss from file compression. _(Number)_ (Note that information about the camera's resolution is unavailable.)
 
-- __destinationType__: Choose the format of the return value.  Defined in `navigator.camera.DestinationType` _(Number)_
+- __destinationType__: Choose the format of the return value. Defined in `navigator.camera.DestinationType` _(Number)_
 
         Camera.DestinationType = {
             DATA_URL : 0,      // Return image as base64-encoded string

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f4e3d98/docs/en/edge/cordova/compass/compass.getCurrentHeading.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/compass/compass.getCurrentHeading.md b/docs/en/edge/cordova/compass/compass.getCurrentHeading.md
index c8af90a..2e98fb2 100755
--- a/docs/en/edge/cordova/compass/compass.getCurrentHeading.md
+++ b/docs/en/edge/cordova/compass/compass.getCurrentHeading.md
@@ -28,8 +28,8 @@ Description
 -----------
 
 The compass is a sensor that detects the direction or heading that the
-device is pointed.  It measures the heading in degrees from 0 to
-359.99.
+device is pointed, typically from the top of the device.  It measures
+the heading in degrees from 0 to 359.99, where 0 is north.
 
 The compass heading information is returned via a `CompassHeading`
 object using the `compassSuccess` callback function.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f4e3d98/docs/en/edge/cordova/compass/parameters/compassHeading.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/compass/parameters/compassHeading.md b/docs/en/edge/cordova/compass/parameters/compassHeading.md
index 25bdf9d..d44ded8 100644
--- a/docs/en/edge/cordova/compass/parameters/compassHeading.md
+++ b/docs/en/edge/cordova/compass/parameters/compassHeading.md
@@ -43,4 +43,4 @@ iOS Quirks
 ----------
 
 - `trueHeading` is only returned when location services are enabled via `navigator.geolocation.watchLocation()`
-- For iOS > 4 devices, heading factors in the device's current orientation, not in reference to its absolute position, for apps that supports that orientation.
+- For iOS 4 devices and above, heading factors in the device's current orientation, not in reference to its absolute position, for apps that supports that orientation.