You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2014/04/11 21:46:19 UTC

[03/50] [abbrv] 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/browserify
Commit: 9de32371f7ac349982791d375a61b0b835eab021
Parents: 3b46848
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Thu Feb 27 16:46:20 2014 -0800
Committer: Jesse MacFadyen <pu...@gmail.com>
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) {