You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ia...@apache.org on 2013/05/17 21:09:12 UTC

git commit: [CB-3419] Change plugin XML namespace to cordova.apache.org

Updated Branches:
  refs/heads/master 4455e69a0 -> 926d41779


[CB-3419] Change plugin XML namespace to cordova.apache.org


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

Branch: refs/heads/master
Commit: 926d41779ff1f89b05ac0f03ed9f627d4e7fca80
Parents: 4455e69
Author: Ian Clelland <ic...@chromium.org>
Authored: Fri May 17 13:55:14 2013 -0400
Committer: Ian Clelland <ic...@chromium.org>
Committed: Fri May 17 13:56:06 2013 -0400

----------------------------------------------------------------------
 templates/www/config.xml |   46 ++++++++++++++++++++--------------------
 1 files changed, 23 insertions(+), 23 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/926d4177/templates/www/config.xml
----------------------------------------------------------------------
diff --git a/templates/www/config.xml b/templates/www/config.xml
index 206bc56..aca4d5e 100644
--- a/templates/www/config.xml
+++ b/templates/www/config.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <widget xmlns     = "http://www.w3.org/ns/widgets"
-        xmlns:gap = "http://phonegap.com/ns/1.0"
+        xmlns:cdv = "http://cordova.apache.org/ns/1.0"
         id        = "io.cordova.hello-cordova"
         version   = "2.0.0">
     <name>Hello Cordova</name>
@@ -14,29 +14,29 @@
     </author>
 
     <icon src="res/icon/cordova_512.png"        width="512" height="512" />
-    <icon src="res/icon/cordova_android_96.png" width="96"  height="96"  gap:platform="android" />
-    <icon src="res/icon/cordova_bb_80.png"      width="80"  height="80"  gap:platform="blackberry" />
-    <icon src="res/icon/cordova_ios_144.png"    width="144" height="144" gap:platform="ios" />
+    <icon src="res/icon/cordova_android_96.png" width="96"  height="96"  cdv:platform="android" />
+    <icon src="res/icon/cordova_bb_80.png"      width="80"  height="80"  cdv:platform="blackberry" />
+    <icon src="res/icon/cordova_ios_144.png"    width="144" height="144" cdv:platform="ios" />
 
-    <gap:splash src="res/screen/android_hdpi_landscape.png"      width="800"  height="480"  gap:platform="android" />
-    <gap:splash src="res/screen/android_hdpi_portrait.png"       width="480"  height="800"  gap:platform="android" />
-    <gap:splash src="res/screen/android_ldpi_landscape.png"      width="320"  height="200"  gap:platform="android" />
-    <gap:splash src="res/screen/android_ldpi_portrait.png"       width="200"  height="320"  gap:platform="android" />
-    <gap:splash src="res/screen/android_mdpi_landscape.png"      width="480"  height="320"  gap:platform="android" />
-    <gap:splash src="res/screen/android_mdpi_portrait.png"       width="320"  height="480"  gap:platform="android" />
-    <gap:splash src="res/screen/android_xhdpi_landscape.png"     width="1280" height="720"  gap:platform="android" />
-    <gap:splash src="res/screen/android_xhdpi_portrait.png"      width="720"  height="1280" gap:platform="android" />
-    <gap:splash src="res/screen/blackberry_transparent_300.png"  width="300"  height="300"  gap:platform="blackberry" />
-    <gap:splash src="res/screen/blackberry_transparent_400.png"  width="200"  height="200"  gap:platform="blackberry" />
-    <gap:splash src="res/screen/ipad_landscape.png"              width="1024" height="748"  gap:platform="ios" />
-    <gap:splash src="res/screen/ipad_portrait.png"               width="768"  height="1004" gap:platform="ios" />
-    <gap:splash src="res/screen/ipad_retina_landscape.png"       width="2048" height="1496" gap:platform="ios" />
-    <gap:splash src="res/screen/ipad_retina_portrait.png"        width="1536" height="2008" gap:platform="ios" />
-    <gap:splash src="res/screen/iphone_landscape.png"            width="480"  height="320"  gap:platform="ios" />
-    <gap:splash src="res/screen/iphone_portrait.png"             width="320"  height="480"  gap:platform="ios" />
-    <gap:splash src="res/screen/iphone_retina_landscape.png"     width="960"  height="640"  gap:platform="ios" />
-    <gap:splash src="res/screen/iphone_retina_portrait.png"      width="640"  height="960"  gap:platform="ios" />
-    <gap:splash src="res/screen/windows_phone_portrait.jpg"      width="480"  height="800"  gap:platform="winphone" />
+    <cdv:splash src="res/screen/android_hdpi_landscape.png"      width="800"  height="480"  cdv:platform="android" />
+    <cdv:splash src="res/screen/android_hdpi_portrait.png"       width="480"  height="800"  cdv:platform="android" />
+    <cdv:splash src="res/screen/android_ldpi_landscape.png"      width="320"  height="200"  cdv:platform="android" />
+    <cdv:splash src="res/screen/android_ldpi_portrait.png"       width="200"  height="320"  cdv:platform="android" />
+    <cdv:splash src="res/screen/android_mdpi_landscape.png"      width="480"  height="320"  cdv:platform="android" />
+    <cdv:splash src="res/screen/android_mdpi_portrait.png"       width="320"  height="480"  cdv:platform="android" />
+    <cdv:splash src="res/screen/android_xhdpi_landscape.png"     width="1280" height="720"  cdv:platform="android" />
+    <cdv:splash src="res/screen/android_xhdpi_portrait.png"      width="720"  height="1280" cdv:platform="android" />
+    <cdv:splash src="res/screen/blackberry_transparent_300.png"  width="300"  height="300"  cdv:platform="blackberry" />
+    <cdv:splash src="res/screen/blackberry_transparent_400.png"  width="200"  height="200"  cdv:platform="blackberry" />
+    <cdv:splash src="res/screen/ipad_landscape.png"              width="1024" height="748"  cdv:platform="ios" />
+    <cdv:splash src="res/screen/ipad_portrait.png"               width="768"  height="1004" cdv:platform="ios" />
+    <cdv:splash src="res/screen/ipad_retina_landscape.png"       width="2048" height="1496" cdv:platform="ios" />
+    <cdv:splash src="res/screen/ipad_retina_portrait.png"        width="1536" height="2008" cdv:platform="ios" />
+    <cdv:splash src="res/screen/iphone_landscape.png"            width="480"  height="320"  cdv:platform="ios" />
+    <cdv:splash src="res/screen/iphone_portrait.png"             width="320"  height="480"  cdv:platform="ios" />
+    <cdv:splash src="res/screen/iphone_retina_landscape.png"     width="960"  height="640"  cdv:platform="ios" />
+    <cdv:splash src="res/screen/iphone_retina_portrait.png"      width="640"  height="960"  cdv:platform="ios" />
+    <cdv:splash src="res/screen/windows_phone_portrait.jpg"      width="480"  height="800"  cdv:platform="winphone" />
 
     <feature name="http://api.phonegap.com/1.0/device" />