[jira] [Created] (CB-3805) NativeToJsMessageQueue MAX_PAYLOAD_SIZE

2013-06-13 Thread Peter (JIRA)
Peter created CB-3805:
-

 Summary: NativeToJsMessageQueue MAX_PAYLOAD_SIZE
 Key: CB-3805
 URL: https://issues.apache.org/jira/browse/CB-3805
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Android
Affects Versions: 2.7.0
Reporter: Peter
Assignee: Joe Bowser
Priority: Minor


Typo 10240?

{code}
private static int MAX_PAYLOAD_SIZE = 50 * 1024 * 10240
{code}

Was the intended payload limit 50M or 500M ?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3576) Privately signed https links don't work in InAppBrowser

2013-06-13 Thread Montyleena (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3576?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13683069#comment-13683069
 ] 

Montyleena commented on CB-3576:


I have added a pull request. Here are the links:
iOS: https://github.com/apache/cordova-ios/pull/59
Android: https://github.com/apache/cordova-android/pull/63

Let's hope this gets included in the next release.

> Privately signed https links don't work in InAppBrowser
> ---
>
> Key: CB-3576
> URL: https://issues.apache.org/jira/browse/CB-3576
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
>Affects Versions: 2.7.0
> Environment: Android and iOS
>Reporter: Montyleena
>Assignee: Steve Gill
>  Labels: android, https, inappbrowser,, ios, ssl
> Attachments: InAppBrowser.java
>
>
> Local https links are blocked by default in InAppBrowser (links using a local 
> SSL certificate which can't be verified by a 3rd party). Ideally, user should 
> be given an option to proceed or cancel the request like the default 
> desktop/mobile browsers do. 
> Right now, we have to overwrite the following API in Android to access such 
> URLs but onReceivedSslError() function gets called only for the main PhoneGap 
> window browser and not for InAppBrowser.
> Create a new class:
> public class CustomWebViewClient extends CordovaWebViewClient {
>   
>   public static final String LOG_TAG = "Plugin";
>   
>   public CustomWebViewClient(DroidGap ctx) {
> super(ctx);
> Log.d(LOG_TAG, "Constructor!");
> }
> @Override
> public void onReceivedSslError(WebView view, SslErrorHandler handler, 
> SslError error) {
>   handler.proceed();
> }
> }
> In the main class, we use our custom class as a web view client
>  CordovaWebViewClient webViewClient = new CustomWebViewClient(this);
> webViewClient.setWebView(this.appView);
> this.appView.setWebViewClient(webViewClient);
> And similar type of code needs to be written for iOS.
> InAppBrowser should pick up the SSL settings from the main web view and once 
> we overwrite the onReceivedSslError() function, then it should allow such 
> URLs in the InAppBrowser too.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (CB-3576) Privately signed https links don't work in InAppBrowser

2013-06-13 Thread Montyleena (JIRA)

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

Montyleena updated CB-3576:
---

Affects Version/s: 2.8.0

> Privately signed https links don't work in InAppBrowser
> ---
>
> Key: CB-3576
> URL: https://issues.apache.org/jira/browse/CB-3576
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
>Affects Versions: 2.7.0, 2.8.0
> Environment: Android and iOS
>Reporter: Montyleena
>Assignee: Steve Gill
>  Labels: android, https, inappbrowser,, ios, ssl
> Attachments: InAppBrowser.java
>
>
> Local https links are blocked by default in InAppBrowser (links using a local 
> SSL certificate which can't be verified by a 3rd party). Ideally, user should 
> be given an option to proceed or cancel the request like the default 
> desktop/mobile browsers do. 
> Right now, we have to overwrite the following API in Android to access such 
> URLs but onReceivedSslError() function gets called only for the main PhoneGap 
> window browser and not for InAppBrowser.
> Create a new class:
> public class CustomWebViewClient extends CordovaWebViewClient {
>   
>   public static final String LOG_TAG = "Plugin";
>   
>   public CustomWebViewClient(DroidGap ctx) {
> super(ctx);
> Log.d(LOG_TAG, "Constructor!");
> }
> @Override
> public void onReceivedSslError(WebView view, SslErrorHandler handler, 
> SslError error) {
>   handler.proceed();
> }
> }
> In the main class, we use our custom class as a web view client
>  CordovaWebViewClient webViewClient = new CustomWebViewClient(this);
> webViewClient.setWebView(this.appView);
> this.appView.setWebViewClient(webViewClient);
> And similar type of code needs to be written for iOS.
> InAppBrowser should pick up the SSL settings from the main web view and once 
> we overwrite the onReceivedSslError() function, then it should allow such 
> URLs in the InAppBrowser too.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3530) PhoneGap app crashes on iOS with error "CDVWebViewDelegate: Navigation started when state=1"

2013-06-13 Thread Montyleena (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13683068#comment-13683068
 ] 

Montyleena commented on CB-3530:


@Shazron, there is no issue with the functionality after getting this error but 
the InAppBrowser tool bar displays the message: "Load Error" so it's very 
misleading for the user, so this does needs to be fixed. This issue wasn't 
coming in 2.4.0 on iOS (i upgraded from 2.4.0 to 2.7.0 and now 2.8.0)

> PhoneGap app crashes on iOS with error "CDVWebViewDelegate: Navigation 
> started when state=1"
> 
>
> Key: CB-3530
> URL: https://issues.apache.org/jira/browse/CB-3530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin InAppBrowser
>Affects Versions: 2.7.0
> Environment: Mac OSX 10.8.3, XCode 4.6.2, iOS 6.1
>Reporter: Montyleena
>Assignee: Shazron Abdullah
>  Labels: crash, iOS,, inappbrowser,
> Fix For: 2.8.0
>
>
> I have a PhoneGap app on iOS which was working fine with PhoneGap 2.3.0 but 
> crashes with 2.7.0 with the following error:
> 2013-05-02 10:08:13.214 App[8896:c07] CDVWebViewDelegate: Navigation started 
> when state=1
> 2013-05-02 10:08:13.215 App[8896:c07] Failed to load webpage with error: 
> (null)
> The problem is:
> CDVWebViewDelegate.m: shouldStartLoadWithRequest() function: In switch case, 
> default: error code is being passed as nil
> and in CDVInAppBrowser.m: didFailLoadWithError() function, 
> error.localizedDescription is being referenced, which causes a crash as error 
> object is nil. 
> For now, i added a check in the above function to put default values for 
> error code if the error object is nil. I hope this crash is fixed in the next 
> PhoneGap release.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (CB-3804) Not consistently setting PluginResult message for JSON_EXCEPTION Status

2013-06-13 Thread Peter (JIRA)
Peter created CB-3804:
-

 Summary: Not consistently setting PluginResult message for 
JSON_EXCEPTION Status
 Key: CB-3804
 URL: https://issues.apache.org/jira/browse/CB-3804
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Android
Affects Versions: 2.7.0
Reporter: Peter
Assignee: Joe Bowser
Priority: Minor


The PluginResult appears to be inconsistently created for 
Status.JSON_EXCEPTION. 

exception message is passed
* InAppBrowser.java: scriptResult = new 
PluginResult(PluginResult.Status.JSON_EXCEPTION, e.getMessage());

exception message is NOT passed
* InAppBrower.java: this.callbackContext.sendPluginResult(new  
PluginResult(PluginResult.Status.JSON_EXCEPTION));
* Globalization.java: callbackContext.sendPluginResult(new 
PluginResult(PluginResult.Status.JSON_EXCEPTION));
* FileTransfer.java: result = new 
PluginResult(PluginResult.Status.JSON_EXCEPTION);
* FileTransfer.java: context.sendPluginResult(new 
PluginResult(PluginResult.Status.JSON_EXCEPTION));
* App.java: callbackContext.sendPluginResult(new 
PluginResult(PluginResult.Status.JSON_EXCEPTION));
* PluginManager.java: PluginResult cr = new 
PluginResult(PluginResult.Status.JSON_EXCEPTION);

Shouldn't these all be constructed the same?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3653) Breakout Camera Plugin for ios

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3653.


Resolution: Fixed

working and tested

> Breakout Camera Plugin for ios
> --
>
> Key: CB-3653
> URL: https://issues.apache.org/jira/browse/CB-3653
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin Camera
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3654) Breakout Camera Plugin for Android

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3654.


