[jira] [Commented] (CB-8804) https://github.com/apache/cordova-plugin-camera#android-quirks

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8804:


Github user stevengill commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/97#issuecomment-112923305
  
@thehuijb hey. I will need to review this and see if it has any impact for 
other platforms before I can merge it in. 


 https://github.com/apache/cordova-plugin-camera#android-quirks
 --

 Key: CB-8804
 URL: https://issues.apache.org/jira/browse/CB-8804
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugin Camera
 Environment: Android
Reporter: Serge Huijben

 Android Quirks
 Android uses intents to launch the camera activity on the device to capture 
 images, and on phones with low memory, the Cordova activity may be killed. In 
 this scenario, the image may not appear when the Cordova activity is restored.
 It can be solved bij implementing this PR: 
 https://github.com/apache/cordova-plugin-camera/pull/97



--
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-9194) Add faq page and header on npm search page

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit c73a032dc050bb6cf79dc434437e5f93e195f350 in cordova-registry-web's 
branch refs/heads/master from [~muratsu]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-registry-web.git;h=c73a032 ]

correctly merge CB-9194

close #13


 Add faq page and header on npm search page
 --

 Key: CB-9194
 URL: https://issues.apache.org/jira/browse/CB-9194
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-9194) Add faq page and header on npm search page

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9194:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-registry-web/pull/13


 Add faq page and header on npm search page
 --

 Key: CB-9194
 URL: https://issues.apache.org/jira/browse/CB-9194
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-9068) FileWriter.write() failure on Lollipop when no ext_sdcard present

2015-06-17 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-9068:
---
Priority: Critical  (was: Major)

 FileWriter.write() failure on Lollipop when no ext_sdcard present
 -

 Key: CB-9068
 URL: https://issues.apache.org/jira/browse/CB-9068
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin File
Affects Versions: 5.0.0
 Environment: Android Emulator (4.4.2, 5.0.1 and 5.1.1)
 Xperia Sola (with 4.4.4)
 Xperia Z3 Compact (5.0.2)
 
 Cordova 5.0.0 / 5.1.1
 cordova-android 4.0.0 / 4.0.2
Reporter: Tanase Butcaru
Assignee: Joe Bowser
Priority: Critical
  Labels: file, fileWriter, writer

 FileWriter write method fails on android lollipop versions when no external 
 sdcard is present.
 Simple test case:
 {code:javascript}
 function fwriteTest(){
   console.log(START FILE WRITE!!);
   console.log(CDV dataDirectory:  + cordova.file.dataDirectory);
   window.resolveLocalFileSystemURL(cordova.file.dataDirectory, 
 resolveLocalFSUrlWin, resolveLocalFSUrlErr);
   }
   function resolveLocalFSUrlErr(err){ console.log(resolve FS ERR: --  + 
 JSON.stringify(err)); }
   function resolveLocalFSUrlWin(dirEntry){
   console.log(resolve FS WIN!!);
   dirEntry.getFile('fileWriter.txt', { create: true, exclusive: 
 false }, getFileWin, getFileErr);
   }
   function getFileErr(err){ console.log(get file ERR: --  + 
 JSON.stringify(err)); }
   function getFileWin(fileEntry){
   console.log(get file WIN!!);
   fileEntry.createWriter(
   function(writer){
   writer.onwrite = function(evt){
   console.log(Write to file WIN!!);
   alert(ALL GOOD!!);
   };
   writer.onerror = function(err){
   console.log(Write to file FAIL: --  + 
 JSON.stringify(err));
   }
   writer.write(sample text goes hereee);
   },
   function(err){
console.log(create writer ERR: --  + 
 JSON.stringify(err)); 
   }
   );
   }
//run test!
   fwriteTest();
 {code}
 AndroidManifest.xml contains the following permission, so it's all good here:
 {code:xml}uses-permission 
 android:name=android.permission.WRITE_EXTERNAL_STORAGE /{code}
 I have two android devices, different android versions (4.4.4 and 5.0.2) and 
 I have 3 android emulators with android 4.4.2, 5.0.1 and 5.1.1.
 I tested all environments with and without ext_sdcard (for emulators do not 
 enter Size for Sd card option) and here are my results:
 {noformat}
 Android 4.4.4 with  without extSD (XPERIA Sola)
 ==
 LEVEL | TAG  |   TEXT
 ===
 I | chromium | [INFO:CONSOLE(228)] START FILE WRITE!!, source: 
 ...
 
 I | chromium | [INFO:CONSOLE(229)] CDV dataDirectory: 
 file:///data/data/cdv.filewriter.issue/files/, source: ...
 
 W | AssetFilesystem  | Asset manifest not found. Recursive copies and 
 directory listing will be slow.
 
 I | chromium | [INFO:CONSOLE(236)] resolve FS WIN!!, source: 
 ...
 
 I | chromium | [INFO:CONSOLE(243)] get file WIN!!, source: ...
 
 D | TEST | cdvfile://localhost/files/fileWriter.txt: 23
 
 I | chromium | [INFO:CONSOLE(248)] Write to file WIN!!, source: 
 ...
 ANDROID 4.4.2 without sdcard / with sdcard (EMULATOR)
 ==
  same output as XPERIA Sola 
 ANDROID 5.0.2 without extSD (XPERIA Z3 Compact)
 ===
 LEVEL | TAG  |   TEXT
 ===
 I | chromium | [INFO:CONSOLE(228)] START FILE WRITE!!, source: 
 ...
 ---
 I | chromium | [INFO:CONSOLE(229)] CDV dataDirectory: 
 file:///data/data/cdv.filewriter.issue/files/, source: ...
 ---
 W | AssetFilesystem  | Asset manifest not found. Recursive copies and 
 directory listing will be slow.
 ---
 I | chromium | [INFO:CONSOLE(236)] resolve FS WIN!!, source: 
 ...
 ---
 I | chromium | 

[jira] [Commented] (CB-9109) Switch to using .ratignore in cordova repositories

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9109:


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

https://github.com/apache/cordova-coho/pull/86#discussion_r32667023
  
--- Diff: src/audit-license-headers.js ---
@@ -44,11 +46,27 @@ var COMMON_RAT_EXCLUDES = [
 '*.xcworkspacedata',
 '*.xccheckout',
 '*.xcscheme',
-];
+];
+
+var RAT_IGNORE_PATH  = '.ratignore';
+var RATIGNORE_COMMENT_PREFIX = '#';
+
+var RAT_NAME = 'apache-rat-0.10';
+var RAT_URL  = 
'https://dist.apache.org/repos/dist/release/creadur/apache-rat-0.10/apache-rat-0.10-bin.tar.gz';
+
+function startsWith(string, prefix) {
+return string.lastIndexOf(prefix, 0) === 0;
--- End diff --

It works because `lastIndexOf` searches backwards. That's definitely an 
implementation detail, and I shouldn't rely on it.


 Switch to using .ratignore in cordova repositories
 --

 Key: CB-9109
 URL: https://issues.apache.org/jira/browse/CB-9109
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Coho
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
  Labels: coho, rat
   Original Estimate: 24h
  Remaining Estimate: 24h

 Move from using ratExcludes in repoutils.js within COHO to using a .ratignore 
 file in each respective repo.



--
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-7486) Remove default background color setting for statusbar (StatusBarBackgroundColor)

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 607e5d66add7dea9f791defe97cf62c711741d5e in cordova-plugin-statusbar's 
branch refs/heads/master from [~cjpearson]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-statusbar.git;h=607e5d6
 ]

update docs for StatusBarBackgroundColor

The default value is no longer black. (CB-7486)

 Remove default background color setting for statusbar 
 (StatusBarBackgroundColor)
 

 Key: CB-7486
 URL: https://issues.apache.org/jira/browse/CB-7486
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Statusbar
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah

 See https://github.com/apache/cordova-plugin-statusbar/pull/13



--
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-9202) Update git repo in package.json for all plugins to github mirrors

2015-06-17 Thread Steve Gill (JIRA)
Steve Gill created CB-9202:
--

 Summary: Update git repo in package.json for all plugins to github 
mirrors
 Key: CB-9202
 URL: https://issues.apache.org/jira/browse/CB-9202
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugins
Reporter: Steve Gill
Assignee: Steve Gill






--
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-7486) Remove default background color setting for statusbar (StatusBarBackgroundColor)

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7486:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-plugin-statusbar/pull/20


 Remove default background color setting for statusbar 
 (StatusBarBackgroundColor)
 

 Key: CB-7486
 URL: https://issues.apache.org/jira/browse/CB-7486
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Statusbar
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah

 See https://github.com/apache/cordova-plugin-statusbar/pull/13



--
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-9109) Switch to using .ratignore in cordova repositories

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9109:


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

https://github.com/apache/cordova-coho/pull/86#discussion_r32665147
  
--- Diff: src/audit-license-headers.js ---
@@ -44,11 +46,27 @@ var COMMON_RAT_EXCLUDES = [
 '*.xcworkspacedata',
 '*.xccheckout',
 '*.xcscheme',
-];
+];
+
+var RAT_IGNORE_PATH  = '.ratignore';
+var RATIGNORE_COMMENT_PREFIX = '#';
+
+var RAT_NAME = 'apache-rat-0.10';
+var RAT_URL  = 
'https://dist.apache.org/repos/dist/release/creadur/apache-rat-0.10/apache-rat-0.10-bin.tar.gz';
+
+function startsWith(string, prefix) {
+return string.lastIndexOf(prefix, 0) === 0;
--- End diff --

using lastIndexOf will fail with this won't it?
startsWith(boomboom,boom); // false?
string.indexOf(prefix) === 0 is not only correct, but easier to understand 
too


 Switch to using .ratignore in cordova repositories
 --

 Key: CB-9109
 URL: https://issues.apache.org/jira/browse/CB-9109
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Coho
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
  Labels: coho, rat
   Original Estimate: 24h
  Remaining Estimate: 24h

 Move from using ratExcludes in repoutils.js within COHO to using a .ratignore 
 file in each respective repo.



--
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-8728) Plugin File on Windows ignores write position set by seek function

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8728:


Github user aroberson commented on the pull request:


https://github.com/apache/cordova-plugin-file/pull/106#issuecomment-112909588
  
Is anyone looking at the pull requests to determine if they should be 
merged or not.


 Plugin File on Windows ignores write position set by seek function
 --

 Key: CB-8728
 URL: https://issues.apache.org/jira/browse/CB-8728
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: Master
 Environment: platfrom windows
Reporter: Vladimir Avdonin

 write operation of FileWriter overwrites completely contents of existing file 
 after write position was set by seek function. Automated tests for plugin 
 only verify the length of writer object, but do not check the actual data 
 written to file.



--
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-9068) FileWriter.write() failure on Lollipop when no ext_sdcard present

2015-06-17 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-9068:


I'm able to reproduce this issue on the Samsung Galaxy S5.  Going to bump the 
priority accordingly.

 FileWriter.write() failure on Lollipop when no ext_sdcard present
 -

 Key: CB-9068
 URL: https://issues.apache.org/jira/browse/CB-9068
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin File
Affects Versions: 5.0.0
 Environment: Android Emulator (4.4.2, 5.0.1 and 5.1.1)
 Xperia Sola (with 4.4.4)
 Xperia Z3 Compact (5.0.2)
 
 Cordova 5.0.0 / 5.1.1
 cordova-android 4.0.0 / 4.0.2
