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

[18/21] js commit: [CB3396] [Tizen, Tizen SDK 2.0 (Magnolia)]

[CB3396] [Tizen, Tizen SDK 2.0 (Magnolia)]

remove several console.log messages
(keep them in comments for now)


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

Branch: refs/heads/master
Commit: 467979516d2dda6ae9e909d88950523377403c7a
Parents: 2142edd
Author: pplaquette <pp...@apache.org>
Authored: Fri May 17 16:07:58 2013 +0200
Committer: pplaquette <pp...@apache.org>
Committed: Fri May 17 16:07:58 2013 +0200

----------------------------------------------------------------------
 Jakefile                                |    1 -
 lib/tizen/exec.js                       |    6 +++---
 lib/tizen/platform.js                   |    4 ++--
 lib/tizen/plugin/tizen/Accelerometer.js |    4 ++--
 lib/tizen/plugin/tizen/Battery.js       |    4 ++--
 lib/tizen/plugin/tizen/Compass.js       |    4 ++--
 lib/tizen/plugin/tizen/Contact.js       |    4 ++--
 lib/tizen/plugin/tizen/File.js          |    4 ++--
 lib/tizen/plugin/tizen/FileTransfer.js  |    4 ++--
 lib/tizen/plugin/tizen/NetworkStatus.js |    4 ++--
 lib/tizen/plugin/tizen/Notification.js  |    4 ++--
 11 files changed, 21 insertions(+), 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/Jakefile
