[jira] [Commented] (CB-5647) cordova_plugins.js folder not populated with clobbers for Android

2014-02-14 Thread Aras (JIRA)

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

Aras commented on CB-5647:
--

I think I am hitting this problem right now on ios. Using cordova version 3.3. 
I am working on a plugin and noticed my cordova_plugins.js file did not have 
any entry. After running `cordova prepare` twice the proper file seems to have 
been generated now.

 cordova_plugins.js folder not populated with clobbers for Android 
 --

 Key: CB-5647
 URL: https://issues.apache.org/jira/browse/CB-5647
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, CLI
Affects Versions: 3.3.0
Reporter: Greg
Assignee: Lorin Beer

 If you try to run any plugin command using PhoneGap CLI, such as:
 phonegap local plugin add org.apache.cordova.splashscreen
 The cordova_plugins.js does not get updated and the JS file doesn't get added 
 to the www/ section. Native hooks are added, but not the JS side.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6036) FileTransfer multiple files doesn't work on WP8

2014-02-14 Thread JIRA
André van der Plas created CB-6036:
--

 Summary: FileTransfer multiple files doesn't work on WP8
 Key: CB-6036
 URL: https://issues.apache.org/jira/browse/CB-6036
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP8
Affects Versions: 3.3.0
Reporter: André van der Plas
Assignee: Jesse MacFadyen


I was trying to upload multiple photos on my WP8 testing device, but the files 
weren't sent.

It worked on my ios and android environments though. Also posting one photo did 
work on the WP8 device.

After debugging I found out that inside the FileTransfer plugin there was a 
problem with the callback id's not being used correctly. The moment one thread 
finished uploading, multiple threads started using the same callback id.

In the end I fixed this issue by adding a (probably missing parameter) inside 
the ReadCallback method. I changed 

DispatchCommandResult(new PluginResult(PluginResult.Status.OK, new 
FileUploadResult(bytesSent, (long)response.StatusCode, responseString)));

Into

DispatchCommandResult(new PluginResult(PluginResult.Status.OK, new 
FileUploadResult(bytesSent, (long)response.StatusCode, responseString)), 
reqState.options.CallbackId);





--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6037) [Blackberry10] add/clarify steps, also add simulator requirements

2014-02-14 Thread Martin Gonzalez (JIRA)
Martin Gonzalez created CB-6037:
---

 Summary: [Blackberry10] add/clarify steps, also add simulator 
requirements
 Key: CB-6037
 URL: https://issues.apache.org/jira/browse/CB-6037
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
 Fix For: 3.4.0



Clarify some steps about how to get the Blackberry 10 Native SKD, add some 
steps about what to with environment problems under each platform.

Add some information about the Blackberry 10 Simulator requirements.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6038) null reference error in InAppBrowser plugin for WP8

2014-02-14 Thread JIRA
André van der Plas created CB-6038:
--

 Summary: null reference error in InAppBrowser plugin for WP8
 Key: CB-6038
 URL: https://issues.apache.org/jira/browse/CB-6038
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP8
Affects Versions: 3.3.0
Reporter: André van der Plas
Assignee: Jesse MacFadyen


Inside the InAppBrowser.cs file there is a method named 'open' that tries to 
perform a featstring.Split(',') where featstring is the options argument when 
performing a window.open call.
This third parameter is optional though and can be null. 

Fix by checking wheter args[2] = null



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5398) Pick image from Library or Photo album on android 4.4

2014-02-14 Thread Ian Clelland (JIRA)

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

Ian Clelland commented on CB-5398:
--

Andrew -- the %3A may not be a sufficient indicator for this -- I've seen other 
providers using different strings; Drive, for instance, encodes a string like 
acc=1;doc=12345678 as acc%3D1%3Bdoc%3D12345678.

I think in general, all URLs using the content:// scheme may have to have their 
entire path decoded, or at least subject to remapping, as you've done.

 Pick image from Library or Photo album on android 4.4
 -

 Key: CB-5398
 URL: https://issues.apache.org/jira/browse/CB-5398
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin Camera
Affects Versions: 2.9.0, 3.2.0
 Environment: android 4.4
Reporter: julio cesar
Assignee: Mike Billau
 Fix For: 3.5.0


 An android 4.4 try to pick a photo using pictureSource.PHOTOLIBRARY or 
 pictureSource.SAVEDPHOTOALBUM and return type destinationType.FILE_URI.
 Now android 4.4, when you select the above options, it opens an open from 
 dialog that  let you choose from new places as Recent, Drive, Images 
 and Downloads (the names might not be the same as I use the device in 
 spanish and translated it).
 If you choose any of them, you get an error, AndroidProtocolHandler, unable 
 to open content URL: the url here with a content://com.android.providers 
 format.
 I've tested on phonegap 2.9 because this is the version I use, but I suppose 
 it affects all of them. (in fact I use 2.9.1)



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6039) [windows8] Add test that correct msbuild version is in the path

2014-02-14 Thread Sergey Grebnov (JIRA)
Sergey Grebnov created CB-6039:
--

 Summary: [windows8] Add test that correct msbuild version is in 
the path
 Key: CB-6039
 URL: https://issues.apache.org/jira/browse/CB-6039
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI, Windows 8
Reporter: Sergey Grebnov
Assignee: Sergey Grebnov


1. Test for msbuild is in the path was removed as part of CB-5359 fix.
Due to this in case of msbuild command is NOT in the path 'cordova build 
windows8' reports success, but no build artifacts are produced. Must be fixed.

2. We don't officially support windows8.1 project template, but it is possible 
to upgrade your project file 
(.cordova\lib\windows8\cordova\3.x.x\windows8\template) so that cordova 
produces windows81 application instead of windows8. In this case msbuild tools 
v12 (comes with Visual Studio 2013) must be used instead of v4.0 (see below).  
So build command must recognize if msbuild version in the path does not match 
target template and report this to user.

New Visual Studio 2013 comes with new MS Build tools v12.

 msbuild /ver
Microsoft (R) Build Engine version 12.0.21005.1
[Microsoft .NET Framework, version 4.0.30319.34003]
Copyright (C) Microsoft Corporation. All rights reserved.

12.0.21005.1

But windows8\bin\check_reqs.js fails since it expects the following output

msbuild /ver
Microsoft (R) Build Engine version 4.0.30319.33440
[Microsoft .NET Framework, version 4.0.30319.34003]
Copyright (C) Microsoft Corporation. All rights reserved.

If I remove this check for particular msbuild version cordova-cli can 
successfully create windows8 template and then build it using MSBuild v12.




--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-2432) Camera doesn't pick Picasa photos properly

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit c56b33035edcfae3327369cb64c4e6818e3d84b4 in branch refs/heads/dev from 
[~iclelland]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=c56b330 ]

CB-2432 CB-3185 CB-5975: Correctly handle content:// urls especially when 
non-local-to-device


 Camera doesn't pick Picasa photos properly
 --

 Key: CB-2432
 URL: https://issues.apache.org/jira/browse/CB-2432
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Reporter: Max Woghiren
Assignee: Andrew Grieve
Priority: Minor
 Fix For: 3.4.0


 Picking a Picasa photo results in an error on some devices.  From CB-2213:
 Picking a file from Picasa works on my Galaxy S2 running Android 4.0.3. Doing 
 so copies the image locally and works with that.
 Picking a file from Picasa does not work on Andrew's Nexus 4 running Android 
 4.2.2. The Intent passed to CameraLauncher.onActivityResult contains a NOT 
 CACHED URI and appears to be unusable.
 However, when the Intent is being created in CameraLauncher.getImage, it is 
 given an image/\* type. Changing this to \*/\* provides a content URI, 
 which is nice, but it's of the form 
 content://com.google.android.gallery3d.provider/picasa/item/..., which 
 isn't usable in the usual way; FileUtils.getRealPathFromURI returns null. 
 This case probably just needs to be handled using 
 ContentResolver.openInputStream, which would require some FileUtils 
 refactoring.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-3185) Exception resolving a Dropbox file from the Gallery

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit c56b33035edcfae3327369cb64c4e6818e3d84b4 in branch refs/heads/dev from 
[~iclelland]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=c56b330 ]