Resolution: Fixed

working and tested

> Breakout Camera Plugin for Android
> --
>
> Key: CB-3654
> URL: https://issues.apache.org/jira/browse/CB-3654
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin Camera
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3508) camera plugin

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3508.


Resolution: Fixed

> camera plugin
> -
>
> Key: CB-3508
> URL: https://issues.apache.org/jira/browse/CB-3508
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, iOS, Plugin Camera
>Reporter: Steve Gill
>Assignee: Filip Maj
> Fix For: 3.0.0
>
>
> This is all to do with 3.0.0 branch stuff and Plugin breakout
> ios
> Create a cordova project. Run, device ready fire. Instal the plugin and 
> device ready won't fire.
> Something wrong with how it installs or handles dependencies. I believe it 
> has to do with the javascript. More investigating required.
> Android
> Lots of build issues post installation (below). Need to fix imports and look 
> at dependencies.
> After these issues are sorted, android could have same issue as ios
> -compile:
> [javac] Compiling 4 source files to 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/bin/classes
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:29:
>  package org.apache.commons.codec.binary does not exist
> [javac] import org.apache.commons.codec.binary.Base64;
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:522:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] private Bitmap getRotatedBitmap(int rotate, Bitmap bitmap, ExifHelper 
> exif) {
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:216:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] photo = new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> ".Pic.jpg");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:218:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] photo = new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> ".Pic.png");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:279:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:279:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:282:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] 
> exif.createInFile(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity())
>  + "/.Pic.jpg");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:325:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] uri = Uri.fromFile(new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> System.currentTimeMillis() + ".jpg"));
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:447:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] String resizePath = 
> DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()) + 
> "/resize.jpg";
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:451:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-h

[jira] [Closed] (CB-3508) camera plugin

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill closed CB-3508.
--


> camera plugin
> -
>
> Key: CB-3508
> URL: https://issues.apache.org/jira/browse/CB-3508
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, iOS, Plugin Camera
>Reporter: Steve Gill
>Assignee: Filip Maj
> Fix For: 3.0.0
>
>
> This is all to do with 3.0.0 branch stuff and Plugin breakout
> ios
> Create a cordova project. Run, device ready fire. Instal the plugin and 
> device ready won't fire.
> Something wrong with how it installs or handles dependencies. I believe it 
> has to do with the javascript. More investigating required.
> Android
> Lots of build issues post installation (below). Need to fix imports and look 
> at dependencies.
> After these issues are sorted, android could have same issue as ios
> -compile:
> [javac] Compiling 4 source files to 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/bin/classes
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:29:
>  package org.apache.commons.codec.binary does not exist
> [javac] import org.apache.commons.codec.binary.Base64;
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:522:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] private Bitmap getRotatedBitmap(int rotate, Bitmap bitmap, ExifHelper 
> exif) {
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:216:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] photo = new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> ".Pic.jpg");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:218:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] photo = new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> ".Pic.png");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:279:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:279:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:282:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] 
> exif.createInFile(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity())
>  + "/.Pic.jpg");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:325:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] uri = Uri.fromFile(new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> System.currentTimeMillis() + ".jpg"));
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:447:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] String resizePath = 
> DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()) + 
> "/resize.jpg";
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:451:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/o

[jira] [Commented] (CB-3787) Documentation on android camera quirck(s)

2013-06-13 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3787?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682917#comment-13682917
 ] 

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

Commit 3d1bddcb43e08108852ac759e173638940626516 in branch refs/heads/master 
from [~bowserj]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=3d1bddc ]

CB-3787: Documenting the fact that we use Intents.  Also, it's spelt QUIRK.


> Documentation on android camera quirck(s)
> -
>
> Key: CB-3787
> URL: https://issues.apache.org/jira/browse/CB-3787
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Affects Versions: 2.6.0
> Environment: Typically Android phones with small memory
>Reporter: Roderick Gadellaa
>Assignee: Joe Bowser
>  Labels: documentation
>
> Android may kill the cordova-activity when opening the camera with 
> camera.getPicture resulting in a Force Close when the photo is taken.
> Since this is a well known problem (I've found numerous reports and no 
> solution) it would be nice to have this documented as an 'Android Quirck'.
> I just found out about it after 3 weeks of developing an app that uses the 
> camera as it's primary component. That sucks.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3787) Documentation on android camera quirck(s)

2013-06-13 Thread Joe Bowser (JIRA)

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

Joe Bowser resolved CB-3787.


Resolution: Fixed

> Documentation on android camera quirck(s)
> -
>
> Key: CB-3787
> URL: https://issues.apache.org/jira/browse/CB-3787
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Affects Versions: 2.6.0
> Environment: Typically Android phones with small memory
>Reporter: Roderick Gadellaa
>Assignee: Joe Bowser
>  Labels: documentation
>
> Android may kill the cordova-activity when opening the camera with 
> camera.getPicture resulting in a Force Close when the photo is taken.
> Since this is a well known problem (I've found numerous reports and no 
> solution) it would be nice to have this documented as an 'Android Quirck'.
> I just found out about it after 3 weeks of developing an app that uses the 
> camera as it's primary component. That sucks.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3678) Breakout SplashScreen Plugin for iOS

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3678.


Resolution: Fixed

Tested!

> Breakout SplashScreen Plugin for iOS
> 
>
> Key: CB-3678
> URL: https://issues.apache.org/jira/browse/CB-3678
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin SplashScreen
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3627) ./cordova/run --emulator does not start emulator image

2013-06-13 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3627?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682910#comment-13682910
 ] 

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

Commit add107583f6cac15e226ed1612b761fadc2e5a46 in branch refs/heads/master 
from Fil Maj
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=add1075 ]

Proper modularization of bash scripts for [CB-3627], but not solved yet. 
wait_for_emulator does not work atm


> ./cordova/run --emulator does not start emulator image
> --
>
> Key: CB-3627
> URL: https://issues.apache.org/jira/browse/CB-3627
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 2.8.0
> Environment: Mac OSX 10.7.5
>Reporter: Filip Maj
>Assignee: Filip Maj
> Fix For: 2.9.0
>
>
> Running
> {code}
> $ ./cordova/run --emulator
> {code}
> Successfully builds the project, but eventually stops with the following 
> output:
> {code}
> No emulators found to deploy to. Please make sure your emulator is started
>  and you can view it using the 'cordova/lib/list-started-emulators' command.
> {code}
> Per the [Command Line Design 
> document|http://wiki.apache.org/cordova/CommandLineToolingDesign] (see the 
> section about multi-device flow near the top), when calling {{run}} with an 
> emulator as a target, the {{run}} script should call {{start-emulator}} with 
> the first available ID _if no emulator is currently running_.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3688) Breakout Device Orientation Plugin for Android

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3688.


Resolution: Fixed
  Assignee: Steve Gill  (was: Herm Wong)

Tested and working

> Breakout Device Orientation Plugin for Android
> --
>
> Key: CB-3688
> URL: https://issues.apache.org/jira/browse/CB-3688
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Device Orientation
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3664) Breakout InAppBrowser Plugin for ios

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3664.


Resolution: Fixed

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-inappbrowser.git;a=commit;h=8c0c36d5bfc1349e3b84726f5f190f7f31727458

updated + tested

> Breakout InAppBrowser Plugin for ios
> 
>
> Key: CB-3664
> URL: https://issues.apache.org/jira/browse/CB-3664
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin InAppBrowser
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (CB-3803) Fold DirectoryManager in FileUtils

2013-06-13 Thread Joe Bowser (JIRA)
Joe Bowser created CB-3803:
--

 Summary: Fold DirectoryManager in FileUtils
 Key: CB-3803
 URL: https://issues.apache.org/jira/browse/CB-3803
 Project: Apache Cordova
  Issue Type: Improvement
