[jira] [Commented] (CB-7983) volumedownbutton volumeupbutton in Android Supported but not mentioned in cordova-docs

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7983:


GitHub user kant2002 opened a pull request:

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

CB-7983 Indicate that volume up and volume down button events supported on 
Android



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

$ git pull https://github.com/kant2002/cordova-docs CB-7983

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

https://github.com/apache/cordova-docs/pull/255.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 #255


commit 3f20dc34f33b3415d28271d704e02dc1cbdaf90a
Author: Andrey Kurdyumov kant2...@gmail.com
Date:   2015-01-07T09:49:35Z

Indicate that volume up and volume down button events supported on Android




 volumedownbutton volumeupbutton in Android Supported but not mentioned in 
 cordova-docs
 --

 Key: CB-7983
 URL: https://issues.apache.org/jira/browse/CB-7983
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
 Environment: mobilespec 3.6.3 version on Android 4.4.3 and Android 
 4.0.4 versions and these events work fine
Reporter: Pavankumar Joshi
Priority: Minor
  Labels: documentation

 I have a question regarding volumeup and volumedown events on Android 
 platform. These 2 events work fine on Android platform.
 I am currently testing mobilespec 3.6.3 version on Android 4.4.3 and Android 
 4.0.4 versions and these events work fine.
 But the latest cordova-docs mentions that these 2 events are only supported 
 on Blackberry platform. Is it deliberately not mentioned in docs or Should 
 the docs be updated and platform Android mentioned in the supported platform 
 for these 2 events?



--
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-4674) (Docs) FileTransfer: description for upload() success callback is wrong

2015-01-07 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov resolved CB-4674.
--
Resolution: Fixed

Already implemented

 (Docs) FileTransfer: description for upload() success callback is wrong
 ---

 Key: CB-4674
 URL: https://issues.apache.org/jira/browse/CB-4674
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs, Plugin File Transfer
Affects Versions: 2.9.0
Reporter: Shingo Toda
Assignee: Michael Brooks
Priority: Minor

 In description of parameter for FileTransfer.upload method, it is said that 
 _Metadata_ object is passed to specified success callback function. But I 
 think _FileUploadResult_ object is passed.
 {quote}
 h2.upload
 h3.Parameters:
 * *filePath*: Full path of the file on the device.
 * *server*: URL of the server to receive the file, as encoded by encodeURI().
 * *successCallback*: A callback that is passed a _Metadata_ object. (Function)
 {quote}



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

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



[jira] [Closed] (CB-4674) (Docs) FileTransfer: description for upload() success callback is wrong

2015-01-07 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov closed CB-4674.

Assignee: (was: Michael Brooks)

Done

 (Docs) FileTransfer: description for upload() success callback is wrong
 ---

 Key: CB-4674
 URL: https://issues.apache.org/jira/browse/CB-4674
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs, Plugin File Transfer
Affects Versions: 2.9.0
Reporter: Shingo Toda
Priority: Minor

 In description of parameter for FileTransfer.upload method, it is said that 
 _Metadata_ object is passed to specified success callback function. But I 
 think _FileUploadResult_ object is passed.
 {quote}
 h2.upload
 h3.Parameters:
 * *filePath*: Full path of the file on the device.
 * *server*: URL of the server to receive the file, as encoded by encodeURI().
 * *successCallback*: A callback that is passed a _Metadata_ object. (Function)
 {quote}



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

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



[jira] [Resolved] (CB-4664) FileWriter example code is incorrect

2015-01-07 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov resolved CB-4664.
--
Resolution: Fixed

Not applicable anymore, since all implementer API is W3C and all examples is on 
HTML5Rocks.com

 FileWriter example code is incorrect
 

 Key: CB-4664
 URL: https://issues.apache.org/jira/browse/CB-4664
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs, Plugin File
Affects Versions: 2.9.0
Reporter: Peter
Assignee: Michael Brooks
Priority: Minor

 In the File API guide it seems almost all of the *FileWriter* example code is 
 incorrect for the error callbacks.
 For example,
 * Seek Quick Example - evt should be error?
 {code}
 var fail = function(evt) {
 console.log(error.code);
 };
 {code}
 * Truncate Quick Example - evt should be error?
 {code}
 var fail = function(evt) {
 console.log(error.code);
 };
 {code}
 * Write Quick Example - evt should be error?
 {code}
 var fail = function(evt) {
 console.log(error.code);
 };
 {code}
 * Binary Write Quick Example - evt should be error?
 {code}
 var fail = function(evt) {
 console.log(error.code);
 };
 {code}
 * Append Quick Example - evt should be error?
 {code}
 var fail = function(evt) {
 console.log(error.code);
 };
 {code}
 * Abort Quick Example - evt should be error?
 {code}
 var fail = function(evt) {
 console.log(error.code);
 };
 {code}
 ---
 (similar to CB-4648)
 Ref: 
 http://cordova.apache.org/docs/en/3.0.0/cordova_file_file.md.html#FileWriter



--
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-4641) Constructor of ContactFindOptions should be documented.

2015-01-07 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov commented on CB-4641:
--

Still an issue. 
See https://github.com/apache/cordova-plugin-contacts/blob/master/doc/index.md 
for the documentation of that object.
Docs about object is scattered across whole documentation.

 Constructor of ContactFindOptions should be documented.
 ---

 Key: CB-4641
 URL: https://issues.apache.org/jira/browse/CB-4641
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs, Plugin Contacts
Affects Versions: 2.9.0
Reporter: Shingo Toda
Assignee: Michael Brooks
Priority: Minor

 Constructor method of ContactFindOptions is not documented but is exposed in 
 user code. It should be documented, which will help users a lot.
 {code}
 /**
  * ContactFindOptions.
  * @constructor
  * @param filter used to match contacts against
  * @param multiple boolean used to determine if more than one contact should 
 be returned
  */
 var ContactFindOptions = function(filter, multiple)
 {code}



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

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



[jira] [Commented] (CB-5116) Link to config.xml guide broken on Android Configuration guide

2015-01-07 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov commented on CB-5116:
--

Also Amazon Fire OS and Blackberry 10

 Link to config.xml guide broken on Android Configuration guide
 --

 Key: CB-5116
 URL: https://issues.apache.org/jira/browse/CB-5116
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Affects Versions: 3.1.0
Reporter: Mike Billau
Priority: Minor

 When on the Android Configuration Guide, there are links to the Config.xml 
 guide but the link is broken:
 http://cordova.apache.org/docs/en/edge/guide_platforms_android_config.md.html#Android%20Configuration



--
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-5116) Link to config.xml guide broken on Android Configuration guide

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-5116:


GitHub user kant2002 opened a pull request:

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

CB-5116: Fix links

Links to configuration description page fixed.

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

$ git pull https://github.com/kant2002/cordova-docs CB-5116

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

https://github.com/apache/cordova-docs/pull/256.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 #256


commit 3d7b1ad7686b7ab1afcea0128a1176b83ac3ef53
Author: Andrey Kurdyumov kant2...@gmail.com
Date:   2015-01-07T10:10:13Z

Fix links

Links to configuration description page fixed.




 Link to config.xml guide broken on Android Configuration guide
 --

 Key: CB-5116
 URL: https://issues.apache.org/jira/browse/CB-5116
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Affects Versions: 3.1.0
Reporter: Mike Billau
Priority: Minor

 When on the Android Configuration Guide, there are links to the Config.xml 
 guide but the link is broken:
 http://cordova.apache.org/docs/en/edge/guide_platforms_android_config.md.html#Android%20Configuration



--
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-8021) httpMethod option in FileUploadOptions is not indicated in the documentation.

2015-01-07 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov resolved CB-8021.
--
Resolution: Fixed

Already merged

 httpMethod option in FileUploadOptions is not indicated in the documentation.
 -

 Key: CB-8021
 URL: https://issues.apache.org/jira/browse/CB-8021
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs, Plugin File Transfer
Affects Versions: 4.0.0
 Environment: Android, ios
Reporter: Venkata Kiran
Priority: Trivial

 httpMethod option in FileUploadOptions is not indicated in the documentation, 
 while it is referred to in javascript layer and also in the Android code.
 https://github.com/apache/cordova-plugin-file-transfer/blob/master/doc/index.md



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

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



[jira] [Created] (CB-8259) Report error when generation for language failed

2015-01-07 Thread Andrey Kurdyumov (JIRA)
Andrey Kurdyumov created CB-8259:


 Summary: Report error when generation for language failed
 Key: CB-8259
 URL: https://issues.apache.org/jira/browse/CB-8259
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Andrey Kurdyumov


When generating multiple languages don't stop when any error happens in single 
language generation.
Generator should report error and move forward with next language



--
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-8246) Improve docs generation time

2015-01-07 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov resolved CB-8246.
--
Resolution: Fixed

Implemented

 Improve docs generation time
 

 Key: CB-8246
 URL: https://issues.apache.org/jira/browse/CB-8246
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Reporter: Andrey Kurdyumov
Assignee: Andrey Kurdyumov

 Current docs generation time could be improved if don't process images as 
 HTML files.
 In AddTitle and TableOfContent steps processed all files, not only HTML files.
 By removing check, generation process could be speed up by ~30%. On my PC 
 full generation time went down from 1584 sec to  sec.



--
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-6790) Docs - Fix header licenses (Apache RAT report)

2015-01-07 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov resolved CB-6790.
--
Resolution: Fixed