CB-2432 CB-3185 CB-5975: Correctly handle content:// urls especially when 
non-local-to-device


 Exception resolving a Dropbox file from the Gallery
 ---

 Key: CB-3185
 URL: https://issues.apache.org/jira/browse/CB-3185
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 2.6.0
Reporter: Abel Muiño
Assignee: Ian Clelland

 The following exception shows in the Logcat:
 {noformat} 
 04-19 10:56:08.360: W/System.err(7926): java.io.FileNotFoundException: 
 /storage/emulated/0/Android/data/com.dropbox.android/files/scratch/Camera%20Uploads/2012-09-09%2011.20.25.jpg:
  open failed: ENOENT (No such file or directory)
 04-19 10:56:08.390: W/System.err(7926):   at 
 libcore.io.IoBridge.open(IoBridge.java:416)
 04-19 10:56:08.390: W/System.err(7926):   at 
 java.io.FileInputStream.init(FileInputStream.java:78)
 04-19 10:56:08.390: W/System.err(7926):   at 
 java.io.FileInputStream.init(FileInputStream.java:105)
 04-19 10:56:08.390: W/System.err(7926):   at 
 org.apache.cordova.FileHelper.getInputStreamFromUriString(FileHelper.java:98)
 04-19 10:56:08.390: W/System.err(7926):   at 
 org.apache.cordova.CameraLauncher.getScaledBitmap(CameraLauncher.java:582)
 04-19 10:56:08.390: W/System.err(7926):   at 
 org.apache.cordova.CameraLauncher.onActivityResult(CameraLauncher.java:411)
 04-19 10:56:08.390: W/System.err(7926):   at 
 org.apache.cordova.DroidGap.onActivityResult(DroidGap.java:864)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.Activity.dispatchActivityResult(Activity.java:5293)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread.deliverResults(ActivityThread.java:3315)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread.handleSendResult(ActivityThread.java:3362)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread.access$1100(ActivityThread.java:141)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread$H.handleMessage(ActivityThread.java:1282)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.os.Handler.dispatchMessage(Handler.java:99)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.os.Looper.loop(Looper.java:137)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread.main(ActivityThread.java:5041)
 04-19 10:56:08.390: W/System.err(7926):   at 
 java.lang.reflect.Method.invokeNative(Native Method)
 04-19 10:56:08.390: W/System.err(7926):   at 
 java.lang.reflect.Method.invoke(Method.java:511)
 04-19 10:56:08.400: W/System.err(7926):   at 
 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
 04-19 10:56:08.400: W/System.err(7926):   at 
 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
 04-19 10:56:08.400: W/System.err(7926):   at 
 dalvik.system.NativeStart.main(Native Method)
 04-19 10:56:08.400: W/System.err(7926): Caused by: 
 libcore.io.ErrnoException: open failed: ENOENT (No such file or directory)
 04-19 10:56:08.400: W/System.err(7926):   at libcore.io.Posix.open(Native 
 Method)
 04-19 10:56:08.400: W/System.err(7926):   at 
 libcore.io.BlockGuardOs.open(BlockGuardOs.java:110)
 04-19 10:56:08.400: W/System.err(7926):   at 
 libcore.io.IoBridge.open(IoBridge.java:400)
 04-19 10:56:08.410: W/System.err(7926):   ... 19 more
 {noformat} 



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5975) You cannot select a pdf / doc etc file from gallery

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit c56b33035edcfae3327369cb64c4e6818e3d84b4 in branch refs/heads/dev from 
[~iclelland]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=c56b330 ]

CB-2432 CB-3185 CB-5975: Correctly handle content:// urls especially when 
non-local-to-device


 You cannot select a pdf / doc etc file from gallery
 -

 Key: CB-5975
 URL: https://issues.apache.org/jira/browse/CB-5975
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin File, Plugin File Transfer
Affects Versions: 3.0.0, 3.1.0, 3.2.0, 3.3.0
 Environment: Android
Reporter: DotNetWise
Assignee: Ian Clelland
  Labels: security
   Original Estimate: 4h
  Remaining Estimate: 4h

 I have reported this bug twice as a pull request on github but no one seems 
 to look at that!! Shame on you!
 If you select a file from the recent downloaded files (via Select From 
 Library) you get a silent error
 The reported url of the file to be resolved is 
 content://com.android.providers.downloads.documents/document/629
 The error or success callback are never being called but when looking with 
 adb logcat I'm getting a NullPointerReference exception
 W/System.err( 5278): java.lang.NullPointerException
 W/System.err( 5278):at java.io.File.fixSlashes(File.java:185)
 W/System.err( 5278):at java.io.File.init(File.java:134)
 W/System.err( 5278):at 
 org.apache.cordova.file.FileUtils.resolveLocalFileSystemURI(FileUtils.java:392)
 W/System.err( 5278):at 
 org.apache.cordova.file.FileUtils.access$200(FileUtils.java:53)
 W/System.err( 5278):at 
 org.apache.cordova.file.FileUtils$12.run(FileUtils.java:203)
 W/System.err( 5278):at 
 org.apache.cordova.file.FileUtils$23.run(FileUtils.java:325)
 W/System.err( 5278):at 
 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
 W/System.err( 5278):at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
 W/System.err( 5278):at java.lang.Thread.run(Thread.java:841)
 https://github.com/apache/cordova-plugin-file/pulls/dotnetwise
 https://github.com/dotnetwise/cordova-plugin-file/commit/739d2fd5db8643acb92f186bd3a8a89b5289ead5



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6024) nopt refactoring

2014-02-14 Thread Jonathan Bond (JIRA)

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

Jonathan Bond commented on CB-6024:
---

Pull requests:
https://github.com/apache/cordova-cli/pull/129
https://github.com/apache/cordova-plugman/pull/48


 nopt refactoring
 

 Key: CB-6024
 URL: https://issues.apache.org/jira/browse/CB-6024
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CLI, Plugman
Affects Versions: 3.3.0
 Environment: Windows, Mac OSX
Reporter: Jonathan Bond
  Labels: patch
 Fix For: 3.5.0


 As per mailing list:
 - Refactoring cli to use nopt. 
 - Several improvements to the install/uninstall tests to touch the file 
 system.
 - Consistency improvements in the code



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-3185) Exception resolving a Dropbox file from the Gallery

2014-02-14 Thread Ian Clelland (JIRA)

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

Ian Clelland commented on CB-3185:
--

Abel, can you try this again with the latest release of the File plugin?

From your original traceback, I believe that the problem with the encoded 
spaces in the URLs will be solved. However, if DropBox is acting as a content 
provider, then you might have to try the latest dev branch of File; I've fixed 
a number of issues with the handling of content:// URLs in the last couple of 
days.

 Exception resolving a Dropbox file from the Gallery
 ---

 Key: CB-3185
 URL: https://issues.apache.org/jira/browse/CB-3185
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 2.6.0
Reporter: Abel Muiño
Assignee: Ian Clelland

 The following exception shows in the Logcat:
 {noformat} 
 04-19 10:56:08.360: W/System.err(7926): java.io.FileNotFoundException: 
 /storage/emulated/0/Android/data/com.dropbox.android/files/scratch/Camera%20Uploads/2012-09-09%2011.20.25.jpg:
  open failed: ENOENT (No such file or directory)
 04-19 10:56:08.390: W/System.err(7926):   at 
 libcore.io.IoBridge.open(IoBridge.java:416)
 04-19 10:56:08.390: W/System.err(7926):   at 
 java.io.FileInputStream.init(FileInputStream.java:78)
 04-19 10:56:08.390: W/System.err(7926):   at 
 java.io.FileInputStream.init(FileInputStream.java:105)
 04-19 10:56:08.390: W/System.err(7926):   at 
 org.apache.cordova.FileHelper.getInputStreamFromUriString(FileHelper.java:98)
 04-19 10:56:08.390: W/System.err(7926):   at 
 org.apache.cordova.CameraLauncher.getScaledBitmap(CameraLauncher.java:582)
 04-19 10:56:08.390: W/System.err(7926):   at 
 org.apache.cordova.CameraLauncher.onActivityResult(CameraLauncher.java:411)
 04-19 10:56:08.390: W/System.err(7926):   at 
 org.apache.cordova.DroidGap.onActivityResult(DroidGap.java:864)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.Activity.dispatchActivityResult(Activity.java:5293)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread.deliverResults(ActivityThread.java:3315)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread.handleSendResult(ActivityThread.java:3362)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread.access$1100(ActivityThread.java:141)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread$H.handleMessage(ActivityThread.java:1282)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.os.Handler.dispatchMessage(Handler.java:99)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.os.Looper.loop(Looper.java:137)
 04-19 10:56:08.390: W/System.err(7926):   at 
 android.app.ActivityThread.main(ActivityThread.java:5041)
 04-19 10:56:08.390: W/System.err(7926):   at 
 java.lang.reflect.Method.invokeNative(Native Method)
 04-19 10:56:08.390: W/System.err(7926):   at 
 java.lang.reflect.Method.invoke(Method.java:511)
 04-19 10:56:08.400: W/System.err(7926):   at 
 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
 04-19 10:56:08.400: W/System.err(7926):   at 
 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
 04-19 10:56:08.400: W/System.err(7926):   at 
 dalvik.system.NativeStart.main(Native Method)
 04-19 10:56:08.400: W/System.err(7926): Caused by: 
 libcore.io.ErrnoException: open failed: ENOENT (No such file or directory)
 04-19 10:56:08.400: W/System.err(7926):   at libcore.io.Posix.open(Native 
 Method)
 04-19 10:56:08.400: W/System.err(7926):   at 
 libcore.io.BlockGuardOs.open(BlockGuardOs.java:110)
 04-19 10:56:08.400: W/System.err(7926):   at 
 libcore.io.IoBridge.open(IoBridge.java:400)
 04-19 10:56:08.410: W/System.err(7926):   ... 19 more
 {noformat} 



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5398) Pick image from Library or Photo album on android 4.4