Reporter: Tanase Butcaru
Assignee: Joe Bowser
  Labels: file, fileWriter, writer

 FileWriter write method fails on android lollipop versions when no external 
 sdcard is present.
 Simple test case:
 {code:javascript}
 function fwriteTest(){
   console.log(START FILE WRITE!!);
   console.log(CDV dataDirectory:  + cordova.file.dataDirectory);
   window.resolveLocalFileSystemURL(cordova.file.dataDirectory, 
 resolveLocalFSUrlWin, resolveLocalFSUrlErr);
   }
   function resolveLocalFSUrlErr(err){ console.log(resolve FS ERR: --  + 
 JSON.stringify(err)); }
   function resolveLocalFSUrlWin(dirEntry){
   console.log(resolve FS WIN!!);
   dirEntry.getFile('fileWriter.txt', { create: true, exclusive: 
 false }, getFileWin, getFileErr);
   }
   function getFileErr(err){ console.log(get file ERR: --  + 
 JSON.stringify(err)); }
   function getFileWin(fileEntry){
   console.log(get file WIN!!);
   fileEntry.createWriter(
   function(writer){
   writer.onwrite = function(evt){
   console.log(Write to file WIN!!);
   alert(ALL GOOD!!);
   };
   writer.onerror = function(err){
   console.log(Write to file FAIL: --  + 
 JSON.stringify(err));
   }
   writer.write(sample text goes hereee);
   },
   function(err){
console.log(create writer ERR: --  + 
 JSON.stringify(err)); 
   }
   );
   }
//run test!
   fwriteTest();
 {code}
 AndroidManifest.xml contains the following permission, so it's all good here:
 {code:xml}uses-permission 
 android:name=android.permission.WRITE_EXTERNAL_STORAGE /{code}
 I have two android devices, different android versions (4.4.4 and 5.0.2) and 
 I have 3 android emulators with android 4.4.2, 5.0.1 and 5.1.1.
 I tested all environments with and without ext_sdcard (for emulators do not 
 enter Size for Sd card option) and here are my results:
 {noformat}
 Android 4.4.4 with  without extSD (XPERIA Sola)
 ==
 LEVEL | TAG  |   TEXT
 ===
 I | chromium | [INFO:CONSOLE(228)] START FILE WRITE!!, source: 
 ...
 
 I | chromium | [INFO:CONSOLE(229)] CDV dataDirectory: 
 file:///data/data/cdv.filewriter.issue/files/, source: ...
 
 W | AssetFilesystem  | Asset manifest not found. Recursive copies and 
 directory listing will be slow.
 
 I | chromium | [INFO:CONSOLE(236)] resolve FS WIN!!, source: 
 ...
 
 I | chromium | [INFO:CONSOLE(243)] get file WIN!!, source: ...
 
 D | TEST | cdvfile://localhost/files/fileWriter.txt: 23
 
 I | chromium | [INFO:CONSOLE(248)] Write to file WIN!!, source: 
 ...
 ANDROID 4.4.2 without sdcard / with sdcard (EMULATOR)
 ==
  same output as XPERIA Sola 
 ANDROID 5.0.2 without extSD (XPERIA Z3 Compact)
 ===
 LEVEL | TAG  |   TEXT
 ===
 I | chromium | [INFO:CONSOLE(228)] START FILE WRITE!!, source: 
 ...
 ---
 I | chromium | [INFO:CONSOLE(229)] CDV dataDirectory: 
 file:///data/data/cdv.filewriter.issue/files/, source: ...
 ---
 W | AssetFilesystem  | Asset manifest not found. Recursive copies and 
 directory listing will be slow.
 ---
 I | chromium | [INFO:CONSOLE(236)] resolve FS 

[jira] [Commented] (CB-9109) Switch to using .ratignore in cordova repositories

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9109:


Github user TimBarham commented on the pull request:

https://github.com/apache/cordova-coho/pull/86#issuecomment-112934635
  
Looks good (well, apart from those blank lines you insist on adding at the 
beginning of blocks :smile:).


 Switch to using .ratignore in cordova repositories
 --

 Key: CB-9109
 URL: https://issues.apache.org/jira/browse/CB-9109
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Coho
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
  Labels: coho, rat
   Original Estimate: 24h
  Remaining Estimate: 24h

 Move from using ratExcludes in repoutils.js within COHO to using a .ratignore 
 file in each respective repo.



--
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-9109) Switch to using .ratignore in cordova repositories

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9109:


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

https://github.com/apache/cordova-coho/pull/86#discussion_r32664301
  
--- Diff: src/audit-license-headers.js ---
@@ -44,11 +46,27 @@ var COMMON_RAT_EXCLUDES = [
 '*.xcworkspacedata',
 '*.xccheckout',
 '*.xcscheme',
-];
+];
+
+var RAT_IGNORE_PATH  = '.ratignore';
+var RATIGNORE_COMMENT_PREFIX = '#';
+
+var RAT_NAME = 'apache-rat-0.10';
+var RAT_URL  = 
'https://dist.apache.org/repos/dist/release/creadur/apache-rat-0.10/apache-rat-0.10-bin.tar.gz';
+
+function startsWith(string, prefix) {
+return string.lastIndexOf(prefix, 0) === 0;
+}
+
+function isComment(pattern) {
+return startsWith(pattern, RATIGNORE_COMMENT_PREFIX) ;
--- End diff --

Good call! Fixed.


 Switch to using .ratignore in cordova repositories
 --

 Key: CB-9109
 URL: https://issues.apache.org/jira/browse/CB-9109
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Coho
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
  Labels: coho, rat
   Original Estimate: 24h
  Remaining Estimate: 24h

 Move from using ratExcludes in repoutils.js within COHO to using a .ratignore 
 file in each respective repo.



--
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-9109) Switch to using .ratignore in cordova repositories

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9109:


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

https://github.com/apache/cordova-coho/pull/86#discussion_r32664260
  
--- Diff: src/audit-license-headers.js ---
@@ -44,11 +46,27 @@ var COMMON_RAT_EXCLUDES = [
 '*.xcworkspacedata',
 '*.xccheckout',
 '*.xcscheme',
-];
+];
+
+var RAT_IGNORE_PATH  = '.ratignore';
+var RATIGNORE_COMMENT_PREFIX = '#';
+
+var RAT_NAME = 'apache-rat-0.10';
+var RAT_URL  = 
'https://dist.apache.org/repos/dist/release/creadur/apache-rat-0.10/apache-rat-0.10-bin.tar.gz';
+
+function startsWith(string, prefix) {
+return string.lastIndexOf(prefix, 0) === 0;
--- End diff --

Because `lastIndexOf` searches backwards, meaning that if it starts at `0`, 
it will check for one occurrence and return right away. Arguably, regular 
`indexOf` would be clearer though. Thoughts?


 Switch to using .ratignore in cordova repositories
 --

 Key: CB-9109
 URL: https://issues.apache.org/jira/browse/CB-9109
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Coho
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
  Labels: coho, rat
   Original Estimate: 24h
  Remaining Estimate: 24h

 Move from using ratExcludes in repoutils.js within COHO to using a .ratignore 
 file in each respective repo.



--
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-9194) Add faq page and header on npm search page

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit d9349eea71195b4e74bc5dba11c636f234c94d23 in cordova-registry-web's 
branch refs/heads/master from [~muratsu]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-registry-web.git;h=d9349ee ]

CB-9194 Created faq page and added header


 Add faq page and header on npm search page
 --

 Key: CB-9194
 URL: https://issues.apache.org/jira/browse/CB-9194
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-9195) Sort the supported platforms and add more option

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9195:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-registry-web/pull/14


 Sort the supported platforms and add more option
 

 Key: CB-9195
 URL: https://issues.apache.org/jira/browse/CB-9195
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Raghav
   Original Estimate: 24h
  Remaining Estimate: 24h





--
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-9195) Sort the supported platforms and add more option

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit d549819e527f2d9fd16b45c7372ed5a040f08df9 in cordova-registry-web's 
branch refs/heads/master from [~rakatyal]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-registry-web.git;h=d549819 ]

CB-9195 Sorting platforms and adding more option. This closes #14


 Sort the supported platforms and add more option
 

 Key: CB-9195
 URL: https://issues.apache.org/jira/browse/CB-9195
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Raghav
   Original Estimate: 24h
  Remaining Estimate: 24h





--
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-9204) Add mouseover to more button

2015-06-17 Thread Raghav (JIRA)
Raghav created CB-9204:
--

 Summary: Add mouseover to more button
 Key: CB-9204
 URL: https://issues.apache.org/jira/browse/CB-9204
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Raghav


Make more button look clickable



--
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-9206) Add search icon to search box

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9206:


GitHub user muratsu opened a pull request:

https://github.com/apache/cordova-registry-web/pull/16

CB-9206 add search icon to search box



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

$ git pull https://github.com/MSOpenTech/cordova-registry-web CB-9206

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

https://github.com/apache/cordova-registry-web/pull/16.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 #16


commit 037c7f87bed89f00ee265820673c54bff2bd62e0
Author: Murat Sutunc sut...@gmail.com
Date:   2015-06-17T22:22:03Z

CB-9206 add search icon to search box




 Add search icon to search box
 -

 Key: CB-9206
 URL: https://issues.apache.org/jira/browse/CB-9206
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-8188) xcodebuild hung on newly created project

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-8188:
-
Fix Version/s: (was: 4.0.0)

 xcodebuild hung on newly created project
 

 Key: CB-8188
 URL: https://issues.apache.org/jira/browse/CB-8188
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 4.0.0
Reporter: Aram Karapetyan
Priority: Minor

 On fresh project (have not opened xcode) xcodebuild hung forever.
 To reproduce create project, add ios platform, move to platform/ios folder 
 and run:
 {code}
 ak$ xcodebuild -list
  Targets:
 MyFancyProject
 Build Configurations:
 Debug
 Release
 If no build configuration is specified and -scheme is not passed then 
 Release is used.
 {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-9116) Ensure platform scripts are executable as the platform could be added on non-OSX environment

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-9116.
--
Resolution: Not A Problem

See CB-8197

 Ensure platform scripts are executable as the platform could be added on 
 non-OSX environment
 

 Key: CB-9116
 URL: https://issues.apache.org/jira/browse/CB-9116
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Reporter: Sergey Shakhnazarov
 Fix For: 4.0.0


 Some shell scripts turn out to be non-executable when ios platform is added 
 on non-OSX machine and then pushed to github.
 Error logs:
 PhaseScriptExecution Copy\ www\ directory 
 build/HelloCordova.build/Debug-iphonesimulator/HelloCordova.build/Script-304B58A110DAC018002A0835.sh
 cd /Users/admin/Desktop/cordova5/osxtest/platforms/ios
 /bin/sh -c 
 /Users/admin/Desktop/cordova5/osxtest/platforms/ios/build/HelloCordova.build/Debug-iphonesimulator/HelloCordova.build/Script-304B58A110DAC018002A0835.sh
 /Users/admin/Desktop/cordova5/osxtest/platforms/ios/build/HelloCordova.build/Debug-iphonesimulator/HelloCordova.build/Script-304B58A110DAC018002A0835.sh:
  line 2: cordova/lib/copy-www-build-step.sh: Permission denied