Already fixed.

 Docs - Fix header licenses (Apache RAT report)
 --

 Key: CB-6790
 URL: https://issues.apache.org/jira/browse/CB-6790
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Docs
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 172 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./README.md
   ./docs/de/3.1.0/config.json
   ./docs/de/3.4.0/config.json
   ./docs/de/3.4.0/cordova/plugins/pluginapis.md
   ./docs/de/3.4.0/guide/platforms/amazonfireos/index.md
   ./docs/de/3.4.0/guide/support/index.md
   ./docs/de/3.5.0/config.json
   ./docs/de/3.5.0/cordova/plugins/pluginapis.md
   ./docs/de/3.5.0/guide/platforms/amazonfireos/index.md
   ./docs/de/3.5.0/guide/support/index.md
   ./docs/de/edge/config.json
   ./docs/de/edge/cordova/plugins/pluginapis.md
   ./docs/de/edge/guide/appdev/security/index.md
   ./docs/de/edge/guide/next/index.md
   ./docs/de/edge/guide/platforms/amazonfireos/index.md
   ./docs/de/edge/guide/platforms/wp8/vmware.md
   ./docs/de/edge/guide/support/index.md
   ./docs/en/1.5.0/config.json
   ./docs/en/1.6.0/config.json
   ./docs/en/1.6.1/config.json
   ./docs/en/1.7.0/config.json
   ./docs/en/1.8.0/config.json
   ./docs/en/1.8.1/config.json
   ./docs/en/1.9.0/config.json
   ./docs/en/2.0.0/config.json
   ./docs/en/2.1.0/config.json
   ./docs/en/2.2.0/config.json
   ./docs/en/2.3.0/config.json
   ./docs/en/2.4.0/config.json
   ./docs/en/2.5.0/config.json
   ./docs/en/2.6.0/config.json
   ./docs/en/2.7.0/config.json
   ./docs/en/2.8.0/config.json
   ./docs/en/2.9.0/config.json
   ./docs/en/3.0.0/config.json
   ./docs/en/3.1.0/config.json
   ./docs/en/3.2.0/config.json
   ./docs/en/3.3.0/config.json
   ./docs/en/3.4.0/config.json
   ./docs/en/3.5.0/config.json
   ./docs/en/3.5.0/guide/next/index.md
   ./docs/en/edge/config.json
   ./docs/en/edge/guide/next/index.md
   ./docs/es/3.1.0/config.json
   ./docs/es/3.4.0/config.json
   ./docs/es/3.5.0/config.json
   ./docs/es/edge/config.json
   ./docs/es/edge/guide/next/index.md
   ./docs/fr/3.1.0/config.json
   ./docs/fr/3.1.0/config.json~
   ./docs/fr/3.4.0/config.json
   ./docs/fr/3.4.0/config.json~
   ./docs/fr/3.4.0/cordova/plugins/pluginapis.md
   ./docs/fr/3.4.0/guide/platforms/amazonfireos/index.md
   ./docs/fr/3.4.0/guide/support/index.md
   ./docs/fr/3.5.0/config.json
   ./docs/fr/3.5.0/config.json~
   ./docs/fr/3.5.0/cordova/plugins/pluginapis.md
   ./docs/fr/3.5.0/guide/platforms/amazonfireos/index.md
   ./docs/fr/3.5.0/guide/platforms/wp8/vmware.md
   ./docs/fr/3.5.0/guide/support/index.md
   ./docs/fr/edge/config.json
   ./docs/fr/edge/config.json~
   ./docs/fr/edge/cordova/plugins/pluginapis.md
   ./docs/fr/edge/guide/appdev/security/index.md
   ./docs/fr/edge/guide/next/index.md
   ./docs/fr/edge/guide/platforms/amazonfireos/index.md
   ./docs/fr/edge/guide/platforms/wp8/vmware.md
   ./docs/fr/edge/guide/support/index.md
   ./docs/it/3.1.0/config.json
   ./docs/it/3.4.0/config.json
   ./docs/it/3.4.0/cordova/plugins/pluginapis.md
   ./docs/it/3.4.0/guide/platforms/amazonfireos/index.md
   ./docs/it/3.4.0/guide/support/index.md
   ./docs/it/3.5.0/config.json
   ./docs/it/3.5.0/cordova/plugins/pluginapis.md
   ./docs/it/3.5.0/guide/platforms/amazonfireos/index.md
   ./docs/it/3.5.0/guide/support/index.md
   ./docs/it/edge/config.json
   ./docs/it/edge/cordova/plugins/pluginapis.md
   ./docs/it/edge/guide/appdev/security/index.md
   ./docs/it/edge/guide/next/index.md
   ./docs/it/edge/guide/platforms/amazonfireos/index.md
   ./docs/it/edge/guide/platforms/wp8/vmware.md
   ./docs/it/edge/guide/support/index.md
   ./docs/ja/1.7.0/config.json
   ./docs/ja/1.8.1/config.json
   ./docs/ja/1.9.0/config.json
   ./docs/ja/2.0.0/config.json
   ./docs/ja/2.1.0/config.json
   ./docs/ja/2.2.0/config.json
   ./docs/ja/3.1.0/config.json
   ./docs/ja/3.4.0/config.json
   ./docs/ja/3.5.0/config.json
   ./docs/ja/edge/config.json
   ./docs/ja/edge/guide/next/index.md
   ./docs/ko/2.0.0/config.json
   ./docs/ko/2.0.0/cordova/connection/sedrJrM4w
   ./docs/ko/2.0.0/cordova/file/fileentry/sedvxcPGu
   ./docs/ko/3.1.0/config.json
   ./docs/ko/3.4.0/config.json
   ./docs/ko/3.5.0/config.json
   ./docs/ko/edge/config.json
   ./docs/ko/edge/guide/next/index.md
   ./docs/pl/edge/guide/appdev/security/index.md
   ./docs/pl/edge/guide/next/index.md
   ./docs/pl/edge/guide/platforms/wp8/vmware.md
   ./docs/ru/3.1.0/config.json
   ./docs/ru/3.4.0/config.json
   ./docs/ru/3.5.0/config.json
   ./docs/ru/edge/config.json
   

[jira] [Resolved] (CB-8040) ContactName object is supported on Android versions 2.x onwards

2015-01-07 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov resolved CB-8040.
--
Resolution: Fixed

Already resolved in the duplicate issue CB-4612

 ContactName object is supported on Android versions 2.x onwards
 ---

 Key: CB-8040
 URL: https://issues.apache.org/jira/browse/CB-8040
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Affects Versions: 3.6.0
Reporter: Pavankumar Joshi
Priority: Minor

 Currently supported platform for ContactName object is listed as Android 2.X
 but it is supported even in KitKat. Hence the doc should be updated with this 
 information.



--
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-8257) org.apache.cordova.file does not work for wp8

2015-01-07 Thread Eser Esen (JIRA)
Eser Esen created CB-8257:
-

 Summary: org.apache.cordova.file does not work for wp8
 Key: CB-8257
 URL: https://issues.apache.org/jira/browse/CB-8257
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File, WP8
Affects Versions: 4.0.0
 Environment: windows 8.1 with visualstudio express 2013 and windows 
phone sdk and emulator
Reporter: Eser Esen
Assignee: Jesse MacFadyen


While on android and ios the file plugin loads all file system paths on the 
phone which can be accessed with cordova.file.xxx (where xxx can be 
dataDirectory etc.) on wp8 this does not work at all.

I dont even see any javascript file providing these paths. While on android 
there is a javascript file called filesystempaths.js, on wp8 its missing.

But according to official documentation, the file plugin is fully supported on 
wp8 except two functions (which i do not need).

I need to get the data directory from my app running on wp8 using 
cordova.file.dataDirectory. How can we get this work?



--
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-8257) org.apache.cordova.file does not work for wp8

2015-01-07 Thread Eser Esen (JIRA)

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

Eser Esen updated CB-8257:
--
Priority: Critical  (was: Major)

 org.apache.cordova.file does not work for wp8
 -

 Key: CB-8257
 URL: https://issues.apache.org/jira/browse/CB-8257
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File, WP8
Affects Versions: 4.0.0
 Environment: windows 8.1 with visualstudio express 2013 and windows 
 phone sdk and emulator
Reporter: Eser Esen
Assignee: Jesse MacFadyen
Priority: Critical

 While on android and ios the file plugin loads all file system paths on the 
 phone which can be accessed with cordova.file.xxx (where xxx can be 
 dataDirectory etc.) on wp8 this does not work at all.
 I dont even see any javascript file providing these paths. While on android 
 there is a javascript file called filesystempaths.js, on wp8 its missing.
 But according to official documentation, the file plugin is fully supported 
 on wp8 except two functions (which i do not need).
 I need to get the data directory from my app running on wp8 using 
 cordova.file.dataDirectory. How can we get this work?



--
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-8258) iOS getPreferredLanguage should be from the list of available localizations for the app

2015-01-07 Thread Suresh Chandrasekharan (JIRA)
Suresh Chandrasekharan created CB-8258:
--

 Summary: iOS getPreferredLanguage should be from the list of 
available localizations for the app
 Key: CB-8258
 URL: https://issues.apache.org/jira/browse/CB-8258
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin Globalization
Reporter: Suresh Chandrasekharan


In CDVGlobalization.m, the following line is used to get the preferredLanguage 
from getPreferredLanguage

 NSString* language = [[NSLocale preferredLanguages] objectAtIndex:0];

The issue with this is, for an application, if the system preferred language is 
not available in Application Resource bundle,all framework messages will appear 
in the system preferred language and all app specific strings will appear in a 
fallback language like en_US. 

A second scenario is, like for a language like Portuguese, if only 
viewControllerBundle_pt.xlf is existing as application resource but the system 
language selected is pt_BR, with the current code, the fallback resource bundle 
viewControllerBundle_pt.xlf won't be activated and application will appear in 
en_US

Using the following, instead we can get a preferred language from the list of 
available localizations for the an application, which is independent of the 
preferredLanguage for the system.

NSString *language = [[[NSBundle mainBundle] preferredLocalizations] 
objectAtIndex:0];



--
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-8259) Report error when generation for language failed

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8259:


GitHub user kant2002 opened a pull request:

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

CB-8259 Report error when generation for language failed



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

$ git pull https://github.com/kant2002/cordova-docs CB-8259

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

https://github.com/apache/cordova-docs/pull/257.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 #257


commit 9f5b766c10d3ee5941bc85adda4e351f8e971137
Author: Andrey Kurdyumov kant2...@gmail.com
Date:   2015-01-07T10:41:36Z

Report error during generation

commit 3f6feb88d8459f83cc367edbfac83364eb40eb1f
Author: Andrey Kurdyumov kant2...@gmail.com
Date:   2015-01-07T10:41:56Z

Report when file to merge is missing and continue processing




 Report error when generation for language failed
 

 Key: CB-8259
 URL: https://issues.apache.org/jira/browse/CB-8259
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Andrey Kurdyumov

 When generating multiple languages don't stop when any error happens in 
 single language generation.
 Generator should report error and move forward with next language



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

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



[jira] [Issue Comment Deleted] (CB-8079) Load splashscreen resource dependend on app package name not activity class package name

2015-01-07 Thread Daniel Toplak (JIRA)

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

Daniel Toplak updated CB-8079:
--
Comment: was deleted

(was: Sehr geehrte Damen und Herren,

vom 20.12.2014 bis 06.01.2015 bin ich nicht im Büro.
Ihre e-Mail wird nicht weitergeleitet. Ich werde Ihre Nachricht nach meiner 
Rückkehr beantworten.
Bei dringenden Angelegenheiten wenden Sie sich bitte an: supp...@cadenas.de

Freundliche Grüße aus Augsburg

(Daniel Toplak)
(Head of Mobile Development)
CADENAS GmbH

-

Dear Sir or Madam,

Unfortunately I’m out of office from 2014-12-20 to 2015-01-06.
Your e-Mail won’t be forwarded. I will respond your message when I return.

In urgent cases please contact: supp...@cadenas.de

Best regards

(Daniel Toplak)
(Head of Mobile Development)
CADENAS GmbH


)

 Load splashscreen resource dependend on app package name not activity class 
 package name
 

 Key: CB-8079
 URL: https://issues.apache.org/jira/browse/CB-8079
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Reporter: Daniel Toplak
Assignee: Andrew Grieve

 The splashscreen resource images are loaded by the package name of the 
 activity class. This works as long as the app package name is the same which 
 is the default. 
 But when someone is building several apps out of the the same activity class 
 package, then the resources are no longer found. They should be loaded via 
 the app package name, which should also work in the default scenario.



--
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-8260) Error when unzipping build zip package

2015-01-07 Thread Sam Verschueren (JIRA)
Sam Verschueren created CB-8260:
---

 Summary: Error when unzipping build zip package
 Key: CB-8260
 URL: https://issues.apache.org/jira/browse/CB-8260
 Project: Apache Cordova
  Issue Type: Bug
  Components: Browser
Reporter: Sam Verschueren


When I build my project with 'cordova build browser', a zip file will be 
created under the build folder. When I unzip that folder I get the following 
errors for certain files:

error:  invalid compressed data to inflate

It seems that the problem lays in the adm-zip module used to create that zip 
package. Other people have reported the same issue in the issue tracker of 
adm-zip (https://github.com/cthackers/adm-zip/issues/102).

This could be solved by using another archiver module like 
https://github.com/ctalkington/node-archiver as suggested by another user in 
the issue tracker of adm-zip.



--
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-8226) 'cordova platform add' should look into config.xml for correct engine element when no version is provided

2015-01-07 Thread ASF subversion and git services (JIRA)

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

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

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