2014-02-14 Thread Andrew Grieve (JIRA)

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

Andrew Grieve commented on CB-5398:
---

Thanks Ian. I've modified it to apply to all content: URIs

 Pick image from Library or Photo album on android 4.4
 -

 Key: CB-5398
 URL: https://issues.apache.org/jira/browse/CB-5398
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin Camera
Affects Versions: 2.9.0, 3.2.0
 Environment: android 4.4
Reporter: julio cesar
Assignee: Mike Billau
 Fix For: 3.5.0


 An android 4.4 try to pick a photo using pictureSource.PHOTOLIBRARY or 
 pictureSource.SAVEDPHOTOALBUM and return type destinationType.FILE_URI.
 Now android 4.4, when you select the above options, it opens an open from 
 dialog that  let you choose from new places as Recent, Drive, Images 
 and Downloads (the names might not be the same as I use the device in 
 spanish and translated it).
 If you choose any of them, you get an error, AndroidProtocolHandler, unable 
 to open content URL: the url here with a content://com.android.providers 
 format.
 I've tested on phonegap 2.9 because this is the version I use, but I suppose 
 it affects all of them. (in fact I use 2.9.1)



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5398) Pick image from Library or Photo album on android 4.4

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit 7741312673e36607f4c985b538f07105e84ae0b8 in branch refs/heads/master 
from [~agrieve]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=7741312 ]

CB-5398 Apply KitKat content URI fix to all content URIs


 Pick image from Library or Photo album on android 4.4
 -

 Key: CB-5398
 URL: https://issues.apache.org/jira/browse/CB-5398
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin Camera
Affects Versions: 2.9.0, 3.2.0
 Environment: android 4.4
Reporter: julio cesar
Assignee: Mike Billau
 Fix For: 3.5.0


 An android 4.4 try to pick a photo using pictureSource.PHOTOLIBRARY or 
 pictureSource.SAVEDPHOTOALBUM and return type destinationType.FILE_URI.
 Now android 4.4, when you select the above options, it opens an open from 
 dialog that  let you choose from new places as Recent, Drive, Images 
 and Downloads (the names might not be the same as I use the device in 
 spanish and translated it).
 If you choose any of them, you get an error, AndroidProtocolHandler, unable 
 to open content URL: the url here with a content://com.android.providers 
 format.
 I've tested on phonegap 2.9 because this is the version I use, but I suppose 
 it affects all of them. (in fact I use 2.9.1)



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5982) Documentation improvents for Android Platform Guide

2014-02-14 Thread Martin Gonzalez (JIRA)

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

Martin Gonzalez commented on CB-5982:
-


Pull request link:

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

Just waiting for review.

 Documentation improvents for Android Platform Guide
 ---

 Key: CB-5982
 URL: https://issues.apache.org/jira/browse/CB-5982
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: android, document, guide, platform

 There are some improvements that can be added to the Android Platform Guide, 
 this is about some sections of the guidance that can better explained and 
 more specific, besides of some updates.
 -Specify that has to be the eclipse that go along with the Android SDK and no 
 other.
 -Android Virtual Devices, specify requirements, update and clarify several 
 instructions to walk through that procedure, in order work with Intel x86 
 Atom Image.
 -Update and improve other steps.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6032) [WP7] Update Cordova download and WP7 SDK links

2014-02-14 Thread Martin Gonzalez (JIRA)

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

Martin Gonzalez commented on CB-6032:
-


Pull request link:

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

Just waiting for review.

 [WP7] Update Cordova download and WP7 SDK links 
 

 Key: CB-6032
 URL: https://issues.apache.org/jira/browse/CB-6032
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: cordova, docs, links, sdk, wp7
 Fix For: 3.4.0


 There is a link to phonegap instead of cordova download link.
 Also the Windows Mobile 7 SDK link, it's outdated.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-5982) Documentation improvents for Android Platform Guide

2014-02-14 Thread Andrew Grieve (JIRA)

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

Andrew Grieve resolved CB-5982.
---

   Resolution: Fixed
Fix Version/s: 3.5.0

 Documentation improvents for Android Platform Guide
 ---

 Key: CB-5982
 URL: https://issues.apache.org/jira/browse/CB-5982
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: android, document, guide, platform
 Fix For: 3.5.0


 There are some improvements that can be added to the Android Platform Guide, 
 this is about some sections of the guidance that can better explained and 
 more specific, besides of some updates.
 -Specify that has to be the eclipse that go along with the Android SDK and no 
 other.
 -Android Virtual Devices, specify requirements, update and clarify several 
 instructions to walk through that procedure, in order work with Intel x86 
 Atom Image.
 -Update and improve other steps.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6037) [Blackberry10] add/clarify steps, also add simulator requirements

2014-02-14 Thread Martin Gonzalez (JIRA)

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

Martin Gonzalez commented on CB-6037:
-


Pull request link:

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

Just waiting for review.


 [Blackberry10] add/clarify steps, also add simulator requirements
 -

 Key: CB-6037
 URL: https://issues.apache.org/jira/browse/CB-6037
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: blackberry10, platform, requirements
 Fix For: 3.4.0


 Clarify some steps about how to get the Blackberry 10 Native SKD, add some 
 steps about what to with environment problems under each platform.
 Add some information about the Blackberry 10 Simulator requirements.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6032) [WP7] Update Cordova download and WP7 SDK links

2014-02-14 Thread Marcel Kinard (JIRA)

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

Marcel Kinard commented on CB-6032:
---

Merged. Thanks for the contribution! Please close the pull request.

 [WP7] Update Cordova download and WP7 SDK links 
 

 Key: CB-6032
 URL: https://issues.apache.org/jira/browse/CB-6032
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: cordova, docs, links, sdk, wp7
 Fix For: 3.4.0


 There is a link to phonegap instead of cordova download link.
 Also the Windows Mobile 7 SDK link, it's outdated.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6032) [WP7] Update Cordova download and WP7 SDK links

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit 6d845291bf01c2c219f84f1c8357423585779933 in branch refs/heads/master 
from [~martin.c.glez.glez]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=6d84529 ]

CB-6032: Cordova download  SDK links updated

https://issues.apache.org/jira/browse/CB-6032

This is about updates for the SDK and Cordova download link.

The WP7 SDK link was obsolete, and the Cordova download link led to the
Phonegap download site.

Now both are updated.


 [WP7] Update Cordova download and WP7 SDK links 
 

 Key: CB-6032
 URL: https://issues.apache.org/jira/browse/CB-6032
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: cordova, docs, links, sdk, wp7
 Fix For: 3.4.0


 There is a link to phonegap instead of cordova download link.
 Also the Windows Mobile 7 SDK link, it's outdated.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6037) [Blackberry10] add/clarify steps, also add simulator requirements

2014-02-14 Thread Marcel Kinard (JIRA)

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

Marcel Kinard commented on CB-6037:
---

Merge complete. Thanks for the contribution. I removed some trailing 
whitespaces, watch out for that. Please close the pull request, and this Jira 
item if you are satisfied.

 [Blackberry10] add/clarify steps, also add simulator requirements
 -

 Key: CB-6037
 URL: https://issues.apache.org/jira/browse/CB-6037
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: blackberry10, platform, requirements
 Fix For: 3.4.0


 Clarify some steps about how to get the Blackberry 10 Native SKD, add some 
 steps about what to with environment problems under each platform.
 Add some information about the Blackberry 10 Simulator requirements.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6037) [Blackberry10] add/clarify steps, also add simulator requirements

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit 49251ad2e167e6963f07d0a806618ebc2ac1fcb7 in branch refs/heads/master 
from [~martin.c.glez.glez]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=49251ad ]

