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 264A910799 for ; Thu, 6 Mar 2014 00:13:39 +0000 (UTC) Received: (qmail 59439 invoked by uid 500); 6 Mar 2014 00:13:36 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 59381 invoked by uid 500); 6 Mar 2014 00:13:34 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 59163 invoked by uid 99); 6 Mar 2014 00:13:29 -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, 06 Mar 2014 00:13:29 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6AB639380B2; Thu, 6 Mar 2014 00:13:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: purplecabbage@apache.org To: commits@cordova.apache.org Date: Thu, 06 Mar 2014 00:13:33 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [06/13] git commit: remove double wip framework element remove double wip framework element Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/9de32371 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/9de32371 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/9de32371 Branch: refs/heads/master Commit: 9de32371f7ac349982791d375a61b0b835eab021 Parents: 3b46848 Author: Jesse MacFadyen Authored: Thu Feb 27 16:46:20 2014 -0800 Committer: Jesse MacFadyen Committed: Thu Feb 27 16:46:20 2014 -0800 ---------------------------------------------------------------------- src/platforms/windows8.js | 29 ----------------------------- 1 file changed, 29 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/9de32371/src/platforms/windows8.js ---------------------------------------------------------------------- diff --git a/src/platforms/windows8.js b/src/platforms/windows8.js index 491c6f0..43f55bc 100644 --- a/src/platforms/windows8.js +++ b/src/platforms/windows8.js @@ -95,35 +95,6 @@ module.exports = { var src = el.attrib['src']; var dest = src; // if !isCustom, we will just add a reference to the file in place var isCustom = el.attrib.custom == "true"; - if(isCustom) { - dest = path.join('plugins', plugin_id, path.basename(src)); - common.copyFile(plugin_dir, src, project_dir, dest); - } - - project_file.addReference(dest,src); - - }, - uninstall:function(el, project_dir, plugin_id, project_file) { - require('../../plugman').emit('verbose', 'windows8 framework uninstall :: ' + plugin_id ); - - var src = el.attrib['src']; - var isCustom = el.attrib.custom == "true"; - - if(isCustom) { - var dest = path.join('plugins', plugin_id);//, path.basename(src)); - common.removeFile(project_dir, dest); - } - - project_file.removeReference(src); - } - }, - "framework": { - install:function(el, plugin_dir, project_dir, plugin_id, project_file) { - require('../../plugman').emit('verbose', 'windows8 framework install :: ' + plugin_id); - - var src = el.attrib['src']; - var dest = src; // if !isCustom, we will just add a reference to the file in place - var isCustom = el.attrib.custom == "true"; var type = el.attrib["type"]; if(isCustom) {