CB-8226 'cordova platform add' : Look up version in config.xml if no version 
specified (close #140)


 'cordova platform add' should look into config.xml for correct engine element 
 when no version is provided
 -

 Key: CB-8226
 URL: https://issues.apache.org/jira/browse/CB-8226
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CordovaLib
Affects Versions: Master
Reporter: Omar Mefire
   Original Estimate: 48h
  Remaining Estimate: 48h

 When the 'cordova platform add' command is executed with no version specified 
 (e.g: user runs ‘cordova platform add android’ instead of ‘cordova platform 
 add android@3.6.4’), cordova-lib should look at the config.xml file for the 
 correct engine element and use its version. It should default to using the 
 pinned version if there is no corresponding engine element in the 
 config.xml file. 
 For example, if the user enters : 'cordova platform add android' and the 
 config.xml file contains this entry: cdv:engine id=android 
 version=file://C:/folder/to/android/platform /, We should use the 
 specified folder's bin/create scripts to add the android platform, not the 
 default version.
 The engine element in config.xml could be one of the following form :
 1- cdv:engine id=android version=3.6.0 /
 2- cdv:engine id=android version=file://C:/folder/to/android/platform /



--
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-8226) 'cordova platform add' should look into config.xml for correct engine element when no version is provided

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8226:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-lib/pull/140


 'cordova platform add' should look into config.xml for correct engine element 
 when no version is provided
 -

 Key: CB-8226
 URL: https://issues.apache.org/jira/browse/CB-8226
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CordovaLib
Affects Versions: Master
Reporter: Omar Mefire
   Original Estimate: 48h
  Remaining Estimate: 48h

 When the 'cordova platform add' command is executed with no version specified 
 (e.g: user runs ‘cordova platform add android’ instead of ‘cordova platform 
 add android@3.6.4’), cordova-lib should look at the config.xml file for the 
 correct engine element and use its version. It should default to using the 
 pinned version if there is no corresponding engine element in the 
 config.xml file. 
 For example, if the user enters : 'cordova platform add android' and the 
 config.xml file contains this entry: cdv:engine id=android 
 version=file://C:/folder/to/android/platform /, We should use the 
 specified folder's bin/create scripts to add the android platform, not the 
 default version.
 The engine element in config.xml could be one of the following form :
 1- cdv:engine id=android version=3.6.0 /
 2- cdv:engine id=android version=file://C:/folder/to/android/platform /



--
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-8269) Cordova application crashes on android 2.3.4

2015-01-07 Thread dukai (JIRA)

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

dukai updated CB-8269:
--
Labels: Android  (was: )

 Cordova application crashes on android 2.3.4
 

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

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

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

2015-01-07 Thread dukai (JIRA)

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

dukai commented on CB-8269:
---

HTC G14  G18. Android version is 2.3.4

 Cordova application crashes on android 2.3.4
 

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

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

[jira] [Created] (CB-8273) InAppBrowser Plugin and Image scale in IOS

2015-01-07 Thread max putilob (JIRA)
max putilob created CB-8273:
---

 Summary: InAppBrowser Plugin and Image scale in IOS
 Key: CB-8273
 URL: https://issues.apache.org/jira/browse/CB-8273
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin InAppBrowser
Affects Versions: 3.5.0
 Environment: cordova 4.1.2
ios 7.1.2
Reporter: max putilob


When I open image in InAppBrowser like this

window.open(http://img.jpeg;, _blank”, “location=no,EnableViewPortScale=yes)

The Image is opened but I cant scale it, this is specific for ios device only, 
for android all work correctly.



--
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-8242) Camera plugin changes the default orientation.

2015-01-07 Thread pvagare (JIRA)

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

pvagare commented on CB-8242:
-

This issue due to third party plugin. I have removed the plugin. now it is 
working fine.

 Camera plugin changes the default orientation.
 --

 Key: CB-8242
 URL: https://issues.apache.org/jira/browse/CB-8242
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Reporter: pvagare

 I have fixed application orientation to portrait mode even though it changes 
 to the other modes. 
 Camera changes the orientation of Application.
 Steps to reproduce.
 1. click on camera opening button.
 2. Rotate the device to landscape mode and take photo.
 3. click on use Photo.
 See the result the Application mode changes to landscape mode.
 Please fix above issue as early possible. 
 My platform.
 IOS 8.1.2
 Cordova 3.5 



--
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-8242) Camera plugin changes the default orientation.

2015-01-07 Thread pvagare (JIRA)

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

pvagare closed CB-8242.
---
Resolution: Fixed

 Camera plugin changes the default orientation.
 --

 Key: CB-8242
 URL: https://issues.apache.org/jira/browse/CB-8242
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Reporter: pvagare

 I have fixed application orientation to portrait mode even though it changes 
 to the other modes. 
 Camera changes the orientation of Application.
 Steps to reproduce.
 1. click on camera opening button.
 2. Rotate the device to landscape mode and take photo.
 3. click on use Photo.
 See the result the Application mode changes to landscape mode.
 Please fix above issue as early possible. 
 My platform.
 IOS 8.1.2
 Cordova 3.5 



--
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-8271) splash screen with portrait and landscape mode

2015-01-07 Thread Colin Bau (JIRA)
Colin Bau created CB-8271:
-

 Summary: splash screen with portrait and landscape mode
 Key: CB-8271
 URL: https://issues.apache.org/jira/browse/CB-8271
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Android, iOS, WP8
Affects Versions: 3.6.0
 Environment: Android 4.4.2
iOS 8.1.2
WP 8.1
Reporter: Colin Bau
Assignee: Jesse MacFadyen


when in iOS
I launch my app,it will appear the portrait splash screen,great
but before the splash screen disappear...
if I change my device to landscape mode,it will automatically change to the 
landscape splash screen immediately

but in Android or WP8
at begin,it will appear the portrait splash screen too
but before the splash screen disappear...
if I change my device to landscape mode,it will still show the portrait splash 
screen but the picture Deformed

WP8 have the same situation

PS
if I use Android that start in landscape mode,as same as portrait mode logic,it 
will show  landscape splash screen correctly

is it because that Android or WP8 not already support this feature ? (auto 
change)



--
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-8271) splash screen with portrait and landscape mode

2015-01-07 Thread Colin Bau (JIRA)

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

Colin Bau updated CB-8271:
--
Affects Version/s: 3.6.3

 splash screen with portrait and landscape mode
 --

 Key: CB-8271
 URL: https://issues.apache.org/jira/browse/CB-8271
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Android, iOS, WP8
Affects Versions: 3.6.3
 Environment: Android 4.4.2
 iOS 8.1.2
 WP 8.1
Reporter: Colin Bau
Assignee: Jesse MacFadyen
  Labels: splashscreen

 when in iOS
 I launch my app,it will appear the portrait splash screen,great
 but before the splash screen disappear...
 if I change my device to landscape mode,it will automatically change to the 
 landscape splash screen immediately
 but in Android or WP8
 at begin,it will appear the portrait splash screen too
 but before the splash screen disappear...
 if I change my device to landscape mode,it will still show the portrait 
 splash screen but the picture Deformed
 WP8 have the same situation
 PS
 if I use Android that start in landscape mode,as same as portrait mode 
 logic,it will show  landscape splash screen correctly
 is it because that Android or WP8 not already support this feature ? (auto 
 change)



--
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-8271) splash screen with portrait and landscape mode

2015-01-07 Thread Colin Bau (JIRA)

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

Colin Bau updated CB-8271:
--
Affects Version/s: (was: 3.6.0)

 splash screen with portrait and landscape mode
 --

 Key: CB-8271
 URL: https://issues.apache.org/jira/browse/CB-8271
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Android, iOS, WP8
Affects Versions: 3.6.3
 Environment: Android 4.4.2
 iOS 8.1.2
 WP 8.1
Reporter: Colin Bau
Assignee: Jesse MacFadyen
  Labels: splashscreen

 when in iOS
 I launch my app,it will appear the portrait splash screen,great
 but before the splash screen disappear...
 if I change my device to landscape mode,it will automatically change to the 
 landscape splash screen immediately
 but in Android or WP8
 at begin,it will appear the portrait splash screen too
 but before the splash screen disappear...
 if I change my device to landscape mode,it will still show the portrait 
 splash screen but the picture Deformed
 WP8 have the same situation
 PS
 if I use Android that start in landscape mode,as same as portrait mode 
 logic,it will show  landscape splash screen correctly
 is it because that Android or WP8 not already support this feature ? (auto 
 change)



--
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-8272) iphone 6's landscape mode have some problem

2015-01-07 Thread Colin Bau (JIRA)
Colin Bau created CB-8272:
-

 Summary: iphone 6's landscape mode have some problem
 Key: CB-8272
 URL: https://issues.apache.org/jira/browse/CB-8272
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.6.3
 Environment: Android 4.4.2
iOS 8.1.2
WP 8.1
latest splash screen plugin
Reporter: Colin Bau


all detail description right here
http://community.phonegap.com/nitobi/topics/landscapes-splashscreen-in-iphone-6-plus-ios-8-1-is-out-of-shape



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

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



[jira] [Issue Comment Deleted] (CB-8269) Cordova application crashes on android 2.3.4

2015-01-07 Thread dukai (JIRA)

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

dukai updated CB-8269:
--
Comment: was deleted

(was: HTC G14  G18. Android version is 2.3.4)

 Cordova application crashes on android 2.3.4
 

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

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

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

2015-01-07 Thread dukai (JIRA)

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

dukai commented on CB-8269:
---

HTC G14  G18. Android version is 2.3.4

 Cordova application crashes on android 2.3.4
 

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

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

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

2015-01-07 Thread dukai (JIRA)
dukai created CB-8269:
-

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


When we run the app with cordova 3.5.1 and a old Android device(2.3.6  2.3.4), 
sometime the app crashes, but we are fine with cordova 3.1 before. We find the 
below log:

01-06 20:28:29.354 I/DEBUG   (  128): signal 11 (SIGSEGV), code 1 
(SEGV_MAPERR), fault addr b0603554

01-06 20:28:29.354 I/DEBUG   (  128):  r0 48649c71  r1 48649c71  r2 b0603549  
r3 4afaef70

01-06 20:28:29.354 I/DEBUG   (  128):  r4 48b06035  r5 a86b6c7d  r6 457f1604  
r7 0060

01-06 20:28:29.354 I/DEBUG   (  128):  r8 48b00021  r9 48b06021  10 a8800e90  
fp 457f1644

01-06 20:28:29.354 I/DEBUG   (  128):  ip 48b0602d  sp 457f1618  lr 4ae074dc  
pc 4ae07508  cpsr 3010

01-06 20:28:29.354 I/DEBUG   (  128):  d0  0042e5d80042e5d4  d1  
0302e12fff1c

01-06 20:28:29.354 I/DEBUG   (  128):  d2  1a02e151000c  d3  
e590001fe593

01-06 20:28:29.354 I/DEBUG   (  128):  d4  e59fc014e5918017  d5  
e59fc010e12fff1c

01-06 20:28:29.354 I/DEBUG   (  128):  d6  0304e12fff1c  d7  
0289

01-06 20:28:29.354 I/DEBUG   (  128):  d8  41d52af53b4eebc8  d9  
41d52af53b521efb

01-06 20:28:29.354 I/DEBUG   (  128):  d10 408f4000  d11 


01-06 20:28:29.354 I/DEBUG   (  128):  d12   d13 


01-06 20:28:29.354 I/DEBUG   (  128):  d14   d15 


01-06 20:28:29.354 I/DEBUG   (  128):  d16 48b0604d48b0604d  d17 
41f0

01-06 20:28:29.354 I/DEBUG   (  128):  d18 41d52af53b40  d19 