CB-6037: Blackberry10 updated platform guide

Added/clarified steps

Added Blackberry Simulator device requirements

References:

http://developer.blackberry.com/native/download/

http://developer.blackberry.com/devzone/develop/simulator/blackberry_10_simulator_start.html

http://developer.blackberry.com/devzone/develop/simulator/simulator_systemrequirements.html


 [Blackberry10] add/clarify steps, also add simulator requirements
 -

 Key: CB-6037
 URL: https://issues.apache.org/jira/browse/CB-6037
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: blackberry10, platform, requirements
 Fix For: 3.4.0


 Clarify some steps about how to get the Blackberry 10 Native SKD, add some 
 steps about what to with environment problems under each platform.
 Add some information about the Blackberry 10 Simulator requirements.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6037) [Blackberry10] add/clarify steps, also add simulator requirements

2014-02-14 Thread Martin Gonzalez (JIRA)

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

Martin Gonzalez commented on CB-6037:
-

Thanks Marcel, I'll be more careful. Closing Item.

 [Blackberry10] add/clarify steps, also add simulator requirements
 -

 Key: CB-6037
 URL: https://issues.apache.org/jira/browse/CB-6037
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: blackberry10, platform, requirements
 Fix For: 3.4.0


 Clarify some steps about how to get the Blackberry 10 Native SKD, add some 
 steps about what to with environment problems under each platform.
 Add some information about the Blackberry 10 Simulator requirements.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-6037) [Blackberry10] add/clarify steps, also add simulator requirements

2014-02-14 Thread Martin Gonzalez (JIRA)

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

Martin Gonzalez resolved CB-6037.
-

Resolution: Fixed

 [Blackberry10] add/clarify steps, also add simulator requirements
 -

 Key: CB-6037
 URL: https://issues.apache.org/jira/browse/CB-6037
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Docs
Affects Versions: 3.3.0
Reporter: Martin Gonzalez
Assignee: Martin Gonzalez
Priority: Minor
  Labels: blackberry10, platform, requirements
 Fix For: 3.4.0


 Clarify some steps about how to get the Blackberry 10 Native SKD, add some 
 steps about what to with environment problems under each platform.
 Add some information about the Blackberry 10 Simulator requirements.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5910) implement search

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit 6100848c1055723fcbe91f4bec6e8c7c592bb7f3 in branch refs/heads/refactor 
from [~stevegill]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-registry-web.git;h=6100848 ]

CB-5910: added initial implementaiton of search


 implement search
 

 Key: CB-5910
 URL: https://issues.apache.org/jira/browse/CB-5910
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Registry Web
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Assigned] (CB-5910) implement search

2014-02-14 Thread Steve Gill (JIRA)

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

Steve Gill reassigned CB-5910:
--

Assignee: Steve Gill  (was: Josh Bavari)

 implement search
 

 Key: CB-5910
 URL: https://issues.apache.org/jira/browse/CB-5910
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Registry Web
Reporter: Steve Gill
Assignee: Steve Gill





--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6040) directory is misspelled in docs/en/3.3.0/guide/cli/index.md

2014-02-14 Thread Adam Bowen (JIRA)
Adam Bowen created CB-6040:
--

 Summary: directory is misspelled in 
docs/en/3.3.0/guide/cli/index.md
 Key: CB-6040
 URL: https://issues.apache.org/jira/browse/CB-6040
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Adam Bowen
Priority: Trivial


On line 157, directory is spelled as direcotry.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6040) directory is misspelled in docs/en/3.3.0/guide/cli/index.md

2014-02-14 Thread Adam Bowen (JIRA)

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

Adam Bowen commented on CB-6040:


Fixed in https://github.com/apache/cordova-docs/pull/186

 directory is misspelled in docs/en/3.3.0/guide/cli/index.md
 -

 Key: CB-6040
 URL: https://issues.apache.org/jira/browse/CB-6040
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Adam Bowen
Priority: Trivial
  Labels: documentation
   Original Estimate: 5m
  Remaining Estimate: 5m

 On line 157, directory is spelled as direcotry.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6040) directory is misspelled in docs/en/3.3.0/guide/cli/index.md

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit 9eba609a5796ff4dac519aa53c0a3a98a7b2a55e in branch refs/heads/master 
from [~adamnbowen]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=9eba609 ]

CB-6040: Correct spelling of directory


 directory is misspelled in docs/en/3.3.0/guide/cli/index.md
 -

 Key: CB-6040
 URL: https://issues.apache.org/jira/browse/CB-6040
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Adam Bowen
Priority: Trivial
  Labels: documentation
   Original Estimate: 5m
  Remaining Estimate: 5m

 On line 157, directory is spelled as direcotry.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-6040) directory is misspelled in docs/en/3.3.0/guide/cli/index.md

2014-02-14 Thread Marcel Kinard (JIRA)

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

Marcel Kinard resolved CB-6040.
---

   Resolution: Fixed
Fix Version/s: 3.4.0

Merge complete. Thanks for the contribution! Please close the pull request in 
github, since you are the only person that can do that.

 directory is misspelled in docs/en/3.3.0/guide/cli/index.md
 -

 Key: CB-6040
 URL: https://issues.apache.org/jira/browse/CB-6040
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Adam Bowen
Priority: Trivial
  Labels: documentation
 Fix For: 3.4.0

   Original Estimate: 5m
  Remaining Estimate: 5m

 On line 157, directory is spelled as direcotry.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5398) Pick image from Library or Photo album on android 4.4

2014-02-14 Thread Mike Billau (JIRA)

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

Mike Billau commented on CB-5398:
-

Thanks for looking at this!
I've been testing the update and it all seems good, I can access images from 
any source now, no matter what I set the destination_type to.
I did see that sometimes pulling an image from Drive with data_url will cause 
the app to quit with an Out Of Memory error, even when the same image can be 
opened with destination_type=file_uri. I can't reproduce this reliably though, 
I think it might be the known issue of the Camera app shutting down.

 Pick image from Library or Photo album on android 4.4
 -

 Key: CB-5398
 URL: https://issues.apache.org/jira/browse/CB-5398
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, Plugin Camera
Affects Versions: 2.9.0, 3.2.0
 Environment: android 4.4
Reporter: julio cesar
Assignee: Mike Billau
 Fix For: 3.5.0


 An android 4.4 try to pick a photo using pictureSource.PHOTOLIBRARY or 
 pictureSource.SAVEDPHOTOALBUM and return type destinationType.FILE_URI.
 Now android 4.4, when you select the above options, it opens an open from 
 dialog that  let you choose from new places as Recent, Drive, Images 
 and Downloads (the names might not be the same as I use the device in 
 spanish and translated it).
 If you choose any of them, you get an error, AndroidProtocolHandler, unable 
 to open content URL: the url here with a content://com.android.providers 
 format.
 I've tested on phonegap 2.9 because this is the version I use, but I suppose 
 it affects all of them. (in fact I use 2.9.1)



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6041) createTemplates does not add to VS-2013

2014-02-14 Thread Jesse MacFadyen (JIRA)
Jesse MacFadyen created CB-6041:
---

 Summary: createTemplates does not add to VS-2013
 Key: CB-6041
 URL: https://issues.apache.org/jira/browse/CB-6041
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP7, WP8
Affects Versions: 3.3.0
Reporter: Jesse MacFadyen
Assignee: Jesse MacFadyen
Priority: Minor
 Fix For: 3.4.0






--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6041) createTemplates does not add to VS-2013

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit 21660e5c3ba8253468f8524f48a1909b18750589 in branch refs/heads/3.4.x from 
[~purplecabbage]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-wp8.git;h=21660e5 ]

CB-6041 createTemplates should install them for VS-2013 as well


 createTemplates does not add to VS-2013
 ---

 Key: CB-6041
 URL: https://issues.apache.org/jira/browse/CB-6041
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP7, WP8
Affects Versions: 3.3.0
Reporter: Jesse MacFadyen
Assignee: Jesse MacFadyen
Priority: Minor
 Fix For: 3.4.0






--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-6041) createTemplates does not add to VS-2013

2014-02-14 Thread Jesse MacFadyen (JIRA)

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