Reporter: Joe Bowser
Assignee: Joe Bowser
 Fix For: 3.0.0


This was discussed on cordova-dev that we should fold DirectoryManager in 
FileUtils.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3638) Breakout Network Information Plugin

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682890#comment-13682890
 ] 

Steve Gill commented on CB-3638:


This might stay in core. It is tied to deviceready event for ios/android/wp7 
and probably others

> Breakout Network Information Plugin
> ---
>
> Key: CB-3638
> URL: https://issues.apache.org/jira/browse/CB-3638
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Plugin Network Information
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>
> Breakout the Network Information Plugin for all platforms.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3665) Breakout InAppBrowser Plugin for Android

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3665.


Resolution: Fixed

updated to latest files, tested

> Breakout InAppBrowser Plugin for Android
> 
>
> Key: CB-3665
> URL: https://issues.apache.org/jira/browse/CB-3665
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin InAppBrowser
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3665) Breakout InAppBrowser Plugin for Android

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3665?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682887#comment-13682887
 ] 

Steve Gill commented on CB-3665:


https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-inappbrowser.git;a=commit;h=8c0c36d5bfc1349e3b84726f5f190f7f31727458

> Breakout InAppBrowser Plugin for Android
> 
>
> Key: CB-3665
> URL: https://issues.apache.org/jira/browse/CB-3665
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin InAppBrowser
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3724) Breakout File Plugin for Android

2013-06-13 Thread Tim Kim (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3724?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682843#comment-13682843
 ] 

Tim Kim commented on CB-3724:
-

Fixed up some stuff and tested: 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;a=commit;h=1e6162e0e7bcc2f4b50a592ab1385465e0774e37



> Breakout File Plugin for Android
> 
>
> Key: CB-3724
> URL: https://issues.apache.org/jira/browse/CB-3724
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin File
>Reporter: Steve Gill
>Assignee: Tim Kim
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3724) Breakout File Plugin for Android

2013-06-13 Thread Tim Kim (JIRA)

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

Tim Kim resolved CB-3724.
-

Resolution: Fixed

> Breakout File Plugin for Android
> 
>
> Key: CB-3724
> URL: https://issues.apache.org/jira/browse/CB-3724
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin File
>Reporter: Steve Gill
>Assignee: Tim Kim
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (CB-3802) General Configuration Guide has incorrect config.xml

2013-06-13 Thread Joe Bowser (JIRA)
Joe Bowser created CB-3802:
--

 Summary: General Configuration Guide has incorrect config.xml
 Key: CB-3802
 URL: https://issues.apache.org/jira/browse/CB-3802
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Joe Bowser
Assignee: Michael Brooks


The XML format for plugins is wrong. I'm not sure how it works across 
platfomrs, but for Android it should be:

{code}

  

{code}

I'm guessing it's similar on iOS, but I want to make sure it's right, which is 
why I'm creating the ticket instead of just editing it on the spot.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (CB-3664) Breakout InAppBrowser Plugin for ios

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill reassigned CB-3664:
--

Assignee: Steve Gill  (was: Herm Wong)

> Breakout InAppBrowser Plugin for ios
> 
>
> Key: CB-3664
> URL: https://issues.apache.org/jira/browse/CB-3664
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin InAppBrowser
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (CB-3665) Breakout InAppBrowser Plugin for Android

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill reassigned CB-3665:
--

Assignee: Steve Gill  (was: Herm Wong)

> Breakout InAppBrowser Plugin for Android
> 
>
> Key: CB-3665
> URL: https://issues.apache.org/jira/browse/CB-3665
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin InAppBrowser
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3648) Breakout Device Motion Plugin for iOS

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3648.


Resolution: Fixed

tested

> Breakout Device Motion Plugin for iOS
> -
>
> Key: CB-3648
> URL: https://issues.apache.org/jira/browse/CB-3648
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin Device Motion
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3670) Breakout Battery Status Plugin for iOS

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3670.


Resolution: Fixed

tested

> Breakout Battery Status Plugin for iOS
> --
>
> Key: CB-3670
> URL: https://issues.apache.org/jira/browse/CB-3670
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Battery Status
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3659) Breakout Vibration Plugin for ios

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3659.


Resolution: Fixed
  Assignee: Steve Gill  (was: Herm Wong)

tested

> Breakout Vibration Plugin for ios
> -
>
> Key: CB-3659
> URL: https://issues.apache.org/jira/browse/CB-3659
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Vibration
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3801) ProductID's are not unique

2013-06-13 Thread Jesse MacFadyen (JIRA)

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

Jesse MacFadyen resolved CB-3801.
-

Resolution: Fixed

> ProductID's are not unique
> --
>
> Key: CB-3801
> URL: https://issues.apache.org/jira/browse/CB-3801
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: WP8
>Affects Versions: 2.8.0
>Reporter: Jesse MacFadyen
>Assignee: Jesse MacFadyen
>Priority: Blocker
> Fix For: 2.9.0
>
>
> Every project created with the VS-Template and the command line create script 
> are using the same ProductID, which means that you can only have 1 app with 
> this id on any device. {13b7ec4f-d4cf-422b-90ef-cd9c48af66ab}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3801) ProductID's are not unique

2013-06-13 Thread Jesse MacFadyen (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3801?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682806#comment-13682806
 ] 

Jesse MacFadyen commented on CB-3801:
-

Commit here: 9b7d2f3cfda4aa6b623293d72bbce726ef0307e9

> ProductID's are not unique
> --
>
> Key: CB-3801
> URL: https://issues.apache.org/jira/browse/CB-3801
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: WP8
>Affects Versions: 2.8.0
>Reporter: Jesse MacFadyen
>Assignee: Jesse MacFadyen
>Priority: Blocker
> Fix For: 2.9.0
>
>
> Every project created with the VS-Template and the command line create script 
> are using the same ProductID, which means that you can only have 1 app with 
> this id on any device. {13b7ec4f-d4cf-422b-90ef-cd9c48af66ab}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (CB-3733) Breakout Network Information Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

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

Herm Wong reassigned CB-3733:
-

Assignee: Herm Wong  (was: Steve Gill)

> Breakout Network Information Plugin for Android
> ---
>
> Key: CB-3733
> URL: https://issues.apache.org/jira/browse/CB-3733
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Network Information
>Reporter: Steve Gill
>Assignee: Herm Wong
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3639) Breakout Console Plugin

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3639?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682803#comment-13682803
 ] 

Steve Gill commented on CB-3639:


Is this something we want to keep in core?

> Breakout Console Plugin
> ---
>
> Key: CB-3639
> URL: https://issues.apache.org/jira/browse/CB-3639
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Plugin Console
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>
> Breakout the Console Plugin for all platforms.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3696) Breakout Console Plugin for WP7

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682802#comment-13682802
 ] 

Steve Gill commented on CB-3696:


I am wondering if this is something we want to keep in core. Thoughts?

> Breakout Console Plugin for WP7
> ---
>
> Key: CB-3696
> URL: https://issues.apache.org/jira/browse/CB-3696
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Console, WP7
>Reporter: Steve Gill
>Assignee: Benn Mapes
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (CB-3508) camera plugin

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill reassigned CB-3508:
--

Assignee: Filip Maj  (was: Steve Gill)

> camera plugin
> -
>
> Key: CB-3508
> URL: https://issues.apache.org/jira/browse/CB-3508
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, iOS, Plugin Camera
>Reporter: Steve Gill
>Assignee: Filip Maj
> Fix For: 3.0.0
>
>
> This is all to do with 3.0.0 branch stuff and Plugin breakout
> ios
> Create a cordova project. Run, device ready fire. Instal the plugin and 
> device ready won't fire.
> Something wrong with how it installs or handles dependencies. I believe it 
> has to do with the javascript. More investigating required.
> Android
> Lots of build issues post installation (below). Need to fix imports and look 
> at dependencies.
> After these issues are sorted, android could have same issue as ios
> -compile:
> [javac] Compiling 4 source files to 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/bin/classes
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:29:
>  package org.apache.commons.codec.binary does not exist
> [javac] import org.apache.commons.codec.binary.Base64;
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:522:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] private Bitmap getRotatedBitmap(int rotate, Bitmap bitmap, ExifHelper 
> exif) {
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:216:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] photo = new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> ".Pic.jpg");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:218:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] photo = new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> ".Pic.png");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:279:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:279:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:282:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] 
> exif.createInFile(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity())
>  + "/.Pic.jpg");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:325:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] uri = Uri.fromFile(new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> System.currentTimeMillis() + ".jpg"));
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:447:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] String resizePath = 
> DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()) + 
> "/resize.jpg";
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:451:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugi

