You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by be...@apache.org on 2013/06/04 11:32:11 UTC

git commit: patched wp plugin support and boostrap fix

Updated Branches:
  refs/heads/2.8.x c2f9d2037 -> b9fd1f31e


patched wp plugin support and boostrap fix


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/b9fd1f31
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/b9fd1f31
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/b9fd1f31

Branch: refs/heads/2.8.x
Commit: b9fd1f31e3c5a92f420e7d322545b09b04ac874e
Parents: c2f9d20
Author: Benn Mapes <be...@gmail.com>
Authored: Thu May 30 16:48:54 2013 -0700
Committer: Benn Mapes <be...@gmail.com>
Committed: Tue Jun 4 02:29:58 2013 -0700

----------------------------------------------------------------------
 bootstrap.js  |    2 +-
 src/plugin.js |    2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/b9fd1f31/bootstrap.js
----------------------------------------------------------------------
diff --git a/bootstrap.js b/bootstrap.js
index 4750571..c70188f 100644
--- a/bootstrap.js
+++ b/bootstrap.js
@@ -39,7 +39,7 @@ var min_reqs = {
     "ios":i_parser.check_requirements,
     "blackberry":b_parser.check_requirements,
     "wp7":wp7_parser.check_requirements,
-    "wp8":wp7_parser.check_requirements
+    "wp8":wp8_parser.check_requirements
 }
 
 // Create native projects using bin/create

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/b9fd1f31/src/plugin.js
----------------------------------------------------------------------
diff --git a/src/plugin.js b/src/plugin.js
index cf894d5..d5371cf 100644
--- a/src/plugin.js
+++ b/src/plugin.js
@@ -31,6 +31,8 @@ var cordova_util  = require('./util'),
 var parsers = {
     "android": require('./metadata/android_parser'),
     "ios": require('./metadata/ios_parser'),
+    "wp7": require('./metadata/wp7_parser'),
+    "wp8": require('./metadata/wp8_parser'),
     "blackberry": require('./metadata/blackberry_parser')
 };