Jesse MacFadyen resolved CB-6041.
-

Resolution: Fixed

 createTemplates does not add to VS-2013
 ---

 Key: CB-6041
 URL: https://issues.apache.org/jira/browse/CB-6041
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP7, WP8
Affects Versions: 3.3.0
Reporter: Jesse MacFadyen
Assignee: Jesse MacFadyen
Priority: Minor
 Fix For: 3.4.0






--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-5871) [Release + 3.4.0] Test Tag 3.4.0 for Windows Phone 7 8

2014-02-14 Thread Jesse MacFadyen (JIRA)

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

Jesse MacFadyen resolved CB-5871.
-

Resolution: Fixed

 [Release + 3.4.0] Test  Tag 3.4.0 for Windows Phone 7  8
 --

 Key: CB-5871
 URL: https://issues.apache.org/jira/browse/CB-5871
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: WP8
Reporter: Steve Gill
Assignee: Jesse MacFadyen
 Fix For: 3.4.0


 Refer to Workflow here:
 http://wiki.apache.org/cordova/CuttingReleases



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5854) [Release + 3.4.0] Parent Issue

2014-02-14 Thread Steve Gill (JIRA)

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

Steve Gill commented on CB-5854:


It wouldn't republish. So I tagge 3.4.0-rc.2 and published that. 

It can be downloaded with npm install cordova@rc

 [Release + 3.4.0] Parent Issue
 --

 Key: CB-5854
 URL: https://issues.apache.org/jira/browse/CB-5854
 Project: Apache Cordova
  Issue Type: Task
  Components: Amazon FireOS, Android, App Hello World, BlackBerry, 
 CLI, CordovaJS, Docs, FirefoxOS, iOS, mobile-spec, Ubuntu, Windows 8, WP8
Reporter: Steve Gill
Assignee: Steve Gill
 Fix For: 3.4.0


 Parent bug for the 3.4.0 Cordova Release.
 Workflow here:
 http://wiki.apache.org/cordova/CuttingReleases
 Release Master: ?
 Component Leads: Refer to assignee of Test  Tag sub-tasks.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6039) [windows8] Add test that correct msbuild version is in the path

2014-02-14 Thread Sergey Grebnov (JIRA)

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

Sergey Grebnov commented on CB-6039:


Pushed fix
https://github.com/apache/cordova-windows/pull/15

 [windows8] Add test that correct msbuild version is in the path
 ---

 Key: CB-6039
 URL: https://issues.apache.org/jira/browse/CB-6039
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI, Windows 8
Reporter: Sergey Grebnov
Assignee: Sergey Grebnov

 1. Test for msbuild is in the path was removed as part of CB-5359 fix.
 Due to this in case of msbuild command is NOT in the path 'cordova build 
 windows8' reports success, but no build artifacts are produced. Must be fixed.
 2. We don't officially support windows8.1 project template, but it is 
 possible to upgrade your project file 
 (.cordova\lib\windows8\cordova\3.x.x\windows8\template) so that cordova 
 produces windows81 application instead of windows8. In this case msbuild 
 tools v12 (comes with Visual Studio 2013) must be used instead of v4.0 (see 
 below).  So build command must recognize if msbuild version in the path does 
 not match target template and report this to user.
 New Visual Studio 2013 comes with new MS Build tools v12.
  msbuild /ver
 Microsoft (R) Build Engine version 12.0.21005.1
 [Microsoft .NET Framework, version 4.0.30319.34003]
 Copyright (C) Microsoft Corporation. All rights reserved.
 12.0.21005.1
 But windows8\bin\check_reqs.js fails since it expects the following output
 msbuild /ver
 Microsoft (R) Build Engine version 4.0.30319.33440
 [Microsoft .NET Framework, version 4.0.30319.34003]
 Copyright (C) Microsoft Corporation. All rights reserved.
 If I remove this check for particular msbuild version cordova-cli can 
 successfully create windows8 template and then build it using MSBuild v12.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6043) findLocalPlugin ...

2014-02-14 Thread Josh Soref (JIRA)
Josh Soref created CB-6043:
--

 Summary: findLocalPlugin ...
 Key: CB-6043
 URL: https://issues.apache.org/jira/browse/CB-6043
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugman
Reporter: Josh Soref
Priority: Minor


1. instead of for ... , consider Array.prototype.forEach
2. please don't emit a verbose warning about files what aren't directories, it 
should be perfectly reasonable for someone to have a README or LICENSE or 
package.json next to a bunch of a plugin directories



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Updated] (CB-6042) [windows8] Cordova emulate fails if no developer certificate is installed

2014-02-14 Thread Sergey Grebnov (JIRA)

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

Sergey Grebnov updated CB-6042:
---

Description: 
1. Use clean machine or uninstall current windows8 developer certificate via 
Unregister-WindowsDeveloperLicense powershell command.
2. Run 'cordova emulate windows8'
Expected: there is a prompt dialog to install developer certificate, 
application is successfully started
Actual: there is the following error message (if run with -d parameter)

Before installing this app, you need to do the following:
- Acquire a developer license
You must provide administrator credentials to proceed.  Please run this script 
without the -Force parameter or from an elevated PowerShell window.

  was:
1. Use clean machine or uninstall current windows8 developer certificate via 
Unregister-WindowsDeveloperLicense powershell command.
2. Run 'cordova emulate windows8'
Expected: there is a prompt dialog to install developer certificate, 
application is successfully started
Actual: there is the following error message (if run with -d parameter)

Before installing this app, you need to do the following:
- Acquire a developer license
You must provide administrator credentials to proceed.  Please run this script 
without the
 -Force parameter or from an elevated PowerShell window.


 [windows8] Cordova emulate fails if no developer certificate is installed
 -

 Key: CB-6042
 URL: https://issues.apache.org/jira/browse/CB-6042
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI, Windows 8
Reporter: Sergey Grebnov
Assignee: Sergey Grebnov
Priority: Minor

 1. Use clean machine or uninstall current windows8 developer certificate via 
 Unregister-WindowsDeveloperLicense powershell command.
 2. Run 'cordova emulate windows8'
 Expected: there is a prompt dialog to install developer certificate, 
 application is successfully started
 Actual: there is the following error message (if run with -d parameter)
 Before installing this app, you need to do the following:
 - Acquire a developer license
 You must provide administrator credentials to proceed.  Please run this 
 script without the -Force parameter or from an elevated PowerShell window.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6042) [windows8] Cordova emulate fails if no developer certificate is installed

2014-02-14 Thread Sergey Grebnov (JIRA)

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

Sergey Grebnov commented on CB-6042:


Pushed the fix
https://github.com/apache/cordova-windows/pull/16

 [windows8] Cordova emulate fails if no developer certificate is installed
 -

 Key: CB-6042
 URL: https://issues.apache.org/jira/browse/CB-6042
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI, Windows 8
Reporter: Sergey Grebnov
Assignee: Sergey Grebnov
Priority: Minor

 1. Use clean machine or uninstall current windows8 developer certificate via 
 Unregister-WindowsDeveloperLicense powershell command.
 2. Run 'cordova emulate windows8'
 Expected: there is a prompt dialog to install developer certificate, 
 application is successfully started
 Actual: there is the following error message (if run with -d parameter)
 Before installing this app, you need to do the following:
 - Acquire a developer license
 You must provide administrator credentials to proceed.  Please run this 
 script without the -Force parameter or from an elevated PowerShell window.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Updated] (CB-6042) [windows8] Cordova emulate fails if no developer certificate is installed

2014-02-14 Thread Sergey Grebnov (JIRA)

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

Sergey Grebnov updated CB-6042:
---

Assignee: Jesse MacFadyen  (was: Sergey Grebnov)

 [windows8] Cordova emulate fails if no developer certificate is installed
 -

 Key: CB-6042
 URL: https://issues.apache.org/jira/browse/CB-6042
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI, Windows 8
Reporter: Sergey Grebnov
Assignee: Jesse MacFadyen
Priority: Minor

 1. Use clean machine or uninstall current windows8 developer certificate via 
 Unregister-WindowsDeveloperLicense powershell command.
 2. Run 'cordova emulate windows8'
 Expected: there is a prompt dialog to install developer certificate, 
 application is successfully started
 Actual: there is the following error message (if run with -d parameter)
 Before installing this app, you need to do the following:
 - Acquire a developer license
 You must provide administrator credentials to proceed.  Please run this 
 script without the -Force parameter or from an elevated PowerShell window.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6044) cordova run android failed

