[jira] [Closed] (CB-7059) Overscrolling in webview

2015-03-23 Thread Sergey (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7059?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sergey closed CB-7059.
--

Unaffected for current version 4.3

 Overscrolling in webview
 

 Key: CB-7059
 URL: https://issues.apache.org/jira/browse/CB-7059
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP8
Affects Versions: 3.5.0
Reporter: Sergey
Assignee: Sergey Grebnov
Priority: Critical

 Overscrolling
 tried css
 body {
   -ms-touch-action: none;
   touch-action: none;
   -ms-overflow-style: none;
 }
 in IE on Windows Phone 8 works as expected
 but when i make swipe in Cordova application in scroll in far blank area
 Video the same page (background is setted by css, and only background):
 IE:[http://youtu.be/VaT1CqBYVXI]
 Cordova: [http://youtu.be/3bm4XNZEbRs]
 DisableBouncyScrolling in CordovaView set to true
 Sometimes loading of Google Maps in cordova application resolve this issue 
 and window cannot overscroll



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8726) BlackBerry builders in Medic fail to run build

2015-03-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375727#comment-14375727
 ] 

ASF subversion and git services commented on CB-8726:
-

Commit a4f6dc34b5a09eafb936bd6e23b1d5c148f48ec3 in cordova-medic's branch 
refs/heads/master from [~dblotsky]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-medic.git;h=a4f6dc3 ]

[CB-8726] Fixed naming issue for BlackBerry. Crudely made Blackberry when no 
devices are specified.

github close #38


 BlackBerry builders in Medic fail to run build
 --

 Key: CB-8726
 URL: https://issues.apache.org/jira/browse/CB-8726
 Project: Apache Cordova
  Issue Type: Bug
  Components: Medic
Affects Versions: Master
Reporter: Dmitry Blotsky
Priority: Minor
  Labels: cordova-medic, easyfix
   Original Estimate: 3h
  Remaining Estimate: 3h

 BlackBerry builds fail with {{Error: Cannot find module 
 'C:\Users\buildbot\slaves\apache\cordova-blackberry-win\cordova-medic\build_blackberry.js'}}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8726) BlackBerry builders in Medic fail to run build

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375728#comment-14375728
 ] 

ASF GitHub Bot commented on CB-8726:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-medic/pull/38


 BlackBerry builders in Medic fail to run build
 --

 Key: CB-8726
 URL: https://issues.apache.org/jira/browse/CB-8726
 Project: Apache Cordova
  Issue Type: Bug
  Components: Medic
Affects Versions: Master
Reporter: Dmitry Blotsky
Priority: Minor
  Labels: cordova-medic, easyfix
   Original Estimate: 3h
  Remaining Estimate: 3h

 BlackBerry builds fail with {{Error: Cannot find module 
 'C:\Users\buildbot\slaves\apache\cordova-blackberry-win\cordova-medic\build_blackberry.js'}}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Issue Comment Deleted] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Peer Weidner updated CB-7660:
-
Comment: was deleted

(was: Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. )

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Issue Comment Deleted] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Peer Weidner updated CB-7660:
-
Comment: was deleted

(was: Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. )

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375981#comment-14375981
 ] 

Peer Weidner commented on CB-7660:
--

Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. 

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375978#comment-14375978
 ] 

Peer Weidner commented on CB-7660:
--

Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. 

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375977#comment-14375977
 ] 

Peer Weidner commented on CB-7660:
--

Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. 

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375980#comment-14375980
 ] 

Peer Weidner commented on CB-7660:
--

Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. 

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375982#comment-14375982
 ] 

Peer Weidner commented on CB-7660:
--

Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. 

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Issue Comment Deleted] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Peer Weidner updated CB-7660:
-
Comment: was deleted

(was: Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. )

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Issue Comment Deleted] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Peer Weidner updated CB-7660:
-
Comment: was deleted

(was: Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. )

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Issue Comment Deleted] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Peer Weidner updated CB-7660:
-
Comment: was deleted

(was: Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. )

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Peer Weidner (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375979#comment-14375979
 ] 

Peer Weidner commented on CB-7660:
--

Nice work. I'll check if this solves my problem as well. Thanks for 
contributing. 

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Comment Edited] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Igor Gorbenko (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375940#comment-14375940
 ] 

Igor Gorbenko edited comment on CB-7660 at 3/23/15 2:19 PM:


Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There was not deleted an iframe, which was 
created for calling a command on ObjectiveC part. That is why after calling a 
command for 1000+ times there appeared 1000+ iframes and there was no memory to 
create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
document.body.removeChild(execIframe);/*line #1*/
delete execIframe;/*line #2*/

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}


was (Author: bljaha):
Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There was not deleted an iframe, which was 
created for calling a command on ObjectiveC part. That is why after calling a 
command for 1000+ times there appeared 1000+ iframes and there was no memory to 
create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
//this 2 lines
document.body.removeChild(execIframe);// #1
delete execIframe;// #2

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Comment Edited] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Igor Gorbenko (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375940#comment-14375940
 ] 

Igor Gorbenko edited comment on CB-7660 at 3/23/15 2:16 PM:


Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There was not deleted an iframe, which was 
created for calling a command on ObjectiveC part. That is why after calling a 
command for 1000+ times there appeared 1000+ iframes and there was no memory to 
create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
//this 2 lines
document.body.removeChild(execIframe);// #1
delete execIframe;// #2

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}


was (Author: bljaha):
Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There was not deleted an iframe, which was 
created for calling a command on ObjectiveC part. That is why after calling a 
command for 1000+ times there appeared 1000+ iframes and there was no memory to 
create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
//this 2 lines
document.body.removeChild(execIframe);// #1
delete execIframe;// #2

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Comment Edited] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Igor Gorbenko (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375940#comment-14375940
 ] 

Igor Gorbenko edited comment on CB-7660 at 3/23/15 2:20 PM:


Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There wasn't deleted an iframe, which was 
created for calling a command on ObjectiveC part. That is why after calling a 
command for 1000+ times there appeared 1000+ iframes and there was no memory to 
create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
document.body.removeChild(execIframe);/*line #1*/
delete execIframe;/*line #2*/

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}


was (Author: bljaha):
Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There was not deleted an iframe, which was 
created for calling a command on ObjectiveC part. That is why after calling a 
command for 1000+ times there appeared 1000+ iframes and there was no memory to 
create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
document.body.removeChild(execIframe);/*line #1*/
delete execIframe;/*line #2*/

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Igor Gorbenko (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375940#comment-14375940
 ] 

Igor Gorbenko commented on CB-7660:
---

Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There was not deleted an iframe, which was 
created for calling a command on ObjectiveC part. That is why after calling a 
command for 1000+ times there appeared 1000+ iframes and there was no memory to 
create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
//this 2 lines
document.body.removeChild(execIframe);// #1
delete execIframe;// #2

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Comment Edited] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Igor Gorbenko (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375940#comment-14375940
 ] 

Igor Gorbenko edited comment on CB-7660 at 3/23/15 2:21 PM:


Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There wasn't deleted an iframe, which had 
been created for calling a command on ObjectiveC part. That is why after 
calling a command for 1000+ times there appeared 1000+ iframes and there was no 
memory to create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
document.body.removeChild(execIframe);/*line #1*/
delete execIframe;/*line #2*/

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}


was (Author: bljaha):
Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There wasn't deleted an iframe, which was 
created for calling a command on ObjectiveC part. That is why after calling a 
command for 1000+ times there appeared 1000+ iframes and there was no memory to 
create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
document.body.removeChild(execIframe);/*line #1*/
delete execIframe;/*line #2*/

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-6667) window.requestFileSystem - callbacks are not fired in a particular circumstance

2015-03-23 Thread Kenneth Li (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6667?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375438#comment-14375438
 ] 

Kenneth Li commented on CB-6667:


Hi Kelvin,

This is exactly my problem.  I'm developing an apps that I hope, can be run on 
any mobile platforms plus any browser, to simulate the cookies in browser, now 
I try to use local storage to store cookies in mobile phone.  For larger 
files in mobile platforms, I try to use client side SQLite database instead of 
the requestfilesystem.  For larger files in PC platforms or browsers inside 
mobile platforms, I try to use ajax CORS to call web services and store files 
in my server.

I cannot rely on this requestfilesystem since I'm afraid that this problem 
might also happen in some other mobile phones.

In my previous suggestion, if I wait 5 seconds and use the requestfilesystem 
again, the program logic becomes complex!

 window.requestFileSystem - callbacks are not fired in a particular 
 circumstance
 ---

 Key: CB-6667
 URL: https://issues.apache.org/jira/browse/CB-6667
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: 3.4.0
 Environment: Mac OS X 10.9.2
 Android SDK (latest) - API v19
 Eclipse 4.2.2