--
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-8032) Add nativeURL external method support for CDVFileSystem-makeEntryForPath:isDirectory:

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8032:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-ios/pull/119


 Add nativeURL external method support for 
 CDVFileSystem-makeEntryForPath:isDirectory:
 --

 Key: CB-8032
 URL: https://issues.apache.org/jira/browse/CB-8032
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Camera, Plugin File
 Environment: iOS
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah

 Right now in CDVFileSystem-makeEntryForPath:isDirectory:, in the 
 NSDictionary that is returned, for the key nativeURL the format is fixed 
 (file:// protocol for a local filesystem reference, and assets-library:/ for 
 a assets library filesystem reference.)
 When calculating the nativeURL, allow this to be specified externally, check 
 for a selector nativeURL and call that if available.
 This is for example declared in a Category in this plugin: 
 https://github.com/apache/cordova-plugins/blob/5d8ef21dcbde1f99d60e1b52ae3a3800e4c185d9/local-webserver/src/ios/CDVLocalFileSystem%2BNativeURL.m
 ... which when linked will have the selector available for the File plugin to 
 call.
 This code is part of the local webserver plugin - and it needs the File 
 references to be proxied through a local webserver.
 For example if the FileEntry is to:
 
 file://my/package/folder/Documents/foo.txt
 .. the nativeURL would be, with this new category method, and the local 
 webserver listening to http://localhost:8080:
 http://localhost:8080/local-filesystem/my/package/folder/Documents/foo.txt



--
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-8838) WKWebView iosExec Results in Double Call

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8838:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-ios/pull/136


 WKWebView iosExec Results in Double Call
 

 Key: CB-8838
 URL: https://issues.apache.org/jira/browse/CB-8838
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CordovaJS, CordovaLib, iOS
Affects Versions: 4.0.0
Reporter: Thomas Mouton
Assignee: Shazron Abdullah
 Fix For: 4.0.0

   Original Estimate: 4h
  Remaining Estimate: 4h

 When we invoke the cordova Barcode plugin, it is always called twice!
 I have only looked at the code a short time, but it appears to me that:
 * the first call to Barcode happens, and in iosExec, it gets placed in 
 commandQueue.
 * the first call passes to Objective C world by WKScriptMessageHandler - 
 (void)userContentController:(WKUserContentController*)userContentController 
 didReceiveScriptMessage:(WKScriptMessage*)message
 * this call to Barcode does its thing, completes, and it's javascript 
 response handler code winds through:
 CDVCommandDelegateImpl::sendPluginResult
 CDVCommandDelegateImpl::evalJSHelper
 CDVCommandDelegateImpl::evalJSHelper2
 * in Helper2, the callback is finally passed to a webViewEngine, which 
 processes the Javascript, and returns, on completion, a list of commands 
 remaining in the javascript commandQueue.
 * these commands are queued on the Obj-C side and run in CDVCommandQueue 
 fashion.
 AHA!
 * since the command was persisted in commandQueue before execution, and not 
 removed, it is called again!
 SO
 I moved the enqueue behavior into the branch that excludes bridgeMode === 
 jsToNativeModes.WK_WEBVIEW_BINDING
 This fixes it, but I am not confident its the right solution.
 Do you have any insight into this problem?
 Feedback for my solution?
 A broader or more appropriate venue for the conversation?
 Thanks!
 Alex Mouton



--
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-7428) Enable Swift development of Plugins

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7428:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-ios/pull/133


 Enable Swift development of Plugins
 ---

 Key: CB-7428
 URL: https://issues.apache.org/jira/browse/CB-7428
 Project: Apache Cordova
  Issue Type: New Feature
  Components: iOS
Affects Versions: 3.5.0
Reporter: Erik Jan de Wit
Assignee: Shazron Abdullah
 Fix For: 4.0.0


 For developing plugins it would be nice to be able to use the Swift language. 
 Right now this already works, but one needs to set some Xcode settings by 
 hand:
 * Deployment target needs to be 7.0
 * Add the bridging header file to the 'Swift Compiler - Code Generation' 
 options
 * Add the Swift runtime to the search path (will probably not be needed for 
 iOS8)
 see example plugin https://github.com/edewit/cordova-plugin-hello/tree/swift



--
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-9207) HideKeyboardFormAccessoryBar is not supported in iOS anymore

2015-06-17 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-9207:


 Summary: HideKeyboardFormAccessoryBar is not supported in iOS 
anymore
 Key: CB-9207
 URL: https://issues.apache.org/jira/browse/CB-9207
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Reporter: Shazron Abdullah


Remove it



--
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-9208) InAppBrowser.executeScript interacts strangely with location.hash

2015-06-17 Thread Grant Patterson (JIRA)
Grant Patterson created CB-9208:
---

 Summary: InAppBrowser.executeScript interacts strangely with 
location.hash
 Key: CB-9208
 URL: https://issues.apache.org/jira/browse/CB-9208
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin InAppBrowser
Affects Versions: 5.0.0
 Environment: iOS
Reporter: Grant Patterson


In my loadstart event handler I call executeScript() with a callback. Here is 
what I see:

actual page change: script runs, callback runs
window.location.assign(same page, new hash): nothing runs
click anchor link e.g. href=#newsection: nothing runs
set location.hash = newhash: script runs; callback does not

The last case is the strangest to me. The script runs just fine in this case 
but the callback with the result never happens.

I'm not sure under what conditions a URL fragment change should trigger the 
loadstart event; I would say it should be always, and that does not appear to 
be the case. That is probably a bug.
Worse, though, is running the script but not triggering its callback. This 
could leave some task half-done: the in-app-browser window has had a state 
change, but the code outside the in-app-browser never hears back about it. That 
is almost certainly a bug.



--
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-7428) Enable Swift development of Plugins

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7428:


Github user shazron commented on the pull request:

https://github.com/apache/cordova-ios/pull/133#issuecomment-112976058
  
Auto-closing since it has been merged.


 Enable Swift development of Plugins
 ---

 Key: CB-7428
 URL: https://issues.apache.org/jira/browse/CB-7428
 Project: Apache Cordova
  Issue Type: New Feature
  Components: iOS
Affects Versions: 3.5.0
Reporter: Erik Jan de Wit
Assignee: Shazron Abdullah
 Fix For: 4.0.0


 For developing plugins it would be nice to be able to use the Swift language. 
 Right now this already works, but one needs to set some Xcode settings by 
 hand:
 * Deployment target needs to be 7.0
 * Add the bridging header file to the 'Swift Compiler - Code Generation' 
 options
 * Add the Swift runtime to the search path (will probably not be needed for 
 iOS8)
 see example plugin https://github.com/edewit/cordova-plugin-hello/tree/swift



--
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-9207) HideKeyboardFormAccessoryBar is not supported in iOS anymore

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-9207:
-
Labels: cordova-ios-4.0.x  (was: )

 HideKeyboardFormAccessoryBar is not supported in iOS anymore
 

 Key: CB-9207
 URL: https://issues.apache.org/jira/browse/CB-9207
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Reporter: Shazron Abdullah
  Labels: cordova-ios-4.0.x

 Remove it



--
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-9196) Clean up Medic CLI

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

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

CB-9196 Adding JSHint config for medic. Making medic-log return an error code.
Making medic-clean --exclude repeatable. Making medic-clean take a target
directory. Fixing JSHint-detected errors.


 Clean up Medic CLI
 --

 Key: CB-9196
 URL: https://issues.apache.org/jira/browse/CB-9196
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Medic
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
Priority: Minor
  Labels: improvement, medic
   Original Estimate: 3h
  Remaining Estimate: 3h

 Clean up medic CLI with the following tasks:
 - medic-log should return an error code (but not flunk the build) when it 
 can't get logs
 - medic-clean should take a target argument
 - medic-clean's --exclude argument should be repeatable
 - medic should have JSHint



--
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-9196) Clean up Medic CLI

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9196:


Github user asfgit closed the pull request at:

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


 Clean up Medic CLI
 --

 Key: CB-9196
 URL: https://issues.apache.org/jira/browse/CB-9196
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Medic
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
Priority: Minor
  Labels: improvement, medic
   Original Estimate: 3h
  Remaining Estimate: 3h

 Clean up medic CLI with the following tasks:
 - medic-log should return an error code (but not flunk the build) when it 
 can't get logs
 - medic-clean should take a target argument
 - medic-clean's --exclude argument should be repeatable
 - medic should have JSHint



--
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-9209) Link from old plugin search page to npm search page

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9209:


Github user nikhilkh commented on the pull request:


https://github.com/apache/cordova-registry-web/pull/17#issuecomment-112985415
  