----------------------------------------------------------------------
diff --git a/Jakefile b/Jakefile
index c6bb633..0ac574c 100644
--- a/Jakefile
+++ b/Jakefile
@@ -115,7 +115,6 @@ task('build', ['clean', 'hint'], function () {
 
         packager.generate("windows8", version,true);
         packager.generate("blackberry", version);
-        packager.generate("blackberry10", version);
         packager.generate("firefoxos", version);
         packager.generate("ios", version);
         packager.generate("windowsphone", version,true);

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/exec.js
----------------------------------------------------------------------
diff --git a/lib/tizen/exec.js b/lib/tizen/exec.js
index a47ce50..f7ae520 100644
--- a/lib/tizen/exec.js
+++ b/lib/tizen/exec.js
@@ -48,14 +48,14 @@
  * @param {String[]} [args]     Zero or more arguments to pass to the method
  */
 
-console.log("TIZEN EXEC START");
+//console.log("TIZEN EXEC START");
 
 
 var manager = require('cordova/plugin/tizen/manager'),
     cordova = require('cordova'),
     utils = require('cordova/utils');
 
-console.log("TIZEN EXEC START 2");
+//console.log("TIZEN EXEC START bis");
 
 module.exports = function(successCB, failCB, service, action, args) {
 
@@ -98,7 +98,7 @@ module.exports = function(successCB, failCB, service, action, args) {
     }
 };
 
-console.log("TIZEN EXEC END ");
+//console.log("TIZEN EXEC END ");
 
 /*
 var plugins = {

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/platform.js
----------------------------------------------------------------------
diff --git a/lib/tizen/platform.js b/lib/tizen/platform.js
index 82aed6e..61d7b39 100644
--- a/lib/tizen/platform.js
+++ b/lib/tizen/platform.js
@@ -19,7 +19,7 @@
  *
 */
 
-console.log("TIZEN PLATFORM START");
+//console.log("TIZEN PLATFORM START");
 
 
 module.exports = {
@@ -41,5 +41,5 @@ module.exports = {
     }
 };
 
-console.log("TIZEN PLATFORM START");
+//console.log("TIZEN PLATFORM START");
 

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/plugin/tizen/Accelerometer.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Accelerometer.js b/lib/tizen/plugin/tizen/Accelerometer.js
index 4006c5c..18be54c 100644
--- a/lib/tizen/plugin/tizen/Accelerometer.js
+++ b/lib/tizen/plugin/tizen/Accelerometer.js
@@ -21,7 +21,7 @@
 
 var accelerometerCallback = null;
 
-console.log("TIZEN ACCELEROMETER START");
+//console.log("TIZEN ACCELEROMETER START");
 
 module.exports = {
 
@@ -48,5 +48,5 @@ module.exports = {
     }
 };
 
-console.log("TIZEN ACCELEROMETER END");
+//console.log("TIZEN ACCELEROMETER END");
 

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/plugin/tizen/Battery.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Battery.js b/lib/tizen/plugin/tizen/Battery.js
index a3aae49..f380a6d 100644
--- a/lib/tizen/plugin/tizen/Battery.js
+++ b/lib/tizen/plugin/tizen/Battery.js
@@ -22,7 +22,7 @@
 /*global tizen:false */
 var batteryListenerId = null;
 
-console.log("TIZEN BATTERY START");
+//console.log("TIZEN BATTERY START");
 
 module.exports = {
     start: function(successCallback, errorCallback) {
@@ -45,4 +45,4 @@ module.exports = {
     }
 };
 
-console.log("TIZEN BATTERY END");
+//console.log("TIZEN BATTERY END");

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/plugin/tizen/Compass.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Compass.js b/lib/tizen/plugin/tizen/Compass.js
index 105c6d7..4f7c634 100644
--- a/lib/tizen/plugin/tizen/Compass.js
+++ b/lib/tizen/plugin/tizen/Compass.js
@@ -25,7 +25,7 @@ var CompassError = require('cordova/plugin/CompassError'),
 var compassCallback = null,
     compassReady = false;
 
-console.log("TIZEN COMPASS START");
+//console.log("TIZEN COMPASS START");
 
 module.exports = {
     getHeading: function(successCallback, errorCallback) {
@@ -50,5 +50,5 @@ module.exports = {
     }
 };
 
-console.log("TIZEN COMPASS END");
+//console.log("TIZEN COMPASS END");
 

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/plugin/tizen/Contact.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Contact.js b/lib/tizen/plugin/tizen/Contact.js
index 0aebb2b..148a0e8 100644
--- a/lib/tizen/plugin/tizen/Contact.js
+++ b/lib/tizen/plugin/tizen/Contact.js
@@ -28,7 +28,7 @@
 // ------------------
 
 
-console.log("TIZEN CONTACT START");
+//console.log("TIZEN CONTACT START");
 
 
 var ContactError = require('cordova/plugin/ContactError'),
@@ -544,4 +544,4 @@ module.exports = {
     }
 };
 
-console.log("TIZEN CONTACT END");
+//console.log("TIZEN CONTACT END");

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/plugin/tizen/File.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/File.js b/lib/tizen/plugin/tizen/File.js
index 3de7335..29583f8 100644
--- a/lib/tizen/plugin/tizen/File.js
+++ b/lib/tizen/plugin/tizen/File.js
@@ -20,7 +20,7 @@
 */
 
 
-console.log("TIZEN FILE START");
+//console.log("TIZEN FILE START");
 
 /*global WebKitBlobBuilder:false */
 var FileError = require('cordova/plugin/FileError'),
@@ -606,5 +606,5 @@ module.exports = {
 };
 
 
-console.log("TIZEN FILE END");
+//console.log("TIZEN FILE END");
 

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/plugin/tizen/FileTransfer.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/FileTransfer.js b/lib/tizen/plugin/tizen/FileTransfer.js
index c8d885c..8a59254 100644
--- a/lib/tizen/plugin/tizen/FileTransfer.js
+++ b/lib/tizen/plugin/tizen/FileTransfer.js
@@ -22,7 +22,7 @@
 /*global WebKitBlobBuilder:false */
 
 
-console.log("TIZEN FILE TRANSFER START");
+//console.log("TIZEN FILE TRANSFER START");
 
 var FileEntry = require('cordova/plugin/FileEntry'),
     FileTransferError = require('cordova/plugin/FileTransferError'),
@@ -199,5 +199,5 @@ module.exports = {
 };
 
 
-console.log("TIZEN FILE TRANSFER END");
+//console.log("TIZEN FILE TRANSFER END");
 

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/plugin/tizen/NetworkStatus.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/NetworkStatus.js b/lib/tizen/plugin/tizen/NetworkStatus.js
index b51832b..4ae75c3 100644
--- a/lib/tizen/plugin/tizen/NetworkStatus.js
+++ b/lib/tizen/plugin/tizen/NetworkStatus.js
@@ -22,7 +22,7 @@
 /*global tizen:false */
 var Connection = require('cordova/plugin/Connection');
 
-console.log("TIZEN CONNECTION AKA NETWORK STATUS START");
+//console.log("TIZEN CONNECTION AKA NETWORK STATUS START");
 
 module.exports = {
     getConnectionInfo: function (successCallback, errorCallback) {
@@ -76,4 +76,4 @@ module.exports = {
     }
 };
 
-console.log("TIZEN CONNECTION AKA NETWORK STATUS END");
+//console.log("TIZEN CONNECTION AKA NETWORK STATUS END");

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/46797951/lib/tizen/plugin/tizen/Notification.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/Notification.js b/lib/tizen/plugin/tizen/Notification.js
index 4f6ca22..a14834f 100644
--- a/lib/tizen/plugin/tizen/Notification.js
+++ b/lib/tizen/plugin/tizen/Notification.js
@@ -25,7 +25,7 @@ var SoundBeat = require('cordova/plugin/tizen/SoundBeat');
 var soundBeat = new SoundBeat(["./sounds/beep.wav"]);
 
 
-console.log("TIZEN NOTIFICATION START");
+//console.log("TIZEN NOTIFICATION START");
 
 
 module.exports = {
@@ -164,5 +164,5 @@ module.exports = {
     }
 };
 
-console.log("TIZEN NOTIFICATION END");
+//console.log("TIZEN NOTIFICATION END");