Reporter: Kelvin Dart
Priority: Critical
  Labels: Android4.4.x, Cordova, androidmanifest.xml, window

 Excuse the essay, but I have a very odd issue that I have singled down to 
 Cordova which happens in a very specific circumstance on Android.
 I have provided a project of the stock Cordova Android project which can be 
 found here: http://www.filedropper.com/windowfstest - with a minor 
 modification for the issue I am having.
 I have uploaded a compiled APK to install to your device here: 
 http://www.filedropper.com/windowfstest140509-1404
 Steps to replicate are:
 1) Download and install that APK onto your device (I was using the Samsung 
 Galaxy S4 with Android 4.4.2 running, no root, and stock TouchWiz ROM, I 
 *hope* this occurs on other Android devices but have not had an opportunity 
 to verify).
 2) Start the application and observe an alert appears stating 'dr', then 
 afterwards another alert appears, 'got FS' - if you check the code, you'll 
 see this is normal from my app.initialize().
 3) Once those two alerts have appeared, press the Android 'home' button, to 
 quit to the main Android home screen.
 4) Go into another app or two and just use your phone normally. What we are 
 trying to achieve here is for the Android memory management system to 
 'end'/kill the WindowFSTest app in the backend.
 5) Go into Apps  WindowFSTest (i.e. the app in question) and hopefully it 
 will have restarted - the app has to have restarted for the bug to occur, and 
 observe a few things here:
 a) Verify the app has restarted, this can be verified by the 'dr' popup 
 occuring when Cordova loads.
 b) Once you are confident the app has been restarted, observe the initial 
 'dr' popup, but *not* the 'got FS' popup - this is the bug, the 
 window.requestFileSystem does not fire the callbacks for some reason - and I 
 do not know why.
 N.b. there are a few things to note here which is why the bug is tricky to 
 replicate AND I imagine will be even more difficult to debug at a lower level 
 ;-)
 1) The Android system has to kill the app in the backend once you've pressed 
 the 'home' button - there's no way of determining when this has happened, 
 just use the phone like ordinary for half a minute or so - normally it kills 
 it after a short period.
 2) The way to restart the app is via Apps  WindowFSTest (not via the task 
 manager).
 3) ***IMPORTANT*** the above two steps seem to occur only when you run it 
 from a compiled APK, not directly from source/debug APK - so it's not as easy 
 to debug since you cannot put line breaks in the Java file(s).
 Although not perfect, one way to fix this is to use:
 android:launchMode=singleTop
 In AndroidManifest.xml - since it ensures the app is 'resumed' instead of 
 restarted.
 I can provide a video upon request illustrating the issue.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8734) add FirefoxOS to Cordova-Medic

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377315#comment-14377315
 ] 

ASF GitHub Bot commented on CB-8734:


Github user dblotsky commented on the pull request:

https://github.com/apache/cordova-medic/pull/39#issuecomment-85345795
  
Nope. Sorry, I didn't clarify. It's great that you have a medic 
installation running locally! However what I mean is this: you can run all the 
scripts in medic on your own from the command line like so:

$ node cordova-medic/build_firefoxos.js

Running this script manually will help weed out any bugs in the code 
without needing to run a full setup of medic. Since medic just runs this script 
the same way, you can be confident that if running it manually is good, then it 
will also be good in medic.


 add FirefoxOS to Cordova-Medic
 --

 Key: CB-8734
 URL: https://issues.apache.org/jira/browse/CB-8734
 Project: Apache Cordova
  Issue Type: New Feature
  Components: FirefoxOS
 Environment: add FirefoxOS to Cordova-Medic
Reporter: Willy Aguirre

 I am working in add FirefoxOS to Cordova-Medic



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8668) cordova plugin add/rm does not work on Windows if project contains ios platform

2015-03-23 Thread Tim Barham (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8668?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377345#comment-14377345
 ] 

Tim Barham commented on CB-8668:


Hi - have you tried to repro this with the latest release of Cordova? I can 
repro with 4.2.0, but not 4.3.0.

 cordova plugin add/rm does not work on Windows if project contains ios 
 platform
 ---

 Key: CB-8668
 URL: https://issues.apache.org/jira/browse/CB-8668
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 4.0.0
 Environment: Windows7/8, MacOSX
Reporter: Shingo Toda

 I have a project which contains Android, iOS and Windows platform. If I try 
 to add or remove a plugin on Windows, I get error like below.
 {code}
 C:\Users\FAST\Desktop\bbbcordova plugin rm org.apache.cordova.test.echo
 Uninstalling org.apache.cordova.test.echo from android
 Uninstalling org.apache.cordova.test.echo from ios
 Error: C:\Users\FAST\Desktop\bbb\platforms\ios\cordova\version: Command 
 failed with exit code ENOENT
 at ChildProcess.whenDone 
 (C:\Users\FAST\workspace\cordova\4.2.0-cli\cordova-cli\node_modules\cordova-lib\src\cordova\superspawn.js:135:23)
 at ChildProcess.emit (events.js:107:17)
 at Process.ChildProcess._handle.onexit (child_process.js:1065:12)
 at child_process.js:1137:20
 at process._tickCallback (node.js:355:11)
 {code}
 This seems to result in partial uninstallation. 
 {{platforms\ios\cordova\version}} is shell script so I think CLI attempt to 
 load this file by bash then this error happens on Windows.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-8737) Available platforms list includes 'getPlatformProject' and 'PlatformProjectAdapter'

2015-03-23 Thread Tim Barham (JIRA)
Tim Barham created CB-8737:
--

 Summary: Available platforms list includes 'getPlatformProject' 
and 'PlatformProjectAdapter'
 Key: CB-8737
 URL: https://issues.apache.org/jira/browse/CB-8737
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaLib
Affects Versions: Master
Reporter: Tim Barham
Assignee: Tim Barham


Using the latest sources, if you list available platforms the output includes 
two extraneous values ({{getPlatformProject}} and {{PlatformProjectAdapter}}):

{noformat}
$ cordova platform
Installed platforms: windows
Available platforms: PlatformProjectAdapter, amazon-fireos, android, 
blackberry10, browser, firefoxos, getPlatformProject, windows8, wp8
{noformat}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8734) add FirefoxOS to Cordova-Medic

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377307#comment-14377307
 ] 

ASF GitHub Bot commented on CB-8734:


Github user dblotsky commented on a diff in the pull request:

https://github.com/apache/cordova-medic/pull/39#discussion_r27003714
  