This should only be merged once we have done [DISCUSS] on the new search 
page and got buy off to release.


 Link from old plugin search page to npm search page
 ---

 Key: CB-9209
 URL: https://issues.apache.org/jira/browse/CB-9209
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-8974) objc_msgSend causes EXC_BAD_ACCESS

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-8974:
-
Fix Version/s: (was: 4.0.0)

 objc_msgSend causes EXC_BAD_ACCESS
 --

 Key: CB-8974
 URL: https://issues.apache.org/jira/browse/CB-8974
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
 Environment: iPad 4,5
 ARM-64
 iOS 8.3
 Cordova 4.3.0 (for some reason the affects versions list doesn't show 4.3.0 
 but that's what I'm using:
 jpangburn$ cordova -version
 4.3.0
Reporter: Jesse Pangburn
Assignee: Shazron Abdullah
  Labels: crash

 I'm using the Camera plugin to get an image url, then passing that image url 
 to the File plugin to copy the image to another directory.  I've gotten two 
 crash logs from a user who says the crashes happened immediately after those 
 thing completed (they refer to a thumbnail that would only show if the File 
 plugin made its transfer).
 The crash log has this relevant info:
 Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
 Exception Subtype: KERN_INVALID_ADDRESS at 0x15c87e90
 Triggered by Thread:  0
 Thread 0 name:  Dispatch queue: com.apple.main-thread
 Thread 0 Crashed:
 0   libobjc.A.dylib   0x0001962ffbd0 objc_msgSend + 16
 1   Foundation0x000185bd417c 
 __NSFireDelayedPerform + 420
 2   CoreFoundation0x000184c98128 
 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 24
 3   CoreFoundation0x000184c97dd8 __CFRunLoopDoTimer + 
 884
 4   CoreFoundation0x000184c95824 __CFRunLoopRun + 1368
 5   CoreFoundation0x000184bc12d0 CFRunLoopRunSpecific 
 + 392
 6   GraphicsServices  0x00018e2976f8 GSEventRunModal + 164
 7   UIKit 0x000189786fa8 UIApplicationMain + 
 1484
 8   PCMM  0x0001000aa4f0 main (main.m:32)
 9   libdyld.dylib 0x00019696aa04 start + 0
 This appears to have been reported in 
 https://issues.apache.org/jira/browse/CB-6150  but it says it was fixed in 
 version 3.5 and I'm using 4.3.0.  I checked github and looked at those files 
 for version 4.x and it shows that the changes have not been reverted, so 
 seems it's not the same problem exactly.



--
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-8974) objc_msgSend causes EXC_BAD_ACCESS

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-8974:
-
Component/s: (was: iOS)
 dova

 objc_msgSend causes EXC_BAD_ACCESS
 --

 Key: CB-8974
 URL: https://issues.apache.org/jira/browse/CB-8974
 Project: Apache Cordova
  Issue Type: Bug
  Components: dova
 Environment: iPad 4,5
 ARM-64
 iOS 8.3
 Cordova 4.3.0 (for some reason the affects versions list doesn't show 4.3.0 
 but that's what I'm using:
 jpangburn$ cordova -version
 4.3.0
Reporter: Jesse Pangburn
Assignee: Shazron Abdullah
  Labels: crash
 Fix For: 4.0.0


 I'm using the Camera plugin to get an image url, then passing that image url 
 to the File plugin to copy the image to another directory.  I've gotten two 
 crash logs from a user who says the crashes happened immediately after those 
 thing completed (they refer to a thumbnail that would only show if the File 
 plugin made its transfer).
 The crash log has this relevant info:
 Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
 Exception Subtype: KERN_INVALID_ADDRESS at 0x15c87e90
 Triggered by Thread:  0
 Thread 0 name:  Dispatch queue: com.apple.main-thread
 Thread 0 Crashed:
 0   libobjc.A.dylib   0x0001962ffbd0 objc_msgSend + 16
 1   Foundation0x000185bd417c 
 __NSFireDelayedPerform + 420
 2   CoreFoundation0x000184c98128 
 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 24
 3   CoreFoundation0x000184c97dd8 __CFRunLoopDoTimer + 
 884
 4   CoreFoundation0x000184c95824 __CFRunLoopRun + 1368
 5   CoreFoundation0x000184bc12d0 CFRunLoopRunSpecific 
 + 392
 6   GraphicsServices  0x00018e2976f8 GSEventRunModal + 164
 7   UIKit 0x000189786fa8 UIApplicationMain + 
 1484
 8   PCMM  0x0001000aa4f0 main (main.m:32)
 9   libdyld.dylib 0x00019696aa04 start + 0
 This appears to have been reported in 
 https://issues.apache.org/jira/browse/CB-6150  but it says it was fixed in 
 version 3.5 and I'm using 4.3.0.  I checked github and looked at those files 
 for version 4.x and it shows that the changes have not been reverted, so 
 seems it's not the same problem exactly.



--
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-8974) objc_msgSend causes EXC_BAD_ACCESS

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-8974:
-
Component/s: (was: dova)
 Plugin Camera

 objc_msgSend causes EXC_BAD_ACCESS
 --

 Key: CB-8974
 URL: https://issues.apache.org/jira/browse/CB-8974
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
 Environment: iPad 4,5
 ARM-64
 iOS 8.3
 Cordova 4.3.0 (for some reason the affects versions list doesn't show 4.3.0 
 but that's what I'm using:
 jpangburn$ cordova -version
 4.3.0
Reporter: Jesse Pangburn
Assignee: Shazron Abdullah
  Labels: crash

 I'm using the Camera plugin to get an image url, then passing that image url 
 to the File plugin to copy the image to another directory.  I've gotten two 
 crash logs from a user who says the crashes happened immediately after those 
 thing completed (they refer to a thumbnail that would only show if the File 
 plugin made its transfer).
 The crash log has this relevant info:
 Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
 Exception Subtype: KERN_INVALID_ADDRESS at 0x15c87e90
 Triggered by Thread:  0
 Thread 0 name:  Dispatch queue: com.apple.main-thread
 Thread 0 Crashed:
 0   libobjc.A.dylib   0x0001962ffbd0 objc_msgSend + 16
 1   Foundation0x000185bd417c 
 __NSFireDelayedPerform + 420
 2   CoreFoundation0x000184c98128 
 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 24
 3   CoreFoundation0x000184c97dd8 __CFRunLoopDoTimer + 
 884
 4   CoreFoundation0x000184c95824 __CFRunLoopRun + 1368
 5   CoreFoundation0x000184bc12d0 CFRunLoopRunSpecific 
 + 392
 6   GraphicsServices  0x00018e2976f8 GSEventRunModal + 164
 7   UIKit 0x000189786fa8 UIApplicationMain + 
 1484
 8   PCMM  0x0001000aa4f0 main (main.m:32)
 9   libdyld.dylib 0x00019696aa04 start + 0
 This appears to have been reported in 
 https://issues.apache.org/jira/browse/CB-6150  but it says it was fixed in 
 version 3.5 and I'm using 4.3.0.  I checked github and looked at those files 
 for version 4.x and it shows that the changes have not been reverted, so 
 seems it's not the same problem exactly.



--
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] [Assigned] (CB-8365) Add NSInteger, NSUInteger factory methods to CDVPluginResult

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah reassigned CB-8365:


Assignee: Shazron Abdullah

 Add NSInteger, NSUInteger factory methods to CDVPluginResult
 

 Key: CB-8365
 URL: https://issues.apache.org/jira/browse/CB-8365
 Project: Apache Cordova
  Issue Type: Improvement
  Components: iOS
Reporter: Kevin Hawkins
Assignee: Shazron Abdullah
Priority: Minor
 Fix For: 4.0.0

   Original Estimate: 2m
  Remaining Estimate: 2m

 It would be nice to have the Cocoa-defined integer types as return values 
 from the plugin, especially given that they'll support much larger data for 
 64-bit devices.



--
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] [Assigned] (CB-8087) Add plugin results for NSInteger, NSUInteger

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah reassigned CB-8087:


Assignee: Shazron Abdullah

 Add plugin results for NSInteger, NSUInteger
 

 Key: CB-8087
 URL: https://issues.apache.org/jira/browse/CB-8087
 Project: Apache Cordova
  Issue Type: Improvement
  Components: iOS
Affects Versions: Master
Reporter: Kevin Hawkins
Assignee: Shazron Abdullah
Priority: Minor
 Fix For: 4.0.0

   Original Estimate: 3h
  Remaining Estimate: 3h

 For iOS, it would be nice to have some CDVPluginResult factory method 
 overloads for NSInteger and NSUInteger, as those are generally the 
 best-practice types for interacting with integer values in Objective-C, 
 particularly in the 32-bit vs. 64-bit world.



--
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-8772) ios bin scripts are nonexecutable on Windows

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-8772:
-
Component/s: (was: iOS)

 ios bin scripts are nonexecutable on Windows
 

 Key: CB-8772
 URL: https://issues.apache.org/jira/browse/CB-8772
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI, Windows
Reporter: Edna Morales
  Labels: cordova-ios-4.0.x

 Although the CLI has the ability to add any platform to a project regardless 
 of what OS you are working on, adding the iOS platform on Windows errors out. 
 The iOS create script fails with ENOENT



--
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-9158) InAppBrowser zoomControls are always set to true

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9158:


Github user syndbg commented on the pull request:


https://github.com/apache/cordova-plugin-inappbrowser/pull/104#issuecomment-112974072
  
@purplecabbage Good catch. In the JIRA ticket, unfortunately I've pasted 
the wrong option parameter, `location`, when in fact I meant `zoom`.

This PR fixes `zoom=true` or `zoom=false` not making a difference in the 
android app.

Can we agree on the fact that fixing (in my opinion) non-formatted code, 
even in the iOS section of the plugin, should not be a blocker to merge this 
PR.  


 InAppBrowser zoomControls are always set to true
 

 Key: CB-9158
 URL: https://issues.apache.org/jira/browse/CB-9158
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Latest InAppBrowser 
 https://github.com/apache/cordova-plugin-inappbrowser, any Android device
Reporter: Anton Antonov
  Labels: easyfix, patch

 InAppBrowser does not respect the passed options string to *window.open*.
 *zoom=no* or *zoom=yes* will never make a difference due to source code 
 always assuming it's boolean true.
 Fix is in https://github.com/apache/cordova-plugin-inappbrowser/pull/104
 P.S This is my first issue and patch on Apache JIRA. Feedback is 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] [Resolved] (CB-9184) how can i know what happend

2015-06-17 Thread Jesse MacFadyen (JIRA)

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

Jesse MacFadyen resolved CB-9184.
-
Resolution: Incomplete

This isn't really a defect/issue.
You can debug specific aspects of your code using Visual Studio if you are 
targeting windows. You may also want to have a look at the VS tools for apache 
cordova.
https://www.visualstudio.com/en-us/features/cordova-vs.aspx

 how can i know what happend
 ---

 Key: CB-9184
 URL: https://issues.apache.org/jira/browse/CB-9184
 Project: Apache Cordova
  Issue Type: Bug
  Components: Windows 8
Affects Versions: 3.5.0
 Environment: windows 8.1
Reporter: yanxinyu
Assignee: Jesse MacFadyen
  Labels: run
 Fix For: Master


 i use cordova creat a programe on windows8.1.The first hello programe is 
 success. but when i to creat my own program and run it. it failed. it start 
 and shut down. but i don't know why.it just a simple html use 
 jquery-mobile.how can i to find the error message? now i can't find the error 
 message.
 sorry for my poor english.thanks



--
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-8887) Dashes not allowed in App-ID

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-8887:
--

Dashes should only be disallowed for Windows and Android, not iOS.

 Dashes not allowed in App-ID
 

 Key: CB-8887
 URL: https://issues.apache.org/jira/browse/CB-8887
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: Master
 Environment: Windows 8.1
Reporter: Simon Schwichtenberg
Priority: Critical
  Labels: cordova-ios-4.0.x

 Hi,
 I recently updated to Cordova 5 and I noticed that it is not possible to 
 create projects that contains dashes ( - ) in the App-ID anymore. The message 
 that I get is: App id contains a reserved word, or is not a valid 
 identifier. That is not so nice because the namespace of my iOS provisioning 
 profile contains dashes.
 Best, Simon 



--
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-8728) Plugin File on Windows ignores write position set by seek function

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 5c253baec522a3390105f7f32d7f4b07f86a4e91 in cordova-plugin-file's branch 
refs/heads/master from [~purplecabbage]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=5c253ba ]

Merge branch 'CB-8728' of https://github.com/vldmrrr/cordova-plugin-file


 Plugin File on Windows ignores write position set by seek function
 --

 Key: CB-8728
 URL: https://issues.apache.org/jira/browse/CB-8728
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: Master
 Environment: platfrom windows
Reporter: Vladimir Avdonin

 write operation of FileWriter overwrites completely contents of existing file 
 after write position was set by seek function. Automated tests for plugin 
 only verify the length of writer object, but do not check the actual data 
 written to file.



--
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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 20ab61d22e371c1efc77401532cd4a8440be93c3 in 
cordova-plugin-device-orientation's branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=20ab61d
 ]

CB-9192 Updated version and RELEASENOTES.md for release 1.0.1


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9202) Update git repo in package.json for all plugins to github mirrors

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 437cf3d93a2c0c841d38c6c80472b2ba118f372a in cordova-plugin-camera's 
branch refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=437cf3d 
]

CB-9202 updated repo url to github mirror in package.json


 Update git repo in package.json for all plugins to github mirrors
 -

 Key: CB-9202
 URL: https://issues.apache.org/jira/browse/CB-9202
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugins
Reporter: Steve Gill
Assignee: Steve Gill





--
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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 0e26696fa49498122a40b4677fbc1fe5a270f840 in cordova-plugin-console's 
branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-console.git;h=0e26696 ]

CB-9192 Updated version and RELEASENOTES.md for release 1.0.1


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit d3aeadbc24748175b559799a1e53358a5af57e25 in 
cordova-plugin-battery-status's branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;h=d3aeadb
 ]

CB-9192 Updated version and RELEASENOTES.md for release 1.1.0


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-8728) Plugin File on Windows ignores write position set by seek function

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8728:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-plugin-file/pull/106


 Plugin File on Windows ignores write position set by seek function
 --

 Key: CB-8728
 URL: https://issues.apache.org/jira/browse/CB-8728
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: Master
 Environment: platfrom windows