01-06 20:28:29.354 I/DEBUG   (  128):  d20   d21 


01-06 20:28:29.354 I/DEBUG   (  128):  d22 3ff0  d23 


01-06 20:28:29.354 I/DEBUG   (  128):  d24   d25 


01-06 20:28:29.354 I/DEBUG   (  128):  d26   d27 


01-06 20:28:29.354 I/DEBUG   (  128):  d28   d29 


01-06 20:28:29.354 I/DEBUG   (  128):  d30 3ff0  d31 


01-06 20:28:29.354 I/DEBUG   (  128):  scr 2013

01-06 20:28:29.354 I/DEBUG   (  128): 

01-06 20:28:29.424 I/DEBUG   (  128):  #00  pc 4ae07508  

01-06 20:28:29.424 I/DEBUG   (  128):  #01  lr 4ae074dc  unknown

01-06 20:28:29.424 I/DEBUG   (  128): 

01-06 20:28:29.424 I/DEBUG   (  128): code around pc:

01-06 20:28:29.424 I/DEBUG   (  128): 4ae074e8 e59a4044 e1520004 1a3f 
e5113001 

01-06 20:28:29.424 I/DEBUG   (  128): 4ae074f8 e5932013 e59ac0dc e152000c 
0a3a 

01-06 20:28:29.424 I/DEBUG   (  128): 4ae07508 e592200b e3120001 0a37 
e151 

01-06 20:28:29.424 I/DEBUG   (  128): 4ae07518 0a02 e592200b e1520004 
1a32 

01-06 20:28:29.424 I/DEBUG   (  128): 4ae07528 e593100b e59ac018 e151000c 
1aea 

01-06 20:28:29.424 I/DEBUG   (  128): 

01-06 20:28:29.424 I/DEBUG   (  128): code around lr:

01-06 20:28:29.424 I/DEBUG   (  128): 4ae074bc e351009e 2a05 e52d0004 
e5981017 

01-06 20:28:29.424 I/DEBUG   (  128): 4ae074cc e591100b e5911073 e591200b 
e12fff32 

01-06 20:28:29.424 I/DEBUG   (  128): 4ae074dc e52d0004 e1a01000 e5912007 
e59a4044 

01-06 20:28:29.424 I/DEBUG   (  128): 4ae074ec e1520004 1a3f e5113001 
e5932013 

01-06 20:28:29.424 I/DEBUG   (  128): 4ae074fc e59ac0dc e152000c 0a3a 
e592200b 

01-06 20:28:29.424 I/DEBUG   (  128): 

01-06 20:28:29.424 I/DEBUG   (  128): stack:

01-06 20:28:29.424 I/DEBUG   (  128): 457f15d8  a86b6c7d  
/system/lib/libwebcore.so

01-06 20:28:29.424 I/DEBUG   (  128): 457f15dc  457f1604  

01-06 20:28:29.424 I/DEBUG   (  128): 457f15e0    

01-06 20:28:29.424 I/DEBUG   (  128): 457f15e4  48b26254  

01-06 20:28:29.424 I/DEBUG   (  128): 457f15e8  48b26254  

01-06 20:28:29.424 I/DEBUG   (  128): 457f15ec  48b261e1  

01-06 20:28:29.424 I/DEBUG   (  128): 457f15f0  48b05bc1  

01-06 20:28:29.424 I/DEBUG   (  128): 457f15f4  48b0029d  

01-06 20:28:29.424 I/DEBUG   (  128): 457f15f8  457f1610  

01-06 20:28:29.424 I/DEBUG   (  128): 457f15fc  48b37318  

01-06 20:28:29.424 I/DEBUG   (  128): 457f1600  48649c71  

01-06 20:28:29.424 I/DEBUG   (  128): 457f1604  48b00431  

01-06 20:28:29.424 I/DEBUG   (  128): 457f1608  48b05a35  

01-06 20:28:29.424 I/DEBUG   (  128): 457f160c  48b00021  

01-06 20:28:29.424 I/DEBUG   (  128): 457f1610  df002777  

01-06 20:28:29.424 I/DEBUG   (  128): 457f1614  e3a070ad  

01-06 20:28:29.424 I/DEBUG   (  128): #00 457f1618  48649c71  

01-06 20:28:29.424 I/DEBUG   (  128): 457f161c  48240569  

01-06 20:28:29.424 I/DEBUG   

[jira] [Commented] (CB-8226) 'cordova platform add' should look into config.xml for correct engine element when no version is provided

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8226:


Github user agrieve commented on the pull request:

https://github.com/apache/cordova-lib/pull/140#issuecomment-69129747
  
Merged! However - after a closer look at the unit tests, I highly encourage 
you to try and refactor things so that the tests do not mock out private 
methods within modules (e.g. like `resolvePath()`). Tests that do that make it 
very hard to change the code going forward, as it tests implementation details 
rather than function pre/post-conditions.


 'cordova platform add' should look into config.xml for correct engine element 
 when no version is provided
 -

 Key: CB-8226
 URL: https://issues.apache.org/jira/browse/CB-8226
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CordovaLib
Affects Versions: Master
Reporter: Omar Mefire
   Original Estimate: 48h
  Remaining Estimate: 48h

 When the 'cordova platform add' command is executed with no version specified 
 (e.g: user runs ‘cordova platform add android’ instead of ‘cordova platform 
 add android@3.6.4’), cordova-lib should look at the config.xml file for the 
 correct engine element and use its version. It should default to using the 
 pinned version if there is no corresponding engine element in the 
 config.xml file. 
 For example, if the user enters : 'cordova platform add android' and the 
 config.xml file contains this entry: cdv:engine id=android 
 version=file://C:/folder/to/android/platform /, We should use the 
 specified folder's bin/create scripts to add the android platform, not the 
 default version.
 The engine element in config.xml could be one of the following form :
 1- cdv:engine id=android version=3.6.0 /
 2- cdv:engine id=android version=file://C:/folder/to/android/platform /



--
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-8270) Objective-C methods on categories should be named with a prefix

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8270:


GitHub user lingoer opened a pull request:

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

[CB-8270] rename category methods for JSON handling with a prefix.

According to [Apple's 
documentation](https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/CustomizingExistingClasses/CustomizingExistingClasses.html#//apple_ref/doc/uid/TP40011210-CH6-SW4)
 , naming a Category method without a prefix would possibly cause a Name Clash

In CordovaLib/Classes/CDVJSON.h : NSArray(CDVJSONSerializing) 
The method name should starts with a prefix

Actually, it clashes with the TencentOpenAPI framework which is a major sns 
platform in China.

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

$ git pull https://github.com/lingoer/cordova-ios CB-8270

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

https://github.com/apache/cordova-ios/pull/124.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 #124


commit 75e72a53f062115066e2fc9305c8dfb0ad5cfeb8
Author: Ruoyu Fu r...@thoughtworks.com
Date:   2015-01-08T04:08:37Z

[CB-8270] rename category methods for JSON handling with a prefix.




 Objective-C methods on categories should be named with a prefix
 ---

 Key: CB-8270
 URL: https://issues.apache.org/jira/browse/CB-8270
 Project: Apache Cordova
  Issue Type: Improvement
  Components: iOS
Affects Versions: Master
 Environment: All iOS platforms
Reporter: Ruoyu Fu
Priority: Critical
  Labels: categories, ios, namespace
 Fix For: Master

   Original Estimate: 168h
  Remaining Estimate: 168h

 According to Apple's documentation, naming a Category method without a prefix 
 would possibly cause a Name Clash
 https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/CustomizingExistingClasses/CustomizingExistingClasses.html#//apple_ref/doc/uid/TP40011210-CH6-SW4
 In CordovaLib/Classes/CDVJSON.h : NSArray(CDVJSONSerializing) 
 The method name should starts with a prefix



--
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-8269) Cordova application crashes on android 2.3.4

2015-01-07 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-8269:


You mention HTC.  Which HTC device are you testing this on? 

 Cordova application crashes on android 2.3.4
 

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

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

[jira] [Created] (CB-8270) Objective-C methods on categories should be named with a prefix

2015-01-07 Thread Ruoyu Fu (JIRA)
Ruoyu Fu created CB-8270:


 Summary: Objective-C methods on categories should be named with a 
prefix
 Key: CB-8270
 URL: https://issues.apache.org/jira/browse/CB-8270
 Project: Apache Cordova
  Issue Type: Improvement
  Components: iOS
Affects Versions: Master
 Environment: All iOS platforms
Reporter: Ruoyu Fu
Priority: Critical
 Fix For: Master


According to Apple's documentation, naming a Category method without a prefix 
would possibly cause a Name Clash
https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/CustomizingExistingClasses/CustomizingExistingClasses.html#//apple_ref/doc/uid/TP40011210-CH6-SW4

In CordovaLib/Classes/CDVJSON.h : NSArray(CDVJSONSerializing) 
The method name should starts with a prefix



--
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-8270) Objective-C methods on categories should be named with a prefix

2015-01-07 Thread Ruoyu Fu (JIRA)

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

Ruoyu Fu commented on CB-8270:
--

Actually, it clashes with the TencentOpenAPI framework which is a major sns 
platform in China

 Objective-C methods on categories should be named with a prefix
 ---

 Key: CB-8270
 URL: https://issues.apache.org/jira/browse/CB-8270
 Project: Apache Cordova
  Issue Type: Improvement
  Components: iOS
Affects Versions: Master
 Environment: All iOS platforms
Reporter: Ruoyu Fu
Priority: Critical
  Labels: categories, ios, namespace
 Fix For: Master

   Original Estimate: 168h
  Remaining Estimate: 168h

 According to Apple's documentation, naming a Category method without a prefix 
 would possibly cause a Name Clash
 https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/CustomizingExistingClasses/CustomizingExistingClasses.html#//apple_ref/doc/uid/TP40011210-CH6-SW4
 In CordovaLib/Classes/CDVJSON.h : NSArray(CDVJSONSerializing) 
 The method name should starts with a prefix



--
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-8272) iphone 6's landscape mode have some problem

2015-01-07 Thread Colin Bau (JIRA)

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

Colin Bau updated CB-8272:
--
Description: 
all detail description right here
http://community.phonegap.com/nitobi/topics/landscapes-splashscreen-in-iphone-6-plus-ios-8-1-is-out-of-shape

yiming said something
The splashscreen plugin is causing the issue you mentioned on the iPhone 6 
Plus.etc

  was:
all detail description right here
http://community.phonegap.com/nitobi/topics/landscapes-splashscreen-in-iphone-6-plus-ios-8-1-is-out-of-shape


 iphone 6's landscape mode have some problem
 ---

 Key: CB-8272
 URL: https://issues.apache.org/jira/browse/CB-8272
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.6.3
 Environment: Android 4.4.2
 iOS 8.1.2
 WP 8.1
 latest splash screen plugin
Reporter: Colin Bau
  Labels: splashscreen

 all detail description right here
 http://community.phonegap.com/nitobi/topics/landscapes-splashscreen-in-iphone-6-plus-ios-8-1-is-out-of-shape
 yiming said something
 The splashscreen plugin is causing the issue you mentioned on the iPhone 6 
 Plus.etc



--
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-8080) After migrating to 3.6.3 from 3.4.0, Appium (Android) tests fail because of open dialog

2015-01-07 Thread Andrea Tino (JIRA)

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

Andrea Tino commented on CB-8080:
-

We probably found the problem. After the introduction of the bridge secret in 
version 3.6.3 the problem started showing. The checkin probably responsible for 
this is: 
https://github.com/apache/cordova-android/commit/aab47bd4532bfe8707d745638eb5695ac543c681.
 Here you can see that {{prompt()}} is being used and this is causing the 