--- Diff: buildbot-conf/cordova.conf ---
@@ -327,6 +330,7 @@ c['schedulers'].extend([
 'cordova-wp8',
 'cordova-android-win',
 'cordova-blackberry-win',
+'cordova-firefoxos',
--- End diff --

This is a list of builders that you define above, so you will want 
`cordova-firefoxos-win` and `cordova-firefoxos-osx` here.


 add FirefoxOS to Cordova-Medic
 --

 Key: CB-8734
 URL: https://issues.apache.org/jira/browse/CB-8734
 Project: Apache Cordova
  Issue Type: New Feature
  Components: FirefoxOS
 Environment: add FirefoxOS to Cordova-Medic
Reporter: Willy Aguirre

 I am working in add FirefoxOS to Cordova-Medic



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-8269) Cordova application crashes on android 2.3.4

2015-03-23 Thread Joe Bowser (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8269?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joe Bowser resolved CB-8269.

Resolution: Won't Fix

Unfortunately we don't have a fix for browser crashes on Android 2.3.x, so I'm 
going to mark this as Won't Fix, since there's no fix for this on our end.

 Cordova application crashes on android 2.3.4
 

 Key: CB-8269
 URL: https://issues.apache.org/jira/browse/CB-8269
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
 Environment: Cordova 3.5.1  HTC(android 2.3.4)  Build with Android 
 4.3
Reporter: dukai
Assignee: Joe Bowser
  Labels: Android

 When we run the app with cordova 3.5.1 and a old Android device(2.3.6  
 2.3.4), sometime the app crashes, but we are fine with cordova 3.1 before. We 
 find the below log:
 01-06 20:28:29.354 I/DEBUG   (  128): signal 11 (SIGSEGV), code 1 
 (SEGV_MAPERR), fault addr b0603554
 01-06 20:28:29.354 I/DEBUG   (  128):  r0 48649c71  r1 48649c71  r2 b0603549  
 r3 4afaef70
 01-06 20:28:29.354 I/DEBUG   (  128):  r4 48b06035  r5 a86b6c7d  r6 457f1604  
 r7 0060
 01-06 20:28:29.354 I/DEBUG   (  128):  r8 48b00021  r9 48b06021  10 a8800e90  
 fp 457f1644
 01-06 20:28:29.354 I/DEBUG   (  128):  ip 48b0602d  sp 457f1618  lr 4ae074dc  
 pc 4ae07508  cpsr 3010
 01-06 20:28:29.354 I/DEBUG   (  128):  d0  0042e5d80042e5d4  d1  
 0302e12fff1c
 01-06 20:28:29.354 I/DEBUG   (  128):  d2  1a02e151000c  d3  
 e590001fe593
 01-06 20:28:29.354 I/DEBUG   (  128):  d4  e59fc014e5918017  d5  
 e59fc010e12fff1c
 01-06 20:28:29.354 I/DEBUG   (  128):  d6  0304e12fff1c  d7  
 0289
 01-06 20:28:29.354 I/DEBUG   (  128):  d8  41d52af53b4eebc8  d9  
 41d52af53b521efb
 01-06 20:28:29.354 I/DEBUG   (  128):  d10 408f4000  d11 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  d12   d13 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  d14   d15 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  d16 48b0604d48b0604d  d17 
 41f0
 01-06 20:28:29.354 I/DEBUG   (  128):  d18 41d52af53b40  d19 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  d20   d21 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  d22 3ff0  d23 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  d24   d25 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  d26   d27 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  d28   d29 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  d30 3ff0  d31 
 
 01-06 20:28:29.354 I/DEBUG   (  128):  scr 2013
 01-06 20:28:29.354 I/DEBUG   (  128): 
 01-06 20:28:29.424 I/DEBUG   (  128):  #00  pc 4ae07508  
 01-06 20:28:29.424 I/DEBUG   (  128):  #01  lr 4ae074dc  unknown
 01-06 20:28:29.424 I/DEBUG   (  128): 
 01-06 20:28:29.424 I/DEBUG   (  128): code around pc:
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae074e8 e59a4044 e1520004 1a3f 
 e5113001 
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae074f8 e5932013 e59ac0dc e152000c 
 0a3a 
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae07508 e592200b e3120001 0a37 
 e151 
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae07518 0a02 e592200b e1520004 
 1a32 
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae07528 e593100b e59ac018 e151000c 
 1aea 
 01-06 20:28:29.424 I/DEBUG   (  128): 
 01-06 20:28:29.424 I/DEBUG   (  128): code around lr:
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae074bc e351009e 2a05 e52d0004 
 e5981017 
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae074cc e591100b e5911073 e591200b 
 e12fff32 
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae074dc e52d0004 e1a01000 e5912007 
 e59a4044 
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae074ec e1520004 1a3f e5113001 
 e5932013 
 01-06 20:28:29.424 I/DEBUG   (  128): 4ae074fc e59ac0dc e152000c 0a3a 
 e592200b 
 01-06 20:28:29.424 I/DEBUG   (  128): 
 01-06 20:28:29.424 I/DEBUG   (  128): stack:
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15d8  a86b6c7d  
 /system/lib/libwebcore.so
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15dc  457f1604  
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15e0    
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15e4  48b26254  
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15e8  48b26254  
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15ec  48b261e1  
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15f0  48b05bc1  
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15f4  48b0029d  
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15f8  457f1610  
 01-06 20:28:29.424 I/DEBUG   (  128): 457f15fc  48b37318  
 01-06 20:28:29.424 I/DEBUG   (  128): 457f1600  48649c71  
 01-06 20:28:29.424 I/DEBUG   (  128): 

[jira] [Commented] (CB-8735) bin/create regex is too strict and has issues with numbers

2015-03-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8735?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376771#comment-14376771
 ] 

ASF subversion and git services commented on CB-8735:
-

Commit e4c9bebe34005a9246c8688c63d4079485c4115e in cordova-android's branch 
refs/heads/master from [~bowserj]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=e4c9beb ]

CB-8735: Fixing the regex so that it's more compliant with Java package rules


 bin/create regex is too strict and has issues with numbers
 --

 Key: CB-8735
 URL: https://issues.apache.org/jira/browse/CB-8735
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CLI
Affects Versions: 4.0.0
Reporter: Joe Bowser
Assignee: Joe Bowser
 Fix For: 4.0.0


 Found that the regex was not handling numbers and was allowing for invalid 
 packages to be created where all portions after the first one were allowing 
 leading zeros.  Going to change the regex to not allow leading zeros, and 
 added a use case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8724) Windows Phone 8 Platform Guide missing information about needed Visual Studio Update

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8724?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376448#comment-14376448
 ] 

ASF GitHub Bot commented on CB-8724:


GitHub user dubeejw opened a pull request:

https://github.com/apache/cordova-docs/pull/271

CB-8724 Added info about getting Cordova command-line to work

- Added information about having to install the newest Visual
  Studio 2012 Update. Otherwise, Cordova command-line functionality will
  not work with Windows Phone 8 SDK.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/dubeejw/cordova-docs CB-8724

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-docs/pull/271.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #271


commit 5584aaec0787037582a0d7e363f8bdafcac2e4c9
Author: unknown jwdu...@us.ibm.com
Date:   2015-03-23T19:19:19Z

CB-8724 Added info about getting Cordova command-line to work

- Added information about having to install the newest Visual
  Studio 2012 Update. Otherwise, Cordova command-line functionality will
  not work with Windows Phone 8 SDK.




 Windows Phone 8 Platform Guide missing information about needed Visual Studio 
 Update
 

 Key: CB-8724
 URL: https://issues.apache.org/jira/browse/CB-8724
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs, Windows 8, WP8
Affects Versions: 4.0.0
 Environment: Windows 8.0
Reporter: James Dubee
Assignee: James Dubee
Priority: Minor
  Labels: documentation
   Original Estimate: 1h
  Remaining Estimate: 1h

 The Windows 8 Platform Guide does not state that at least the Visual Studio 
 2012 Update 2 must be installed on a user's computer in order to deploy via 
 the command-line using the Windows Phone 8.0 SDK. Otherwise, XapDeployCmd.exe 
 will not be present on the user's machine, and Cordova will not be able to 
 deploy applications via command-line for Windows Phone 8.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-8734) add FirefoxOS to Cordova-Medic

2015-03-23 Thread Willy Aguirre (JIRA)
Willy Aguirre created CB-8734:
-

 Summary: add FirefoxOS to Cordova-Medic
 Key: CB-8734
 URL: https://issues.apache.org/jira/browse/CB-8734
 Project: Apache Cordova
  Issue Type: New Feature
  Components: FirefoxOS
 Environment: add FirefoxOS to Cordova-Medic
Reporter: Willy Aguirre


I am working in add FirefoxOS to Cordova-Medic



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-8681) (Windows Phone 8.1) Some geolocation plugin tests occasionally fail in mobilespec

2015-03-23 Thread Alexander Sorokin (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8681?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alexander Sorokin resolved CB-8681.
---
Resolution: Fixed

 (Windows Phone 8.1) Some geolocation plugin tests occasionally fail in 
 mobilespec
 -

 Key: CB-8681
 URL: https://issues.apache.org/jira/browse/CB-8681
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Geolocation
Reporter: Alexander Sorokin
Priority: Minor

 Some geolocation plugin tests (spec.7 and spec.8) occasionally fail in mobile 
 spec,
 The cause of the issue seems to be that the tests are running too quickly 
 after each other.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8714) source value 1.5 is obsolete and will be removed in a future release

2015-03-23 Thread Sean Usick (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8714?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376692#comment-14376692
 ] 

Sean Usick commented on CB-8714:


Just a basic

$ cordova build


shows the warning.

 source value 1.5 is obsolete and will be removed in a future release
 

 Key: CB-8714
 URL: https://issues.apache.org/jira/browse/CB-8714
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
Reporter: Sean Usick

 warning message



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-8704) Description Resource Path Location Type The container 'Android Dependencies' references non existing library '/Users/.../cordova-project/platforms/android/CordovaLib/bin/ma