[jira] [Created] (CB-3801) ProductID's are not unique

2013-06-13 Thread Jesse MacFadyen (JIRA)
Jesse MacFadyen created CB-3801:
---

 Summary: ProductID's are not unique
 Key: CB-3801
 URL: https://issues.apache.org/jira/browse/CB-3801
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP8
Affects Versions: 2.8.0
Reporter: Jesse MacFadyen
Assignee: Jesse MacFadyen
Priority: Blocker
 Fix For: 2.9.0


Every project created with the VS-Template and the command line create script 
are using the same ProductID, which means that you can only have 1 app with 
this id on any device. {13b7ec4f-d4cf-422b-90ef-cd9c48af66ab}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3717) Breakout Globalization Plugin for iOS

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-3717.


Resolution: Fixed

tested!

> Breakout Globalization Plugin for iOS
> -
>
> Key: CB-3717
> URL: https://issues.apache.org/jira/browse/CB-3717
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Globalization
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (CB-3724) Breakout File Plugin for Android

2013-06-13 Thread Tim Kim (JIRA)

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

Tim Kim reassigned CB-3724:
---

Assignee: Tim Kim  (was: Steve Gill)

> Breakout File Plugin for Android
> 
>
> Key: CB-3724
> URL: https://issues.apache.org/jira/browse/CB-3724
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin File
>Reporter: Steve Gill
>Assignee: Tim Kim
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Reopened] (CB-3659) Breakout Vibration Plugin for ios

2013-06-13 Thread Herm Wong (JIRA)

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

Herm Wong reopened CB-3659:
---


code broken out into plugin. requires testing on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-vibration.git;a=commit;h=809da47509b0b5c3af6c25650094e78ca699ead3

> Breakout Vibration Plugin for ios
> -
>
> Key: CB-3659
> URL: https://issues.apache.org/jira/browse/CB-3659
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Vibration
>Reporter: Steve Gill
>Assignee: Herm Wong
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3734) Breakout Network Information Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682695#comment-13682695
 ] 

Herm Wong edited comment on CB-3734 at 6/13/13 9:21 PM:


code has been broken out into the plugin. requires testing on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-network-information.git;a=commit;h=012af5b8c525308ac109d6a2b0c8e83e1290f7bb

  was (Author: hermwong):
code has been broken out into the plugin. requires testing on device.
  
> Breakout Network Information Plugin for iOS
> ---
>
> Key: CB-3734
> URL: https://issues.apache.org/jira/browse/CB-3734
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Network Information
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3709) Breakout Media Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3709?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682703#comment-13682703
 ] 

Herm Wong edited comment on CB-3709 at 6/13/13 9:20 PM:


code has been broken out into the plugin. requires testing on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media.git;a=commit;h=0698245ff0b537d9a501abd5120a24a41490fd1c

  was (Author: hermwong):
code has been broken out into the plugin. requires testing on device.
  
> Breakout Media Plugin for Android
> -
>
> Key: CB-3709
> URL: https://issues.apache.org/jira/browse/CB-3709
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Media
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3708) Breakout Media Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3708?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682702#comment-13682702
 ] 

Herm Wong edited comment on CB-3708 at 6/13/13 9:19 PM:


code has been broken out into the plugin. requires testing on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media.git;a=commit;h=f7293aaf912010e7fef9497395982f026f75287c

  was (Author: hermwong):
code has been broken out into the plugin. requires testing on device.
  
> Breakout Media Plugin for iOS
> -
>
> Key: CB-3708
> URL: https://issues.apache.org/jira/browse/CB-3708
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Media
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3733) Breakout Network Information Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3733?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682694#comment-13682694
 ] 

Herm Wong edited comment on CB-3733 at 6/13/13 9:20 PM:


code has been broken out into the plugin. requires testing on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-network-information.git;a=commit;h=012af5b8c525308ac109d6a2b0c8e83e1290f7bb

  was (Author: hermwong):
code has been broken out into the plugin. requires testing on device.
  
> Breakout Network Information Plugin for Android
> ---
>
> Key: CB-3733
> URL: https://issues.apache.org/jira/browse/CB-3733
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Network Information
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3717) Breakout Globalization Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3717?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682704#comment-13682704
 ] 

Herm Wong edited comment on CB-3717 at 6/13/13 9:18 PM:


code has been broken out into the plugin. requires testing on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-globalization.git;a=commit;h=49ecf5ce70aae167eca06a51009498d5fcab0d64

  was (Author: hermwong):
code has been broken out into the plugin. requires testing on device.
  
> Breakout Globalization Plugin for iOS
> -
>
> Key: CB-3717
> URL: https://issues.apache.org/jira/browse/CB-3717
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Globalization
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3701) Breakout Media Capture Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3701?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682701#comment-13682701
 ] 

Herm Wong edited comment on CB-3701 at 6/13/13 9:19 PM:


code has been broken out into the plugin. requires testing on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media-capture.git;a=commit;h=95562e020ce14b14893b9cc3c9d2394b2e1fc784

  was (Author: hermwong):
code has been broken out into the plugin. requires testing on device.
  
> Breakout Media Capture Plugin for iOS
> -
>
> Key: CB-3701
> URL: https://issues.apache.org/jira/browse/CB-3701
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Media Capture
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3723) Breakout File Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3723?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682707#comment-13682707
 ] 

Herm Wong edited comment on CB-3723 at 6/13/13 9:16 PM:


code has been broken out into the plugin. requires testing on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;a=commit;h=476d017e43e2ced1acbb103504d443fdf817c531

  was (Author: hermwong):
code has been broken out into the plugin. requires testing on device.
  
> Breakout File Plugin for iOS
> 
>
> Key: CB-3723
> URL: https://issues.apache.org/jira/browse/CB-3723
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin File
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3653) Breakout Camera Plugin for ios

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3653?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682686#comment-13682686
 ] 

Herm Wong edited comment on CB-3653 at 6/13/13 9:13 PM:


code has been broken out into the plugin. requires testing on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;a=commit;h=c26377ae98e5dd807ad76fcbf73684b93af112af

  was (Author: hermwong):
code has been broken out into the plugin. requires testing on device.
  
> Breakout Camera Plugin for ios
> --
>
> Key: CB-3653
> URL: https://issues.apache.org/jira/browse/CB-3653
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin Camera
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3670) Breakout Battery Status Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3670?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682751#comment-13682751
 ] 

Herm Wong commented on CB-3670:
---

code broken out into plugin. requires test on device.
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;a=commit;h=622b53742d35c62eba4ea0f6937441ba56f47124

> Breakout Battery Status Plugin for iOS
> --
>
> Key: CB-3670
> URL: https://issues.apache.org/jira/browse/CB-3670
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Battery Status
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3660) Breakout Vibration Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682738#comment-13682738
 ] 

Herm Wong commented on CB-3660:
---

Android permission added to plugin.xml
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-vibration.git;a=commit;h=d5ca2f064f89dacc1573d826f91683a32a2cfaf2

> Breakout Vibration Plugin for Android
> -
>
> Key: CB-3660
> URL: https://issues.apache.org/jira/browse/CB-3660
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Vibration
>Reporter: Steve Gill
>Assignee: Herm Wong
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3733) Breakout Network Information Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3733?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682736#comment-13682736
 ] 

Herm Wong commented on CB-3733:
---