Reporter: Vladimir Avdonin

 write operation of FileWriter overwrites completely contents of existing file 
 after write position was set by seek function. Automated tests for plugin 
 only verify the length of writer object, but do not check the actual data 
 written to file.



--
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] [Closed] (CB-9194) Add faq page and header on npm search page

2015-06-17 Thread Murat Sutunc (JIRA)

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

Murat Sutunc closed CB-9194.

Resolution: Fixed

 Add faq page and header on npm search page
 --

 Key: CB-9194
 URL: https://issues.apache.org/jira/browse/CB-9194
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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] [Closed] (CB-9164) Show better error message when deploying Windows10 phone emulator

2015-06-17 Thread Murat Sutunc (JIRA)

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

Murat Sutunc closed CB-9164.

Resolution: Fixed

 Show better error message when deploying Windows10 phone emulator
 -

 Key: CB-9164
 URL: https://issues.apache.org/jira/browse/CB-9164
 Project: Apache Cordova
  Issue Type: Bug
  Components: Windows
Reporter: Murat Sutunc
Assignee: Murat Sutunc

 Windows 10 Phone emulator is currently not supported but deployment from VS 
 is possible. We should tell users to use VS instead, until this issue is 
 resolved. 



--
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] [Assigned] (CB-8766) Camera Plug-in Crashes on iOS 8 when opened in Landscape

2015-06-17 Thread Murat Sutunc (JIRA)

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

Murat Sutunc reassigned CB-8766:


Assignee: (was: Murat Sutunc)

 Camera Plug-in Crashes on iOS 8 when opened in Landscape
 

 Key: CB-8766
 URL: https://issues.apache.org/jira/browse/CB-8766
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Affects Versions: 3.5.0
 Environment: iOS 8 on iPhone 6.  Can't reproduce on iPad with iOS 8.  
 Have not tried on other iPhones or iPods with iOS 8.
Reporter: Tim Neil

 On iPhone 6 when using the latest iOS 8 if you have the device in landscape 
 and then invoke the camera API it will crash the app.
 If you have the device in portrait and invoke the camera API it opens fine.  
 It is also fine if you invoke the camera this way and then switch to landscape
 Only seems to happen when you start in landscape.  



--
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] [Closed] (CB-9146) Create a webpage for searching NPM registry

2015-06-17 Thread Murat Sutunc (JIRA)

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

Murat Sutunc closed CB-9146.

Resolution: Fixed

 Create a webpage for searching NPM registry
 ---

 Key: CB-9146
 URL: https://issues.apache.org/jira/browse/CB-9146
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-9206) Add search icon to search box

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9206:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-registry-web/pull/16


 Add search icon to search box
 -

 Key: CB-9206
 URL: https://issues.apache.org/jira/browse/CB-9206
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-8032) Add nativeURL external method support for CDVFileSystem-makeEntryForPath:isDirectory:

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8032:


Github user shazron commented on the pull request:

https://github.com/apache/cordova-ios/pull/119#issuecomment-112975897
  
Auto-closing since 4.0.x method has a transformURL method in the 
CommandDelegate that plugins check


 Add nativeURL external method support for 
 CDVFileSystem-makeEntryForPath:isDirectory:
 --

 Key: CB-8032
 URL: https://issues.apache.org/jira/browse/CB-8032
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Camera, Plugin File
 Environment: iOS
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah

 Right now in CDVFileSystem-makeEntryForPath:isDirectory:, in the 
 NSDictionary that is returned, for the key nativeURL the format is fixed 
 (file:// protocol for a local filesystem reference, and assets-library:/ for 
 a assets library filesystem reference.)
 When calculating the nativeURL, allow this to be specified externally, check 
 for a selector nativeURL and call that if available.
 This is for example declared in a Category in this plugin: 
 https://github.com/apache/cordova-plugins/blob/5d8ef21dcbde1f99d60e1b52ae3a3800e4c185d9/local-webserver/src/ios/CDVLocalFileSystem%2BNativeURL.m
 ... which when linked will have the selector available for the File plugin to 
 call.
 This code is part of the local webserver plugin - and it needs the File 
 references to be proxied through a local webserver.
 For example if the FileEntry is to:
 
 file://my/package/folder/Documents/foo.txt
 .. the nativeURL would be, with this new category method, and the local 
 webserver listening to http://localhost:8080:
 http://localhost:8080/local-filesystem/my/package/folder/Documents/foo.txt



--
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-9209) Link from old plugin search page to npm search page

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9209:


GitHub user muratsu opened a pull request:

https://github.com/apache/cordova-registry-web/pull/17

CB-9209 add link from old page to new

Create a link from old page to new:

![](http://i.imgur.com/c6hAHsD.png)

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

$ git pull https://github.com/MSOpenTech/cordova-registry-web CB-9209

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

https://github.com/apache/cordova-registry-web/pull/17.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 #17


commit bd296cab699214b5ea62fa857b0c5f7eb8260ad6
Author: Murat Sutunc sut...@gmail.com
Date:   2015-06-18T00:07:34Z

CB-9209 add link from old page to new




 Link from old plugin search page to npm search page
 ---

 Key: CB-9209
 URL: https://issues.apache.org/jira/browse/CB-9209
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-9209) Link from old plugin search page to npm search page

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9209:


Github user nikhilkh commented on the pull request:


https://github.com/apache/cordova-registry-web/pull/17#issuecomment-112984913
  
Consider re-wording: Cordova plugin registry is moving to npm. Go the [new 
plugin search page](http://plugins.cordova.io/npm/index.html).

I think we do not need to reference the announcement as you include it in 
the new website already.


 Link from old plugin search page to npm search page
 ---

 Key: CB-9209
 URL: https://issues.apache.org/jira/browse/CB-9209
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-9158) InAppBrowser zoomControls are always set to true

2015-06-17 Thread Anton Antonov (JIRA)

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

Anton Antonov updated CB-9158:
--
Description: 
InAppBrowser does not respect the passed options string to *window.open*.

*zoom=no* or *zoom=yes* will never make a difference due to source code always 
assuming it's boolean true.

Fix is in https://github.com/apache/cordova-plugin-inappbrowser/pull/104


P.S This is my first issue and patch on Apache JIRA. Feedback is appreciated.

  was:
InAppBrowser does not respect the passed options string to *window.open*.

*location=no* or *location=yes* will never make a difference due to source code 
always assuming it's boolean true.

Fix is in https://github.com/apache/cordova-plugin-inappbrowser/pull/104


P.S This is my first issue and patch on Apache JIRA. Feedback is appreciated.


 InAppBrowser zoomControls are always set to true
 

 Key: CB-9158
 URL: https://issues.apache.org/jira/browse/CB-9158
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Latest InAppBrowser 
 https://github.com/apache/cordova-plugin-inappbrowser, any Android device
Reporter: Anton Antonov
  Labels: easyfix, patch

 InAppBrowser does not respect the passed options string to *window.open*.
 *zoom=no* or *zoom=yes* will never make a difference due to source code 
 always assuming it's boolean true.
 Fix is in https://github.com/apache/cordova-plugin-inappbrowser/pull/104
 P.S This is my first issue and patch on Apache JIRA. Feedback is 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] [Updated] (CB-8914) In Xcode, HelloCordova appears as the app name, even though the app name was changed in config.xml

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-8914:
-
Assignee: (was: Shazron Abdullah)

 In Xcode, HelloCordova appears as the app name, even though the app name 
 was changed in config.xml
 

 Key: CB-8914
 URL: https://issues.apache.org/jira/browse/CB-8914
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
 Environment: Mac OS X Yosemite 10.10.3 on MacBook Pro (pre-Retina). 
 cordova -v = 5.0.0. 
 Making iOS version of app. 
 Xcode 6.2.
Reporter: Steve Husting
  Labels: cordova-ios-4.0.x

 After changing config.xml name to Calligraphy, doing cordova prepare ios, 
 and clicking on the app's Calligraphy.xcodeproj file in platforms/ios, Xcode 
 opens up and shows the HelloCordova app name at upper left. 
 Xcode's Product  Clean does not change it. However, the correct name appears 
 under PROJECT and TARGETS. The correct name also appears in 
 /platform/ios/Calligraphy/config.xml. 
 So where is Xcode drawing HelloCordova from?



--
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-9158) InAppBrowser zoomControls are always set to true

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9158:


Github user purplecabbage commented on the pull request:


https://github.com/apache/cordova-plugin-inappbrowser/pull/104#issuecomment-112974712
  
It is a blocker typically.  Modifications should be restricted to resolving 
the issue at hand, or at the bare minimum whitespace/formatting changes should 
be in their own commit.
Reviewing pull requests is enough work without the overhead of having to 
manually sort through what is relevant.


 InAppBrowser zoomControls are always set to true
 

 Key: CB-9158
 URL: https://issues.apache.org/jira/browse/CB-9158
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Latest InAppBrowser 
 https://github.com/apache/cordova-plugin-inappbrowser, any Android device
Reporter: Anton Antonov
  Labels: easyfix, patch

 InAppBrowser does not respect the passed options string to *window.open*.
 *zoom=no* or *zoom=yes* will never make a difference due to source code 
 always assuming it's boolean true.
 Fix is in https://github.com/apache/cordova-plugin-inappbrowser/pull/104
 P.S This is my first issue and patch on Apache JIRA. Feedback is 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-9109) Switch to using .ratignore in cordova repositories

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

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

CB-9109 Switched to using a repository's .ratignore file instead of the 
ratExcludes property inside of coho.


 Switch to using .ratignore in cordova repositories
 --

 Key: CB-9109
 URL: https://issues.apache.org/jira/browse/CB-9109
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Coho
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
  Labels: coho, rat
   Original Estimate: 24h
  Remaining Estimate: 24h

 Move from using ratExcludes in repoutils.js within COHO to using a .ratignore 
 file in each respective repo.



--
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-9109) Switch to using .ratignore in cordova repositories

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9109:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-coho/pull/86


 Switch to using .ratignore in cordova repositories
 --

 Key: CB-9109
 URL: https://issues.apache.org/jira/browse/CB-9109
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Coho
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
  Labels: coho, rat
   Original Estimate: 24h
  Remaining Estimate: 24h

 Move from using ratExcludes in repoutils.js within COHO to using a .ratignore 
 file in each respective repo.



--
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-9209) Link from old plugin search page to npm search page

2015-06-17 Thread Murat Sutunc (JIRA)
Murat Sutunc created CB-9209:


 Summary: Link from old plugin search page to npm search page
 Key: CB-9209
 URL: https://issues.apache.org/jira/browse/CB-9209
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc






--
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-9210) Geolocation tests aren't passing on Android L

2015-06-17 Thread Steve Gill (JIRA)
Steve Gill created CB-9210:
--

 Summary: Geolocation tests aren't passing on Android L
 Key: CB-9210
 URL: https://issues.apache.org/jira/browse/CB-9210
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Geolocation
Reporter: Steve Gill
Assignee: Steve Gill


They pass fine on my older Android. Need to look into what is going on. Testing 
on HTC one M8.



--
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-9202) Update git repo in package.json for all plugins to github mirrors

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 28394c4607abd4acce0f0511845d0532efea48ba in 
cordova-plugin-device-motion's branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-motion.git;h=28394c4
 ]

CB-9202 updated repo url to github mirror in package.json


 Update git repo in package.json for all plugins to github mirrors
 -

 Key: CB-9202
 URL: https://issues.apache.org/jira/browse/CB-9202
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugins
Reporter: Steve Gill
Assignee: Steve Gill