2015-03-23 Thread Joe Bowser (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8704?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joe Bowser resolved CB-8704.

Resolution: Won't Fix

This is an eclipse error caused by auto-build being too ambitious.  You need to 
make sure everything is cleaned and that your Eclipse project is properly 
sync'd to what is happening on your file system.  This often happens when 
importing Android projects into Eclipse.

 Description   ResourcePathLocationType The container 
 'Android Dependencies' references non existing library 
 '/Users/.../cordova-project/platforms/android/CordovaLib/bin/mainactivity-cordovalib.jar'
 --

 Key: CB-8704
 URL: https://issues.apache.org/jira/browse/CB-8704
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.7.1
 Environment: Mac OS X 10.10.2 Yosemite; Eclipse Luna; Cordova-CLI 
 4.3.0, Android@3.7.1. Various APIs installed (lvl. 19, 21, 22).
Reporter: Kelvin Dart
  Labels: Android, Cordova, Eclipse

 After importing my platforms/android project into Eclipse, I receive the 
 error: Description   ResourcePathLocationType
 The container 'Android Dependencies' references non existing library 
 '/Users/.../cordova-project/platforms/android/CordovaLib/bin/mainactivity-cordovalib.jar'
 I attempt to build the MainActivity-CordovaLib project to generate a JAR and 
 nothing is created for my project to reference as a library.
 Any assistance will be greatly appreciated.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8714) source value 1.5 is obsolete and will be removed in a future release

2015-03-23 Thread Joe Bowser (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8714?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376688#comment-14376688
 ] 

Joe Bowser commented on CB-8714:


Can you provide a bit more context as what you're doing to get this error 
message?

 source value 1.5 is obsolete and will be removed in a future release
 

 Key: CB-8714
 URL: https://issues.apache.org/jira/browse/CB-8714
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
Reporter: Sean Usick

 warning message



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-7271) Issue with Socket.io and apk signing

2015-03-23 Thread Joe Bowser (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joe Bowser updated CB-7271:
---
Priority: Minor  (was: Major)

 Issue with Socket.io and apk signing
 

 Key: CB-7271
 URL: https://issues.apache.org/jira/browse/CB-7271
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.4.0
 Environment: Android OS
Reporter: August Infotech
Priority: Minor
  Labels: build, signature
 Fix For: 3.4.0

   Original Estimate: 72h
  Remaining Estimate: 72h

 We have created an app with socket.io and when we build and run the app 
 without signing (which is required to launch the app in play store), the app 
 worked well with the socket.io.
 But when we sign the app from the Eclipse using Android Tools, the app fails 
 to communicate with the socket and we are getting problems using socket code 
 there on.
 The difference between the two .apk files are of signing only.
 Moreover, we got builds (signed and unsigned) from the Adobe online build 
 generator and we faced the same issue.
 Any light on this issue would be highly appreciated.
 Thanks in advance!
 Regards! 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-8735) bin/create regex is too strict and has issues with numbers

2015-03-23 Thread Joe Bowser (JIRA)
Joe Bowser created CB-8735:
--

 Summary: bin/create regex is too strict and has issues with numbers
 Key: CB-8735
 URL: https://issues.apache.org/jira/browse/CB-8735
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CLI
Affects Versions: 4.0.0
Reporter: Joe Bowser
Assignee: Joe Bowser
 Fix For: 4.0.0


Found that the regex was not handling numbers and was allowing for invalid 
packages to be created where all portions after the first one were allowing 
leading zeros.  Going to change the regex to not allow leading zeros, and added 
a use case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-8704) Description Resource Path Location Type The container 'Android Dependencies' references non existing library '/Users/.../cordova-project/platforms/android/CordovaLib/bin/mai

2015-03-23 Thread Joe Bowser (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8704?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joe Bowser updated CB-8704:
---
Priority: Major  (was: Blocker)

 Description   ResourcePathLocationType The container 
 'Android Dependencies' references non existing library 
 '/Users/.../cordova-project/platforms/android/CordovaLib/bin/mainactivity-cordovalib.jar'
 --

 Key: CB-8704
 URL: https://issues.apache.org/jira/browse/CB-8704
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.7.1
 Environment: Mac OS X 10.10.2 Yosemite; Eclipse Luna; Cordova-CLI 
 4.3.0, Android@3.7.1. Various APIs installed (lvl. 19, 21, 22).
Reporter: Kelvin Dart
  Labels: Android, Cordova, Eclipse

 After importing my platforms/android project into Eclipse, I receive the 
 error: Description   ResourcePathLocationType
 The container 'Android Dependencies' references non existing library 
 '/Users/.../cordova-project/platforms/android/CordovaLib/bin/mainactivity-cordovalib.jar'
 I attempt to build the MainActivity-CordovaLib project to generate a JAR and 
 nothing is created for my project to reference as a library.
 Any assistance will be greatly appreciated.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8714) source value 1.5 is obsolete and will be removed in a future release

2015-03-23 Thread Joe Bowser (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8714?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376705#comment-14376705
 ] 

Joe Bowser commented on CB-8714:


Have you tried with the latest released version of Cordova?

 source value 1.5 is obsolete and will be removed in a future release
 

 Key: CB-8714
 URL: https://issues.apache.org/jira/browse/CB-8714
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
Reporter: Sean Usick

 warning message



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Comment Edited] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Igor Gorbenko (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375940#comment-14375940
 ] 

Igor Gorbenko edited comment on CB-7660 at 3/23/15 10:27 PM:
-

Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There wasn't deleted an iframe, which had 
been created for calling a command on ObjectiveC part. That is why after 
calling of a command for 1000+ times there appeared 1000+ iframes and there was 
no memory to create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
document.body.removeChild(execIframe);/*line #1*/
delete execIframe;/*line #2*/

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}


was (Author: bljaha):
Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There wasn't deleted an iframe, which had 
been created for calling a command on ObjectiveC part. That is why after 
calling a command for 1000+ times there appeared 1000+ iframes and there was no 
memory to create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
document.body.removeChild(execIframe);/*line #1*/
delete execIframe;/*line #2*/

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Comment Edited] (CB-7660) Cordova iOS File-Transfer download memory leaks

2015-03-23 Thread Igor Gorbenko (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14375940#comment-14375940
 ] 

Igor Gorbenko edited comment on CB-7660 at 3/23/15 10:28 PM:
-

Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There wasn't deleted an iframe, which had 
been created for calling of a command on ObjectiveC part. That is why after 
calling of a command for 1000+ times there appeared 1000+ iframes and there was 
no memory to create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
document.body.removeChild(execIframe);/*line #1*/
delete execIframe;/*line #2*/

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}


was (Author: bljaha):
Hi everyone!
I had a problem of downloading of more than 1000 files.
I've fixed it in cordova.js file. There wasn't deleted an iframe, which had 
been created for calling a command on ObjectiveC part. That is why after 
calling of a command for 1000+ times there appeared 1000+ iframes and there was 
no memory to create more.
So there is needed to add only 2 lines of code for fixing it:

function onIframeUnload() {
document.body.removeChild(execIframe);/*line #1*/
delete execIframe;/*line #2*/

execIframe = null;
setTimeout(pokeNativeViaIframe, 0);
}

 Cordova iOS File-Transfer download memory leaks
 ---

 Key: CB-7660
 URL: https://issues.apache.org/jira/browse/CB-7660
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.5.0
 Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
Reporter: Jordi Valls Carbonell
Assignee: Shazron Abdullah
 Attachments: LargeFiles.png, SmallFiles.png


 File-Transfer memory leaks downloading files, no memory is released for each 
 file downloaded, finally i got Memory Warning.
 To test add a button and call testDownload function every time console 
 confirmation message is displayed (DOWNLOADED OK)
 {code}
 function win(entry)
 {
 console.log(DOWNLOADED OK);
 }
 function fail(error)
 {
 console.log(ERROR!);
 console.log(error.code);
 }
 function testDownload
 {
 var url = 
 http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg;;
 var filename = filename.jpg;
 var uri = encodeURI(url);
 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile(filename, {create: true, exclusive: false}, 
 function(fileEntry) {
var localPath = fileEntry.toURL();
var ft = new FileTransfer();
ft.download(uri,localPath,win,fail,false);
},function(error){console.log(errore 1:  + error.code);});
 },function(error){console.log(errore 2:  + error.code);});
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8724) Windows Phone 8 Platform Guide missing information about needed Visual Studio Update

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8724?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376601#comment-14376601
 ] 

ASF GitHub Bot commented on CB-8724:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-docs/pull/271


 Windows Phone 8 Platform Guide missing information about needed Visual Studio 
 Update
 

 Key: CB-8724
 URL: https://issues.apache.org/jira/browse/CB-8724
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs, Windows 8, WP8
Affects Versions: 4.0.0
 Environment: Windows 8.0
Reporter: James Dubee
Assignee: James Dubee
Priority: Minor
  Labels: documentation
   Original Estimate: 1h
  Remaining Estimate: 1h

 The Windows 8 Platform Guide does not state that at least the Visual Studio 
 2012 Update 2 must be installed on a user's computer in order to deploy via 
 the command-line using the Windows Phone 8.0 SDK. Otherwise, XapDeployCmd.exe 
 will not be present on the user's machine, and Cordova will not be able to 
 deploy applications via command-line for Windows Phone 8.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8724) Windows Phone 8 Platform Guide missing information about needed Visual Studio Update