Android permissions added to plugin.xml
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-network-information.git;a=commit;h=53210d77ea98b2793f76020d96874f94ae9f7013

> Breakout Network Information Plugin for Android
> ---
>
> Key: CB-3733
> URL: https://issues.apache.org/jira/browse/CB-3733
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Network Information
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3724) Breakout File Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3724?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682732#comment-13682732
 ] 

Herm Wong commented on CB-3724:
---

Android permissions added to plugin.xml
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;a=commit;h=22c36d7f6327d34be694002da25b5bfc85f0971e

> Breakout File Plugin for Android
> 
>
> Key: CB-3724
> URL: https://issues.apache.org/jira/browse/CB-3724
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin File
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3700) Breakout Media Capture Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3700?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682735#comment-13682735
 ] 

Herm Wong commented on CB-3700:
---

Android permission added to plugin.xml
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media-capture.git;a=commit;h=717476f7aa39f881a5234fc1b55f13a06ac82838

> Breakout Media Capture Plugin for Android
> -
>
> Key: CB-3700
> URL: https://issues.apache.org/jira/browse/CB-3700
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Media Capture
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3688) Breakout Device Orientation Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3688?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682730#comment-13682730
 ] 

Herm Wong commented on CB-3688:
---

android permissions added to plugin.xml 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;a=commit;h=1d7c6a44aafa1b83617d84fa44bc581a76998bfc

> Breakout Device Orientation Plugin for Android
> --
>
> Key: CB-3688
> URL: https://issues.apache.org/jira/browse/CB-3688
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Device Orientation
>Reporter: Steve Gill
>Assignee: Herm Wong
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (CB-3698) Breakout Console Plugin for iOS

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill reassigned CB-3698:
--

Assignee: Tim Kim  (was: Steve Gill)

> Breakout Console Plugin for iOS
> ---
>
> Key: CB-3698
> URL: https://issues.apache.org/jira/browse/CB-3698
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Console
>Reporter: Steve Gill
>Assignee: Tim Kim
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (CB-3699) Breakout Console Plugin for Android

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill reassigned CB-3699:
--

Assignee: Tim Kim  (was: Steve Gill)

> Breakout Console Plugin for Android
> ---
>
> Key: CB-3699
> URL: https://issues.apache.org/jira/browse/CB-3699
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Console
>Reporter: Steve Gill
>Assignee: Tim Kim
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3708) Breakout Media Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3708?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682702#comment-13682702
 ] 

Herm Wong commented on CB-3708:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Media Plugin for iOS
> -
>
> Key: CB-3708
> URL: https://issues.apache.org/jira/browse/CB-3708
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Media
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3709) Breakout Media Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3709?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682703#comment-13682703
 ] 

Herm Wong commented on CB-3709:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Media Plugin for Android
> -
>
> Key: CB-3709
> URL: https://issues.apache.org/jira/browse/CB-3709
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Media
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3723) Breakout File Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3723?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682707#comment-13682707
 ] 

Herm Wong commented on CB-3723:
---

code has been broken out into the plugin. requires testing on device.

> Breakout File Plugin for iOS
> 
>
> Key: CB-3723
> URL: https://issues.apache.org/jira/browse/CB-3723
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin File
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3717) Breakout Globalization Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3717?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682704#comment-13682704
 ] 

Herm Wong commented on CB-3717:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Globalization Plugin for iOS
> -
>
> Key: CB-3717
> URL: https://issues.apache.org/jira/browse/CB-3717
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Globalization
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3724) Breakout File Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3724?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682708#comment-13682708
 ] 

Herm Wong commented on CB-3724:
---

code has been broken out into the plugin. requires testing on device.

> Breakout File Plugin for Android
> 
>
> Key: CB-3724
> URL: https://issues.apache.org/jira/browse/CB-3724
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin File
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3701) Breakout Media Capture Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3701?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682701#comment-13682701
 ] 

Herm Wong commented on CB-3701:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Media Capture Plugin for iOS
> -
>
> Key: CB-3701
> URL: https://issues.apache.org/jira/browse/CB-3701
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Media Capture
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3698) Breakout Console Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3698?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682697#comment-13682697
 ] 

Herm Wong commented on CB-3698:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Console Plugin for iOS
> ---
>
> Key: CB-3698
> URL: https://issues.apache.org/jira/browse/CB-3698
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Console
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3699) Breakout Console Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682696#comment-13682696
 ] 

Herm Wong commented on CB-3699:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Console Plugin for Android
> ---
>
> Key: CB-3699
> URL: https://issues.apache.org/jira/browse/CB-3699
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Console
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3700) Breakout Media Capture Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3700?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682700#comment-13682700
 ] 

Herm Wong commented on CB-3700:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Media Capture Plugin for Android
> -
>
> Key: CB-3700
> URL: https://issues.apache.org/jira/browse/CB-3700
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Media Capture
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3734) Breakout Network Information Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3734?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682695#comment-13682695
 ] 

Herm Wong commented on CB-3734:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Network Information Plugin for iOS
> ---
>
> Key: CB-3734
> URL: https://issues.apache.org/jira/browse/CB-3734
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Network Information
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3689) Breakout Device Orientation Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3689?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682690#comment-13682690
 ] 

Herm Wong commented on CB-3689:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Device Orientation Plugin for iOS
> --
>
> Key: CB-3689
> URL: https://issues.apache.org/jira/browse/CB-3689
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Device Orientation
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3733) Breakout Network Information Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3733?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682694#comment-13682694
 ] 

Herm Wong commented on CB-3733:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Network Information Plugin for Android
> ---
>
> Key: CB-3733
> URL: https://issues.apache.org/jira/browse/CB-3733
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Network Information
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3690) Breakout Geolocation Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3690?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682691#comment-13682691
 ] 

Herm Wong commented on CB-3690:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Geolocation Plugin for iOS
> ---
>
> Key: CB-3690
> URL: https://issues.apache.org/jira/browse/CB-3690
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Geolocation
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3654) Breakout Camera Plugin for Android

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682688#comment-13682688
 ] 

Herm Wong commented on CB-3654:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Camera Plugin for Android
> --
>
> Key: CB-3654
> URL: https://issues.apache.org/jira/browse/CB-3654
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin Camera
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3653) Breakout Camera Plugin for ios

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3653?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682686#comment-13682686
 ] 

Herm Wong commented on CB-3653:
---

code has been broken out into the plugin. requires testing on device.

> Breakout Camera Plugin for ios
> --
>
> Key: CB-3653
> URL: https://issues.apache.org/jira/browse/CB-3653
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin Camera
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3680) Breakout Contacts Plugin for Android

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3680?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682685#comment-13682685
 ] 

Steve Gill commented on CB-3680:


native files + js have been updated on master. Need to reflect this in plugin.

> Breakout Contacts Plugin for Android
> 
>
> Key: CB-3680
> URL: https://issues.apache.org/jira/browse/CB-3680
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin Contacts
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3681) Breakout Contacts Plugin for iOS

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3681?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682687#comment-13682687
 ] 

Steve Gill commented on CB-3681:


native files + js have been updated on master. Need to reflect this in plugin.

> Breakout Contacts Plugin for iOS
> 
>
> Key: CB-3681
> URL: https://issues.apache.org/jira/browse/CB-3681
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Contacts
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3679) Breakout SplashScreen Plugin for Android

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3679?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682683#comment-13682683
 ] 

Steve Gill commented on CB-3679:


needs testing

> Breakout SplashScreen Plugin for Android
> 
>
> Key: CB-3679
> URL: https://issues.apache.org/jira/browse/CB-3679
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin SplashScreen
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3664) Breakout InAppBrowser Plugin for ios

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3664?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682667#comment-13682667
 ] 

Steve Gill edited comment on CB-3664 at 6/13/13 8:33 PM:
-

inappbrowser has been updated. Need to get latest js, tests, docs and native 
files for ios/android and copy into project. Make sure to update 
references/imports in native files when copying over (See versions existing in 
plugin)

  was (Author: stevegill):
