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 2015/07/15 00:55:50 UTC

[1/4] js commit: Added common 'activated' channel

Repository: cordova-js
Updated Branches:
  refs/heads/master 8588542f4 -> 1ab1e94ab


Added common 'activated' channel


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

Branch: refs/heads/master
Commit: a8a3218c41ea05382818cd01b9bd4964af313ad3
Parents: a83e94b
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue Jul 14 13:35:15 2015 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue Jul 14 13:35:15 2015 -0700

----------------------------------------------------------------------
 src/common/init.js   | 1 +
 src/common/init_b.js | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/a8a3218c/src/common/init.js
----------------------------------------------------------------------
diff --git a/src/common/init.js b/src/common/init.js
index 4ae0dfd..8d86288 100644
--- a/src/common/init.js
+++ b/src/common/init.js
@@ -87,6 +87,7 @@ if (!window.console.warn) {
 // Register pause, resume and deviceready channels as events on document.
 channel.onPause = cordova.addDocumentEventHandler('pause');
 channel.onResume = cordova.addDocumentEventHandler('resume');
+channel.onActivated = cordova.addDocumentEventHandler('activated');
 channel.onDeviceReady = cordova.addStickyDocumentEventHandler('deviceready');
 
 // Listen for DOMContentLoaded and notify our channel subscribers.

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/a8a3218c/src/common/init_b.js
----------------------------------------------------------------------
diff --git a/src/common/init_b.js b/src/common/init_b.js
index bce769b..e796695 100644
--- a/src/common/init_b.js
+++ b/src/common/init_b.js
@@ -87,6 +87,7 @@ if (!window.console.warn) {
 // Register pause, resume and deviceready channels as events on document.
 channel.onPause = cordova.addDocumentEventHandler('pause');
 channel.onResume = cordova.addDocumentEventHandler('resume');
+channel.onActivated = cordova.addDocumentEventHandler('activated');
 channel.onDeviceReady = cordova.addStickyDocumentEventHandler('deviceready');
 
 // Listen for DOMContentLoaded and notify our channel subscribers.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/4] js commit: fix tests for appveyor too, maybe?

Posted by pu...@apache.org.
fix tests for appveyor too, maybe?


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

Branch: refs/heads/master
Commit: 0c5a24ba2c2e824ae2a275884017879f127a4eec
Parents: a8a3218
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue Jul 14 14:39:57 2015 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue Jul 14 14:39:57 2015 -0700

----------------------------------------------------------------------
 appveyor.yml | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/0c5a24ba/appveyor.yml
----------------------------------------------------------------------
diff --git a/appveyor.yml b/appveyor.yml
index c9b8cf9..5147ffb 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -2,7 +2,19 @@
 # http://www.appveyor.com/docs/appveyor-yml
 
 install:
-  - npm install
+  - cd ..
+  - git clone https://github.com/apache/cordova-android --depth 10
+  - git clone https://github.com/apache/cordova-ios --depth 10
+  - git clone https://github.com/apache/cordova-blackberry --depth 10
+  - git clone https://github.com/apache/cordova-windows --depth 10
+  - git clone https://github.com/apache/cordova-wp8 --depth 10
+  - git clone https://github.com/apache/cordova-firefoxos --depth 10
+  - git clone https://github.com/apache/cordova-ubuntu --depth 10
+  - git clone https://github.com/apache/cordova-browser --depth 10
+  - git clone https://github.com/apache/cordova-amazon-fireos --depth 10
+  - git clone https://github.com/apache/cordova-webos --depth 10
+  - cd cordova-js
+  - npm install  
 
 build: off
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[4/4] js commit: Merge branch 'CB-8972' of https://github.com/purplecabbage/cordova-js

Posted by pu...@apache.org.
Merge branch 'CB-8972' of https://github.com/purplecabbage/cordova-js


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

Branch: refs/heads/master
Commit: 1ab1e94ab646b6a705eaa44ad592e69111610da5
Parents: 8588542 7b8f3b8
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue Jul 14 15:55:30 2015 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue Jul 14 15:55:30 2015 -0700

----------------------------------------------------------------------
 appveyor.yml         | 13 ++++++++++++-
 src/common/init.js   |  1 +
 src/common/init_b.js |  1 +
 3 files changed, 14 insertions(+), 1 deletion(-)
----------------------------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[3/4] js commit: remove firefox, failing on windows

Posted by pu...@apache.org.
remove firefox, failing on windows


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

Branch: refs/heads/master
Commit: 7b8f3b8669c50d35f01a235b26a3b02b2b198c46
Parents: 0c5a24b
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue Jul 14 14:41:56 2015 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue Jul 14 14:41:56 2015 -0700

----------------------------------------------------------------------
 appveyor.yml | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/7b8f3b86/appveyor.yml
----------------------------------------------------------------------
diff --git a/appveyor.yml b/appveyor.yml
index 5147ffb..dddec7f 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -8,7 +8,6 @@ install:
   - git clone https://github.com/apache/cordova-blackberry --depth 10
   - git clone https://github.com/apache/cordova-windows --depth 10
   - git clone https://github.com/apache/cordova-wp8 --depth 10
-  - git clone https://github.com/apache/cordova-firefoxos --depth 10
   - git clone https://github.com/apache/cordova-ubuntu --depth 10
   - git clone https://github.com/apache/cordova-browser --depth 10
   - git clone https://github.com/apache/cordova-amazon-fireos --depth 10


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org