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 5C4A5E9E9 for ; Tue, 12 Feb 2013 19:32:43 +0000 (UTC) Received: (qmail 53882 invoked by uid 500); 12 Feb 2013 19:32:42 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 53811 invoked by uid 500); 12 Feb 2013 19:32:42 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 53434 invoked by uid 99); 12 Feb 2013 19:32:42 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Feb 2013 19:32:42 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 17EC05160B; Tue, 12 Feb 2013 19:32:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agrieve@apache.org To: commits@cordova.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [7/24] js commit: [all] modulemapper refactor for Camera. Message-Id: <20130212193242.17EC05160B@tyr.zones.apache.org> Date: Tue, 12 Feb 2013 19:32:42 +0000 (UTC) [all] modulemapper refactor for Camera. https://issues.apache.org/jira/browse/CB-2227 Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/fdf89aaf Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/fdf89aaf Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/fdf89aaf Branch: refs/heads/master Commit: fdf89aaff185a8bac79a3804193d45543c16296e Parents: 50c9155 Author: Andrew Grieve Authored: Thu Jan 24 16:01:48 2013 -0500 Committer: Andrew Grieve Committed: Tue Feb 12 13:44:49 2013 -0500 ---------------------------------------------------------------------- lib/bada/platform.js | 3 --- lib/bada/plugin/camera/symbols.js | 26 ++++++++++++++++++++++++++ lib/common/common.js | 9 --------- lib/common/plugin/camera/symbols.js | 26 ++++++++++++++++++++++++++ 4 files changed, 52 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-js/blob/fdf89aaf/lib/bada/platform.js ---------------------------------------------------------------------- diff --git a/lib/bada/platform.js b/lib/bada/platform.js index 0ef3261..8316c7b 100644 --- a/lib/bada/platform.js +++ b/lib/bada/platform.js @@ -45,9 +45,6 @@ module.exports = { device: { path: "cordova/plugin/bada/device" }, - camera: { - path: "cordova/plugin/bada/Camera" - }, capture: { path: "cordova/plugin/bada/Capture" } http://git-wip-us.apache.org/repos/asf/cordova-js/blob/fdf89aaf/lib/bada/plugin/camera/symbols.js ---------------------------------------------------------------------- diff --git a/lib/bada/plugin/camera/symbols.js b/lib/bada/plugin/camera/symbols.js new file mode 100644 index 0000000..b071213 --- /dev/null +++ b/lib/bada/plugin/camera/symbols.js @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * +*/ + + +var modulemapper = require('cordova/modulemapper'); + +modulemapper.defaults('cordova/plugin/bada/Camera', 'navigator.camera'); +modulemapper.defaults('cordova/plugin/CameraConstants', 'Camera'); +modulemapper.defaults('cordova/plugin/CameraPopoverOptions', 'CameraPopoverOptions'); http://git-wip-us.apache.org/repos/asf/cordova-js/blob/fdf89aaf/lib/common/common.js ---------------------------------------------------------------------- diff --git a/lib/common/common.js b/lib/common/common.js index f4f298b..37dda9d 100644 --- a/lib/common/common.js +++ b/lib/common/common.js @@ -47,9 +47,6 @@ module.exports = { notification: { path: 'cordova/plugin/notification' }, - camera:{ - path: 'cordova/plugin/Camera' - }, compass:{ path: 'cordova/plugin/compass' }, @@ -82,12 +79,6 @@ module.exports = { } } }, - Camera:{ - path: 'cordova/plugin/CameraConstants' - }, - CameraPopoverOptions: { - path: 'cordova/plugin/CameraPopoverOptions' - }, CaptureError: { path: 'cordova/plugin/CaptureError' }, http://git-wip-us.apache.org/repos/asf/cordova-js/blob/fdf89aaf/lib/common/plugin/camera/symbols.js ---------------------------------------------------------------------- diff --git a/lib/common/plugin/camera/symbols.js b/lib/common/plugin/camera/symbols.js new file mode 100644 index 0000000..d0f462d --- /dev/null +++ b/lib/common/plugin/camera/symbols.js @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * +*/ + + +var modulemapper = require('cordova/modulemapper'); + +modulemapper.defaults('cordova/plugin/Camera', 'navigator.camera'); +modulemapper.defaults('cordova/plugin/CameraConstants', 'Camera'); +modulemapper.defaults('cordova/plugin/CameraPopoverOptions', 'CameraPopoverOptions');