--
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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 9f6764ede5494c1b245fa25971212d1c8f6e2600 in 
cordova-plugin-device-motion's branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-motion.git;h=9f6764e
 ]

CB-9192 Updated version and RELEASENOTES.md for release 1.1.1


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 124ec5540ed6fe284f65665546420ae6d35beace in 
cordova-plugin-device-orientation's branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=124ec55
 ]

CB-9192 Incremented plugin version.


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 940f1e24232954b6c85aae7549c5f2db61ea7f7d in cordova-plugin-contacts's 
branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=940f1e2 
]

CB-9192 Updated version and RELEASENOTES.md for release 1.1.0


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit f2aa14d2c23396074f4fd7bf47a7a7e9ea113cd2 in cordova-plugin-console's 
branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-console.git;h=f2aa14d ]

CB-9192 Incremented plugin version.


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9202) Update git repo in package.json for all plugins to github mirrors

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit b698f3a7b51a77edcf0173b51c1f8eacf6ac7bbc in cordova-plugin-dialogs's 
branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-dialogs.git;h=b698f3a ]

CB-9202 updated repo url to github mirror in package.json


 Update git repo in package.json for all plugins to github mirrors
 -

 Key: CB-9202
 URL: https://issues.apache.org/jira/browse/CB-9202
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugins
Reporter: Steve Gill
Assignee: Steve Gill





--
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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit c28b4dfaefd56ce55b4615b39436ecbfebbdfaa3 in cordova-plugin-dialogs's 
branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-dialogs.git;h=c28b4df ]

CB-9192 Updated version and RELEASENOTES.md for release 1.1.1


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9202) Update git repo in package.json for all plugins to github mirrors

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 8f3f8a8d6633345c8dee630419314a2145eae6c7 in 
cordova-plugin-battery-status's branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;h=8f3f8a8
 ]

CB-9202 updated repo url to github mirror in package.json


 Update git repo in package.json for all plugins to github mirrors
 -

 Key: CB-9202
 URL: https://issues.apache.org/jira/browse/CB-9202
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugins
Reporter: Steve Gill
Assignee: Steve Gill





--
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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 11498404fce82e710cfc40777d8213bf307082ac in cordova-plugin-camera's 
branch refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=1149840 
]

CB-9192 Incremented plugin version.


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit ec0926c1b06ba037ab561873a60dbb8b2ae1ba3e in cordova-plugin-contacts's 
branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=ec0926c 
]

CB-9192 Incremented plugin version.


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9202) Update git repo in package.json for all plugins to github mirrors

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit b3da8484ec56039775c392412264462687997bbc in cordova-plugin-device's 
branch refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=b3da848 
]

CB-9202 updated repo url to github mirror in package.json


 Update git repo in package.json for all plugins to github mirrors
 -

 Key: CB-9202
 URL: https://issues.apache.org/jira/browse/CB-9202
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugins
Reporter: Steve Gill
Assignee: Steve Gill





--
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-9202) Update git repo in package.json for all plugins to github mirrors

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit e47559b0d4331dd970a2bd629430e89e4f4a7525 in cordova-plugin-contacts's 
branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=e47559b 
]

CB-9202 updated repo url to github mirror in package.json


 Update git repo in package.json for all plugins to github mirrors
 -

 Key: CB-9202
 URL: https://issues.apache.org/jira/browse/CB-9202
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugins
Reporter: Steve Gill
Assignee: Steve Gill





--
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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 38c20e71b9cbbc74d11ad08c643390d8eddeb69c in cordova-plugin-device's 
branch refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=38c20e7 
]

CB-9192 Updated version and RELEASENOTES.md for release 1.0.1


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 40b9153d2de7462a32c9f7c7802988903c7084c6 in 
cordova-plugin-device-motion's branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-motion.git;h=40b9153
 ]

CB-9192 Incremented plugin version.


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9202) Update git repo in package.json for all plugins to github mirrors

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 427d49f61297f749b09b971c00dfeedc289c1809 in 
cordova-plugin-device-orientation's branch refs/heads/master from [~stevegill]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=427d49f
 ]

CB-9202 updated repo url to github mirror in package.json


 Update git repo in package.json for all plugins to github mirrors
 -

 Key: CB-9202
 URL: https://issues.apache.org/jira/browse/CB-9202
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugins
Reporter: Steve Gill
Assignee: Steve Gill





--
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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit e8d52ef256121f5445c3d491e296a6979761f4f7 in cordova-plugin-camera's 
branch refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=e8d52ef 
]

CB-9192 Updated version and RELEASENOTES.md for release 1.2.0


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-9192) Plugins Release June 16, 2015

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 1bb4aa11ae638af47d3efe8d6cac53f9a9b5cab1 in cordova-plugin-device's 
branch refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=1bb4aa1 
]

CB-9192 Incremented plugin version.


 Plugins Release June 16, 2015
 -

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

 Following steps at 
 https://github.com/apache/cordova-coho/blob/master/docs/plugins-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-8842) Device motion test failures on Android and iOS

2015-06-17 Thread Nikhil Khandelwal (JIRA)

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

Nikhil Khandelwal resolved CB-8842.
---
Resolution: Fixed

 Device motion test failures on Android and iOS
 --

 Key: CB-8842
 URL: https://issues.apache.org/jira/browse/CB-8842
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin Device Motion
Affects Versions: Master
 Environment: OSX, Windows
