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/07/12 20:45:38 UTC

git commit: Added confix_xml function to windows phone parsers

Updated Branches:
  refs/heads/ripple 575d9863b -> dc0de9778


Added confix_xml function to windows phone parsers


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

Branch: refs/heads/ripple
Commit: dc0de97783201a25410a3469f33d852e6e1d9b0e
Parents: 575d986
Author: Benn Mapes <be...@gmail.com>
Authored: Fri Jul 12 11:45:15 2013 -0700
Committer: Benn Mapes <be...@gmail.com>
Committed: Fri Jul 12 11:45:15 2013 -0700

----------------------------------------------------------------------
 src/metadata/wp7_parser.js | 3 +++
 src/metadata/wp8_parser.js | 3 +++
 2 files changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/dc0de977/src/metadata/wp7_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/wp7_parser.js b/src/metadata/wp7_parser.js
index 9de35d4..2a852de 100644
--- a/src/metadata/wp7_parser.js
+++ b/src/metadata/wp7_parser.js
@@ -144,6 +144,9 @@ module.exports.prototype = {
     www_dir:function() {
         return path.join(this.wp7_proj_dir, 'www');
     },
+    config_xml:function() {
+        return path.join(this.wp7_proj_dir, 'config.xml');
+    },
     // copies the app www folder into the wp7 project's www folder and updates the csproj file.
     update_www:function() {
         var project_root = util.isCordova(this.wp7_proj_dir);

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/dc0de977/src/metadata/wp8_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/wp8_parser.js b/src/metadata/wp8_parser.js
index 7ac62a5..dfcfd16 100644
--- a/src/metadata/wp8_parser.js
+++ b/src/metadata/wp8_parser.js
@@ -145,6 +145,9 @@ module.exports.prototype = {
     www_dir:function() {
         return path.join(this.wp8_proj_dir, 'www');
     },
+    config_xml:function() {
+        return path.join(this.wp8_proj_dir, 'config.xml');
+    },
     // copies the app www folder into the wp8 project's www folder and updates the csproj file.
     update_www:function() {
         var project_root = util.isCordova(this.wp8_proj_dir);