2015-03-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8724?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376600#comment-14376600
 ] 

ASF subversion and git services commented on CB-8724:
-

Commit 5584aaec0787037582a0d7e363f8bdafcac2e4c9 in cordova-docs's branch 
refs/heads/master from [~dubee]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=5584aae ]

CB-8724 Added info about getting Cordova command-line to work

- Added information about having to install the newest Visual
  Studio 2012 Update. Otherwise, Cordova command-line functionality will
  not work with Windows Phone 8 SDK.


 Windows Phone 8 Platform Guide missing information about needed Visual Studio 
 Update
 

 Key: CB-8724
 URL: https://issues.apache.org/jira/browse/CB-8724
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs, Windows 8, WP8
Affects Versions: 4.0.0
 Environment: Windows 8.0
Reporter: James Dubee
Assignee: James Dubee
Priority: Minor
  Labels: documentation
   Original Estimate: 1h
  Remaining Estimate: 1h

 The Windows 8 Platform Guide does not state that at least the Visual Studio 
 2012 Update 2 must be installed on a user's computer in order to deploy via 
 the command-line using the Windows Phone 8.0 SDK. Otherwise, XapDeployCmd.exe 
 will not be present on the user's machine, and Cordova will not be able to 
 deploy applications via command-line for Windows Phone 8.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-7604) [iOS 8] Update icon and splash screen support for iPhone 6 and 6 Plus

2015-03-23 Thread Raymond Camden (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-7604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376679#comment-14376679
 ] 

Raymond Camden commented on CB-7604:


With this marked as resolved, does this mean it should work in the released 
version of Cordova right now? I'm not seeing it working. 

 [iOS 8] Update icon and splash screen support for iPhone 6 and 6 Plus
 -

 Key: CB-7604
 URL: https://issues.apache.org/jira/browse/CB-7604
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: iOS
 Environment: iOS 8
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah

 New icon size for iPhone 6 Plus - 180x180.
 New splash screen sizes also. Find out prevention of auto-scaling.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8345) Splash screen does not display on Android.

2015-03-23 Thread Raymond Camden (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376762#comment-14376762
 ] 

Raymond Camden commented on CB-8345:


I also strongly disagree with this not being a problem. It absolutely is a 
problem if it doesn't work as documented. 

Heck, it isn't even mentioned here: 
http://cordova.apache.org/docs/en/4.0.0/config_ref_images.md.html#Icons%20and%20Splash%20Screens

So if this current behavior is considered right, I'd say that doc needs 
updating, as well as the one here, 
http://cordova.apache.org/docs/en/4.0.0/guide_platforms_android_config.md.html#Android%20Configuration,
 to make it clear that the Splashscreen preference is required for Android.

 Splash screen does not display on Android.
 --

 Key: CB-8345
 URL: https://issues.apache.org/jira/browse/CB-8345
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CordovaLib
 Environment: OS: Ubuntu 14.04 LTS/x64
 Node.js: 0.10.35
 Cordova: 4.2.0
Reporter: Tomo Masakura
Assignee: Andrew Grieve

 Splash screen does not display on Android. On iOS it is displayed.
 {quote}
 $ cordova --version
 4.2.0
 $ cordova create project1
 $ cd project1
 $ cordova platform add android ios
 $ cordova emulate
 {quote}
 The iOS simulator splash screen is displayed. However, the Android Emulator 
 it is not displayed.
 It seems to be resolved by adding the following sentence to the config.xml, 
 but wanting to be displayed in the default state.
 {quote}
 preference name=SplashScreen value=screen /
 {quote}
 It seems to be solved by modifying the CordovaActivity.java.
 {quote}
 $ diff -Nur CordovaActivity.java.orig CordovaActivity.java
 --- CordovaActivity.java.orig   2015-01-22 16:39:42.0 +0900
 +++ CordovaActivity.java2015-01-22 16:39:56.0 +0900
 @@ -359,7 +359,7 @@
  init();
  }
  this.splashscreenTime = preferences.getInteger(SplashScreenDelay, 
 this.splashscreenTime);
 -String splash = preferences.getString(SplashScreen, null);
 +String splash = preferences.getString(SplashScreen, screen);
  if(this.splashscreenTime  0  splash != null)
  {
  this.splashscreen = getResources().getIdentifier(splash, 
 drawable, getClass().getPackage().getName());;
 {quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8734) add FirefoxOS to Cordova-Medic

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376616#comment-14376616
 ] 

ASF GitHub Bot commented on CB-8734:


GitHub user marti1125 opened a pull request:

https://github.com/apache/cordova-medic/pull/39

CB-8734 add support for firefoxos



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/marti1125/cordova-medic CB-8734

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-medic/pull/39.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #39


commit eeb7be0f87309950ceb5206411887e9e65720d5e
Author: Willy Aguirre marti1...@gmail.com
Date:   2015-03-23T20:38:37Z

CB-8734 add support for firefoxos




 add FirefoxOS to Cordova-Medic
 --

 Key: CB-8734
 URL: https://issues.apache.org/jira/browse/CB-8734
 Project: Apache Cordova
  Issue Type: New Feature
  Components: FirefoxOS
 Environment: add FirefoxOS to Cordova-Medic
Reporter: Willy Aguirre

 I am working in add FirefoxOS to Cordova-Medic



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8345) Splash screen does not display on Android.

2015-03-23 Thread Raymond Camden (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376754#comment-14376754
 ] 

Raymond Camden commented on CB-8345:


This just hit me as well. It doesn't make sense to me that the lack of this 
value should be perceived as not wanting a splash screen. My config.xml file 
specifically includes a spash element. This particular tag is just for 
specifying what filename should be looked for, not whether or not the feature 
is enabled. 

At minimum, then it should be consistent. I don't agree with making this 
preference required, but iOS should act the same.

 Splash screen does not display on Android.
 --

 Key: CB-8345
 URL: https://issues.apache.org/jira/browse/CB-8345
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CordovaLib
 Environment: OS: Ubuntu 14.04 LTS/x64
 Node.js: 0.10.35
 Cordova: 4.2.0
Reporter: Tomo Masakura
Assignee: Andrew Grieve

 Splash screen does not display on Android. On iOS it is displayed.
 {quote}
 $ cordova --version
 4.2.0
 $ cordova create project1
 $ cd project1
 $ cordova platform add android ios
 $ cordova emulate
 {quote}
 The iOS simulator splash screen is displayed. However, the Android Emulator 
 it is not displayed.
 It seems to be resolved by adding the following sentence to the config.xml, 
 but wanting to be displayed in the default state.
 {quote}
 preference name=SplashScreen value=screen /
 {quote}
 It seems to be solved by modifying the CordovaActivity.java.
 {quote}
 $ diff -Nur CordovaActivity.java.orig CordovaActivity.java
 --- CordovaActivity.java.orig   2015-01-22 16:39:42.0 +0900
 +++ CordovaActivity.java2015-01-22 16:39:56.0 +0900
 @@ -359,7 +359,7 @@
  init();
  }
  this.splashscreenTime = preferences.getInteger(SplashScreenDelay, 
 this.splashscreenTime);
 -String splash = preferences.getString(SplashScreen, null);
 +String splash = preferences.getString(SplashScreen, screen);
  if(this.splashscreenTime  0  splash != null)
  {
  this.splashscreen = getResources().getIdentifier(splash, 
 drawable, getClass().getPackage().getName());;
 {quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-8731) Cordova-App-Hello-World Release March 23, 2015

2015-03-23 Thread Steve Gill (JIRA)
Steve Gill created CB-8731:
--

 Summary: Cordova-App-Hello-World Release March 23, 2015
 Key: CB-8731
 URL: https://issues.apache.org/jira/browse/CB-8731
 Project: Apache Cordova
  Issue Type: Task
Reporter: Steve Gill
Assignee: Steve Gill


Following steps at 
https://github.com/apache/cordova-coho/blob/master/docs/platforms-release-process.md;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-8733) 'cordova plugin save' should also save plugin versions

2015-03-23 Thread Edna Morales (JIRA)
Edna Morales created CB-8733:


 Summary: 'cordova plugin save' should also save plugin versions
 Key: CB-8733
 URL: https://issues.apache.org/jira/browse/CB-8733
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CordovaLib
Affects Versions: Master
Reporter: Edna Morales
Assignee: Edna Morales
Priority: Minor
 Fix For: Master


Currently, version info is not saved for plugins in the fetch.json. That needs 
to be added so that plugin version can be saved in the config.xml. It should 
follow what 'cordova platform save' does



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-8698) Clean Up, Fix, and Conform Medic Config to Buildbot and Apache Infra's Buildbot