problem. We could assess it by debugging the app using Eclipse while the app 
was being automated by ChromeDriver through Appium.

To run a good assessment you will also need to include content from checkin 
https://github.com/apache/cordova-android/commit/ec47274fbd91d2f0b658da64f5d4d4dd6600f625.
 In fact, in the first checkin, file {{cordova.js}} was not modified according 
to the edits made on the native side. This second checkin fixes the 
misalignment.

Unfortunately it is not easy for us to find a workaround as the whole security 
feature introduced in version 3.6.3 with this {{securityBridge}} spans across 
multiple checkins and impact several areas of the code. That is why I think the 
Cordova Team is needed in this case. {{prompt()}} is causing a dialog to be 
triggered somehow when page is reloaded or a page transition is performed. The 
problem is that the dialog is never shown but under the hoods in Chrome 
something is happening.

 After migrating to 3.6.3 from 3.4.0, Appium (Android) tests fail because of 
 open dialog
 ---

 Key: CB-8080
 URL: https://issues.apache.org/jira/browse/CB-8080
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CordovaJS
Affects Versions: 3.6.3
 Environment: Basic Appium test on Android webview based app. The test 
 on Appium works until the app issues a `window.location.reload()` or a 
 `window.location.href = 'something'`.
Reporter: Andrea Tino
  Labels: javascript
 Attachments: MyApp-debug.apk


 After upgrading to Cordova 3.6.3 from Cordova 3.4.0; my Appium tests cannot 
 go on because of a strange error. The error can be reproed very easily by 
 creating a basic web-view based app on Android which issues a 
 {{window.location.reload()}} after a while that the test starts.
 I could assess that the problem is one particular file: {{cordova.js}} which 
 becomes part of the js files in my app when I build it with Cordova. My app 
 loads only one javascript file: {{cordova.js}}, I removed all other 
 dependencies to other js files. When that file is in my app (even though 
 {{index.html}} does not use any function defined in there), my tests fails. 
 If I remove the dependencies to that file, tests go ok!
 The problem is that when my app issues a {{window.location.reload()}}; my 
 test fail with this error message:
 {code}
 info: [debug] Responding to client with error: 
 {status:26,value:{message:A modal dialog was open, blocking this 
 operation,origValue:unexpected alert open\n (Session info: webview=)\n 
 (Driver info: chromedriver=2.10.267521,platform=Windows NT 6.3 
 x86_64)},sessionId:965ba51e54f682559e5b8378095bc3d4}
 {code}
 *Test*
 The APK to repro this is in attachments. It is possible to run a simple 
 Appium test to repro the problem:
 {code}
 [Test]
 public void SimpleTest()
 {
 this.appPackage = com.myorg.myapp;
 this.appActivity = myapp;
 BeforeAll();
 Thread.Sleep(3000);
 var submitAddressButton = 
 driver.FindElementByClassName(testClass);
 submitAddressButton.Click();
 Thread.Sleep(3000);
 submitAddressButton = driver.FindElementByClassName(testClass);
 Expect(submitAddressButton, Is.Not.Null);
 }
 {code}
 *Important*
 The fact that a dialog is reported is actually very strange. After inspecting 
 a lot I could verify that no native/webview dialog is being shown on my app. 
 In fact I cannot see any dialog and if I try to dismiss this ghost dialog 
 using Appium and WebDriver APIs, the command fail as no dialog can be found.
 *Notes*
 Consider that the problem is not in the APIs I use in my test (C# dotnet 
 driver for Appium). Everything happens on my Appium server running on a Mac.



--
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-8265) Android platform cannot be added if the project's path includes a folder with a non-ASCII character

2015-01-07 Thread Dan Levine (JIRA)

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

Dan Levine commented on CB-8265:


Note that fixing this reveals additional issues with how the Cordova Android 
stack handles paths with non-ASCII, non-default-codepage characters. Allowing 
project creation just runs into issues at build time.

 Android platform cannot be added if the project's path includes a folder with 
 a non-ASCII character
 ---

 Key: CB-8265
 URL: https://issues.apache.org/jira/browse/CB-8265
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Verified on Windows
Reporter: Dan Levine
Priority: Minor
   Original Estimate: 48h
  Remaining Estimate: 48h

 A project at c:\张app\myapp produces the following error when cordova 
 platform add android is run:
 Error: Please install Android target android-19.
 Hint: Run android from your command-line to open the SDK manager.



--
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-8265) Android platform cannot be added if the project's path includes a folder with a non-ASCII character

2015-01-07 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-8265:


And this works fine when you don't have the character in your path? It sounds 
to me like you don't have android-19 as a target.

 Android platform cannot be added if the project's path includes a folder with 
 a non-ASCII character
 ---

 Key: CB-8265
 URL: https://issues.apache.org/jira/browse/CB-8265
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Verified on Windows
Reporter: Dan Levine
Priority: Minor
   Original Estimate: 48h
  Remaining Estimate: 48h

 A project at c:\张app\myapp produces the following error when cordova 
 platform add android is run:
 Error: Please install Android target android-19.
 Hint: Run android from your command-line to open the SDK manager.



--
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-8265) Android platform cannot be added if the project's path includes a folder with a non-ASCII character

2015-01-07 Thread Dan Levine (JIRA)

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

Dan Levine commented on CB-8265:


It's definitely the character: when the only thing that's done is 
remove/replace the character, everything works as expected. The issue seems to 
be that the running the command android list targets just prints Error: The 
working directory does not seem to be valid: 'C:\?app\test, suggesting that 
the Android tools themselves don't like the character.

 Android platform cannot be added if the project's path includes a folder with 
 a non-ASCII character
 ---

 Key: CB-8265
 URL: https://issues.apache.org/jira/browse/CB-8265
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Verified on Windows
Reporter: Dan Levine
Priority: Minor
   Original Estimate: 48h
  Remaining Estimate: 48h

 A project at c:\张app\myapp produces the following error when cordova 
 platform add android is run:
 Error: Please install Android target android-19.
 Hint: Run android from your command-line to open the SDK manager.



--
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-8265) Android platform cannot be added if the project's path includes a folder with a non-ASCII character

2015-01-07 Thread Dan Levine (JIRA)
Dan Levine created CB-8265:
--

 Summary: Android platform cannot be added if the project's path 
includes a folder with a non-ASCII character
 Key: CB-8265
 URL: https://issues.apache.org/jira/browse/CB-8265
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Verified on Windows
Reporter: Dan Levine
Priority: Minor


A project at c:\张app\myapp produces the following error when cordova platform 
add android is run:

Error: Please install Android target android-19.
Hint: Run android from your command-line to open the SDK manager.



--
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-8266) [Doc] allowEdit is already supported on Android but doc says it's not

2015-01-07 Thread Shingo Toda (JIRA)
Shingo Toda created CB-8266:
---

 Summary: [Doc] allowEdit is already supported on Android but doc 
says it's not
 Key: CB-8266
 URL: https://issues.apache.org/jira/browse/CB-8266
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs, Plugin Camera
Affects Versions: 3.6.0
 Environment: Android
Reporter: Shingo Toda
Priority: Minor


It seems that allowEdit camera option support for Android has been introduced 
but doc still says in its Android Quirks

bq. Ignores the allowEdit parameter.

This line should be removed



--
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-8265) Android platform cannot be added if the project's path includes a folder with a non-ASCII character

2015-01-07 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-8265:


It's known that the Android tools don't like UTF-8.  We've have this problem 
with filenames and we've worked around them.  This is also why we don't rely on 
the Android tools when we create projects anymore and use our own template. 
(That and being compatible with both Eclipse and Android Studio, which now 
seems somewhat silly since we're forced to use one and not the other).



 Android platform cannot be added if the project's path includes a folder with 
 a non-ASCII character
 ---

 Key: CB-8265
 URL: https://issues.apache.org/jira/browse/CB-8265
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Verified on Windows
Reporter: Dan Levine
Priority: Minor
   Original Estimate: 48h
  Remaining Estimate: 48h

 A project at c:\张app\myapp produces the following error when cordova 
 platform add android is run:
 Error: Please install Android target android-19.
 Hint: Run android from your command-line to open the SDK manager.



--
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-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7486:


GitHub user cjpearson opened a pull request:

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

update docs for StatusBarBackgroundColor

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

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

$ git pull https://github.com/cjpearson/cordova-plugin-statusbar master

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

https://github.com/apache/cordova-plugin-statusbar/pull/20.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 #20


commit 607e5d66add7dea9f791defe97cf62c711741d5e
Author: Connor Pearson cjp...@gmail.com
Date:   2015-01-08T00:55:34Z

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] [Assigned] (CB-7950) CLI create.js misspells parseConfig on line 36

2015-01-07 Thread Josh Soref (JIRA)

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

Josh Soref reassigned CB-7950:
--

Assignee: Josh Soref  (was: Lorin Beer)

 CLI create.js misspells parseConfig on line 36
 --

 Key: CB-7950
 URL: https://issues.apache.org/jira/browse/CB-7950
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Reporter: Lisa Seacat DeLuca
Assignee: Josh Soref

 https://github.com/apache/cordova-cli/blob/master/src/create.js
 Checkout line 36
 It says:
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseCofig(undashed[4]);
 I believe it should be
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseConfig(undashed[4]);



--
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-7950) CLI make CordovaCliCreate.prototype.run vaguely correct

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7950:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-cli/pull/201

CB-7950 CLI make CordovaCliCreate.prototype.run vaguely correct



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

$ git pull https://github.com/jsoref/cordova-cli cb_7950

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

https://github.com/apache/cordova-cli/pull/201.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 #201


commit 106d8801a70a9b97cd606e27f80c6c7988f368cc
Author: Josh Soref jso...@blackberry.com
Date:   2015-01-07T15:15:25Z

CB-7950 CLI make CordovaCliCreate.prototype.run vaguely correct




 CLI make CordovaCliCreate.prototype.run vaguely correct
 ---

 Key: CB-7950
 URL: https://issues.apache.org/jira/browse/CB-7950
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Reporter: Lisa Seacat DeLuca
Assignee: Josh Soref
 Fix For: Master


 https://github.com/apache/cordova-cli/blob/master/src/create.js
 Checkout line 36
 It says:
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseCofig(undashed[4]);
 I believe it should be
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseConfig(undashed[4]);



--
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-7950) CLI make CordovaCliCreate.prototype.run vaguely correct

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7950:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-cli/pull/201


 CLI make CordovaCliCreate.prototype.run vaguely correct
 ---

 Key: CB-7950
 URL: https://issues.apache.org/jira/browse/CB-7950
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Reporter: Lisa Seacat DeLuca
Assignee: Josh Soref
 Fix For: Master


 https://github.com/apache/cordova-cli/blob/master/src/create.js
 Checkout line 36
 It says:
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseCofig(undashed[4]);
 I believe it should be
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseConfig(undashed[4]);



--
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-8234) IOS camera plugin is broken on IOS 8 and above.

2015-01-07 Thread pvagare (JIRA)

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

pvagare commented on CB-8234:
-

Please provide solution.

 IOS camera plugin is broken on IOS 8 and above.
 ---

 Key: CB-8234
 URL: https://issues.apache.org/jira/browse/CB-8234
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Reporter: pvagare

 I get following error while I am taking the photo from iPhone camera.
 Snapshotting a view that has not been rendered results in an empty snapshot. 
 Ensure your view has been rendered at least once before snapshotting or 
 snapshot after screen updates.
 My platform details.  IOS 8.1.2, cordova 3.5
 Please update the camera plugin as early as possible. 