2014-02-14 Thread bai lee (JIRA)
bai lee created CB-6044:
---

 Summary: cordova run android failed
 Key: CB-6044
 URL: https://issues.apache.org/jira/browse/CB-6044
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.3.0
 Environment: WIN7 / Ubuntu
Reporter: bai lee
Priority: Critical


$ cordova run android
Generating config.xml from defaults for platform android
Preparing android project
Running app on platform android via command cmd /c c:\Users\lee\test\platfo
ms\android\cordova\run --device

c:\Users\lee\AppData\Roaming\npm\node_modules\cordova\node_modules\q\q.js:126
throw e;
  ^
Error: An error occurred while running the android project.
c:\Users\lee\test\platforms\android\cordova\node_modules\q\q.js:126
throw e;
  ^
ERROR: Failed to launch application on device: ERROR: Failed to install apk to
evice: ERROR: Failed to deploy to device, no devices found.

at ChildProcess.anonymous (c:\Users\lee\AppData\Roaming\npm\node_modules\
ordova\src\run.js:67:22)
at ChildProcess.EventEmitter.emit (events.js:98:17)
at maybeClose (child_process.js:735:16)
at Socket.anonymous (child_process.js:948:11)
at Socket.EventEmitter.emit (events.js:95:17)
at Pipe.close (net.js:466:12)



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6034) File transfer fails every other attempt on Android

2014-02-14 Thread Andrew Grieve (JIRA)

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

Andrew Grieve commented on CB-6034:
---

Wow, thanks for pointing that out. It did exist... maybe some npm DB issues? 
Steve re-published it under a different tag. If you can, try again using 
cordova@rc

 File transfer fails every other attempt on Android
 --

 Key: CB-6034
 URL: https://issues.apache.org/jira/browse/CB-6034
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 3.3.0
 Environment: Tested on Android 4.4  4.1 with File Transfer plugin 
 v1.0.0
Reporter: Boston Dell-Vandenberg

 Uploading a file to a remote server using the file transfer plugin it fails 
 on every other attempt. The first attempt succeeds, second fails, third 
 succeeds and so on. It reliably fails on every other attempt.
 The file transfer works fine on Blackberry 10 and iOS builds using the same 
 code.
 Logcat output:
 {code}
 E/FileTransfer(22258): 
 {target:https:\/\/api.pamfax.biz\/FaxJob\/AddFile?filename=GetFile-12.pdfapioutputformat=API_FORMAT_JSONapicheck=f4aed3c821ffbf340d62040528c08db5apikey=BostonDell-Vandenbergusertoken=bd6paoben9j079lv8feebkctf1uhalvs,source:cdvfile:\/\/localhost\/persistent\/Download\/GetFile-12.pdf,http_status:0,code:3}
 E/FileTransfer(22258): java.io.EOFException
 E/FileTransfer(22258):at 
 com.squareup.okhttp.internal.Util.readAsciiLine(Util.java:314)
 E/FileTransfer(22258):at 
 com.squareup.okhttp.internal.http.RawHeaders.fromBytes(RawHeaders.java:301)
 E/FileTransfer(22258):at 
 com.squareup.okhttp.internal.http.HttpTransport.readResponseHeaders(HttpTransport.java:130)
 E/FileTransfer(22258):at 
 com.squareup.okhttp.internal.http.HttpEngine.readResponse(HttpEngine.java:630)
 E/FileTransfer(22258):at 
 com.squareup.okhttp.internal.http.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:385)
 E/FileTransfer(22258):at 
 com.squareup.okhttp.internal.http.HttpURLConnectionImpl.getResponse(HttpURLConnectionImpl.java:334)
 E/FileTransfer(22258):at 
 com.squareup.okhttp.internal.http.HttpURLConnectionImpl.getResponseCode(HttpURLConnectionImpl.java:534)
 E/FileTransfer(22258):at 
 com.squareup.okhttp.internal.http.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:148)
 E/FileTransfer(22258):at 
 org.apache.cordova.filetransfer.FileTransfer$1.run(FileTransfer.java:441)
 E/FileTransfer(22258):at 
 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
 E/FileTransfer(22258):at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
 E/FileTransfer(22258):at java.lang.Thread.run(Thread.java:841)
 E/FileTransfer(22258): Failed after uploading 256232 of 256232 bytes.
 {code}
 Here is the code I am using:
 {code}
 var uploadFile = function (fileUri, mimeType) {
 var options = new FileUploadOptions(),
   filename = fileUri.substr(fileUri.lastIndexOf('/') + 1).split('?')[0],
   url = Api.getUrl('FaxJob/AddFile', { filename: filename }),
   ft = new FileTransfer();
 options.fileKey = 'file';
 options.fileName = filename;
 options.params = { filename: filename };
 ft.upload(
   fileUri,
   encodeURI(url),
   function(entry) {
 $timeout(function () {
   $scope.$apply(function () {
 $log.debug('file uploaded: ', entry);
 Loading.hide();
 $scope.fax.uploadingFiles = false;
 $scope.getFiles();
   });
 });
   },
   function(error) {
 $timeout(function () {
   $scope.$apply(function () {
 Loading.hide();
 $scope.fax.uploadingFiles = false;
 $rootScope.message = { type: 'danger', content: 
 'ERR_FILE_WRONG_CHECKSUM' };
 $log.error('File transfer error code: ' + error.code);
 $log.error('File transfer error source: ' + error.source);
 $log.error('File transfer error target: ' + error.target);
   });
 });
   },
   options
 );
 {code}
 Javascript console error output:
 {code}
 File transfer error code: 3
 File transfer error source: 
 cdvfile://localhost/persistent/Download/GetFile-12.pdf
 File transfer error target: 
 https://api.pamfax.biz/FaxJob/AddFile?filename=GetFile-12.pdfapioutputform…b5apikey=BostonDell-Vandenbergusertoken=bd6paoben9j079lv8feebkctf1uhalvs
  
 {code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-6044) cordova run android failed

2014-02-14 Thread Andrew Grieve (JIRA)

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

Andrew Grieve resolved CB-6044.
---

Resolution: Not A Problem

Error message suggests that you don't have any devices plugged in that are in 
developer mode. 

You can use `adb devices` to see the list of attached devices that are in 
developer mode.

 cordova run android failed
 --

 Key: CB-6044
 URL: https://issues.apache.org/jira/browse/CB-6044
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.3.0
 Environment: WIN7 / Ubuntu
Reporter: bai lee
Priority: Critical

 $ cordova run android
 Generating config.xml from defaults for platform android
 Preparing android project
 Running app on platform android via command cmd /c 
 c:\Users\lee\test\platfo
 ms\android\cordova\run --device
 c:\Users\lee\AppData\Roaming\npm\node_modules\cordova\node_modules\q\q.js:126
 throw e;
   ^
 Error: An error occurred while running the android project.
 c:\Users\lee\test\platforms\android\cordova\node_modules\q\q.js:126
 throw e;
   ^
 ERROR: Failed to launch application on device: ERROR: Failed to install apk to
 evice: ERROR: Failed to deploy to device, no devices found.
 at ChildProcess.anonymous 
 (c:\Users\lee\AppData\Roaming\npm\node_modules\
 ordova\src\run.js:67:22)
 at ChildProcess.EventEmitter.emit (events.js:98:17)
 at maybeClose (child_process.js:735:16)
 at Socket.anonymous (child_process.js:948:11)
 at Socket.EventEmitter.emit (events.js:95:17)
 at Pipe.close (net.js:466:12)



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Assigned] (CB-5682) Update Plugin Spec for new framework tag attribute custom

2014-02-14 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah reassigned CB-5682:


Assignee: Shazron Abdullah

 Update Plugin Spec for new framework tag attribute custom
 ---

 Key: CB-5682
 URL: https://issues.apache.org/jira/browse/CB-5682
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Affects Versions: Master
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.4.0


 See CB-5238
 I believe the new attribute is custom=true
 {code}
 framework src=Foo.framework custom=true /
 {code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Updated] (CB-6044) cordova run android failed

2014-02-14 Thread bai lee (JIRA)

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

bai lee updated CB-6044:


Description: 
$ cordova run android
Generating config.xml from defaults for platform android
Preparing android project
Running app on platform android via command cmd /c c:\Users\lee\test\platfo
ms\android\cordova\run --device

c:\Users\lee\AppData\Roaming\npm\node_modules\cordova\node_modules\q\q.js:126
throw e;
  ^