Reporter: Dmitry Blotsky
  Labels: android, ios, plugin, plugin-device-motion, test-fail
   Original Estimate: 168h
  Remaining Estimate: 168h

 Test results here: 
 [http://ci.apache.org/builders/cordova-android-osx/builds/275/steps/running-tests/logs/stdio],
  and here: 
 [http://ci.apache.org/builders/cordova-ios/builds/399/steps/running-tests/logs/stdio].
 {noformat}
 cordova-plugin-device-motion-tests.tests  Accelerometer 
 (navigator.accelerometer) getCurrentAcceleration accelerometer.spec.3 success 
 callback should be called with an Acceleration object
 cordova-plugin-device-motion-tests.tests  Accelerometer 
 (navigator.accelerometer) getCurrentAcceleration accelerometer.spec.4 success 
 callback Acceleration object should have (reasonable) values for x, y and z 
 expressed in m/s^2
 cordova-plugin-device-motion-tests.tests  Accelerometer 
 (navigator.accelerometer) getCurrentAcceleration accelerometer.spec.5 success 
 callback Acceleration object should return a recent timestamp
 cordova-plugin-device-motion-tests.tests  Accelerometer 
 (navigator.accelerometer) watchAcceleration accelerometer.spec.7 success 
 callback should be called with an Acceleration object
 cordova-plugin-device-motion-tests.tests  Accelerometer 
 (navigator.accelerometer) watchAcceleration accelerometer.spec.8 success 
 callback Acceleration object should have (reasonable) values for x, y and z 
 expressed in m/s^2
 cordova-plugin-device-motion-tests.tests  Accelerometer 
 (navigator.accelerometer) watchAcceleration accelerometer.spec.9 success 
 callback Acceleration object should return a recent timestamp
 cordova-plugin-device-motion-tests.tests  Accelerometer 
 (navigator.accelerometer) watchAcceleration accelerometer.spec.12 success 
 callback should be preserved and called several times
 cordova-plugin-device-motion-tests.tests  Accelerometer 
 (navigator.accelerometer) clearWatch accelerometer.spec.11 should clear an 
 existing watch
 {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-8498) Camera plugin on windows does not return native URL for photolibrary source

2015-06-17 Thread Vladimir Avdonin (JIRA)

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

Vladimir Avdonin commented on CB-8498:
--

New pull request: https://github.com/apache/cordova-plugin-camera/pull/102

 Camera plugin on windows does not return native URL for photolibrary source
 ---

 Key: CB-8498
 URL: https://issues.apache.org/jira/browse/CB-8498
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Affects Versions: 3.5.0
 Environment: Windows 8.1, platform windows
Reporter: Vladimir Avdonin

 getPicture called with options 
 {
 sourceType: git ss,
 destinationType: Camera.DestinationType.NATIVE_URI
 }
 returns blob: URI. Expected to return native file URI.



--
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-9192) Plugins Release June 16, 2015

2015-06-17 Thread Steve Gill (JIRA)

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

Steve Gill commented on CB-9192:


cordova-plugin-battery-status@1.1.0
* added missing license headers
* CB-7953 Add cordova-plugin-battery-status support for browser platform
* CB-9128 cordova-plugin-battery-status documentation translation: 
cordova-plugin-battery-status
* attempt to fix npm issue

cordova-plugin-camera@1.2.0
* Closing stale pull request: close #84
* Closing stale pull request: close #66
* CB-9128 cordova-plugin-camera documentation translation: cordova-plugin-camera
* Update docs. This closes #100
* attempt to fix npm markdown issue
* CB-8883 fix picture rotation issue
* one more alias
* Fixed some nit white-space issues, aliased a little more
* major refactor : readability
* Patch for CB-8498, this closes #64
* CB-8879 fix stripe issue with correct aspect ratio
* CB-8601 - iOS camera unit tests broken
* CB-7667 iOS8: Handle case where camera is not authorized (closes #49)
* add missing license header

cordova-plugin-console@1.0.1
* move logger.js and console-via-logger.js to common modules, instead of the 
numerous repeats that were there.
* clean up tests, info is below log level so it does not exist by default.
* add a couple tests
* CB-9191 Add basic test
* CB-9128 cordova-plugin-console documentation translation: 
cordova-plugin-console
* attempt to fix npm markdown issue

cordova-plugin-contacts@1.1.0
* CB-9128 cordova-plugin-contacts documentation translation: 
cordova-plugin-contacts
* fix npm md issue
* Add more install text for legacy versions of cordova tools. This closes #60
* CB-9056 Increased timeout of failing tests
* CB-8987: Support for save and remove for Windows 10
* CB-5278: We must close the cursor or we take down the whole app, and the 
debugger doesn't catch it.

cordova-plugin-device@1.0.1
* CB-9128 cordova-plugin-device documentation translation: cordova-plugin-device
* Attempts to corrent npm markdown issue

cordova-plugin-device-motion@1.1.1
* CB-9128 cordova-plugin-device-motion documentation translation: 
cordova-plugin-device-motion
* fix npm md issue
* CB-8842 Return cached values on Android if there is no updates from sensor

cordova-plugin-device-orientation@1.0.1
* CB-9128 cordova-plugin-device-orientation documentation translation: 
cordova-plugin-device-orientation
* fix npm md issue
* Remove console log message from test

cordova-plugin-dialogs@1.1.1
* CB-9128 cordova-plugin-dialogs documentation translation: 
cordova-plugin-dialogs
* fix npm md

cordova-plugin-file@2.1.0
* added missing license header
* CB-9128 cordova-plugin-file documentation translation: cordova-plugin-file
* fix npm md
* CB-8844 Increased timeout for asset tests
* Updated resolveFileSystem.js so it can be parsed by uglifyJS
* CB-8860 cordova-plugin-file documentation translation: cordova-plugin-file
* CB-8792 Fixes reading of json files using readAsText

cordova-plugin-file-transfer@1.2.0
* CB-9128 cordova-plugin-file-transfer documentation translation: 
cordova-plugin-file-transfer
* CB-6503: Null pointer check for headers in upload (This closes #27)
* CB-6503: Allow payload content-types other than multipart/form-data to be 
used for upload
* Fix NoSuchMethodException looking up cookies.
* fix npm md issue
* CB-8951 (wp8) Handle exceptions in download() and upload() again
* [wp8] Relaxed engine version requirement, using reflection to see if methods 
are available
* Check for the existence of Json.net assembly to determin how we deserialize 
our headers.
* relax engine requirement to allow -dev versions
* Remove verbose console log messages
* fix bad commit (mine) for cordova-wp8@4.0.0 engine req
* bump required cordova-wp8 version to 4.0.0
* This closes #80, This closes #12
* fix failing test resulting from overlapping async calls
* CB-8721 Fixes incorrect headers and upload params parsing on wp8
* Replace all slashes in windows path

cordova-plugin-geolocation@1.0.1
* CB-9128 cordova-plugin-geolocation documentation translation: 
cordova-plugin-geolocation
* fix npm md issue
* CB-8845 Updated comment why Android tests are currently pended
* CB-8845 Pended tests for Android
* Add more install text for legacy versions of cordova tools. This closes #36

cordova-plugin-globalization@1.0.1
* added moment.js to ratignore
* added license headers
* Adding .ratignore file.
* CB-9128 cordova-plugin-globalization documentation translation: 
cordova-plugin-globalization
* fix npm md issue

cordova-plugin-inappbrowser@1.0.1
* CB-9128 cordova-plugin-inappbrowser documentation translation: 
cordova-plugin-inappbrowser
* fix npm md issue

cordova-plugin-legacy-whitelist@1.1.0
* CB-9128 cordova-plugin-legacy-whitelist documentation translation: 
cordova-plugin-legacy-whitelist
* fix npm md issue
* Fix compile error introduces by 6a3d2cb3567
* CB-8739 Updated version and RELEASENOTES.md for 

[jira] [Resolved] (CB-9068) FileWriter.write() failure on Lollipop when no ext_sdcard present

2015-06-17 Thread Joe Bowser (JIRA)

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

Joe Bowser resolved CB-9068.

Resolution: Fixed

Well, that's stupid.  Missing filesystems are represented as null, so even 
though the file is written, when it checks to see whether it's public, it hits 
an exception because the sdcard is missing.  

 FileWriter.write() failure on Lollipop when no ext_sdcard present
 -

 Key: CB-9068
 URL: https://issues.apache.org/jira/browse/CB-9068
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin File
Affects Versions: 5.0.0
 Environment: Android Emulator (4.4.2, 5.0.1 and 5.1.1)
 Xperia Sola (with 4.4.4)
 Xperia Z3 Compact (5.0.2)
 
 Cordova 5.0.0 / 5.1.1
 cordova-android 4.0.0 / 4.0.2
Reporter: Tanase Butcaru
Assignee: Joe Bowser
Priority: Critical
  Labels: file, fileWriter, writer

 FileWriter write method fails on android lollipop versions when no external 
 sdcard is present.
 Simple test case:
 {code:javascript}
 function fwriteTest(){
   console.log(START FILE WRITE!!);
   console.log(CDV dataDirectory:  + cordova.file.dataDirectory);
   window.resolveLocalFileSystemURL(cordova.file.dataDirectory, 
 resolveLocalFSUrlWin, resolveLocalFSUrlErr);
   }
   function resolveLocalFSUrlErr(err){ console.log(resolve FS ERR: --  + 
 JSON.stringify(err)); }
   function resolveLocalFSUrlWin(dirEntry){
   console.log(resolve FS WIN!!);
   dirEntry.getFile('fileWriter.txt', { create: true, exclusive: 
 false }, getFileWin, getFileErr);
   }
   function getFileErr(err){ console.log(get file ERR: --  + 
 JSON.stringify(err)); }
   function getFileWin(fileEntry){
   console.log(get file WIN!!);
   fileEntry.createWriter(
   function(writer){
   writer.onwrite = function(evt){
   console.log(Write to file WIN!!);
   alert(ALL GOOD!!);
   };
   writer.onerror = function(err){
   console.log(Write to file FAIL: --  + 
 JSON.stringify(err));
   }
   writer.write(sample text goes hereee);
   },
   function(err){
console.log(create writer ERR: --  + 
 JSON.stringify(err)); 
   }
   );
   }
//run test!
   fwriteTest();
 {code}
 AndroidManifest.xml contains the following permission, so it's all good here:
 {code:xml}uses-permission 
 android:name=android.permission.WRITE_EXTERNAL_STORAGE /{code}
 I have two android devices, different android versions (4.4.4 and 5.0.2) and 
 I have 3 android emulators with android 4.4.2, 5.0.1 and 5.1.1.
 I tested all environments with and without ext_sdcard (for emulators do not 
 enter Size for Sd card option) and here are my results:
 {noformat}
 Android 4.4.4 with  without extSD (XPERIA Sola)
 ==
 LEVEL | TAG  |   TEXT
 ===
 I | chromium | [INFO:CONSOLE(228)] START FILE WRITE!!, source: 
 ...
 
 I | chromium | [INFO:CONSOLE(229)] CDV dataDirectory: 
 file:///data/data/cdv.filewriter.issue/files/, source: ...
 
 W | AssetFilesystem  | Asset manifest not found. Recursive copies and 
 directory listing will be slow.
 
 I | chromium | [INFO:CONSOLE(236)] resolve FS WIN!!, source: 
 ...
 
 I | chromium | [INFO:CONSOLE(243)] get file WIN!!, source: ...
 
 D | TEST | cdvfile://localhost/files/fileWriter.txt: 23
 
 I | chromium | [INFO:CONSOLE(248)] Write to file WIN!!, source: 
 ...
 ANDROID 4.4.2 without sdcard / with sdcard (EMULATOR)
 ==
  same output as XPERIA Sola 
 ANDROID 5.0.2 without extSD (XPERIA Z3 Compact)
 ===
 LEVEL | TAG  |   TEXT
 ===
 I | chromium | [INFO:CONSOLE(228)] START FILE WRITE!!, source: 
 ...
 ---
 I | chromium | [INFO:CONSOLE(229)] CDV dataDirectory: 
 file:///data/data/cdv.filewriter.issue/files/, source: ...
 ---
 W | AssetFilesystem  | Asset manifest not found. Recursive copies and 
 directory listing will be slow.
 

[jira] [Commented] (CB-9206) Add search icon to search box

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 037c7f87bed89f00ee265820673c54bff2bd62e0 in cordova-registry-web's 
branch refs/heads/master from [~muratsu]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-registry-web.git;h=037c7f8 ]

CB-9206 add search icon to search box


 Add search icon to search box
 -

 Key: CB-9206
 URL: https://issues.apache.org/jira/browse/CB-9206
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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-9163) Make engines error look less nasty

2015-06-17 Thread Steve Gill (JIRA)

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

Steve Gill commented on CB-9163:


I think the bigger issue here is that this stops automated plugin install. 
Cordova-lib should leave a nice warning message and skip instead of error and 
exit when the supported platform version isn't available. 

 Make engines error look less nasty
 --

 Key: CB-9163
 URL: https://issues.apache.org/jira/browse/CB-9163
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaLib, Plugin Whitelist
 Environment: iOS
Reporter: Shazron Abdullah
  Labels: cordova-ios-4.0.x

 When installing the cordova-plugin-whitelist plugin (from master), and it 
 doesn't fulfill the engine requirement, you get a scary error which is 
 harmless.
 {code}
 $ cordova plugin add 
 https://github.com/apache/cordova-plugin-whitelist.git#master
 Fetching plugin https://github.com/apache/cordova-plugin-whitelist.git; via 
 git clone
 Repository https://github.com/apache/cordova-plugin-whitelist.git; checked 
 out to git ref master.
 Installing cordova-plugin-whitelist for android
 Installing cordova-plugin-whitelist for ios
 Failed to install 'cordova-plugin-whitelist':CordovaError: Plugin doesn't 
 support this project's cordova-ios version. cordova-ios: 3.8.0, failed 
 version requirement: =4.0.0-dev
 at checkEngines 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/src/plugman/install.js:119:29)
 at 
 /Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/src/plugman/install.js:296:16
 at _fulfilled 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:787:54)
 at self.promiseDispatch.done 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:816:30)
 at Promise.promise.promiseDispatch 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:749:13)
 at 
 /Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:557:44
 at flush 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
 at process._tickCallback (node.js:419:13)
 Plugin doesn't support this project's cordova-ios version. cordova-ios: 
 3.8.0, failed version requirement: =4.0.0-dev
 {code}
 Change it to not have the stack-trace, and have a friendlier output. If you 
 have the Android platform added, it succeeds in installing it also, but not 
 sure if its because the platform tag appears first in plugin.xml (check).



--
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-9203) iOS unit-tests should use tmp instead of same folder

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-9203.
--
Resolution: Fixed

 iOS unit-tests should use tmp instead of same folder
 

 Key: CB-9203
 URL: https://issues.apache.org/jira/browse/CB-9203
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 4.0.0


 Using a designated build folder screws up jshint when running 'npm test' if 
 the build folder was not removed properly



--
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-9163) Make engines error look less nasty

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit d7f8ebdec56a8b92997ba0458eb31139ab608e10 in cordova-lib's branch 
refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=d7f8ebd ]

CB-9163 when engine check isn't satisfied, skip it


 Make engines error look less nasty
 --

 Key: CB-9163
 URL: https://issues.apache.org/jira/browse/CB-9163
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaLib, Plugin Whitelist
 Environment: iOS
Reporter: Shazron Abdullah
  Labels: cordova-ios-4.0.x

 When installing the cordova-plugin-whitelist plugin (from master), and it 
 doesn't fulfill the engine requirement, you get a scary error which is 
 harmless.
 {code}
 $ cordova plugin add 
 https://github.com/apache/cordova-plugin-whitelist.git#master
 Fetching plugin https://github.com/apache/cordova-plugin-whitelist.git; via 
 git clone
 Repository https://github.com/apache/cordova-plugin-whitelist.git; checked 
 out to git ref master.
 Installing cordova-plugin-whitelist for android
 Installing cordova-plugin-whitelist for ios
 Failed to install 'cordova-plugin-whitelist':CordovaError: Plugin doesn't 
 support this project's cordova-ios version. cordova-ios: 3.8.0, failed 
 version requirement: =4.0.0-dev
 at checkEngines 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/src/plugman/install.js:119:29)
 at 
 /Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/src/plugman/install.js:296:16
 at _fulfilled 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:787:54)
 at self.promiseDispatch.done 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:816:30)
 at Promise.promise.promiseDispatch 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:749:13)
 at 
 /Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:557:44
 at flush 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
 at process._tickCallback (node.js:419:13)
 Plugin doesn't support this project's cordova-ios version. cordova-ios: 
 3.8.0, failed version requirement: =4.0.0-dev
 {code}
 Change it to not have the stack-trace, and have a friendlier output. If you 
 have the Android platform added, it succeeds in installing it also, but not 
 sure if its because the platform tag appears first in plugin.xml (check).



--
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-9163) Make engines error look less nasty

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit b6727ba9e465a733ce07ac222b17b46ab975f714 in cordova-lib's branch 
refs/heads/master from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=b6727ba ]

CB-9163 fixed failing tests


 Make engines error look less nasty
 --

 Key: CB-9163
 URL: https://issues.apache.org/jira/browse/CB-9163
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaLib, Plugin Whitelist
 Environment: iOS