2015-03-23 Thread Dmitry Blotsky (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8698?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry Blotsky resolved CB-8698.

Resolution: Implemented

 Clean Up, Fix, and Conform Medic Config to Buildbot and Apache Infra's 
 Buildbot
 ---

 Key: CB-8698
 URL: https://issues.apache.org/jira/browse/CB-8698
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Medic
Reporter: Dmitry Blotsky
  Labels: cleanup, config, cordova, cordova-medic, medic
   Original Estimate: 720h
  Remaining Estimate: 720h

 Medic config is difficult to extend, has some code smells, and is difficult 
 to use with other Buildbot features.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8600) Translations for March

2015-03-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376318#comment-14376318
 ] 

ASF subversion and git services commented on CB-8600:
-

Commit 02b64cb4fbc321d6400415be03452366c8e48df0 in cordova-docs's branch 
refs/heads/master from Victor Sosa
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=02b64cb ]

CB-8600 cordova-docs documentation translation: cordova-docs


 Translations for March
 --

 Key: CB-8600
 URL: https://issues.apache.org/jira/browse/CB-8600
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Translation
Reporter: Victor Adrian Sosa Herrera
Assignee: Victor Adrian Sosa Herrera
Priority: Minor





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8600) Translations for March

2015-03-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376317#comment-14376317
 ] 

ASF subversion and git services commented on CB-8600:
-

Commit 02b64cb4fbc321d6400415be03452366c8e48df0 in cordova-docs's branch 
refs/heads/CB-8600cordova-docs from Victor Sosa
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=02b64cb ]

CB-8600 cordova-docs documentation translation: cordova-docs


 Translations for March
 --

 Key: CB-8600
 URL: https://issues.apache.org/jira/browse/CB-8600
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Translation
Reporter: Victor Adrian Sosa Herrera
Assignee: Victor Adrian Sosa Herrera
Priority: Minor





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-8732) Cordova-firefoxos Platform Release March 23, 2015

2015-03-23 Thread Steve Gill (JIRA)
Steve Gill created CB-8732:
--

 Summary: Cordova-firefoxos Platform Release March 23, 2015
 Key: CB-8732
 URL: https://issues.apache.org/jira/browse/CB-8732
 Project: Apache Cordova
  Issue Type: Task
  Components: FirefoxOS
Reporter: Steve Gill
Assignee: Steve Gill


Following steps at 
https://github.com/apache/cordova-coho/blob/master/docs/platforms-release-process.md;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-8731) Cordova-App-Hello-World Release March 23, 2015

2015-03-23 Thread Steve Gill (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8731?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Steve Gill updated CB-8731:
---
Component/s: App Hello World

 Cordova-App-Hello-World Release March 23, 2015
 --

 Key: CB-8731
 URL: https://issues.apache.org/jira/browse/CB-8731
 Project: Apache Cordova
  Issue Type: Task
  Components: App Hello World
Reporter: Steve Gill
Assignee: Steve Gill

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/cordova-app-hello-world-release-process.md;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Updated] (CB-8731) Cordova-App-Hello-World Release March 23, 2015

2015-03-23 Thread Steve Gill (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8731?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Steve Gill updated CB-8731:
---
Description: Following steps at 
https://github.com/apache/cordova-coho/blob/master/docs/cordova-app-hello-world-release-process.md;
  (was: Following steps at 
https://github.com/apache/cordova-coho/blob/master/docs/platforms-release-process.md;)

 Cordova-App-Hello-World Release March 23, 2015
 --

 Key: CB-8731
 URL: https://issues.apache.org/jira/browse/CB-8731
 Project: Apache Cordova
  Issue Type: Task
  Components: App Hello World
Reporter: Steve Gill
Assignee: Steve Gill

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/cordova-app-hello-world-release-process.md;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-8399) Createmobilespec Fails When Node Path Contains Spaces

2015-03-23 Thread Dmitry Blotsky (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8399?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry Blotsky resolved CB-8399.

Resolution: Fixed

 Createmobilespec Fails When Node Path Contains Spaces
 -

 Key: CB-8399
 URL: https://issues.apache.org/jira/browse/CB-8399
 Project: Apache Cordova
  Issue Type: Bug
  Components: mobile-spec
 Environment: Windows
Reporter: Dmitry Blotsky
  Labels: cordova, mobilespec, windows
   Original Estimate: 10m
  Remaining Estimate: 10m

 Running createmobilespec.js with {{node}} yields an error when the path to 
 {{node}} contains spaces.
 {code:none}
  node cordova-mobile-spec/createmobilespec/createmobilespec.js --windows
 Creating project from local git repos. If you have any errors, it may be from 
 missing repositories.
 ...
 Writing out cordova_plugins.js...
 Updating js for platforms...
 'c:\Program' is not recognized as an internal or external command,
 operable program or batch file.
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-7197) Cordova doesn't always initialize when webview timers start in the paused state

2015-03-23 Thread Joe Bowser (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-7197?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joe Bowser resolved CB-7197.

Resolution: Implemented

I'm pretty sure the CB-7947 that made this less aggressive actually resolved 
this issue.  A part of me wants to toss pauseTimers() altogether and make it 
someone else's problem, but I'm fine with the current consensus on how this 
behaviour should work.

 Cordova doesn't always initialize when webview timers start in the paused 
 state
 ---

 Key: CB-7197
 URL: https://issues.apache.org/jira/browse/CB-7197
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Android 4.4.2
Reporter: David Almilli

 When Cordova pauses the timers before the Activity is destroyed, when you 
 start the Activity back up, it detects it's in the startup phase and doesn't 
 resume the timers if they are starting in the paused state.
 If you look at the javadoc for WebView.pauseTimers() it says that it's a 
 global setting and doesn't just affect that instance of the WebView.
 http://developer.android.com/reference/android/webkit/WebView.html#pauseTimers()
 There are probably several ways to reproduce this which may seem inconsistent 
 because it depends on what the android task manager does and whether it 
 destroys the activities, but keeps the process running or not. I wasn't able 
 to make a simple example though. The way I was reproducing it was by using 
 the camera plugin to take a picture and then hit back repeatedly until it 
 goes to the home screen.  Then I would go back to the launcher icon to start 
 the app again.  It never receives the deviceready event and gets stuck just 
 before it loads the plugins in the cordova.js because it's wrapped in a 
 setTimeout().
 I even had this snipped at the top of the body that (when starting in a 
 broken state) would print Testing setTimeout, but would *not print* 
 setTimeout 0 works
 {noformat}
   script type=text/javascript
   console.log(Testing setTimeout);
   setTimeout(function() {
   console.log(setTimeout 0 works);
   }, 0);
   /script
 {noformat}
 The fix I came up with was at the end of the CordovaActivity.init(...) method 
 add this line:
 {noformat}
 public void init(CordovaWebView webView, CordovaWebViewClient 
 webViewClient, CordovaChromeClient webChromeClient) {
 ...
 this.appView.resumeTimers();
 }
 {noformat}
 And to be sure that the CordovaWebView doesn't break other WebViews that 
 might be used by a developer, it should resume the timers when it is 
 destroyed so at the end of the CordovaWebView.handleDestory() method add this 
 line:
 {noformat}
 public void handleDestroy() {
 ...
 this.resumeTimers();
 }
 {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8519) exception and crash when instantiatePlugin() fails

2015-03-23 Thread Joe Bowser (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8519?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376884#comment-14376884
 ] 

Joe Bowser commented on CB-8519:


Can you provide steps to reproduce this issue? It's very unlikely that 
instantiatePlugin would ever return null.  The only way this could happen is if 
the plugin itself wasn't installed.

 exception and crash when instantiatePlugin() fails
 --

 Key: CB-8519
 URL: https://issues.apache.org/jira/browse/CB-8519
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Reporter: xx
   Original Estimate: 1h
  Remaining Estimate: 1h

 public CordovaPlugin getPlugin(String service) in PluginManager.java does not 
 check for return value of instantiatePlugin call.
 Proposed fix:
 if (ret == null)
return null;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Reopened] (CB-8345) Splash screen does not display on Android.

2015-03-23 Thread Andrew Grieve (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8345?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrew Grieve reopened CB-8345:
---

With Android's splashscreen being broken into a plugin, certainly does make 
sense now to have it work without a preference.

 Splash screen does not display on Android.
 --

 Key: CB-8345
 URL: https://issues.apache.org/jira/browse/CB-8345
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CordovaLib
 Environment: OS: Ubuntu 14.04 LTS/x64
 Node.js: 0.10.35
 Cordova: 4.2.0
Reporter: Tomo Masakura
Assignee: Andrew Grieve

 Splash screen does not display on Android. On iOS it is displayed.
 {quote}
 $ cordova --version
 4.2.0
 $ cordova create project1
 $ cd project1
 $ cordova platform add android ios
 $ cordova emulate
 {quote}
 The iOS simulator splash screen is displayed. However, the Android Emulator 
 it is not displayed.
 It seems to be resolved by adding the following sentence to the config.xml, 
 but wanting to be displayed in the default state.
 {quote}
 preference name=SplashScreen value=screen /
 {quote}
 It seems to be solved by modifying the CordovaActivity.java.
 {quote}
 $ diff -Nur CordovaActivity.java.orig CordovaActivity.java
 --- CordovaActivity.java.orig   2015-01-22 16:39:42.0 +0900
 +++ CordovaActivity.java2015-01-22 16:39:56.0 +0900
 @@ -359,7 +359,7 @@
  init();
  }
  this.splashscreenTime = preferences.getInteger(SplashScreenDelay, 
 this.splashscreenTime);
 -String splash = preferences.getString(SplashScreen, null);
 +String splash = preferences.getString(SplashScreen, screen);
  if(this.splashscreenTime  0  splash != null)
  {
  this.splashscreen = getResources().getIdentifier(splash, 
 drawable, getClass().getPackage().getName());;
 {quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-8656) The Container Android Dependencies references non existing library mainactivity_cordovalib.jar

2015-03-23 Thread Joe Bowser (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8656?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joe Bowser resolved CB-8656.

Resolution: Won't Fix

You need to make sure that you have the latest API installed. These errors 
appear in Eclipse when you don't have Lollipop installed.  You can get more 
help on how to update this on the Android Developer Site 
(developer.android.com) and Stack Overflow.

 The Container Android Dependencies references non existing library 
 mainactivity_cordovalib.jar
 --

 Key: CB-8656
 URL: https://issues.apache.org/jira/browse/CB-8656
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CordovaLib
Reporter: Rakshith

 When i import android project from existing code. It shows following errors
 Description   ResourcePathLocationType
 1. The container 'Android Dependencies' references non existing library 
 'C:\abc\platforms\android\CordovaLib\bin\mainactivity-cordovalib.jar' abc 
 Build Path Problem
 2. The project cannot be built until build path errors are resolved   abc 
 Unknown Java Problem
 3.FileChooserParams cannot be resolved or is not a field  
 CordovaChromeClient.java /MainActivity-CordovaLib/src/org/apache/cordova  
   
 4. LOLLIPOP cannot be resolved or is not a field  
 CordovaChromeClient.java /MainActivity-CordovaLib/src/org/apache/cordova  
   
 5. LOLLIPOP cannot be resolved or is not a field CordovaWebView.java  
 /MainActivity-CordovaLib/src/org/apache/cordova
 6. The method onReceivedClientCertRequest(WebView,ClientCertRequest)
  is undefined for the type WebViewClientCordovaWebViewClient.java 
 /MainActivity-CordovaLib/src/org/apache/cordova 
 7. The method setAcceptThirdPartyCookies(CordovaWebView, boolean) is 
 undefined for the type CookieManager CordovaWebView.java 
 /MainActivity-CordovaLib/src/org/apache/cordova 
 8. WebChromeClient.FileChooserParams cannot be resolved to a type 
 CordovaChromeClient.java/MainActivityCordovaLib/src/org/apache/cordova  
 Please help me out to solve this errors



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8731) Cordova-App-Hello-World Release March 23, 2015

2015-03-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8731?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376965#comment-14376965
 ] 

ASF subversion and git services commented on CB-8731:
-

Commit fb3150bf76f796009c0ae838269da7f6f3f1e3ab in cordova-app-hello-world's 
branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-app-hello-world.git;h=fb3150b 
]