inappbrowser has been updated. Need to get latest js, and native files for 
ios/android and copy into project. Make sure to update references/imports in 
native files when copying over (See versions existing in plugin)
  
> Breakout InAppBrowser Plugin for ios
> 
>
> Key: CB-3664
> URL: https://issues.apache.org/jira/browse/CB-3664
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin InAppBrowser
>Reporter: Steve Gill
>Assignee: Herm Wong
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Reopened] (CB-3648) Breakout Device Motion Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

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

Herm Wong reopened CB-3648:
---


> Breakout Device Motion Plugin for iOS
> -
>
> Key: CB-3648
> URL: https://issues.apache.org/jira/browse/CB-3648
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin Device Motion
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3648) Breakout Device Motion Plugin for iOS

2013-06-13 Thread Herm Wong (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682676#comment-13682676
 ] 

Herm Wong commented on CB-3648:
---

plugin has been broken out. requires testing on iOS device.

> Breakout Device Motion Plugin for iOS
> -
>
> Key: CB-3648
> URL: https://issues.apache.org/jira/browse/CB-3648
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin Device Motion
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3670) Breakout Battery Status Plugin for iOS

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3670?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682672#comment-13682672
 ] 

Steve Gill commented on CB-3670:


needs final test

> Breakout Battery Status Plugin for iOS
> --
>
> Key: CB-3670
> URL: https://issues.apache.org/jira/browse/CB-3670
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Battery Status
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (CB-3800) Media release attempts to rename tmprecording.3gp and fails

2013-06-13 Thread Ron Meske (JIRA)
Ron Meske created CB-3800:
-

 Summary: Media release attempts to rename tmprecording.3gp and 
fails
 Key: CB-3800
 URL: https://issues.apache.org/jira/browse/CB-3800
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Media
Affects Versions: 2.8.0
 Environment: Android 4.1.2
Reporter: Ron Meske
Assignee: Steve Gill
Priority: Minor


I am working with the Media API to create a simple audio recorder and 
everything is working, except when debugging I am seeing an error message when 
increasing my media object.

I am not sure if this is a bug, intended, or something in my code that causes 
the issue.

The code in question is one of two blocks both of which trigger the error:
myRecmedia.stopRecord();
myRecmedia.release();

or 
mymedia.stop();
mymedia.release();

I separated the recording and playback into separate objects and call release 
to handle issues with crashing when calling play several times.

When either myRecmedia.stopRecord() or mymedia.stop() is executed I see in the 
log that AudioPlayer generates a message "renaming 
/storage/sdcard/tmprecording.3gp to filename", where filename matches the 
filename  I had passed when creating the media object.  This seems to work fine.

Then when myRecmedia.release() or mymedia.release() is executed I see in the 
log that AudioPlayer generates a message "FAILED renaming 
/storage.sdcard/tmprecording.3gp to filename"

Is .release() suppose to trigger the AudioPlayer to rename the file? 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3664) Breakout InAppBrowser Plugin for ios

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3664?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682667#comment-13682667
 ] 

Steve Gill commented on CB-3664:


inappbrowser has been updated. Need to get latest js, and native files for 
ios/android and copy into project. Make sure to update references/imports in 
native files when copying over (See versions existing in plugin)

> Breakout InAppBrowser Plugin for ios
> 
>
> Key: CB-3664
> URL: https://issues.apache.org/jira/browse/CB-3664
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin InAppBrowser
>Reporter: Steve Gill
>Assignee: Herm Wong
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Reopened] (CB-3665) Breakout InAppBrowser Plugin for Android

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill reopened CB-3665:



inappbrowser has been updated. Need to get latest js, tests, docs and native 
files for ios/android and copy into project. Make sure to update 
references/imports in native files when copying over (See versions existing in 
plugin)

> Breakout InAppBrowser Plugin for Android
> 
>
> Key: CB-3665
> URL: https://issues.apache.org/jira/browse/CB-3665
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin InAppBrowser
>Reporter: Steve Gill
>Assignee: Herm Wong
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3678) Breakout SplashScreen Plugin for iOS

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3678?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682674#comment-13682674
 ] 

Steve Gill commented on CB-3678:


needs test

> Breakout SplashScreen Plugin for iOS
> 
>
> Key: CB-3678
> URL: https://issues.apache.org/jira/browse/CB-3678
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin SplashScreen
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Reopened] (CB-3664) Breakout InAppBrowser Plugin for ios

2013-06-13 Thread Steve Gill (JIRA)

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

Steve Gill reopened CB-3664:



lets not close until fully tested

> Breakout InAppBrowser Plugin for ios
> 
>
> Key: CB-3664
> URL: https://issues.apache.org/jira/browse/CB-3664
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin InAppBrowser
>Reporter: Steve Gill
>Assignee: Herm Wong
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3530) PhoneGap app crashes on iOS with error "CDVWebViewDelegate: Navigation started when state=1"

2013-06-13 Thread Shazron Abdullah (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682660#comment-13682660
 ] 

Shazron Abdullah commented on CB-3530:
--

Ok, I'll take a look again but the author of the state machine code is away so 
it may take some time for me to get familiar. But does anything actually fail? 
(besides the error message). Anything on the loaded webpage that is not working?

> PhoneGap app crashes on iOS with error "CDVWebViewDelegate: Navigation 
> started when state=1"
> 
>
> Key: CB-3530
> URL: https://issues.apache.org/jira/browse/CB-3530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin InAppBrowser
>Affects Versions: 2.7.0
> Environment: Mac OSX 10.8.3, XCode 4.6.2, iOS 6.1
>Reporter: Montyleena
>Assignee: Shazron Abdullah
>  Labels: crash, iOS,, inappbrowser,
> Fix For: 2.8.0
>
>
> I have a PhoneGap app on iOS which was working fine with PhoneGap 2.3.0 but 
> crashes with 2.7.0 with the following error:
> 2013-05-02 10:08:13.214 App[8896:c07] CDVWebViewDelegate: Navigation started 
> when state=1
> 2013-05-02 10:08:13.215 App[8896:c07] Failed to load webpage with error: 
> (null)
> The problem is:
> CDVWebViewDelegate.m: shouldStartLoadWithRequest() function: In switch case, 
> default: error code is being passed as nil
> and in CDVInAppBrowser.m: didFailLoadWithError() function, 
> error.localizedDescription is being referenced, which causes a crash as error 
> object is nil. 
> For now, i added a check in the above function to put default values for 
> error code if the error object is nil. I hope this crash is fixed in the next 
> PhoneGap release.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3508) camera plugin

2013-06-13 Thread Steve Gill (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3508?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682659#comment-13682659
 ] 

Steve Gill commented on CB-3508:


Build issues for Android are resolved. Both android and iOS are having issues 
loading the JS. It breaks device ready when you load the camera.js file using 
the jsmodule technique. Requires more investigation. 

> camera plugin
> -
>
> Key: CB-3508
> URL: https://issues.apache.org/jira/browse/CB-3508
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, iOS, Plugin Camera
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>
> This is all to do with 3.0.0 branch stuff and Plugin breakout
> ios
> Create a cordova project. Run, device ready fire. Instal the plugin and 
> device ready won't fire.
> Something wrong with how it installs or handles dependencies. I believe it 
> has to do with the javascript. More investigating required.
> Android
> Lots of build issues post installation (below). Need to fix imports and look 
> at dependencies.
> After these issues are sorted, android could have same issue as ios
> -compile:
> [javac] Compiling 4 source files to 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/bin/classes
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:29:
>  package org.apache.commons.codec.binary does not exist
> [javac] import org.apache.commons.codec.binary.Base64;
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:522:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] private Bitmap getRotatedBitmap(int rotate, Bitmap bitmap, ExifHelper 
> exif) {
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:216:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] photo = new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> ".Pic.jpg");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:218:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] photo = new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> ".Pic.png");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:279:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:279:
>  cannot find symbol
> [javac] symbol : class ExifHelper
> [javac] location: class org.apache.cordova.core.CameraLauncher
> [javac] ExifHelper exif = new ExifHelper();
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:282:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] 
> exif.createInFile(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity())
>  + "/.Pic.jpg");
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:325:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] uri = Uri.fromFile(new 
> File(DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()), 
> System.currentTimeMillis() + ".jpg"));
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:447:
>  getTempDirectoryPath(android.content.Context) has protected access in 
> org.apache.cordova.DirectoryManager
> [javac] String resizePath = 
> DirectoryManager.getTempDirectoryPath(this.cordova.getActivity()) + 
> "/resize.jpg";
> [javac] ^
> [javac] 
> /Users/stevengill/Documents/repo/plugins/plugin-breakout-release-test-harness/cameraandroid/src/org/apache/cordova/core/CameraLauncher.java:451:
>  cann