Reporter: Shazron Abdullah
  Labels: cordova-ios-4.0.x

 When installing the cordova-plugin-whitelist plugin (from master), and it 
 doesn't fulfill the engine requirement, you get a scary error which is 
 harmless.
 {code}
 $ cordova plugin add 
 https://github.com/apache/cordova-plugin-whitelist.git#master
 Fetching plugin https://github.com/apache/cordova-plugin-whitelist.git; via 
 git clone
 Repository https://github.com/apache/cordova-plugin-whitelist.git; checked 
 out to git ref master.
 Installing cordova-plugin-whitelist for android
 Installing cordova-plugin-whitelist for ios
 Failed to install 'cordova-plugin-whitelist':CordovaError: Plugin doesn't 
 support this project's cordova-ios version. cordova-ios: 3.8.0, failed 
 version requirement: =4.0.0-dev
 at checkEngines 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/src/plugman/install.js:119:29)
 at 
 /Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/src/plugman/install.js:296:16
 at _fulfilled 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:787:54)
 at self.promiseDispatch.done 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:816:30)
 at Promise.promise.promiseDispatch 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:749:13)
 at 
 /Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:557:44
 at flush 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
 at process._tickCallback (node.js:419:13)
 Plugin doesn't support this project's cordova-ios version. cordova-ios: 
 3.8.0, failed version requirement: =4.0.0-dev
 {code}
 Change it to not have the stack-trace, and have a friendlier output. If you 
 have the Android platform added, it succeeds in installing it also, but not 
 sure if its because the platform tag appears first in plugin.xml (check).



--
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-8804) https://github.com/apache/cordova-plugin-camera#android-quirks

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8804:


Github user stevengill commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/97#issuecomment-112943279
  
Sounds good. Thanks for the input @nikhilkh 


 https://github.com/apache/cordova-plugin-camera#android-quirks
 --

 Key: CB-8804
 URL: https://issues.apache.org/jira/browse/CB-8804
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugin Camera
 Environment: Android
Reporter: Serge Huijben

 Android Quirks
 Android uses intents to launch the camera activity on the device to capture 
 images, and on phones with low memory, the Cordova activity may be killed. In 
 this scenario, the image may not appear when the Cordova activity is restored.
 It can be solved bij implementing this PR: 
 https://github.com/apache/cordova-plugin-camera/pull/97



--
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-9109) Switch to using .ratignore in cordova repositories

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9109:


Github user stevengill commented on the pull request:

https://github.com/apache/cordova-coho/pull/86#issuecomment-112943481
  
LGTM


 Switch to using .ratignore in cordova repositories
 --

 Key: CB-9109
 URL: https://issues.apache.org/jira/browse/CB-9109
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Coho
Reporter: Dmitry Blotsky
Assignee: Dmitry Blotsky
  Labels: coho, rat
   Original Estimate: 24h
  Remaining Estimate: 24h

 Move from using ratExcludes in repoutils.js within COHO to using a .ratignore 
 file in each respective repo.



--
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-8498) Camera plugin on windows does not return native URL for photolibrary source

2015-06-17 Thread Vladimir Avdonin (JIRA)

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

Vladimir Avdonin reopened CB-8498:
--

The problem is still present in current code in function 
takePictureFromFileWindows, as noted in last comment. The same fix shall be 
applied here 
https://github.com/apache/cordova-plugin-camera/blob/master/src/windows/CameraProxy.js#L270

 Camera plugin on windows does not return native URL for photolibrary source
 ---

 Key: CB-8498
 URL: https://issues.apache.org/jira/browse/CB-8498
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Affects Versions: 3.5.0
 Environment: Windows 8.1, platform windows
Reporter: Vladimir Avdonin

 getPicture called with options 
 {
 sourceType: git ss,
 destinationType: Camera.DestinationType.NATIVE_URI
 }
 returns blob: URI. Expected to return native file URI.



--
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-9203) iOS unit-tests should use tmp instead of same folder

2015-06-17 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-9203:
-
Summary: iOS unit-tests should use tmp instead of same folder  (was: iOS 
unit-tests use tmp instead of same folder)

 iOS unit-tests should use tmp instead of same folder
 

 Key: CB-9203
 URL: https://issues.apache.org/jira/browse/CB-9203
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 4.0.0


 Using a designated build folder screws up jshint when running 'npm test' if 
 the build folder was not removed properly



--
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-9204) Add mouseover to more button

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit a89be5920d75c6b0e4edda065e47e280d65f9186 in cordova-registry-web's 
branch refs/heads/master from [~rakatyal]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-registry-web.git;h=a89be59 ]

CB-9204 Adding mouseover to more button


 Add mouseover to more button
 

 Key: CB-9204
 URL: https://issues.apache.org/jira/browse/CB-9204
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Raghav
   Original Estimate: 24h
  Remaining Estimate: 24h

 Make more button look clickable



--
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-9203) iOS unit-tests should use tmp instead of same folder

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit 9f249510ccd6c0509059e2093bf1f2f451e82737 in cordova-ios's branch 
refs/heads/4.0.x from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=9f24951 ]

CB-9203 - iOS unit-tests should use tmp instead of same folder


 iOS unit-tests should use tmp instead of same folder
 

 Key: CB-9203
 URL: https://issues.apache.org/jira/browse/CB-9203
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 4.0.0


 Using a designated build folder screws up jshint when running 'npm test' if 
 the build folder was not removed properly



--
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-8954) Update platform check_reqs script to return structured result to 'requirements' command

2015-06-17 Thread ASF subversion and git services (JIRA)

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

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

Commit f9c6249f45dfdf71fd5346a549318d5c9ee335d9 in cordova-ios's branch 
refs/heads/4.0.x from [~vladimir.kotikov]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=f9c6249 ]

CB-8954 Adds `requirements` command support to check_reqs module


 Update platform check_reqs script to return structured result to 
 'requirements' command
 ---

 Key: CB-8954
 URL: https://issues.apache.org/jira/browse/CB-8954
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, iOS, Windows, WP8
Reporter: Vladimir Kotikov
Assignee: Vladimir Kotikov

 Since {{requirements}} LIB method assumes that underlying platform script 
 will be {{require}}d instead of spawning child process and capturing output, 
 we need to modify these scripts to provide method that will be called for 
 getting current requirements status.



--
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-9206) Add search icon to search box

2015-06-17 Thread Murat Sutunc (JIRA)
Murat Sutunc created CB-9206:


 Summary: Add search icon to search box
 Key: CB-9206
 URL: https://issues.apache.org/jira/browse/CB-9206
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc






--
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-9204) Add mouseover to more button

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9204:


GitHub user rakatyal opened a pull request:

https://github.com/apache/cordova-registry-web/pull/15

CB-9204 Adding mouseover to more button



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

$ git pull https://github.com/rakatyal/cordova-registry-web raghav/click

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

https://github.com/apache/cordova-registry-web/pull/15.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 #15


commit a89be5920d75c6b0e4edda065e47e280d65f9186
Author: Raghav Katyal rakat...@microsoft.com
Date:   2015-06-17T21:09:51Z

CB-9204 Adding mouseover to more button




 Add mouseover to more button
 

 Key: CB-9204
 URL: https://issues.apache.org/jira/browse/CB-9204
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Raghav
   Original Estimate: 24h
  Remaining Estimate: 24h

 Make more button look clickable



--
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-9204) Add mouseover to more button

2015-06-17 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9204:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-registry-web/pull/15


 Add mouseover to more button
 

 Key: CB-9204
 URL: https://issues.apache.org/jira/browse/CB-9204
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Raghav
   Original Estimate: 24h
  Remaining Estimate: 24h

 Make more button look clickable



--
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-9205) Whitelist launch-external setting does nothing

2015-06-17 Thread Steve Hull (JIRA)
Steve Hull created CB-9205:
--

 Summary: Whitelist launch-external setting does nothing
 Key: CB-9205
 URL: https://issues.apache.org/jira/browse/CB-9205
 Project: Apache Cordova
  Issue Type: Bug
Affects Versions: 3.8.0
 Environment: OSX 10.10
Cordova 3.8.0
iOS 8.3
Reporter: Steve Hull


according to [cordova 
docs|http://cordova.apache.org/docs/en/4.0.0/guide_appdev_whitelist_index.md.html#external-application-whitelist],
 you should be able to specify in the config file which urls will open in an 
external browser by setting:

{{access origin=http://example.com/*; launch-external=yes /}}

However this does nothing.

I've looked into the definition of {{shouldStartLoadWithRequest}}, and it does 
indeed have a line near the bottom that would load the url in the external 
system browser ({{[[UIApplication sharedApplication] openURL:url]}}), however 
it appears that it would be impossible for this line to be executed as long as 
the protocol is {{http}} or {{https}}.

I'm not sure what the correct way is to address this, however it seems that 
old versions of the docs should be updated to reflect that {{launch-external}} 
does not do anything and maybe we could start paying attention to that config 
attribute going forward.



--
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-9163) Make engines error look less nasty

2015-06-17 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-9163.

Resolution: Fixed
  Assignee: Steve Gill

Fixed. Nicer output and plugin gets skipped instead of throwing an error when 
engine check not met. 

 Make engines error look less nasty
 --

 Key: CB-9163
 URL: https://issues.apache.org/jira/browse/CB-9163
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaLib, Plugin Whitelist
 Environment: iOS
Reporter: Shazron Abdullah
Assignee: Steve Gill
  Labels: cordova-ios-4.0.x

 When installing the cordova-plugin-whitelist plugin (from master), and it 
 doesn't fulfill the engine requirement, you get a scary error which is 
 harmless.
 {code}
 $ cordova plugin add 
 https://github.com/apache/cordova-plugin-whitelist.git#master
 Fetching plugin https://github.com/apache/cordova-plugin-whitelist.git; via 
 git clone
 Repository https://github.com/apache/cordova-plugin-whitelist.git; checked 
 out to git ref master.
 Installing cordova-plugin-whitelist for android
 Installing cordova-plugin-whitelist for ios
 Failed to install 'cordova-plugin-whitelist':CordovaError: Plugin doesn't 
 support this project's cordova-ios version. cordova-ios: 3.8.0, failed 
 version requirement: =4.0.0-dev
 at checkEngines 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/src/plugman/install.js:119:29)
 at 
 /Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/src/plugman/install.js:296:16
 at _fulfilled 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:787:54)
 at self.promiseDispatch.done 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:816:30)
 at Promise.promise.promiseDispatch 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:749:13)
 at 
 /Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:557:44
 at flush 
 (/Users/shaz/Documents/Git/Apache/cordova-lib/cordova-lib/node_modules/q/q.js:108:17)
 at process._tickCallback (node.js:419:13)
 Plugin doesn't support this project's cordova-ios version. cordova-ios: 
 3.8.0, failed version requirement: =4.0.0-dev
 {code}
 Change it to not have the stack-trace, and have a friendlier output. If you 
 have the Android platform added, it succeeds in installing it also, but not 
 sure if its because the platform tag appears first in plugin.xml (check).



--
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] [Closed] (CB-9206) Add search icon to search box

2015-06-17 Thread Murat Sutunc (JIRA)

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

Murat Sutunc closed CB-9206.

Resolution: Fixed

 Add search icon to search box
 -

 Key: CB-9206
 URL: https://issues.apache.org/jira/browse/CB-9206
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Murat Sutunc
Assignee: Murat Sutunc





--
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



  1   2   >