CB-8731 Updated version and RELEASENOTES.md for release 3.9.0


 Cordova-App-Hello-World Release March 23, 2015
 --

 Key: CB-8731
 URL: https://issues.apache.org/jira/browse/CB-8731
 Project: Apache Cordova
  Issue Type: Task
  Components: App Hello World
Reporter: Steve Gill
Assignee: Steve Gill

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/cordova-app-hello-world-release-process.md;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8731) Cordova-App-Hello-World Release March 23, 2015

2015-03-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8731?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376966#comment-14376966
 ] 

ASF subversion and git services commented on CB-8731:
-

Commit cfa4139228b865ffae63869cab4245962ee96aeb in cordova-app-hello-world's 
branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-app-hello-world.git;h=cfa4139 
]

CB-8731 Incremented package version to -dev


 Cordova-App-Hello-World Release March 23, 2015
 --

 Key: CB-8731
 URL: https://issues.apache.org/jira/browse/CB-8731
 Project: Apache Cordova
  Issue Type: Task
  Components: App Hello World
Reporter: Steve Gill
Assignee: Steve Gill

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/cordova-app-hello-world-release-process.md;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Created] (CB-8736) Android WebGL feature check returns incorrect result on some devices

2015-03-23 Thread Devin Garner (JIRA)
Devin Garner created CB-8736:


 Summary: Android WebGL feature check returns incorrect result on 
some devices
 Key: CB-8736
 URL: https://issues.apache.org/jira/browse/CB-8736
 Project: Apache Cordova
  Issue Type: Bug
  Components: Amazon FireOS, Android
Affects Versions: 3.5.0
 Environment: Kindle Fire Tablets HD 6, 7,  HDX 8.9. (Although Fire 
Phone works correctly) Also, a small % of other Android devices
Reporter: Devin Garner
Assignee: Archana Naik


//This following javascript code should determine if WebGL is available. On 
versions of Android prior to 5 (Lolipop), WebView didn't support WebGL, so all 
pre-Lolipop android devices should return false on this WebGL feature 
availability check. However, some pre-Lolipop devices are returning true, 
which is incorrect.

var canvas = document.createElement('canvas');
canvas.screencanvas = false;
var supportsWebGL = !!window.WebGLRenderingContext  
(canvas.getContext('webgl') || canvas.getContext('experimental-webgl'));



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Resolved] (CB-8735) bin/create regex is too strict and has issues with numbers

2015-03-23 Thread Joe Bowser (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-8735?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joe Bowser resolved CB-8735.

Resolution: Fixed

Fixed and updated the spec.

 bin/create regex is too strict and has issues with numbers
 --

 Key: CB-8735
 URL: https://issues.apache.org/jira/browse/CB-8735
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CLI
Affects Versions: 4.0.0
Reporter: Joe Bowser
Assignee: Joe Bowser
 Fix For: 4.0.0


 Found that the regex was not handling numbers and was allowing for invalid 
 packages to be created where all portions after the first one were allowing 
 leading zeros.  Going to change the regex to not allow leading zeros, and 
 added a use case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8735) bin/create regex is too strict and has issues with numbers

2015-03-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8735?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376841#comment-14376841
 ] 

ASF subversion and git services commented on CB-8735:
-

Commit 151b86cb7bb8fea768d0cc72030a133c25dd4123 in cordova-android's branch 
refs/heads/master from [~bowserj]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=151b86c ]

CB-8735: Adding link as per Ian's suggestion


 bin/create regex is too strict and has issues with numbers
 --

 Key: CB-8735
 URL: https://issues.apache.org/jira/browse/CB-8735
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CLI
Affects Versions: 4.0.0
Reporter: Joe Bowser
Assignee: Joe Bowser
 Fix For: 4.0.0


 Found that the regex was not handling numbers and was allowing for invalid 
 packages to be created where all portions after the first one were allowing 
 leading zeros.  Going to change the regex to not allow leading zeros, and 
 added a use case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8734) add FirefoxOS to Cordova-Medic

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377046#comment-14377046
 ] 

ASF GitHub Bot commented on CB-8734:


Github user dblotsky commented on a diff in the pull request:

https://github.com/apache/cordova-medic/pull/39#discussion_r26997024
  