[jira] [Updated] (CB-3386) Create Test for CB-3068

2013-06-13 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-3386:
---

Description: Write a test for CB-3068.  I don't trust any key commands.  
(was: Write a test for CB-2068.  I don't trust any key commands.)

> Create Test for CB-3068
> ---
>
> Key: CB-3386
> URL: https://issues.apache.org/jira/browse/CB-3386
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 2.8.0
>Reporter: Joe Bowser
>Assignee: Joe Bowser
>Priority: Minor
> Fix For: 2.9.0
>
>
> Write a test for CB-3068.  I don't trust any key commands.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3530) PhoneGap app crashes on iOS with error "CDVWebViewDelegate: Navigation started when state=1"

2013-06-13 Thread Fredy Levin (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682633#comment-13682633
 ] 

Fredy Levin commented on CB-3530:
-

I'm getting a very similar behavior to what Montyleena described.
The complete error trace is:

"CDVWebViewDelegate: Navigation started when state=1"
"Failed to load webpage with error: CDVWebViewDelegate: Navigation started when 
state=1"

What could be done to fix this?

> PhoneGap app crashes on iOS with error "CDVWebViewDelegate: Navigation 
> started when state=1"
> 
>
> Key: CB-3530
> URL: https://issues.apache.org/jira/browse/CB-3530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin InAppBrowser
>Affects Versions: 2.7.0
> Environment: Mac OSX 10.8.3, XCode 4.6.2, iOS 6.1
>Reporter: Montyleena
>Assignee: Shazron Abdullah
>  Labels: crash, iOS,, inappbrowser,
> Fix For: 2.8.0
>
>
> I have a PhoneGap app on iOS which was working fine with PhoneGap 2.3.0 but 
> crashes with 2.7.0 with the following error:
> 2013-05-02 10:08:13.214 App[8896:c07] CDVWebViewDelegate: Navigation started 
> when state=1
> 2013-05-02 10:08:13.215 App[8896:c07] Failed to load webpage with error: 
> (null)
> The problem is:
> CDVWebViewDelegate.m: shouldStartLoadWithRequest() function: In switch case, 
> default: error code is being passed as nil
> and in CDVInAppBrowser.m: didFailLoadWithError() function, 
> error.localizedDescription is being referenced, which causes a crash as error 
> object is nil. 
> For now, i added a check in the above function to put default values for 
> error code if the error object is nil. I hope this crash is fixed in the next 
> PhoneGap release.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Comment Edited] (CB-3530) PhoneGap app crashes on iOS with error "CDVWebViewDelegate: Navigation started when state=1"

2013-06-13 Thread Fredy Levin (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682633#comment-13682633
 ] 

Fredy Levin edited comment on CB-3530 at 6/13/13 7:58 PM:
--

I'm getting a very similar behavior on 2.8.0 in iOS to what Montyleena 
described.
The complete error trace is:

"CDVWebViewDelegate: Navigation started when state=1"
"Failed to load webpage with error: CDVWebViewDelegate: Navigation started when 
state=1"

What could be done to fix this?

  was (Author: fredyle):
I'm getting a very similar behavior to what Montyleena described.
The complete error trace is:

"CDVWebViewDelegate: Navigation started when state=1"
"Failed to load webpage with error: CDVWebViewDelegate: Navigation started when 
state=1"

What could be done to fix this?
  
> PhoneGap app crashes on iOS with error "CDVWebViewDelegate: Navigation 
> started when state=1"
> 
>
> Key: CB-3530
> URL: https://issues.apache.org/jira/browse/CB-3530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, Plugin InAppBrowser
>Affects Versions: 2.7.0
> Environment: Mac OSX 10.8.3, XCode 4.6.2, iOS 6.1
>Reporter: Montyleena
>Assignee: Shazron Abdullah
>  Labels: crash, iOS,, inappbrowser,
> Fix For: 2.8.0
>
>
> I have a PhoneGap app on iOS which was working fine with PhoneGap 2.3.0 but 
> crashes with 2.7.0 with the following error:
> 2013-05-02 10:08:13.214 App[8896:c07] CDVWebViewDelegate: Navigation started 
> when state=1
> 2013-05-02 10:08:13.215 App[8896:c07] Failed to load webpage with error: 
> (null)
> The problem is:
> CDVWebViewDelegate.m: shouldStartLoadWithRequest() function: In switch case, 
> default: error code is being passed as nil
> and in CDVInAppBrowser.m: didFailLoadWithError() function, 
> error.localizedDescription is being referenced, which causes a crash as error 
> object is nil. 
> For now, i added a check in the above function to put default values for 
> error code if the error object is nil. I hope this crash is fixed in the next 
> PhoneGap release.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3626) ./bin/lib/start-emulator with no id parameter does nothing

2013-06-13 Thread Filip Maj (JIRA)

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

Filip Maj resolved CB-3626.
---

Resolution: Fixed

> ./bin/lib/start-emulator with no id parameter does nothing
> --
>
> Key: CB-3626
> URL: https://issues.apache.org/jira/browse/CB-3626
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 2.8.0
> Environment: Mac OSX 10.7.5
>Reporter: Filip Maj
>Assignee: Filip Maj
> Fix For: 2.9.0
>
>
> According to the [Command Line Design wiki 
> document|http://wiki.apache.org/cordova/CommandLineToolingDesign], running 
> {{start-emulator}} with no parameters should start the first available 
> emulator.
> In my particular case, if I run {{list-emulator-images}}, I get the following 
> output:
> {code}
> debug_rake_android15
> Gingerbread
> ICS
> {code}
> However, running {{start-emulator}} with no ID results in the script exiting 
> with 0 status code and doing nothing. Running {{start-emulator ICS}}, so with 
> a valid emulator ID, works as expected.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3626) ./bin/lib/start-emulator with no id parameter does nothing

2013-06-13 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3626?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682622#comment-13682622
 ] 

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

Commit e86d811fc015b5b345aa810945327b83b86631be in branch refs/heads/master 
from Fil Maj
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=e86d811 ]

[CB-3626] fix to start-emulator: if no id is provided, should start the first 
emulator


> ./bin/lib/start-emulator with no id parameter does nothing
> --
>
> Key: CB-3626
> URL: https://issues.apache.org/jira/browse/CB-3626
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 2.8.0
> Environment: Mac OSX 10.7.5
>Reporter: Filip Maj
>Assignee: Filip Maj
> Fix For: 2.9.0
>
>
> According to the [Command Line Design wiki 
> document|http://wiki.apache.org/cordova/CommandLineToolingDesign], running 
> {{start-emulator}} with no parameters should start the first available 
> emulator.
> In my particular case, if I run {{list-emulator-images}}, I get the following 
> output:
> {code}
> debug_rake_android15
> Gingerbread
> ICS
> {code}
> However, running {{start-emulator}} with no ID results in the script exiting 
> with 0 status code and doing nothing. Running {{start-emulator ICS}}, so with 
> a valid emulator ID, works as expected.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3693) Breakout Geolocation Plugin for WP7

2013-06-13 Thread Benn Mapes (JIRA)

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

Benn Mapes resolved CB-3693.


Resolution: Fixed

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-geolocation.git;a=commit;h=f8acec22929f3e187f267476cfd68cdd3f8b05f6