--
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-8242) Camera plugin changes the default orientation.

2015-01-07 Thread pvagare (JIRA)

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

pvagare commented on CB-8242:
-

Please provide the solution.

 Camera plugin changes the default orientation.
 --

 Key: CB-8242
 URL: https://issues.apache.org/jira/browse/CB-8242
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Reporter: pvagare

 I have fixed application orientation to portrait mode even though it changes 
 to the other modes. 
 Camera changes the orientation of Application.
 Steps to reproduce.
 1. click on camera opening button.
 2. Rotate the device to landscape mode and take photo.
 3. click on use Photo.
 See the result the Application mode changes to landscape mode.
 Please fix above issue as early possible. 
 My platform.
 IOS 8.1.2
 Cordova 3.5 



--
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-7950) CLI create.js misspells parseConfig on line 36

2015-01-07 Thread Josh Soref (JIRA)

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

Josh Soref resolved CB-7950.

   Resolution: Fixed
Fix Version/s: Master

 CLI create.js misspells parseConfig on line 36
 --

 Key: CB-7950
 URL: https://issues.apache.org/jira/browse/CB-7950
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Reporter: Lisa Seacat DeLuca
Assignee: Josh Soref
 Fix For: Master


 https://github.com/apache/cordova-cli/blob/master/src/create.js
 Checkout line 36
 It says:
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseCofig(undashed[4]);
 I believe it should be
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseConfig(undashed[4]);



--
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-7739) document installing specific version of platforms

2015-01-07 Thread ASF subversion and git services (JIRA)

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

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

Commit 38dd67242841dd2ec254f7f9f402f495f7a28f5b in cordova-cli's branch 
refs/heads/master from [~jsoref]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=38dd672 ]

CB-7739 document installing specific version of platforms


 document installing specific version of platforms
 -

 Key: CB-7739
 URL: https://issues.apache.org/jira/browse/CB-7739
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 3.6.0
Reporter: Josh Soref
Assignee: Josh Soref

 {quote}
 $ cordova platform --help
 Synopsis
 cordova platform command \[options]
 Manage project platforms
 add name|directory \[...] .. add specified platforms
 directory is a directory containing a 
 platform
 name of platform to be retrieved from 
 npm registry
 --usegit .. retrieve from git instead of npm 
 registry
 remove platform \[...] ... remove specified platforms
 list .. list all installed and available 
 platforms
 update platform . update the version of Cordova used 
 for a specific
 platform; use after updating the CLI.
 --usegit .. retrieve platform from git instead of 
 npm registry
 check . list platforms which can be updated 
 by `cordova platform update`
 aliases:
 platforms - platform
 rm - remove
 ls - list
 {quote}
 You can do:
 {quote}
 cordova platform add android@3.6
 {quote}
 or
 {quote}
 cordova platform add ~/cordova-android
 {quote}
 or
 {quote}
 cordova platform add https://github.com/apache/cordova-android
 {quote} -- some syntax that I don't know



--
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-7950) CLI make CordovaCliCreate.prototype.run vaguely correct

2015-01-07 Thread ASF subversion and git services (JIRA)

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

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

Commit 106d8801a70a9b97cd606e27f80c6c7988f368cc in cordova-cli's branch 
refs/heads/master from [~jsoref]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=106d880 ]

CB-7950 CLI make CordovaCliCreate.prototype.run vaguely correct


 CLI make CordovaCliCreate.prototype.run vaguely correct
 ---

 Key: CB-7950
 URL: https://issues.apache.org/jira/browse/CB-7950
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Reporter: Lisa Seacat DeLuca
Assignee: Josh Soref
 Fix For: Master


 https://github.com/apache/cordova-cli/blob/master/src/create.js
 Checkout line 36
 It says:
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseCofig(undashed[4]);
 I believe it should be
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseConfig(undashed[4]);



--
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-5316) Spell Cordova as a brand unless it's a command or script

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-5316:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-cli/pull/202

CB-5316 Spell Cordova as a brand unless it's a command or script

* Change `cordova command` to `cordova-cli command` to match the rest of 
the file
* Change `cordova library` to `Cordova library` to match the actual output
* Change `cordova project` to `Cordova project`


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

$ git pull https://github.com/jsoref/cordova-cli cb_5316

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

https://github.com/apache/cordova-cli/pull/202.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 #202


commit 143176e716696eca60ecfd6ef2b7a5158d530b9d
Author: Josh Soref jso...@blackberry.com
Date:   2013-12-12T22:32:04Z

CB-5316 Spell Cordova as a brand unless it's a command or script




 Spell Cordova as a brand unless it's a command or script
 

 Key: CB-5316
 URL: https://issues.apache.org/jira/browse/CB-5316
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, BlackBerry, CLI, Coho, CordovaJS, iOS, Plugin 
 Device, Plugman
Affects Versions: 3.1.0
Reporter: Josh Soref
Assignee: Josh Soref
Priority: Minor

 It's helpful to spell brands as they should be spelled (Apache, Atari, 
 BlackBerry, Cordova, ...) except when the item actually refers to something 
 that isn't just the general brand (cordova.js, cordova-cli/bin/cordova).
 It makes it easier when reading error messages because if you see the brand, 
 then you know the error isn't talking about the command.



--
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-5316) Spell Cordova as a brand unless it's a command or script

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-5316:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-cli/pull/202


 Spell Cordova as a brand unless it's a command or script
 

 Key: CB-5316
 URL: https://issues.apache.org/jira/browse/CB-5316
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, BlackBerry, CLI, Coho, CordovaJS, iOS, Plugin 
 Device, Plugman
Affects Versions: 3.1.0
Reporter: Josh Soref
Assignee: Josh Soref
Priority: Minor

 It's helpful to spell brands as they should be spelled (Apache, Atari, 
 BlackBerry, Cordova, ...) except when the item actually refers to something 
 that isn't just the general brand (cordova.js, cordova-cli/bin/cordova).
 It makes it easier when reading error messages because if you see the brand, 
 then you know the error isn't talking about the command.



--
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-5316) Spell Cordova as a brand unless it's a command or script

2015-01-07 Thread ASF subversion and git services (JIRA)

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

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

Commit 143176e716696eca60ecfd6ef2b7a5158d530b9d in cordova-cli's branch 
refs/heads/master from [~jsoref]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=143176e ]

CB-5316 Spell Cordova as a brand unless it's a command or script


 Spell Cordova as a brand unless it's a command or script
 

 Key: CB-5316
 URL: https://issues.apache.org/jira/browse/CB-5316
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, BlackBerry, CLI, Coho, CordovaJS, iOS, Plugin 
 Device, Plugman
Affects Versions: 3.1.0
Reporter: Josh Soref
Assignee: Josh Soref
Priority: Minor

 It's helpful to spell brands as they should be spelled (Apache, Atari, 
 BlackBerry, Cordova, ...) except when the item actually refers to something 
 that isn't just the general brand (cordova.js, cordova-cli/bin/cordova).
 It makes it easier when reading error messages because if you see the brand, 
 then you know the error isn't talking about the command.



--
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-8264) captureImage does not call the errorCallback when the user cancels on windows

2015-01-07 Thread Dan Levine (JIRA)
Dan Levine created CB-8264:
--

 Summary: captureImage does not call the errorCallback when the 
user cancels on windows
 Key: CB-8264
 URL: https://issues.apache.org/jira/browse/CB-8264
 Project: Apache Cordova
  Issue Type: Bug
  Components: Windows
Affects Versions: 3.5.0
Reporter: Dan Levine
Priority: Minor


When a user cancels out of a media capture, the plugin does not call the 
provided errorCallback, even though that is the behavior on other platforms.



--
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-8226) 'cordova platform add' should look into config.xml for correct engine element when no version is provided

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8226:


Github user omefire commented on the pull request:

https://github.com/apache/cordova-lib/pull/140#issuecomment-69095149
  
@agrieve, have you had a chance to take another look at this ?   --Thanks.


 'cordova platform add' should look into config.xml for correct engine element 
 when no version is provided
 -

 Key: CB-8226
 URL: https://issues.apache.org/jira/browse/CB-8226
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CordovaLib
Affects Versions: Master
Reporter: Omar Mefire
   Original Estimate: 48h
  Remaining Estimate: 48h

 When the 'cordova platform add' command is executed with no version specified 
 (e.g: user runs ‘cordova platform add android’ instead of ‘cordova platform 
 add android@3.6.4’), cordova-lib should look at the config.xml file for the 
 correct engine element and use its version. It should default to using the 
 pinned version if there is no corresponding engine element in the 
 config.xml file. 
 For example, if the user enters : 'cordova platform add android' and the 
 config.xml file contains this entry: cdv:engine id=android 
 version=file://C:/folder/to/android/platform /, We should use the 
 specified folder's bin/create scripts to add the android platform, not the 
 default version.
 The engine element in config.xml could be one of the following form :
 1- cdv:engine id=android version=3.6.0 /
 2- cdv:engine id=android version=file://C:/folder/to/android/platform /



--
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-8263) Files and folders that begin with . are not included in the compiled www folder

2015-01-07 Thread Dan Levine (JIRA)
Dan Levine created CB-8263:
--

 Summary: Files and folders that begin with . are not included in 
the compiled www folder
 Key: CB-8263
 URL: https://issues.apache.org/jira/browse/CB-8263
 Project: Apache Cordova
  Issue Type: Bug
Affects Versions: 3.5.0
Reporter: Dan Levine
Priority: Minor


Including a folder .myfiles under the project www folder will not cause it to 
be copied over to the platform-specific www folder, resulting in missing files 
from the app.



--
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-8267) Cannot pick up photo editor when mediaType is set to ALLMEDIA though allowEdit is set to true

2015-01-07 Thread Shingo Toda (JIRA)
Shingo Toda created CB-8267:
---

 Summary: Cannot pick up photo editor when mediaType is set to 
ALLMEDIA though allowEdit is set to true
 Key: CB-8267
 URL: https://issues.apache.org/jira/browse/CB-8267
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Affects Versions: 3.6.0
 Environment: Galaxy S2 (Android 4.0.4), Nexus 7 (Android 4.4.3)
Reporter: Shingo Toda
Priority: Minor


When picking up photos by {{sourceType=PHOTOLIBRARY}} or {{SAVEDPHOTOALBUM}} 
and {{mediaType=ALLMEDIA}}, allowEdit does not work so photos cannot be edited.



--
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-8268) App crashes when croping a picture taken from camera

2015-01-07 Thread Shingo Toda (JIRA)
Shingo Toda created CB-8268:
---

 Summary: App crashes when croping a picture taken from camera
 Key: CB-8268
 URL: https://issues.apache.org/jira/browse/CB-8268
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Affects Versions: 3.6.0
 Environment: Galaxy S2 (Android 4.0.4), Camera Plugin@0.3.3
Reporter: Shingo Toda
Priority: Minor


Some photo editors seem to make an app freeze when cropping a picture taken by 
camera with {{allowEdit=true}}.

My mobile phone shows two photo editor apps to crop pictures, Crop photo and 
Crop picture. Actually Crop photo works perfect. But if the Crop picture is 
chosen, it prompts to set range to crop the picture then save it but the editor 
app stop responding and it ends up making the entire Cordova app unresponsive. 
Adding that, the Cordova app cannot be reopened regardless of an  attempt to 
kill the hanged process, unless device is rebooted.

But strangely the app can crop pictures without any problem when the pictures 
are retrieved from photo albums (so it's when sourceType is set to PHOTOLIBRARY 
or SAVEDPHOTOALBUM) and the cropped picture is finely sent to Cordova app.