--- Diff: buildbot-conf/cordova.conf ---
@@ -300,10 +300,13 @@ c['builders'].extend([
 BuilderConfig(name='cordova-ios',slavenames=OSX_SLAVES,
 factory=cordova_plugins_all, properties={'platform': 'ios',  
'slaveos': OSX}),
 BuilderConfig(name='cordova-android-osx',slavenames=OSX_SLAVES,
 factory=cordova_plugins_all, properties={'platform': 'android',  
'slaveos': OSX}),
 BuilderConfig(name='cordova-blackberry-osx', slavenames=OSX_SLAVES,
 factory=cordova_plugins_all, properties={'platform': 'blackberry10', 
'slaveos': OSX}),
+BuilderConfig(name='cordova-firefoxos-osx',  slavenames=OSX_SLAVES,
 factory=cordova_plugins_all, properties={'platform': 'firefoxos',
'slaveos': OSX}),
 BuilderConfig(name='cordova-windows',
slavenames=WINDOWS_SLAVES, factory=cordova_plugins_windows, 
properties={'platform': 'windows',  'slaveos': WINDOWS}),
 BuilderConfig(name='cordova-wp8',
slavenames=WINDOWS_SLAVES, factory=cordova_plugins_all, 
properties={'platform': 'wp8',  'slaveos': WINDOWS}),
 BuilderConfig(name='cordova-android-win',
slavenames=WINDOWS_SLAVES, factory=cordova_plugins_all, 
properties={'platform': 'android',  'slaveos': WINDOWS}),
 BuilderConfig(name='cordova-blackberry-win', 
slavenames=WINDOWS_SLAVES, factory=cordova_plugins_all, 
properties={'platform': 'blackberry10', 'slaveos': WINDOWS}),
+BuilderConfig(name='cordova-firefoxos-win',  
slavenames=WINDOWS_SLAVES, factory=cordova_plugins_all, 
properties={'platform': 'firefoxos','slaveos': WINDOWS}),
--- End diff --

Please add the new builders to the scheduler on [line 
315](https://github.com/apache/cordova-medic/blob/master/buildbot-conf/cordova.conf#L315).


 add FirefoxOS to Cordova-Medic
 --

 Key: CB-8734
 URL: https://issues.apache.org/jira/browse/CB-8734
 Project: Apache Cordova
  Issue Type: New Feature
  Components: FirefoxOS
 Environment: add FirefoxOS to Cordova-Medic
Reporter: Willy Aguirre

 I am working in add FirefoxOS to Cordova-Medic



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8519) exception and crash when instantiatePlugin() fails

2015-03-23 Thread xx (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8519?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377045#comment-14377045
 ] 

xx commented on CB-8519:


It happened with NFC plugin (https://github.com/chariotsolutions/phonegap-nfc).
Without this fix, even if plugin is present in apk application won't start and 
will crash if run on device without NFC hardware. With this fix application 
works - obviously plugin reports missing NFC, but this is expected in this 
scenario and can be handled in application. 

 exception and crash when instantiatePlugin() fails
 --

 Key: CB-8519
 URL: https://issues.apache.org/jira/browse/CB-8519
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Reporter: xx
   Original Estimate: 1h
  Remaining Estimate: 1h

 public CordovaPlugin getPlugin(String service) in PluginManager.java does not 
 check for return value of instantiatePlugin call.
 Proposed fix:
 if (ret == null)
return null;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8736) Android WebGL feature check returns incorrect result on some devices

2015-03-23 Thread Joe Bowser (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14376862#comment-14376862
 ] 

Joe Bowser commented on CB-8736:


[~speige] Which non-amazon devices are affected by this? Any examples?

 Android WebGL feature check returns incorrect result on some devices
 

 Key: CB-8736
 URL: https://issues.apache.org/jira/browse/CB-8736
 Project: Apache Cordova
  Issue Type: Bug
  Components: Amazon FireOS, Android
Affects Versions: 3.5.0
 Environment: Kindle Fire Tablets HD 6, 7,  HDX 8.9. (Although Fire 
 Phone works correctly) Also, a small % of other Android devices
Reporter: Devin Garner
Assignee: Archana Naik

 //This following javascript code should determine if WebGL is available. On 
 versions of Android prior to 5 (Lolipop), WebView didn't support WebGL, so 
 all pre-Lolipop android devices should return false on this WebGL feature 
 availability check. However, some pre-Lolipop devices are returning true, 
 which is incorrect.
 var canvas = document.createElement('canvas');
 canvas.screencanvas = false;
 var supportsWebGL = !!window.WebGLRenderingContext  
 (canvas.getContext('webgl') || canvas.getContext('experimental-webgl'));



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8734) add FirefoxOS to Cordova-Medic

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377122#comment-14377122
 ] 

ASF GitHub Bot commented on CB-8734:


Github user dblotsky commented on the pull request:

https://github.com/apache/cordova-medic/pull/39#issuecomment-85295392
  
Please make sure that the build scripts run on their own.


 add FirefoxOS to Cordova-Medic
 --

 Key: CB-8734
 URL: https://issues.apache.org/jira/browse/CB-8734
 Project: Apache Cordova
  Issue Type: New Feature
  Components: FirefoxOS
 Environment: add FirefoxOS to Cordova-Medic
Reporter: Willy Aguirre

 I am working in add FirefoxOS to Cordova-Medic



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8734) add FirefoxOS to Cordova-Medic

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377240#comment-14377240
 ] 

ASF GitHub Bot commented on CB-8734:


Github user marti1125 commented on the pull request:

https://github.com/apache/cordova-medic/pull/39#issuecomment-85331214
  
Is it correct?

![bs](https://cloud.githubusercontent.com/assets/223240/6795652/be746a3a-d1b1-11e4-9c56-20e83998abb9.png)



 add FirefoxOS to Cordova-Medic
 --

 Key: CB-8734
 URL: https://issues.apache.org/jira/browse/CB-8734
 Project: Apache Cordova
  Issue Type: New Feature
  Components: FirefoxOS
 Environment: add FirefoxOS to Cordova-Medic
Reporter: Willy Aguirre

 I am working in add FirefoxOS to Cordova-Medic



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8734) add FirefoxOS to Cordova-Medic

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377120#comment-14377120
 ] 

ASF GitHub Bot commented on CB-8734:


Github user dblotsky commented on a diff in the pull request:

https://github.com/apache/cordova-medic/pull/39#discussion_r26998809
  
--- Diff: src/build/makers/firefoxos.js ---
@@ -0,0 +1,34 @@
+var shell= require('shelljs'),
+path = require('path'),
+error_writer = require('./error_writer'),
+n= require('ncallbacks'),
+fs   = require('fs'),
+mspec= require('./mobile_spec');
--- End diff --

This guy is a directory, so the script fails with `Error: Cannot find 
module './mobile_spec'`.


 add FirefoxOS to Cordova-Medic
 --

 Key: CB-8734
 URL: https://issues.apache.org/jira/browse/CB-8734
 Project: Apache Cordova
  Issue Type: New Feature
  Components: FirefoxOS
 Environment: add FirefoxOS to Cordova-Medic
Reporter: Willy Aguirre

 I am working in add FirefoxOS to Cordova-Medic



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8736) Android WebGL feature check returns incorrect result on some devices

2015-03-23 Thread Devin Garner (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377134#comment-14377134
 ] 

Devin Garner commented on CB-8736:
--

The only example of a non-amazon device I can reproduce this with is
RCT6773W22. I think it's rare to see this issue on non-amazon as I have
tons of example devices where the code is working fine.



 Android WebGL feature check returns incorrect result on some devices
 

 Key: CB-8736
 URL: https://issues.apache.org/jira/browse/CB-8736
 Project: Apache Cordova
  Issue Type: Bug
  Components: Amazon FireOS, Android
Affects Versions: 3.5.0
 Environment: Kindle Fire Tablets HD 6, 7,  HDX 8.9. (Although Fire 
 Phone works correctly) Also, a small % of other Android devices
Reporter: Devin Garner
Assignee: Archana Naik

 //This following javascript code should determine if WebGL is available. On 
 versions of Android prior to 5 (Lolipop), WebView didn't support WebGL, so 
 all pre-Lolipop android devices should return false on this WebGL feature 
 availability check. However, some pre-Lolipop devices are returning true, 
 which is incorrect.
 var canvas = document.createElement('canvas');
 canvas.screencanvas = false;
 var supportsWebGL = !!window.WebGLRenderingContext  
 (canvas.getContext('webgl') || canvas.getContext('experimental-webgl'));



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-8734) add FirefoxOS to Cordova-Medic

2015-03-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-8734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14377136#comment-14377136
 ] 

ASF GitHub Bot commented on CB-8734:


Github user marti1125 commented on the pull request:

https://github.com/apache/cordova-medic/pull/39#issuecomment-85297836
  
ok :D sorry for inconvenients


 add FirefoxOS to Cordova-Medic
 --

 Key: CB-8734
 URL: https://issues.apache.org/jira/browse/CB-8734
 Project: Apache Cordova
  Issue Type: New Feature
  Components: FirefoxOS
 Environment: add FirefoxOS to Cordova-Medic
Reporter: Willy Aguirre

 I am working in add FirefoxOS to Cordova-Medic



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org