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 2FB8ADCF0 for ; Sat, 6 Oct 2012 09:19:28 +0000 (UTC) Received: (qmail 14005 invoked by uid 500); 6 Oct 2012 09:19:28 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 13881 invoked by uid 500); 6 Oct 2012 09:19:27 -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 11113 invoked by uid 99); 6 Oct 2012 09:19:21 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Oct 2012 09:19:21 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 657273AD77; Sat, 6 Oct 2012 09:19:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: purplecabbage@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [44/45] js commit: Fixed missing renames Message-Id: <20121006091921.657273AD77@tyr.zones.apache.org> Date: Sat, 6 Oct 2012 09:19:21 +0000 (UTC) Fixed missing renames 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/468084b2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/468084b2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/468084b2 Branch: refs/heads/master Commit: 468084b27f207a74415f20f6cab533a345519370 Parents: dcabbfd Author: mpberk Authored: Tue Aug 21 09:55:29 2012 -0700 Committer: mpberk Committed: Tue Aug 21 09:55:29 2012 -0700 ---------------------------------------------------------------------- lib/windows8/exec.js | 18 +++++++------- lib/windows8/platform.js | 10 ++++---- lib/windows8/plugin/windows8/AccelerometerProxy.js | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/468084b2/lib/windows8/exec.js ---------------------------------------------------------------------- diff --git a/lib/windows8/exec.js b/lib/windows8/exec.js index 14e03d3..60bee46 100644 --- a/lib/windows8/exec.js +++ b/lib/windows8/exec.js @@ -26,15 +26,15 @@ var cordova = require('cordova'); var CommandProxy = { - "Accelerometer": require('cordova/plugin/win8metro/AccelerometerProxy'), - "Camera":require('cordova/plugin/win8metro/CameraProxy'), - "Capture":require('cordova/plugin/win8metro/CaptureProxy'), - "Compass":require('cordova/plugin/win8metro/CompassProxy'), - "Device":require('cordova/plugin/win8metro/DeviceProxy'), - "File":require('cordova/plugin/win8metro/FileProxy'), - "Media":require('cordova/plugin/win8metro/MediaProxy'), - "NetworkStatus":require('cordova/plugin/win8metro/NetworkStatusProxy'), - "Notification":require('cordova/plugin/win8metro/NotificationProxy') + "Accelerometer": require('cordova/plugin/windows8/AccelerometerProxy'), + "Camera":require('cordova/plugin/windows8/CameraProxy'), + "Capture":require('cordova/plugin/windows8/CaptureProxy'), + "Compass":require('cordova/plugin/windows8/CompassProxy'), + "Device":require('cordova/plugin/windows8/DeviceProxy'), + "File":require('cordova/plugin/windows8/FileProxy'), + "Media":require('cordova/plugin/windows8/MediaProxy'), + "NetworkStatus":require('cordova/plugin/windows8/NetworkStatusProxy'), + "Notification":require('cordova/plugin/windows8/NotificationProxy') }; module.exports = function(success, fail, service, action, args) { http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/468084b2/lib/windows8/platform.js ---------------------------------------------------------------------- diff --git a/lib/windows8/platform.js b/lib/windows8/platform.js index c5a91b5..3c0c798 100644 --- a/lib/windows8/platform.js +++ b/lib/windows8/platform.js @@ -4,7 +4,7 @@ var cordova = require('cordova'), channel = cordova.require("cordova/channel"); module.exports = { - id: "win8metro", + id: "windows8", initialize:function() { }, @@ -12,7 +12,7 @@ module.exports = { navigator: { children: { device: { - path:"cordova/plugin/win8metro/device", + path:"cordova/plugin/windows8/device", children:{ capture:{ path:"cordova/plugin/capture" @@ -20,19 +20,19 @@ module.exports = { } }, console: { - path: "cordova/plugin/win8metro/console" + path: "cordova/plugin/windows8/console" } } } }, merges: { MediaFile: { - path: "cordova/plugin/win8metro/MediaFile" + path: "cordova/plugin/windows8/MediaFile" }, navigator: { children: { notification: { - path: 'cordova/plugin/win8metro/geolocation' + path: 'cordova/plugin/windows8/geolocation' } } } http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/468084b2/lib/windows8/plugin/windows8/AccelerometerProxy.js ---------------------------------------------------------------------- diff --git a/lib/windows8/plugin/windows8/AccelerometerProxy.js b/lib/windows8/plugin/windows8/AccelerometerProxy.js index 6b1b14d..84199df 100644 --- a/lib/windows8/plugin/windows8/AccelerometerProxy.js +++ b/lib/windows8/plugin/windows8/AccelerometerProxy.js @@ -2,7 +2,7 @@ var cordova = require('cordova'), Acceleration = require('cordova/plugin/Acceleration'); -/* This is the actual implementation part that returns the result on Win8Metro +/* This is the actual implementation part that returns the result on Windows 8 */ module.exports = {