Unfortunately I have not identified the reason of this due to limited time at 
this moment but raise this issue.




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

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



[jira] [Commented] (CB-7067) run jasmine tests individually

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7067:


Github user agrieve commented on the pull request:

https://github.com/apache/cordova-lib/pull/51#issuecomment-69127345
  
What's the status of this. Leave open?


 run jasmine tests individually
 --

 Key: CB-7067
 URL: https://issues.apache.org/jira/browse/CB-7067
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaLib
Affects Versions: 3.5.0
Reporter: Josh Soref
Assignee: Josh Soref

 The way we run tests right now has a couple of painful points:
 1. We can't skip only some tests in a single spec file because jasmine is 
 treating all of our tests as a single set run together, and so by saying I 
 want to prefer test X in file A, it's interpreting that as I don't want to 
 run any other tests in any other file unless they are also preferred. That's 
 pretty annoying.
 2. Spys and other manipulations we do in a spec can have adverse impact on 
 unrelated tests. Trying to get tests to work thus involves debugging all 
 other tests and hunting for common problems.
 Neither of these things pain ports are necessary afaict.



--
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-5082) add BB10 support in doPlatform()

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-5082:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-lib/pull/7


 add BB10 support in doPlatform()
 

 Key: CB-5082
 URL: https://issues.apache.org/jira/browse/CB-5082
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CLI
Reporter: Marcel Kinard
Assignee: Martin Gonzalez
Priority: Minor





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

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



[jira] [Commented] (CB-8043) Orientation preference's value set to anything but landscape or portrait doesn't work.

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8043:


Github user agrieve commented on the pull request:

https://github.com/apache/cordova-lib/pull/128#issuecomment-69127706
  
Think this looks good to me. If you're ready for it to go in, could you 
attempt to rebase it ontop of master and squash your commits?


 Orientation preference's value set to anything but landscape or portrait 
 doesn't work.
 --

 Key: CB-8043
 URL: https://issues.apache.org/jira/browse/CB-8043
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Android
Reporter: Rémi Couturier

 cordova-cli: 4.1.2
 cordova-android: 3.6.4
 mac: osx yosemite
 In config.xml, setting the orientation preference's value to anything but 
 landscape or portrait doesn't work. Complete list of possible value: 
 http://developer.android.com/guide/topics/manifest/activity-element.html#screen
 For example when setting the value to userLandscape and building the app 
 (cordova build android), I'm getting this message: Unknown value for 
 orientation preference: userLandscape.



--
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-7950) CLI make CordovaCliCreate.prototype.run vaguely correct

2015-01-07 Thread Josh Soref (JIRA)

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

Josh Soref updated CB-7950:
---
Summary: CLI make CordovaCliCreate.prototype.run vaguely correct  (was: CLI 
create.js misspells parseConfig on line 36)

 CLI make CordovaCliCreate.prototype.run vaguely correct
 ---

 Key: CB-7950
 URL: https://issues.apache.org/jira/browse/CB-7950
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Reporter: Lisa Seacat DeLuca
Assignee: Josh Soref
 Fix For: Master


 https://github.com/apache/cordova-cli/blob/master/src/create.js
 Checkout line 36
 It says:
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseCofig(undashed[4]);
 I believe it should be
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseConfig(undashed[4]);



--
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-7739) document installing specific version of platforms

2015-01-07 Thread Josh Soref (JIRA)

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

Josh Soref resolved CB-7739.

   Resolution: Fixed
Fix Version/s: Master

 document installing specific version of platforms
 -

 Key: CB-7739
 URL: https://issues.apache.org/jira/browse/CB-7739
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 3.6.0
Reporter: Josh Soref
Assignee: Josh Soref
 Fix For: Master


 {quote}
 $ cordova platform --help
 Synopsis
 cordova platform command \[options]
 Manage project platforms
 add name|directory \[...] .. add specified platforms
 directory is a directory containing a 
 platform
 name of platform to be retrieved from 
 npm registry
 --usegit .. retrieve from git instead of npm 
 registry
 remove platform \[...] ... remove specified platforms
 list .. list all installed and available 
 platforms
 update platform . update the version of Cordova used 
 for a specific
 platform; use after updating the CLI.
 --usegit .. retrieve platform from git instead of 
 npm registry
 check . list platforms which can be updated 
 by `cordova platform update`
 aliases:
 platforms - platform
 rm - remove
 ls - list
 {quote}
 You can do:
 {quote}
 cordova platform add android@3.6
 {quote}
 or
 {quote}
 cordova platform add ~/cordova-android
 {quote}
 or
 {quote}
 cordova platform add https://github.com/apache/cordova-android
 {quote} -- some syntax that I don't know



--
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-8261) BlackBerry is spelled wrong in docs

2015-01-07 Thread Josh Soref (JIRA)

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

Josh Soref resolved CB-8261.

Resolution: Fixed

 BlackBerry is spelled wrong in docs
 ---

 Key: CB-8261
 URL: https://issues.apache.org/jira/browse/CB-8261
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Reporter: Josh Soref
Assignee: Josh Soref





--
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-7807) Add BlackBerry10 platform to a project on any workstation OS

2015-01-07 Thread Josh Soref (JIRA)

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

Josh Soref updated CB-7807:
---
Summary: Add BlackBerry10 platform to a project on any workstation OS  
(was: Add Blackberry platform to a project on any workstation OS)

 Add BlackBerry10 platform to a project on any workstation OS
 

 Key: CB-7807
 URL: https://issues.apache.org/jira/browse/CB-7807
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Edna Morales
Priority: Minor

 You should be able to add the Blackberry platform to a project even if you 
 are on an unsupported operating system and/or can't build. This will require 
 changing where the check requirements script is called.



--
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-7807) Add BlackBerry10 platform to a project on any workstation OS

2015-01-07 Thread Josh Soref (JIRA)

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

Josh Soref updated CB-7807:
---
Description: You should be able to add the BlackBerry10 platform to a 
project even if you are on an unsupported operating system and/or can't build. 
This will require changing where the check requirements script is called.  
(was: You should be able to add the Blackberry platform to a project even if 
you are on an unsupported operating system and/or can't build. This will 
require changing where the check requirements script is called.)

 Add BlackBerry10 platform to a project on any workstation OS
 

 Key: CB-7807
 URL: https://issues.apache.org/jira/browse/CB-7807
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Edna Morales
Priority: Minor

 You should be able to add the BlackBerry10 platform to a project even if you 
 are on an unsupported operating system and/or can't build. This will require 
 changing where the check requirements script is called.



--
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-7807) Add BlackBerry10 platform to a project on any workstation OS

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7807:


GitHub user jsoref opened a pull request:

https://github.com/apache/cordova-blackberry/pull/179

CB-7807 Add BlackBerry10 platform to a project on any workstation OS

* Split init reqs checks out of init
* Consistently use CORDOVA_DIR (instead of occasionally using BIN_DIR)

r? @bryanhiggins

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

$ git pull https://github.com/jsoref/cordova-blackberry cb_7807

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

https://github.com/apache/cordova-blackberry/pull/179.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 #179


commit d9c4c5345a15fe16dda8878e782ec9c009b2998c
Author: Josh Soref jso...@blackberry.com
Date:   2014-11-13T18:50:36Z

CB-7807 Add BlackBerry10 platform to a project on any workstation OS

* Split init reqs checks out of init
* Consistently use CORDOVA_DIR (instead of occasionally using BIN_DIR)




 Add BlackBerry10 platform to a project on any workstation OS
 

 Key: CB-7807
 URL: https://issues.apache.org/jira/browse/CB-7807
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Edna Morales
Priority: Minor

 You should be able to add the BlackBerry10 platform to a project even if you 
 are on an unsupported operating system and/or can't build. This will require 
 changing where the check requirements script is called.



--
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-8261) BlackBerry is spelled wrong in docs

2015-01-07 Thread Josh Soref (JIRA)
Josh Soref created CB-8261:
--

 Summary: BlackBerry is spelled wrong in docs
 Key: CB-8261
 URL: https://issues.apache.org/jira/browse/CB-8261
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Reporter: Josh Soref
Assignee: Josh Soref






--
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-8261) BlackBerry is spelled wrong in docs

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8261:


GitHub user jsoref opened a pull request:

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

CB-8261 Brand: BlackBerry



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

$ git pull https://github.com/jsoref/cordova-docs blackberry

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

https://github.com/apache/cordova-docs/pull/258.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 #258


commit bd265628de93a0cd2070e984cc0bb32448445494
Author: Josh Soref jso...@blackberry.com
Date:   2015-01-07T16:31:33Z

CB-8261 Brand: BlackBerry




 BlackBerry is spelled wrong in docs
 ---

 Key: CB-8261
 URL: https://issues.apache.org/jira/browse/CB-8261
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Reporter: Josh Soref
Assignee: Josh Soref





--
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-8261) BlackBerry is spelled wrong in docs

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8261:


Github user asfgit closed the pull request at:

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


 BlackBerry is spelled wrong in docs
 ---

 Key: CB-8261
 URL: https://issues.apache.org/jira/browse/CB-8261
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Reporter: Josh Soref
Assignee: Josh Soref





--
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-8261) BlackBerry is spelled wrong in docs

2015-01-07 Thread ASF subversion and git services (JIRA)

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

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

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

CB-8261 Brand: BlackBerry


 BlackBerry is spelled wrong in docs
 ---

 Key: CB-8261
 URL: https://issues.apache.org/jira/browse/CB-8261
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Reporter: Josh Soref
Assignee: Josh Soref





--
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-8175) Filter Fire OS

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8175:


Github user asfgit closed the pull request at:

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


 Filter Fire OS
 --

 Key: CB-8175
 URL: https://issues.apache.org/jira/browse/CB-8175
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Josh Soref

 There's some code for Amazon Fire OS, but not all the way through, and with 
 funny spellings.



--
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-8175) Filter Fire OS

2015-01-07 Thread ASF subversion and git services (JIRA)

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

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

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

CB-8175 Expose Fire OS


 Filter Fire OS
 --

 Key: CB-8175
 URL: https://issues.apache.org/jira/browse/CB-8175
 Project: Apache Cordova
  Issue Type: Bug
  Components: Registry Web
Reporter: Josh Soref

 There's some code for Amazon Fire OS, but not all the way through, and with 
 funny spellings.



--
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-7977) mention deviceready in plugin docs

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7977:


GitHub user jsoref reopened a pull request:

https://github.com/apache/cordova-plugin-media-capture/pull/29

CB-7977 Mention deviceready in plugin docs



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

$ git pull https://github.com/jsoref/cordova-plugin-media-capture 
deviceready

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

https://github.com/apache/cordova-plugin-media-capture/pull/29.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 #29


commit 6a7cd162f118b38f6ae211ca7b687e6d452f43ca
Author: Josh Soref jso...@blackberry.com
Date:   2014-11-06T22:13:05Z

CB-7977 Mention deviceready in plugin docs




 mention deviceready in plugin docs
 --

 Key: CB-7977
 URL: https://issues.apache.org/jira/browse/CB-7977
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
 Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
 Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
 Plugin Media Capture, Plugin Statusbar, Plugin Vibration
