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 BF250EA0A for ; Tue, 12 Feb 2013 19:33:07 +0000 (UTC) Received: (qmail 61507 invoked by uid 500); 12 Feb 2013 19:33:07 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 61469 invoked by uid 500); 12 Feb 2013 19:33:07 -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 61453 invoked by uid 99); 12 Feb 2013 19:33:07 -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:33:07 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 1EF9C51657; Tue, 12 Feb 2013 19:33:07 +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: [50/50] js commit: [windowsphone] Move InAppBrowser into symbols.js Message-Id: <20130212193307.1EF9C51657@tyr.zones.apache.org> Date: Tue, 12 Feb 2013 19:33:07 +0000 (UTC) Updated Branches: refs/heads/symbolmapping bcaca35da -> 35e8eb1f1 (forced update) [windowsphone] Move InAppBrowser into symbols.js Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/62a8c502 Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/62a8c502 Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/62a8c502 Branch: refs/heads/symbolmapping Commit: 62a8c50214e41a367932158b340aec85823efaba Parents: 8bc97c3 Author: Andrew Grieve Authored: Tue Feb 12 13:03:39 2013 -0500 Committer: Andrew Grieve Committed: Tue Feb 12 14:24:34 2013 -0500 ---------------------------------------------------------------------- lib/windowsphone/platform.js | 3 -- lib/windowsphone/plugin/inappbrowser/symbols.js | 24 ++++++++++++++++++ 2 files changed, 24 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-js/blob/62a8c502/lib/windowsphone/platform.js ---------------------------------------------------------------------- diff --git a/lib/windowsphone/platform.js b/lib/windowsphone/platform.js index 449a954..6cdb08f 100644 --- a/lib/windowsphone/platform.js +++ b/lib/windowsphone/platform.js @@ -43,9 +43,6 @@ module.exports = { clobbers: { FileTransfer: { path: 'cordova/plugin/windowsphone/FileTransfer' - }, - open : { - path: 'cordova/plugin/InAppBrowser' } } }; http://git-wip-us.apache.org/repos/asf/cordova-js/blob/62a8c502/lib/windowsphone/plugin/inappbrowser/symbols.js ---------------------------------------------------------------------- diff --git a/lib/windowsphone/plugin/inappbrowser/symbols.js b/lib/windowsphone/plugin/inappbrowser/symbols.js new file mode 100644 index 0000000..1b0866e --- /dev/null +++ b/lib/windowsphone/plugin/inappbrowser/symbols.js @@ -0,0 +1,24 @@ +/* + * 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.clobbers('cordova/plugin/InAppBrowser', 'open');