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

[2/2] wp7 commit: CB-3176 added deprecation notice for plugin xml elements

CB-3176 added deprecation notice for plugin xml elements


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

Branch: refs/heads/master
Commit: 1881859dc0065744a516b4abb0a9a4b8276cc8a0
Parents: cf8a640
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Thu May 16 16:29:07 2013 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Thu May 16 16:29:07 2013 -0700

----------------------------------------------------------------------
 templates/standalone/cordovalib/ConfigHandler.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp7/blob/1881859d/templates/standalone/cordovalib/ConfigHandler.cs
----------------------------------------------------------------------
diff --git a/templates/standalone/cordovalib/ConfigHandler.cs b/templates/standalone/cordovalib/ConfigHandler.cs
index a5c15a5..31934c1 100644
--- a/templates/standalone/cordovalib/ConfigHandler.cs
+++ b/templates/standalone/cordovalib/ConfigHandler.cs
@@ -178,7 +178,7 @@ namespace WPCordovaClassLib.CordovaLib
 
             foreach (var plugin in plugins)
             {
-                Debug.WriteLine("plugin " + plugin.name);
+                Debug.WriteLine("Warning: Deprecated use of <plugin> by plugin : " + plugin.name);
                 PluginConfig pConfig = new PluginConfig(plugin.name, plugin.autoLoad != null && plugin.autoLoad.Value == "true");
                 if (pConfig.Name == "*")
                 {