Affects Versions: 3.5.0
Reporter: Josh Soref
Assignee: Josh Soref

 for a in cordova-plugin-*; do test -f  $a/doc/index.md  grep -l deviceready 
 $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
 deviceready in: /'; grep -lr decideready $a/*); done 2/dev/null |sort
 cordova-plugin-battery-status/doc/index.md
 cordova-plugin-device/doc/index.md
 cordova-plugin-network-information/doc/index.md
 cordova-plugin-splashscreen/doc/index.md
 no deviceready in: cordova-plugin-camera/doc/index.md
 no deviceready in: cordova-plugin-console/doc/index.md
 no deviceready in: cordova-plugin-contacts/doc/index.md
 no deviceready in: cordova-plugin-device-motion/doc/index.md
 no deviceready in: cordova-plugin-device-orientation/doc/index.md
 no deviceready in: cordova-plugin-dialogs/doc/index.md
 no deviceready in: cordova-plugin-file-transfer/doc/index.md
 no deviceready in: cordova-plugin-file/doc/index.md
 no deviceready in: cordova-plugin-geolocation/doc/index.md
 no deviceready in: cordova-plugin-globalization/doc/index.md
 no deviceready in: cordova-plugin-inappbrowser/doc/index.md
 no deviceready in: cordova-plugin-media-capture/doc/index.md
 no deviceready in: cordova-plugin-media/doc/index.md
 no deviceready in: cordova-plugin-statusbar/doc/index.md
 no deviceready in: cordova-plugin-vibration/doc/index.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-7977) mention deviceready in plugin docs

2015-01-07 Thread ASF subversion and git services (JIRA)

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

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

Commit ce8c6f5e054748cdb4632f75b4d44c136ef89190 in 
cordova-plugin-media-capture's branch refs/heads/master from [~jsoref]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media-capture.git;h=ce8c6f5
 ]

CB-7977 Mention deviceready in plugin docs


 mention deviceready in plugin docs
 --

 Key: CB-7977
 URL: https://issues.apache.org/jira/browse/CB-7977
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
 Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
 Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
 Plugin Media Capture, Plugin Statusbar, Plugin Vibration
Affects Versions: 3.5.0
Reporter: Josh Soref
Assignee: Josh Soref

 for a in cordova-plugin-*; do test -f  $a/doc/index.md  grep -l deviceready 
 $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
 deviceready in: /'; grep -lr decideready $a/*); done 2/dev/null |sort
 cordova-plugin-battery-status/doc/index.md
 cordova-plugin-device/doc/index.md
 cordova-plugin-network-information/doc/index.md
 cordova-plugin-splashscreen/doc/index.md
 no deviceready in: cordova-plugin-camera/doc/index.md
 no deviceready in: cordova-plugin-console/doc/index.md
 no deviceready in: cordova-plugin-contacts/doc/index.md
 no deviceready in: cordova-plugin-device-motion/doc/index.md
 no deviceready in: cordova-plugin-device-orientation/doc/index.md
 no deviceready in: cordova-plugin-dialogs/doc/index.md
 no deviceready in: cordova-plugin-file-transfer/doc/index.md
 no deviceready in: cordova-plugin-file/doc/index.md
 no deviceready in: cordova-plugin-geolocation/doc/index.md
 no deviceready in: cordova-plugin-globalization/doc/index.md
 no deviceready in: cordova-plugin-inappbrowser/doc/index.md
 no deviceready in: cordova-plugin-media-capture/doc/index.md
 no deviceready in: cordova-plugin-media/doc/index.md
 no deviceready in: cordova-plugin-statusbar/doc/index.md
 no deviceready in: cordova-plugin-vibration/doc/index.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-7977) mention deviceready in plugin docs

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7977:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-plugin-media-capture/pull/29


 mention deviceready in plugin docs
 --

 Key: CB-7977
 URL: https://issues.apache.org/jira/browse/CB-7977
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera, Plugin Console, Plugin Device Motion, 
 Plugin Device Orientation, Plugin Dialogs, Plugin File, Plugin File Transfer, 
 Plugin Geolocation, Plugin Globalization, Plugin InAppBrowser, Plugin Media, 
 Plugin Media Capture, Plugin Statusbar, Plugin Vibration
Affects Versions: 3.5.0
Reporter: Josh Soref
Assignee: Josh Soref

 for a in cordova-plugin-*; do test -f  $a/doc/index.md  grep -l deviceready 
 $a/doc/index.md || (grep -L deviceready $a/doc/index.md |sed -e 's/^/no 
 deviceready in: /'; grep -lr decideready $a/*); done 2/dev/null |sort
 cordova-plugin-battery-status/doc/index.md
 cordova-plugin-device/doc/index.md
 cordova-plugin-network-information/doc/index.md
 cordova-plugin-splashscreen/doc/index.md
 no deviceready in: cordova-plugin-camera/doc/index.md
 no deviceready in: cordova-plugin-console/doc/index.md
 no deviceready in: cordova-plugin-contacts/doc/index.md
 no deviceready in: cordova-plugin-device-motion/doc/index.md
 no deviceready in: cordova-plugin-device-orientation/doc/index.md
 no deviceready in: cordova-plugin-dialogs/doc/index.md
 no deviceready in: cordova-plugin-file-transfer/doc/index.md
 no deviceready in: cordova-plugin-file/doc/index.md
 no deviceready in: cordova-plugin-geolocation/doc/index.md
 no deviceready in: cordova-plugin-globalization/doc/index.md
 no deviceready in: cordova-plugin-inappbrowser/doc/index.md
 no deviceready in: cordova-plugin-media-capture/doc/index.md
 no deviceready in: cordova-plugin-media/doc/index.md
 no deviceready in: cordova-plugin-statusbar/doc/index.md
 no deviceready in: cordova-plugin-vibration/doc/index.md



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

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



[jira] [Updated] (CB-8253) Fix potential unreleased resources

2015-01-07 Thread Jesse MacFadyen (JIRA)

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

Jesse MacFadyen updated CB-8253:

Assignee: Alan Kinzie

 Fix potential unreleased resources
 --

 Key: CB-8253
 URL: https://issues.apache.org/jira/browse/CB-8253
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin Camera
Reporter: Alan Kinzie
Assignee: Alan Kinzie

 There are several places in the Camera plugin where streams are not closed in 
 a finally block allowing for the possibility they will never be closed if an 
 exception occurs at the wrong place.
 Although this doesn't affect functionality as far as I can tell (if enough 
 resources streams are not closed properly maybe it could affect performance), 
 it does show up as an issue in static code analysis tools (such as Fortify).



--
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-8234) IOS Phonegap camera plugin is broken on IOS 8 and above.

2015-01-07 Thread sandstrom (JIRA)

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

sandstrom commented on CB-8234:
---

I think a code example which reproduces the issue will increase the probability 
that this will get resolved. Here is a short writeup on why it matters: 
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html

 IOS Phonegap camera plugin is broken on IOS 8 and above.
 

 Key: CB-8234
 URL: https://issues.apache.org/jira/browse/CB-8234
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Reporter: pvagare

 I get following error while I am taking the photo from iPhone camera.
 Snapshotting a view that has not been rendered results in an empty snapshot. 
 Ensure your view has been rendered at least once before snapshotting or 
 snapshot after screen updates.
 My platform details.  IOS 8.1.2, cordova 3.5
 Please update the camera plugin as early as possible. 



--
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-8262) Project names that start with . fail to build for iOS

2015-01-07 Thread Dan Levine (JIRA)
Dan Levine created CB-8262:
--

 Summary: Project names that start with . fail to build for iOS
 Key: CB-8262
 URL: https://issues.apache.org/jira/browse/CB-8262
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.5.0
Reporter: Dan Levine
Priority: Minor


If a Cordova project is created whose name begins with a ., then that project 
will fail to build for iOS. The following error is reported:

Command failed with exit code 66 '.xcodeproj' does not exist



--
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-7880) [windows] cordova version not detected on plugin installation

2015-01-07 Thread Pooran Prasad Rajanna (JIRA)

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

Pooran Prasad Rajanna commented on CB-7880:
---

Any update? 

 [windows] cordova version not detected on plugin installation
 ---

 Key: CB-7880
 URL: https://issues.apache.org/jira/browse/CB-7880
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI, Windows
Affects Versions: 4.0.0
Reporter: Michael Schmidt

 the CLI command cordova plugin add ### leads for the windows platform to 
 the following warning:
 Installing  for windows
 cordova version not detected (lacks script 
 /Users/demo/phonegaptest/platforms/windows/cordova/version ), continuing.



--
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-7950) CLI create.js misspells parseConfig on line 36

2015-01-07 Thread ASF subversion and git services (JIRA)

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

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

Commit 0791bf6cfb095ef17f83ff5b1e010558e3ee487a in cordova-cli's branch 
refs/heads/master from [~jsoref]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=0791bf6 ]

CB-7950 CLI create.js misspells parseConfig


 CLI create.js misspells parseConfig on line 36
 --

 Key: CB-7950
 URL: https://issues.apache.org/jira/browse/CB-7950
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Reporter: Lisa Seacat DeLuca
Assignee: Lorin Beer

 https://github.com/apache/cordova-cli/blob/master/src/create.js
 Checkout line 36
 It says:
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseCofig(undashed[4]);
 I believe it should be
 // parseConfig will determine if there's a valid config JSON string
 cfg = parseConfig(undashed[4]);



--
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-7739) document installing specific version of platforms

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-7739:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-cli/pull/195


 document installing specific version of platforms
 -

 Key: CB-7739
 URL: https://issues.apache.org/jira/browse/CB-7739
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 3.6.0
Reporter: Josh Soref
Assignee: Josh Soref

 {quote}
 $ cordova platform --help
 Synopsis
 cordova platform command \[options]
 Manage project platforms
 add name|directory \[...] .. add specified platforms
 directory is a directory containing a 
 platform
 name of platform to be retrieved from 
 npm registry
 --usegit .. retrieve from git instead of npm 
 registry
 remove platform \[...] ... remove specified platforms
 list .. list all installed and available 
 platforms
 update platform . update the version of Cordova used 
 for a specific
 platform; use after updating the CLI.
 --usegit .. retrieve platform from git instead of 
 npm registry
 check . list platforms which can be updated 
 by `cordova platform update`
 aliases:
 platforms - platform
 rm - remove
 ls - list
 {quote}
 You can do:
 {quote}
 cordova platform add android@3.6
 {quote}
 or
 {quote}
 cordova platform add ~/cordova-android
 {quote}
 or
 {quote}
 cordova platform add https://github.com/apache/cordova-android
 {quote} -- some syntax that I don't know



--
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-8226) 'cordova platform add' should look into config.xml for correct engine element when no version is provided

2015-01-07 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8226:


Github user omefire commented on the pull request:

https://github.com/apache/cordova-lib/pull/140#issuecomment-69056950
  
travis-ci failure not related to my changes.


 'cordova platform add' should look into config.xml for correct engine element 
 when no version is provided
 -

 Key: CB-8226
 URL: https://issues.apache.org/jira/browse/CB-8226
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CordovaLib
Affects Versions: Master
Reporter: Omar Mefire
   Original Estimate: 48h
  Remaining Estimate: 48h

 When the 'cordova platform add' command is executed with no version specified 
 (e.g: user runs ‘cordova platform add android’ instead of ‘cordova platform 
 add android@3.6.4’), cordova-lib should look at the config.xml file for the 
 correct engine element and use its version. It should default to using the 
 pinned version if there is no corresponding engine element in the 
 config.xml file. 
 For example, if the user enters : 'cordova platform add android' and the 
 config.xml file contains this entry: cdv:engine id=android 
 version=file://C:/folder/to/android/platform /, We should use the 
 specified folder's bin/create scripts to add the android platform, not the 
 default version.
 The engine element in config.xml could be one of the following form :
 1- cdv:engine id=android version=3.6.0 /
 2- cdv:engine id=android version=file://C:/folder/to/android/platform /



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