Error: An error occurred while running the android project.
c:\Users\lee\test\platforms\android\cordova\node_modules\q\q.js:126
throw e;
  ^

at ChildProcess.anonymous (c:\Users\lee\AppData\Roaming\npm\node_modules\
ordova\src\run.js:67:22)
at ChildProcess.EventEmitter.emit (events.js:98:17)
at maybeClose (child_process.js:735:16)
at Socket.anonymous (child_process.js:948:11)
at Socket.EventEmitter.emit (events.js:95:17)
at Pipe.close (net.js:466:12)

  was:
$ cordova run android
Generating config.xml from defaults for platform android
Preparing android project
Running app on platform android via command cmd /c c:\Users\lee\test\platfo
ms\android\cordova\run --device

c:\Users\lee\AppData\Roaming\npm\node_modules\cordova\node_modules\q\q.js:126
throw e;
  ^
Error: An error occurred while running the android project.
c:\Users\lee\test\platforms\android\cordova\node_modules\q\q.js:126
throw e;
  ^
ERROR: Failed to launch application on device: ERROR: Failed to install apk to
evice: ERROR: Failed to deploy to device, no devices found.

at ChildProcess.anonymous (c:\Users\lee\AppData\Roaming\npm\node_modules\
ordova\src\run.js:67:22)
at ChildProcess.EventEmitter.emit (events.js:98:17)
at maybeClose (child_process.js:735:16)
at Socket.anonymous (child_process.js:948:11)
at Socket.EventEmitter.emit (events.js:95:17)
at Pipe.close (net.js:466:12)


 cordova run android failed
 --

 Key: CB-6044
 URL: https://issues.apache.org/jira/browse/CB-6044
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.3.0
 Environment: WIN7 / Ubuntu
Reporter: bai lee
Priority: Critical

 $ cordova run android
 Generating config.xml from defaults for platform android
 Preparing android project
 Running app on platform android via command cmd /c 
 c:\Users\lee\test\platfo
 ms\android\cordova\run --device
 c:\Users\lee\AppData\Roaming\npm\node_modules\cordova\node_modules\q\q.js:126
 throw e;
   ^
 Error: An error occurred while running the android project.
 c:\Users\lee\test\platforms\android\cordova\node_modules\q\q.js:126
 throw e;
   ^
 at ChildProcess.anonymous 
 (c:\Users\lee\AppData\Roaming\npm\node_modules\
 ordova\src\run.js:67:22)
 at ChildProcess.EventEmitter.emit (events.js:98:17)
 at maybeClose (child_process.js:735:16)
 at Socket.anonymous (child_process.js:948:11)
 at Socket.EventEmitter.emit (events.js:95:17)
 at Pipe.close (net.js:466:12)



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-6044) cordova run android failed

2014-02-14 Thread bai lee (JIRA)

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

bai lee commented on CB-6044:
-

both win7 and ubuntu produce the same result.

which i think is a very critical problem.

I never have a version that can easily be usable to me.

mostly useless,

even when i spent a lot time configurating.

will it be possible to automate the platform install and configure process?

including the android sdk, path, ant installing and path configuration.

thanks.

 cordova run android failed
 --

 Key: CB-6044
 URL: https://issues.apache.org/jira/browse/CB-6044
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.3.0
 Environment: WIN7 / Ubuntu
Reporter: bai lee
Priority: Critical

 $ cordova run android
 Generating config.xml from defaults for platform android
 Preparing android project
 Running app on platform android via command cmd /c 
 c:\Users\lee\test\platfo
 ms\android\cordova\run --device
 c:\Users\lee\AppData\Roaming\npm\node_modules\cordova\node_modules\q\q.js:126
 throw e;
   ^
 Error: An error occurred while running the android project.
 c:\Users\lee\test\platforms\android\cordova\node_modules\q\q.js:126
 throw e;
   ^
 at ChildProcess.anonymous 
 (c:\Users\lee\AppData\Roaming\npm\node_modules\
 ordova\src\run.js:67:22)
 at ChildProcess.EventEmitter.emit (events.js:98:17)
 at maybeClose (child_process.js:735:16)
 at Socket.anonymous (child_process.js:948:11)
 at Socket.EventEmitter.emit (events.js:95:17)
 at Pipe.close (net.js:466:12)



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6045) Expand InAppBrowser scheme to match those of File plugin

2014-02-14 Thread James White (JIRA)
James White created CB-6045:
---

 Summary: Expand InAppBrowser scheme to match those of File plugin
 Key: CB-6045
 URL: https://issues.apache.org/jira/browse/CB-6045
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugin InAppBrowser
Reporter: James White


Per http://cordova.apache.org/news/2014/02/10/plugins-release.html, the File 
plugin changed the way it deals with Entry scheme handling, and allows for 
additional filesystem abstraction.

Prior to this update, handling local content:// type URLs returned from the 
Camera plugin API, had to be translated to a file:/// type URL by using the 
File plugin's window.resolveLocalFileSystemURI() method.  But now that 
content:// is a valid file entry scheme, and is understood by DOM methods, 
etc, window.resolveLocalFileSystemURL() returns the same content:// URL 
format, with no way to translate that to a corresponding local file:/// form.

Passing a URL with content:// to the InAppBrowser plugin on Android 
automatically converts it to something like http://content://...;

It would be of benefit for InAppBrowser's support to expand beyond the current 
file:/// and http(s):// schemes.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Updated] (CB-6045) Expand InAppBrowser scheme to match those of File plugin

2014-02-14 Thread James White (JIRA)

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

James White updated CB-6045:


Description: 
Per http://cordova.apache.org/news/2014/02/10/plugins-release.html, the File 
plugin changed the way it deals with Entry scheme handling, and allows for 
additional filesystem abstraction.

Prior to this update, handling local content:// type URLs returned from the 
Camera plugin API, had to be translated to a file:/// type URL by using the 
File plugin's window.resolveLocalFileSystemURI() method.  But now that 
content:// is a valid file entry scheme, and is understood by DOM methods, 
etc, window.resolveLocalFileSystemURL() returns the same content:// URL 
format, with no way to translate that to a corresponding local file:/// form.

Passing a URL with content:// to the InAppBrowser plugin on Android 
automatically converts it to something like http://content://...; making it 
unable to load such local content directly.

It would be beneficial for InAppBrowser's support to match the File plugin's 
supported schemes, beyond the currently supported file:/// and http(s):// 
schemes.

  was:
Per http://cordova.apache.org/news/2014/02/10/plugins-release.html, the File 
plugin changed the way it deals with Entry scheme handling, and allows for 
additional filesystem abstraction.

Prior to this update, handling local content:// type URLs returned from the 
Camera plugin API, had to be translated to a file:/// type URL by using the 
File plugin's window.resolveLocalFileSystemURI() method.  But now that 
content:// is a valid file entry scheme, and is understood by DOM methods, 
etc, window.resolveLocalFileSystemURL() returns the same content:// URL 
format, with no way to translate that to a corresponding local file:/// form.

Passing a URL with content:// to the InAppBrowser plugin on Android 
automatically converts it to something like http://content://...;

It would be of benefit for InAppBrowser's support to expand beyond the current 
file:/// and http(s):// schemes.


 Expand InAppBrowser scheme to match those of File plugin
 

 Key: CB-6045
 URL: https://issues.apache.org/jira/browse/CB-6045
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugin InAppBrowser
Reporter: James White

 Per http://cordova.apache.org/news/2014/02/10/plugins-release.html, the File 
 plugin changed the way it deals with Entry scheme handling, and allows for 
 additional filesystem abstraction.
 Prior to this update, handling local content:// type URLs returned from the 
 Camera plugin API, had to be translated to a file:/// type URL by using the 
 File plugin's window.resolveLocalFileSystemURI() method.  But now that 
 content:// is a valid file entry scheme, and is understood by DOM methods, 
 etc, window.resolveLocalFileSystemURL() returns the same content:// URL 
 format, with no way to translate that to a corresponding local file:/// 
 form.
 Passing a URL with content:// to the InAppBrowser plugin on Android 
 automatically converts it to something like http://content://...; making it 
 unable to load such local content directly.
 It would be beneficial for InAppBrowser's support to match the File plugin's 
 supported schemes, beyond the currently supported file:/// and http(s):// 
 schemes.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Assigned] (CB-5105) remove dead code for device.version from native plugin source

2014-02-14 Thread Martin Gonzalez (JIRA)

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

Martin Gonzalez reassigned CB-5105:
---

