You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2014/09/30 02:42:00 UTC

[1/2] git commit: Update JS snapshot to version 3.6.0 (via coho)

Repository: cordova-browser
Updated Branches:
  refs/heads/3.6.x [created] 201698a20


Update JS snapshot to version 3.6.0 (via coho)


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

Branch: refs/heads/3.6.x
Commit: 61e884ed9b49d9cea94c7ba6f5d60e9455257127
Parents: 92485f4
Author: Steven Gill <st...@gmail.com>
Authored: Mon Sep 29 17:39:32 2014 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Mon Sep 29 17:39:32 2014 -0700

----------------------------------------------------------------------
 cordova-lib/cordova.js | 110 +++++++++++++++++++++++++++-----------------
 1 file changed, 68 insertions(+), 42 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-browser/blob/61e884ed/cordova-lib/cordova.js
----------------------------------------------------------------------
diff --git a/cordova-lib/cordova.js b/cordova-lib/cordova.js
index 3a0c2d6..d73121b 100644
--- a/cordova-lib/cordova.js
+++ b/cordova-lib/cordova.js
@@ -1,5 +1,5 @@
 // Platform: browser
-// 3.5.2
+// 8ca0f3b2b87e0759c5236b91c80f18438544409c
 /*
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
@@ -19,7 +19,7 @@
  under the License.
 */
 ;(function() {
-var CORDOVA_JS_BUILD_LABEL = '3.5.2';
+var PLATFORM_VERSION_BUILD_LABEL = '3.6.0';
 // file: src/scripts/require.js
 
 /*jshint -W079 */
@@ -175,7 +175,8 @@ function createEvent(type, data) {
 var cordova = {
     define:define,
     require:require,
-    version:CORDOVA_JS_BUILD_LABEL,
+    version:PLATFORM_VERSION_BUILD_LABEL,
+    platformVersion:PLATFORM_VERSION_BUILD_LABEL,
     platformId:platform.id,
     /**
      * Methods to add/remove your own addEventListener hijacking on document + window.
@@ -265,7 +266,7 @@ var cordova = {
         try {
             cordova.callbackFromNative(callbackId, true, args.status, [args.message], args.keepCallback);
         } catch (e) {
-            console.log("Error in error callback: " + callbackId + " = "+e);
+            console.log("Error in success callback: " + callbackId + " = "+e);
         }
     },
 
@@ -806,23 +807,27 @@ module.exports = channel;
 // file: src/browser/exec.js
 define("cordova/exec", function(require, exports, module) {
 
-//var browser = require('cordova/platform');
 var cordova = require('cordova');
 var execProxy = require('cordova/exec/proxy');
 
 module.exports = function(success, fail, service, action, args) {
-    var proxy = execProxy.get(service,action);
-    if(proxy) {
+
+    var proxy = execProxy.get(service, action);
+
+    if (proxy) {
         var callbackId = service + cordova.callbackId++;
-        //console.log("EXEC:" + service + " : " + action);
+
         if (typeof success == "function" || typeof fail == "function") {
             cordova.callbacks[callbackId] = {success:success, fail:fail};
         }
+
         try {
             proxy(success, fail, args);
         }
         catch(e) {
-            console.log("Exception calling native with command :: " + service + " :: " + action  + " ::exception=" + e);
+            // TODO throw maybe?
+            var msg = "Exception calling :: " + service + " :: " + action  + " ::exception=" + e;
+            console.log(msg);
         }
     }
     else {
@@ -862,23 +867,9 @@ module.exports = {
 };
 });
 
-// file: src/browser/browser/commandProxy.js
-define("cordova/browser/commandProxy", function(require, exports, module) {
-
-console.log('WARNING: please require cordova/exec/proxy instead');
-module.exports = require('cordova/exec/proxy');
-
-});
-
-// file: src/browser/init.js
+// file: src/common/init.js
 define("cordova/init", function(require, exports, module) {
 
-/*
- * This file has been copied into the browser platform and patched
- * to fix a problem with replacing the navigator object. We will have
- * to keep this file up-to-date with the common init.js.
- */
-
 var channel = require('cordova/channel');
 var cordova = require('cordova');
 var modulemapper = require('cordova/modulemapper');
@@ -913,15 +904,18 @@ function replaceNavigator(origNavigator) {
     // Without it, APIs such as getGamepads() break.
     if (CordovaNavigator.bind) {
         for (var key in origNavigator) {
-            try {
-                if (typeof origNavigator[key] == 'function') {
-                    newNavigator[key] = origNavigator[key].bind(origNavigator);
-                }
-            } catch(e) {
-                // This try/catch was added for Firefox OS 1.0 and 1.1
-                // because it throws an security exception when trying
-                // to access a few properties of the navigator object.
-                // It has been fixed in 1.2.
+            if (typeof origNavigator[key] == 'function') {
+                newNavigator[key] = origNavigator[key].bind(origNavigator);
+            } else {
+                (function(k) {
+                        Object.defineProperty(newNavigator, k, {
+                            get: function() {
+                                return origNavigator[k];
+                            },
+                            configurable: true,
+                            enumerable: true
+                        });
+                    })(key);
             }
         }
     }
@@ -970,9 +964,13 @@ modulemapper.clobbers('cordova/exec', 'Cordova.exec');
 // Call the platform-specific initialization.
 platform.bootstrap && platform.bootstrap();
 
-pluginloader.load(function() {
-    channel.onPluginsReady.fire();
-});
+// Wrap in a setTimeout to support the use-case of having plugin JS appended to cordova.js.
+// The delay allows the attached modules to be defined before the plugin loader looks for them.
+setTimeout(function() {
+    pluginloader.load(function() {
+        channel.onPluginsReady.fire();
+    });
+}, 0);
 
 /**
  * Create all cordova objects once native side is ready.
@@ -1037,6 +1035,16 @@ function replaceNavigator(origNavigator) {
         for (var key in origNavigator) {
             if (typeof origNavigator[key] == 'function') {
                 newNavigator[key] = origNavigator[key].bind(origNavigator);
+            } else {
+                (function(k) {
+                        Object.defineProperty(newNavigator, k, {
+                            get: function() {
+                                return origNavigator[k];
+                            },
+                            configurable: true,
+                            enumerable: true
+                        });
+                    })(key);
             }
         }
     }
@@ -1208,11 +1216,29 @@ define("cordova/platform", function(require, exports, module) {
 
 module.exports = {
     id: 'browser',
-    cordovaVersion: '3.0.0',
+    cordovaVersion: '3.4.0',
 
     bootstrap: function() {
-        require('cordova/modulemapper').clobbers('cordova/exec/proxy', 'cordova.commandProxy');
-        require('cordova/channel').onNativeReady.fire();
+
+        var modulemapper = require('cordova/modulemapper');
+        var channel = require('cordova/channel');
+
+        modulemapper.clobbers('cordova/exec/proxy', 'cordova.commandProxy');
+
+        channel.onNativeReady.fire();
+
+        // FIXME is this the right place to clobber pause/resume? I am guessing not
+        // FIXME pause/resume should be deprecated IN CORDOVA for pagevisiblity api
+        document.addEventListener('webkitvisibilitychange', function() {
+            if (document.webkitHidden) {
+                channel.onPause.fire();
+            }
+            else {
+                channel.onResume.fire();
+            }
+        }, false);
+
+    // End of bootstrap
     }
 };
 
@@ -1301,11 +1327,11 @@ function handlePluginsObject(path, moduleList, finishPluginLoading) {
 function findCordovaPath() {
     var path = null;
     var scripts = document.getElementsByTagName('script');
-    var term = 'cordova.js';
+    var term = '/cordova.js';
     for (var n = scripts.length-1; n>-1; n--) {
         var src = scripts[n].src.replace(/\?.*$/, ''); // Strip any query param (CB-6007).
         if (src.indexOf(term) == (src.length - term.length)) {
-            path = src.substring(0, src.length - term.length);
+            path = src.substring(0, src.length - term.length) + '/';
             break;
         }
     }
@@ -1522,4 +1548,4 @@ window.cordova = require('cordova');
 
 require('cordova/init');
 
-})();
+})();
\ No newline at end of file


[2/2] git commit: Set VERSION to 3.6.0 (via coho)

Posted by st...@apache.org.
Set VERSION to 3.6.0 (via coho)


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

Branch: refs/heads/3.6.x
Commit: 201698a20b27259b06b48c651d8b5a4885549928
Parents: 61e884e
Author: Steven Gill <st...@gmail.com>
Authored: Mon Sep 29 17:39:33 2014 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Mon Sep 29 17:39:33 2014 -0700

----------------------------------------------------------------------
 VERSION      |  2 +-
 package.json | 62 ++++++++++++++++++++++++++++++-------------------------
 2 files changed, 35 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-browser/blob/201698a2/VERSION
----------------------------------------------------------------------
diff --git a/VERSION b/VERSION
index 87ce492..40c341b 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.5.2
+3.6.0

http://git-wip-us.apache.org/repos/asf/cordova-browser/blob/201698a2/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index f947c2c..b433ea6 100644
--- a/package.json
+++ b/package.json
@@ -1,29 +1,35 @@
 {
-  "name": "cordova-browser",
-  "version": "3.5.2",
-  "description": "cordova-browser release",
-  "main": "bin/create",
-  "repository": {
-    "type": "git",
-    "url": "https://git-wip-us.apache.org/repos/asf/cordova-browser.git"
-  },
-  "keywords": [
-    "cordova",
-    "browser",
-    "apache"
-  ],
-  "dependencies": {
-    "shelljs": "^0.1.4",
-    "adm-zip": "0.4.4"
-  },
-  "bundledDependencies": [
-    "shelljs",
-    "adm-zip"
-  ],
-  "author": "Apache Software Foundation",
-  "contributors": [
-      {"name": "Steve Gill", "email": "steveng@adobe.com"},
-      {"name": "Suraj Pindoria", "email": "spindori@adobe.com"}
-  ],
-  "license": "Apache Version 2.0"
-}
+    "name": "cordova-browser",
+    "version": "3.6.0",
+    "description": "cordova-browser release",
+    "main": "bin/create",
+    "repository": {
+        "type": "git",
+        "url": "https://git-wip-us.apache.org/repos/asf/cordova-browser.git"
+    },
+    "keywords": [
+        "cordova",
+        "browser",
+        "apache"
+    ],
+    "dependencies": {
+        "shelljs": "^0.1.4",
+        "adm-zip": "0.4.4"
+    },
+    "bundledDependencies": [
+        "shelljs",
+        "adm-zip"
+    ],
+    "author": "Apache Software Foundation",
+    "contributors": [
+        {
+            "name": "Steve Gill",
+            "email": "steveng@adobe.com"
+        },
+        {
+            "name": "Suraj Pindoria",
+            "email": "spindori@adobe.com"
+        }
+    ],
+    "license": "Apache Version 2.0"
+}
\ No newline at end of file