Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7304210971 for ; Thu, 27 Nov 2014 19:32:46 +0000 (UTC) Received: (qmail 94355 invoked by uid 500); 27 Nov 2014 19:32:41 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 94196 invoked by uid 500); 27 Nov 2014 19:32:41 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 94158 invoked by uid 99); 27 Nov 2014 19:32:41 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Nov 2014 19:32:41 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E09DF94A248; Thu, 27 Nov 2014 19:32:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ian@apache.org To: commits@cordova.apache.org Date: Thu, 27 Nov 2014 19:32:40 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/4] cordova-plugin-file-transfer git commit: Fix for https://issues.apache.org/jira/browse/CB-4674 Repository: cordova-plugin-file-transfer Updated Branches: refs/heads/master 6c253e832 -> 25de5332c Fix for https://issues.apache.org/jira/browse/CB-4674 https://issues.apache.org/jira/browse/CB-4674 Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/commit/4879a095 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/tree/4879a095 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/diff/4879a095 Branch: refs/heads/master Commit: 4879a0955334a7fee11cfbc89dd8815021c3a978 Parents: aebe887 Author: Kiran Authored: Tue Oct 28 22:02:25 2014 +0530 Committer: Kiran Committed: Tue Oct 28 22:02:25 2014 +0530 ---------------------------------------------------------------------- doc/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/4879a095/doc/index.md ---------------------------------------------------------------------- diff --git a/doc/index.md b/doc/index.md index 48b14b2..22306bc 100644 --- a/doc/index.md +++ b/doc/index.md @@ -68,9 +68,9 @@ __Parameters__: - __server__: URL of the server to receive the file, as encoded by `encodeURI()`. -- __successCallback__: A callback that is passed a `Metadata` object. _(Function)_ +- __successCallback__: A callback that is passed a `FileUploadResult` object. _(Function)_ -- __errorCallback__: A callback that executes if an error occurs retrieving the `Metadata`. Invoked with a `FileTransferError` object. _(Function)_ +- __errorCallback__: A callback that executes if an error occurs retrieving the `FileUploadResult`. Invoked with a `FileTransferError` object. _(Function)_ - __options__: Optional parameters _(Object)_. Valid keys: - __fileKey__: The name of the form element. Defaults to `file`. (DOMString) @@ -179,7 +179,7 @@ __Parameters__: - __successCallback__: A callback that is passed a `FileEntry` object. _(Function)_ -- __errorCallback__: A callback that executes if an error occurs when retrieving the `Metadata`. Invoked with a `FileTransferError` object. _(Function)_ +- __errorCallback__: A callback that executes if an error occurs when retrieving the `FileEntry`. Invoked with a `FileTransferError` object. _(Function)_ - __trustAllHosts__: Optional parameter, defaults to `false`. If set to `true`, it accepts all security certificates. This is useful because Android rejects self-signed security certificates. Not recommended for production use. Supported on Android and iOS. _(boolean)_ --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org