Assignee: Martin Gonzalez  (was: Marcel Kinard)

 remove dead code for device.version from native plugin source
 -

 Key: CB-5105
 URL: https://issues.apache.org/jira/browse/CB-5105
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Plugin Device
Affects Versions: 3.1.0
Reporter: Marcel Kinard
Assignee: Martin Gonzalez
Priority: Minor

 The solution for CB-5085 (and related) is for device.js to set device.cordova 
 using CORDOVA_JS_BUILD_LABEL from cordova.js, instead of having native code 
 do that (usually with hardcoded values) and return it back from exec(). So 
 once CB-5085 is fixed in this way, then any native code that computes 
 device.version is dead. That dead code should be removed from 
 cordova-plugin-device, if for no other reason than reducing confusion.
 The following platforms are affected: Android, BB10, WP8, Win8.
 iOS is doing something special, but doing it right, so don't make any changes 
 to iOS.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Created] (CB-6046) source-file framework=true item not installed correctly

2014-02-14 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-6046:


 Summary: source-file framework=true item not installed correctly
 Key: CB-6046
 URL: https://issues.apache.org/jira/browse/CB-6046
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugman
 Environment: plugman 0.19.0
Reporter: Shazron Abdullah
 Attachments: FrameworkTest.zip

See attached plugin.

When installing the attached plugin (iOS only), the libTestFlight.a is not 
installed correctly (it is red -- missing in the Xcode file). When inspecting 
the file in the Project Navigator, it shows as Relative to SDK, while the 
FacebookSDK.framework is installed correctly.

However, the same tag in this plugin is installed correctly:
https://github.com/shazron/TestFlightPlugin



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Updated] (CB-6046) source-file framework=true item not installed correctly

2014-02-14 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-6046:
-

Attachment: FrameworkTest.zip

 source-file framework=true item not installed correctly
 ---

 Key: CB-6046
 URL: https://issues.apache.org/jira/browse/CB-6046
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugman
 Environment: plugman 0.19.0
Reporter: Shazron Abdullah
 Attachments: FrameworkTest.zip


 See attached plugin.
 When installing the attached plugin (iOS only), the libTestFlight.a is not 
 installed correctly (it is red -- missing in the Xcode file). When inspecting 
 the file in the Project Navigator, it shows as Relative to SDK, while the 
 FacebookSDK.framework is installed correctly.
 However, the same tag in this plugin is installed correctly:
 https://github.com/shazron/TestFlightPlugin



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-5682) Update Plugin Spec for new framework tag attribute custom

2014-02-14 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-5682.
--

Resolution: Fixed

 Update Plugin Spec for new framework tag attribute custom
 ---

 Key: CB-5682
 URL: https://issues.apache.org/jira/browse/CB-5682
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Affects Versions: Master
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.4.0


 See CB-5238
 I believe the new attribute is custom=true
 {code}
 framework src=Foo.framework custom=true /
 {code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5682) Update Plugin Spec for new framework tag attribute custom

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

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

CB-5682 - Update Plugin Spec for new framework tag attribute custom


 Update Plugin Spec for new framework tag attribute custom
 ---

 Key: CB-5682
 URL: https://issues.apache.org/jira/browse/CB-5682
 Project: Apache Cordova
  Issue Type: Bug
  Components: Docs
Affects Versions: Master
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.4.0


 See CB-5238
 I believe the new attribute is custom=true
 {code}
 framework src=Foo.framework custom=true /
 {code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-5943) Update/remove obsolete items in cordova-ios repo

2014-02-14 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-5943.
--

Resolution: Fixed

 Update/remove obsolete items in cordova-ios repo
 

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


 - FirstRun.md
 - all the docs in the **guides** subfolder
 - README.MD
 - Uninstall Cordova.applescript
 - Makefile



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5943) Update/remove obsolete items in cordova-ios repo

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit e8382f608781a5631c6f97a2e457fecc3399ab5e in cordova-ios's branch 
refs/heads/master from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=e8382f6 ]

CB-5943 - Update/remove obsolete items in cordova-ios repo


 Update/remove obsolete items in cordova-ios repo
 

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


 - FirstRun.md
 - all the docs in the **guides** subfolder
 - README.MD
 - Uninstall Cordova.applescript
 - Makefile



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5018) bin/create on iOS should use --arc by default

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

Commit 06f1c869444882d9763ecdcfa56c7a8e0a44da17 in cordova-ios's branch 
refs/heads/master from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=06f1c86 ]

CB-5018 - bin/create on iOS should use --arc by default


 bin/create on iOS should use --arc by default
 -

 Key: CB-5018
 URL: https://issues.apache.org/jira/browse/CB-5018
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Reporter: Andrew Grieve
Assignee: Shazron Abdullah
  Labels: core
 Fix For: 3.5.0


 CLI uses --arc by default, and plugins assume --arc, so it really should be 
 the default.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-5018) bin/create on iOS should use --arc by default

2014-02-14 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-5018.
--

   Resolution: Fixed
Fix Version/s: 3.5.0

 bin/create on iOS should use --arc by default
 -

 Key: CB-5018
 URL: https://issues.apache.org/jira/browse/CB-5018
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Reporter: Andrew Grieve
Assignee: Shazron Abdullah
  Labels: core
 Fix For: 3.5.0


 CLI uses --arc by default, and plugins assume --arc, so it really should be 
 the default.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Assigned] (CB-5601) Modifying the AppDelegate

2014-02-14 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah reassigned CB-5601:


Assignee: Shazron Abdullah

 Modifying the AppDelegate
 -

 Key: CB-5601
 URL: https://issues.apache.org/jira/browse/CB-5601
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CLI, iOS
Reporter: Lee Crossley
Assignee: Shazron Abdullah
  Labels: core

 It's sometimes appropriate for a plugin to require modification to the 
 AppDelegate (usually to add a method). Unfortunately, there isn't support for 
 this modification in the CLI (other than using hooks and monkey patching).
 Are there any plans to add a formal way to do this, or should I be looking at 
 hooks as a long term solution?



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-5875) [Release + 3.4.0] Test Tag 3.4.0 of cordova-cli

2014-02-14 Thread ASF subversion and git services (JIRA)

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

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

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

CB-5875 Updated version and RELEASENOTES.md for 3.4.0-0.1.0


 [Release + 3.4.0] Test  Tag 3.4.0 of cordova-cli
 -

 Key: CB-5875
 URL: https://issues.apache.org/jira/browse/CB-5875
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CLI
Reporter: Steve Gill
Assignee: Steve Gill
 Fix For: 3.4.0


 Refer to Workflow here:
 http://wiki.apache.org/cordova/CuttingReleases



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Resolved] (CB-5875) [Release + 3.4.0] Test Tag 3.4.0 of cordova-cli

2014-02-14 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-5875.


Resolution: Fixed

 [Release + 3.4.0] Test  Tag 3.4.0 of cordova-cli
 -

 Key: CB-5875
 URL: https://issues.apache.org/jira/browse/CB-5875
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CLI
Reporter: Steve Gill
Assignee: Steve Gill
 Fix For: 3.4.0


 Refer to Workflow here:
 http://wiki.apache.org/cordova/CuttingReleases



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)


[jira] [Commented] (CB-3562) Wrong splash screen ratio for landscape-only applications

2014-02-14 Thread Ned Stuart (JIRA)

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

Ned Stuart commented on CB-3562:


I am observing the same conditions running iOS 7.0. 

To reproduce:
 - *Create Hello world app using cmd*
{code}
phonegap create hello_world
{code}

 - *Send to build.phonegap.com*. Zip the www directory and upload.

 - *Attach apple keys*

 - *Run*

There are several bugs that I have found where the dev team has had trouble 
reproducing that are clearly visible on the sample application. I am not sure 
if this is due to discrepancies between the version build.phonegap.com is using 
and one available through traditional compiling methods.


 Wrong splash screen ratio for landscape-only applications
 -

 Key: CB-3562
 URL: https://issues.apache.org/jira/browse/CB-3562
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin SplashScreen
Affects Versions: 2.6.0, 2.7.0, 2.9.0
Reporter: Michael Hanselmann
Assignee: Shazron Abdullah
 Fix For: 3.4.0


 CDVSplashScreen.m shows the splash image with a wrong ratio for 
 landscape-only applications on iPhone/iPod touch devices. I fixed it locally 
 by applying a 90° transformation (“CGAffineTransformMakeRotation(M_PI / 2)”) 
 to the image view.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)