Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 96BCBD827 for ; Mon, 22 Oct 2012 19:56:22 +0000 (UTC) Received: (qmail 36932 invoked by uid 500); 22 Oct 2012 19:56:22 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 36913 invoked by uid 500); 22 Oct 2012 19:56:22 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 36878 invoked by uid 99); 22 Oct 2012 19:56:22 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Oct 2012 19:56:22 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id F1F9745D95; Mon, 22 Oct 2012 19:56:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: hermwong@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [1/3] js commit: removed unexpected illegal token Message-Id: <20121022195621.F1F9745D95@tyr.zones.apache.org> Date: Mon, 22 Oct 2012 19:56:21 +0000 (UTC) Updated Branches: refs/heads/master eb0528d30 -> af0744de8 removed unexpected illegal token Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/af0744de Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/af0744de Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/af0744de Branch: refs/heads/master Commit: af0744de84f17b9be70fce2a413456274b63dac8 Parents: 33823d6 Author: hermwong Authored: Mon Oct 22 11:44:05 2012 -0700 Committer: hermwong Committed: Mon Oct 22 11:44:05 2012 -0700 ---------------------------------------------------------------------- lib/bada/plugin/bada/device.js | 2 +- lib/tizen/plugin/tizen/Device.js | 2 +- lib/webworks/air/plugin/air/device.js | 2 +- lib/webworks/qnx/plugin/qnx/device.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/af0744de/lib/bada/plugin/bada/device.js ---------------------------------------------------------------------- diff --git a/lib/bada/plugin/bada/device.js b/lib/bada/plugin/bada/device.js index 456c7b7..d62ca9c 100644 --- a/lib/bada/plugin/bada/device.js +++ b/lib/bada/plugin/bada/device.js @@ -72,7 +72,7 @@ Device.prototype.getDeviceInfo = function(success, fail, args) { me.platform = os_vendor + " " + os_name; me.version = os_version; me.uuid = uuid; - me.cordova = "2.2.0rc1 "; + me.cordova = "2.2.0rc1"; success(me); } }; http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/af0744de/lib/tizen/plugin/tizen/Device.js ---------------------------------------------------------------------- diff --git a/lib/tizen/plugin/tizen/Device.js b/lib/tizen/plugin/tizen/Device.js index a43a850..7a3c107 100644 --- a/lib/tizen/plugin/tizen/Device.js +++ b/lib/tizen/plugin/tizen/Device.js @@ -29,7 +29,7 @@ function Device() { this.version = null; this.uuid = null; this.name = null; - this.cordova = "2.2.0rc1 "; + this.cordova = "2.2.0rc1"; this.platform = "Tizen"; var me = this; http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/af0744de/lib/webworks/air/plugin/air/device.js ---------------------------------------------------------------------- diff --git a/lib/webworks/air/plugin/air/device.js b/lib/webworks/air/plugin/air/device.js index 2b1ad3c..122d961 100644 --- a/lib/webworks/air/plugin/air/device.js +++ b/lib/webworks/air/plugin/air/device.js @@ -32,7 +32,7 @@ module.exports = { version: blackberry.system.softwareVersion, name: blackberry.system.model, uuid: blackberry.identity.PIN, - cordova: "2.2.0rc1 " + cordova: "2.2.0rc1" }); return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" }; http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/af0744de/lib/webworks/qnx/plugin/qnx/device.js ---------------------------------------------------------------------- diff --git a/lib/webworks/qnx/plugin/qnx/device.js b/lib/webworks/qnx/plugin/qnx/device.js index 8d331ca..d792966 100644 --- a/lib/webworks/qnx/plugin/qnx/device.js +++ b/lib/webworks/qnx/plugin/qnx/device.js @@ -32,7 +32,7 @@ module.exports = { version: blackberry.system.softwareVersion, name: "Dev Alpha", uuid: blackberry.identity.uuid, - cordova: "2.2.0rc1 " + cordova: "2.2.0rc1" }); return { "status" : cordova.callbackStatus.NO_RESULT, "message" : "Device info returned" };