> Breakout Geolocation Plugin for WP7
> ---
>
> Key: CB-3693
> URL: https://issues.apache.org/jira/browse/CB-3693
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Geolocation, WP7
>Reporter: Steve Gill
>Assignee: Steve Gill
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3716) Breakout Globalization Plugin for WP7

2013-06-13 Thread Benn Mapes (JIRA)

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

Benn Mapes resolved CB-3716.


Resolution: Fixed
  Assignee: Benn Mapes  (was: Steve Gill)

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-globalization.git;a=commit;h=1bafef6df3403c4a009cd671b7ce344dddba0a7e

> Breakout Globalization Plugin for WP7
> -
>
> Key: CB-3716
> URL: https://issues.apache.org/jira/browse/CB-3716
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Globalization, WP7
>Reporter: Steve Gill
>Assignee: Benn Mapes
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3696) Breakout Console Plugin for WP7

2013-06-13 Thread Benn Mapes (JIRA)

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

Benn Mapes resolved CB-3696.


Resolution: Fixed
  Assignee: Benn Mapes  (was: Steve Gill)

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-console.git;a=commit;h=0905ba09c09e07f9dd20b57982b4cae57fe05a76

> Breakout Console Plugin for WP7
> ---
>
> Key: CB-3696
> URL: https://issues.apache.org/jira/browse/CB-3696
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Console, WP7
>Reporter: Steve Gill
>Assignee: Benn Mapes
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3686) Breakout Device Orientation Plugin for WP7

2013-06-13 Thread Benn Mapes (JIRA)

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

Benn Mapes resolved CB-3686.


Resolution: Fixed
  Assignee: Benn Mapes  (was: Steve Gill)

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;a=commit;h=c6ed20b2b8edf4eea5f0536721a5ee45f0b6c732

> Breakout Device Orientation Plugin for WP7
> --
>
> Key: CB-3686
> URL: https://issues.apache.org/jira/browse/CB-3686
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Device Orientation, WP7
>Reporter: Steve Gill
>Assignee: Benn Mapes
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3683) Breakout Contacts Plugin for WP7

2013-06-13 Thread Benn Mapes (JIRA)

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

Benn Mapes resolved CB-3683.


Resolution: Fixed
  Assignee: Benn Mapes  (was: Steve Gill)

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;a=commit;h=b7f6d2bc53d9496a19f2435b7f8e458df61d985d

> Breakout Contacts Plugin for WP7
> 
>
> Key: CB-3683
> URL: https://issues.apache.org/jira/browse/CB-3683
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Contacts, WP7
>Reporter: Steve Gill
>Assignee: Benn Mapes
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3673) Breakout Battery Status Plugin for WP7

2013-06-13 Thread Benn Mapes (JIRA)

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

Benn Mapes resolved CB-3673.


Resolution: Fixed
  Assignee: Benn Mapes  (was: Steve Gill)

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;a=commit;h=a339c3f5c629da84f66c0a26de29083d7530e697

> Breakout Battery Status Plugin for WP7
> --
>
> Key: CB-3673
> URL: https://issues.apache.org/jira/browse/CB-3673
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Battery Status, WP7
>Reporter: Steve Gill
>Assignee: Benn Mapes
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3662) Breakout Vibration Plugin for WP7

2013-06-13 Thread Benn Mapes (JIRA)

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

Benn Mapes resolved CB-3662.


Resolution: Fixed
  Assignee: Benn Mapes  (was: Steve Gill)

Still need to split out the dialog plugin from this one, currently they are all 
under the Notification.cs

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-vibration.git;a=commit;h=d592e6d08b545b881e3765963ddc779935bb3536

> Breakout Vibration Plugin for WP7
> -
>
> Key: CB-3662
> URL: https://issues.apache.org/jira/browse/CB-3662
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Vibration, WP7
>Reporter: Steve Gill
>Assignee: Benn Mapes
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3667) Breakout InAppBrowser Plugin for WP7

2013-06-13 Thread Benn Mapes (JIRA)

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

Benn Mapes resolved CB-3667.


Resolution: Fixed
  Assignee: Benn Mapes  (was: Steve Gill)

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-inappbrowser.git;a=commit;h=9f8af5f464d8b86f114d1475833236ff1e705c14

> Breakout InAppBrowser Plugin for WP7
> 
>
> Key: CB-3667
> URL: https://issues.apache.org/jira/browse/CB-3667
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin InAppBrowser, WP7
>Reporter: Steve Gill
>Assignee: Benn Mapes
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3658) Breakout Device Motion Plugin for wp7

2013-06-13 Thread Benn Mapes (JIRA)

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

Benn Mapes resolved CB-3658.


Resolution: Fixed
  Assignee: Benn Mapes  (was: Steve Gill)

https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-motion.git;a=commit;h=edd3006625181aa58a4146c68d6422daaf2cf204

> Breakout Device Motion Plugin for wp7
> -
>
> Key: CB-3658
> URL: https://issues.apache.org/jira/browse/CB-3658
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Device Motion, WP7
>Reporter: Steve Gill
>Assignee: Benn Mapes
> Fix For: 3.0.0
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3794) clarify required vs. optional syntax

2013-06-13 Thread Mike Sierra (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3794?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682588#comment-13682588
 ] 

Mike Sierra commented on CB-3794:
-

The formatting above got screwed up, but you get the idea.  Also suggest making 
hidden synonym commands explicit: 

{add|remove|rm}



> clarify required vs. optional syntax
> 
>
> Key: CB-3794
> URL: https://issues.apache.org/jira/browse/CB-3794
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Reporter: Mike Sierra
>Assignee: Filip Maj
>Priority: Minor
>
> Run "cordova" with no argument. Syntax list doesn't always distinguish 
>  path vs [optional] id/name arguments:
> create [path] [id] [name]
> Perhaps represent mandatory "platform" syntax like this?
> platform(s) 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (CB-3763) CLI not updating platform config files with app version from config.xml on Blackberry

2013-06-13 Thread Filip Maj (JIRA)

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

Filip Maj resolved CB-3763.
---

   Resolution: Fixed
Fix Version/s: 2.9.0

> CLI not updating platform config files with app version from config.xml on 
> Blackberry
> -
>
> Key: CB-3763
> URL: https://issues.apache.org/jira/browse/CB-3763
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: BlackBerry, CLI
>Affects Versions: 2.8.0
>Reporter: Tommy-Carlos Williams
>Assignee: Filip Maj
> Fix For: 2.9.0
>
>
> During the {{prepare}} stage, the CLI should be updating the version 
> information in the platform config file(s).
> This has been done for Android and iOS but it would be good if someone could 
> do it for Blackberry.
> See: https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=04648ad

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (CB-3791) "cordova plugin add" produces uninformative error

2013-06-13 Thread Filip Maj (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-3791?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13682584#comment-13682584
 ] 

Filip Maj commented on CB-3791:
---

That should be all.

> "cordova plugin add" produces uninformative error
> -
>
> Key: CB-3791
> URL: https://issues.apache.org/jira/browse/CB-3791
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Reporter: Mike Sierra
>Assignee: Filip Maj
>Priority: Minor
> Fix For: 2.9.0
>
>
> Running "cordova plugin add" with no path argument produces...
> [TypeError: Cannot read property 'length' of undefined]
> ...which doesn't tell users what they're doing wrong.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (CB-3763) CLI not updating platform config files with app version from config.xml on Blackberry

2013-06-13 Thread Filip Maj (JIRA)

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

Filip Maj reassigned CB-3763:
-

Assignee: Filip Maj  (was: Lorin Beer)

> CLI not updating platform config files with app version from config.xml on 
> Blackberry
> -
>
> Key: CB-3763
> URL: https://issues.apache.org/jira/browse/CB-3763
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: BlackBerry, CLI
>Affects Versions: 2.8.0
>Reporter: Tommy-Carlos Williams
>Assignee: Filip Maj
>
> During the {{prepare}} stage, the CLI should be updating the version 
> information in the platform config file(s).
> This has been done for Android and iOS but it would be good if someone could 
> do it for Blackberry.
> See: https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=04648ad

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


  1   2   >