[jira] [Created] (CB-3785) Channel.prototype.subscribe to support EventListener interface

2013-06-13 Thread Nikolai Kotchetkov (JIRA)
Nikolai Kotchetkov created CB-3785:
--

 Summary: Channel.prototype.subscribe to support EventListener 
interface
 Key: CB-3785
 URL: https://issues.apache.org/jira/browse/CB-3785
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CordovaJS
Affects Versions: 2.8.0
 Environment: All platforms
Reporter: Nikolai Kotchetkov
Assignee: Filip Maj


As number of Cordova-specific events use monkey-patch for add/remove/fire 
listeners it would be nice if Channel functions support EventListener interface:

- https://developer.mozilla.org/en-US/docs/Web/API/EventListener
- http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-EventListener

I assume only a small patch to Channel module is required. Here are the 
modified functions to resolve the issue:
{code:javascript}
/**
 * Subscribes the given function to the channel. Any time that
 * Channel.fire is called so too will the function.
 * Optionally specify an execution context for the function
 * and a guid that can be used to stop subscribing to the channel.
 * Returns the guid.
 */
Channel.prototype.subscribe = function(f, c) {

var func;
if (f  object === typeof f) {
// EventListener interface
func = f[handleEvent];
c = f;
} else {
// Function interface
func = f;
}

// need a function to call
forceFunction(func);
if (this.state == 2) {
func.apply(c || this, this.fireArgs);
return;
}

var guid = f.observer_guid;
if (typeof c == object) { func = utils.close(c, func); }

if (!guid) {
// first time any channel has seen this subscriber
guid = '' + nextGuid++;
}
func.observer_guid = guid;
f.observer_guid = guid;

// Don't add the same handler more than once.
if (!this.handlers[guid]) {
this.handlers[guid] = func;
this.numHandlers++;
if (this.numHandlers == 1) {
this.onHasSubscribersChange  this.onHasSubscribersChange();
}
}
};

/**
 * Unsubscribes the function with the given guid from the channel.
 */
Channel.prototype.unsubscribe = function(f) {
var func;
if (f  object === typeof f) {
// EventListener interface
func = f[handleEvent];
c = f;
} else {
// Function interface
func = f;
}

// need a function to unsubscribe
forceFunction(func);

var guid = f.observer_guid,
handler = this.handlers[guid];
if (handler) {
delete this.handlers[guid];
this.numHandlers--;
if (this.numHandlers === 0) {
this.onHasSubscribersChange  this.onHasSubscribersChange();
}
}
};
{code} 

--
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-3768) Build to phone failing on Xcode 5 DP1 (OS X Mavericks)

2013-06-13 Thread lee marrett (JIRA)

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

lee marrett commented on CB-3768:
-

Confirmed fixed for me on ios7 beta / xcode 5 / mountain lion, thanks Shazron!

 Build to phone failing on Xcode 5 DP1 (OS X Mavericks)
 --

 Key: CB-3768
 URL: https://issues.apache.org/jira/browse/CB-3768
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 2.5.0, 2.8.0
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
  Labels: mavericks, xcode5
 Fix For: 2.9.0

 Attachments: linkerror.png


 I know it's a Dev Preview, but we should fix this as we go along the beta so 
 we are not totally surprised when final goes out.
 More details here: https://github.com/shazron/phonegap-questions/issues/16
 ---
 Been happily building to my phone with Xcode 4.6 (phonegap/cordova 2.5.0)
 installed ios7 developer preview and Xcode 5 DP and now building to the phone 
 fails.
 (error screenshot here: http://d.pr/i/akfq, let me know if I can get 
 specifics for you)
 Build succeeds and runs fine in iOS simulator.

--
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-3786) Event's 'target' and 'currentTarget' are null for monkeypatched events

2013-06-13 Thread Nikolai Kotchetkov (JIRA)
Nikolai Kotchetkov created CB-3786:
--

 Summary: Event's 'target' and 'currentTarget' are null for 
monkeypatched events
 Key: CB-3786
 URL: https://issues.apache.org/jira/browse/CB-3786
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaJS
Affects Versions: 2.8.0
 Environment: All platforms
Reporter: Nikolai Kotchetkov
Assignee: Filip Maj


When subscribing to special Cordova events like 'backbutton', 'target' and 
'currentTarget' properties of fired event objects are null.

{code:javascript}
document.addEventListener(backbutton, function(e){
console.log(BACK:  + e.type +  event on  + e.currentTarget + 
( + e.target + ));
});
{code}

produces result:
{noformat}
06-13 12:35:22.841: I/Web Console(14539): BACK: backbutton event on null(null) 
at file:///android_asset/www/index.html:71
{noformat}

I guess it's not a major problem for everyone but my own library depends on 
currentTarget property and it may pop somwhere else.


--
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-3787) Documentation on android camera quirck(s)

2013-06-13 Thread Roderick Gadellaa (JIRA)
Roderick Gadellaa created CB-3787:
-

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


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] [Commented] (CB-3786) Event's 'target' and 'currentTarget' are null for monkeypatched events

2013-06-13 Thread Nikolai Kotchetkov (JIRA)

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

Nikolai Kotchetkov commented on CB-3786:


Unfortunately 
{code:javascript}
evt.currentTarget = evt.target = document;
{code}
in 'fireDocumentEvent' and 'fireWindowEvent' won't change properties - they are 
accessible from DOM event pipline only I guess.

 Event's 'target' and 'currentTarget' are null for monkeypatched events
 --

 Key: CB-3786
 URL: https://issues.apache.org/jira/browse/CB-3786
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaJS
Affects Versions: 2.8.0
 Environment: All platforms
Reporter: Nikolai Kotchetkov
Assignee: Filip Maj
  Labels: javascript

 When subscribing to special Cordova events like 'backbutton', 'target' and 
 'currentTarget' properties of fired event objects are null.
 {code:javascript}
 document.addEventListener(backbutton, function(e){
 console.log(BACK:  + e.type +  event on  + e.currentTarget + 
 ( + e.target + ));
 });
 {code}
 produces result:
 {noformat}
 06-13 12:35:22.841: I/Web Console(14539): BACK: backbutton event on 
 null(null) at file:///android_asset/www/index.html:71
 {noformat}
 I guess it's not a major problem for everyone but my own library depends on 
 currentTarget property and it may pop somwhere else.

--
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-3768) Build to phone failing on Xcode 5 DP1 (OS X Mavericks)

2013-06-13 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-3768:
--

Notes on why it failed and the true fix below.

We had this in the CordovaLib.xcodeproj/project.pbxproj:
{code}
buildSettings = {
ARCHS[sdk=iphoneos*] = armv7;
ARCHS[sdk=iphoneos6.*] = (
armv7,
armv7s,
);
/* other settings here */
 };
{code}

Of course, under iOS 7, the iphoneos.* sector applies, which doesn't include 
the armv7s arch needed. Under iOS6, this selector would only be used when 
compiling under an older Xcode with the iOS 5 SDK.

The fix will be to edit CordovaLib.xcodeproj/project.pbxproj in the repo with 
the iOS 7 selector needed. Namely, copy the iphoneos6.* selector section 
wherever it occurs and replace 6 with 7. e.g.:

{code}
buildSettings = {
ARCHS[sdk=iphoneos*] = armv7;
ARCHS[sdk=iphoneos7.*] = (
armv7,
armv7s,
);
ARCHS[sdk=iphoneos6.*] = (
armv7,
armv7s,
);
/* other settings here */
 };
{code} 

 Build to phone failing on Xcode 5 DP1 (OS X Mavericks)
 --

 Key: CB-3768
 URL: https://issues.apache.org/jira/browse/CB-3768
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 2.5.0, 2.8.0
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
  Labels: mavericks, xcode5
 Fix For: 2.9.0

 Attachments: linkerror.png


 I know it's a Dev Preview, but we should fix this as we go along the beta so 
 we are not totally surprised when final goes out.
 More details here: https://github.com/shazron/phonegap-questions/issues/16
 ---
 Been happily building to my phone with Xcode 4.6 (phonegap/cordova 2.5.0)
 installed ios7 developer preview and Xcode 5 DP and now building to the phone 
 fails.
 (error screenshot here: http://d.pr/i/akfq, let me know if I can get 
 specifics for you)
 Build succeeds and runs fine in iOS simulator.

--
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-3768) Build to phone failing on Xcode 5 DP1 (OS X Mavericks)

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

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

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

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

[CB-3768] Build to phone failing on Xcode 5 DP1 (OS X Mavericks)


 Build to phone failing on Xcode 5 DP1 (OS X Mavericks)
 --

 Key: CB-3768
 URL: https://issues.apache.org/jira/browse/CB-3768
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 2.5.0, 2.8.0
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
  Labels: mavericks, xcode5
 Fix For: 2.9.0

 Attachments: linkerror.png


 I know it's a Dev Preview, but we should fix this as we go along the beta so 
 we are not totally surprised when final goes out.
 More details here: https://github.com/shazron/phonegap-questions/issues/16
 ---
 Been happily building to my phone with Xcode 4.6 (phonegap/cordova 2.5.0)
 installed ios7 developer preview and Xcode 5 DP and now building to the phone 
 fails.
 (error screenshot here: http://d.pr/i/akfq, let me know if I can get 
 specifics for you)
 Build succeeds and runs fine in iOS simulator.

--
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-3788) Update template project settings for iOS 7 SDK, fix deprecations

2013-06-13 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-3788:


 Summary: Update template project settings for iOS 7 SDK, fix 
deprecations
 Key: CB-3788
 URL: https://issues.apache.org/jira/browse/CB-3788
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin Device Motion
Affects Versions: Master
 Environment: iOS 7
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah


Do this only when iOS 7 SDK is imminent for release (thus iOS 7 SDK is required 
for App Store app submission). Not sure of the impact if we upgrade now, there 
might be Build Settings that only work with the new SDK.

1. Validate project settings for both template and CordovaLib projects
2. Fix deprecations in core plugins as noted in Components section of this issue




--
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-3649) Update and add create instruction for Windows Phone 8 README

2013-06-13 Thread Carlos Santana (JIRA)

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

Carlos Santana resolved CB-3649.


   Resolution: Fixed
Fix Version/s: 2.9.0

Resolved and verify with commit 7d5134be077a5bbb3e21c23254ac3f0346d60adc


 Update and add create instruction for Windows Phone 8 README
 

 Key: CB-3649
 URL: https://issues.apache.org/jira/browse/CB-3649
 Project: Apache Cordova
  Issue Type: Bug
  Components: WP8
Affects Versions: Master
Reporter: Carlos Santana
Assignee: Jesse MacFadyen
Priority: Minor
  Labels: contributors, docs, newbie, windows-phone
 Fix For: 2.9.0


 Multiple Changes to README.md for Windows Phone 8
 ===
 - Added Apache license header
 - Correct bullet indentention 
 - Made all links reference links at the end of file
 - Added instructions for creating template
 - Remove step to copy template since is not included with Cordova
 - Made more clear where to find Cordova Template in Visual Studio
 - Added section about command line using create
 - Bugs section remove Incubator, since Cordova already graduated

--
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-3789) Remove device.name from mobile spec

2013-06-13 Thread Bryan Higgins (JIRA)
Bryan Higgins created CB-3789:
-

 Summary: Remove device.name from mobile spec
 Key: CB-3789
 URL: https://issues.apache.org/jira/browse/CB-3789
 Project: Apache Cordova
  Issue Type: Bug
  Components: mobile-spec
Affects Versions: 2.8.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
Priority: Trivial
 Fix For: 2.9.0


Device.name has been removed as of 2.8. It should also be removed from 
mobile-spec.

--
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-3789) Remove device.name from mobile spec

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

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

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

Commit 31aae40f8faae3f9432280367bfc7790395686a1 in branch refs/heads/master 
from [~bryanhiggins]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-mobile-spec.git;h=31aae40 ]

[CB-3789] Remove device.name from mobile-spec (removed in 2.8)


 Remove device.name from mobile spec
 ---

 Key: CB-3789
 URL: https://issues.apache.org/jira/browse/CB-3789
 Project: Apache Cordova
  Issue Type: Bug
  Components: mobile-spec
Affects Versions: 2.8.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
Priority: Trivial
 Fix For: 2.9.0


 Device.name has been removed as of 2.8. It should also be removed from 
 mobile-spec.

--
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-3789) Remove device.name from mobile spec

2013-06-13 Thread Bryan Higgins (JIRA)

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

Bryan Higgins resolved CB-3789.
---

Resolution: Fixed

 Remove device.name from mobile spec
 ---

 Key: CB-3789
 URL: https://issues.apache.org/jira/browse/CB-3789
 Project: Apache Cordova
  Issue Type: Bug
  Components: mobile-spec
Affects Versions: 2.8.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
Priority: Trivial
 Fix For: 2.9.0


 Device.name has been removed as of 2.8. It should also be removed from 
 mobile-spec.

--
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-3790) cordova plugin command does not produce an error

2013-06-13 Thread Mike Sierra (JIRA)
Mike Sierra created CB-3790:
---

 Summary: cordova plugin command does not produce an error
 Key: CB-3790
 URL: https://issues.apache.org/jira/browse/CB-3790
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 2.8.0
Reporter: Mike Sierra
Assignee: Filip Maj
Priority: Minor


Assuming [add|remove|ls] are required, user should receive an error message to 
that effect.

--
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-3791) cordova plugin add produces uninformative error

2013-06-13 Thread Mike Sierra (JIRA)
Mike Sierra created CB-3791:
---

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


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] [Created] (CB-3792) cordova emulate generates confusing error

2013-06-13 Thread Mike Sierra (JIRA)
Mike Sierra created CB-3792:
---

 Summary: cordova emulate generates confusing error
 Key: CB-3792
 URL: https://issues.apache.org/jira/browse/CB-3792
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 2.8.0
Reporter: Mike Sierra
Assignee: Filip Maj
Priority: Minor


Running cordova emulate with no emulator running produces an error:

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.

The error makes it unclear which platform's emulator is causing the problem.  
No emulators found may cause further confusion if another platform's emulator 
successfully runs.  And the path to 'list-started-emulators' assumes you're in 
the platforms/android directory.

--
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-3793) cordova help produces no output

2013-06-13 Thread Mike Sierra (JIRA)
Mike Sierra created CB-3793:
---

 Summary: cordova help produces no output
 Key: CB-3793
 URL: https://issues.apache.org/jira/browse/CB-3793
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Reporter: Mike Sierra
Assignee: Filip Maj
Priority: Minor


In 2.8.15, cordova command produces help output, but cordova help produces 
nothing.

--
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-3790) cordova plugin command does not produce an error

2013-06-13 Thread Mike Sierra (JIRA)

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

Mike Sierra commented on CB-3790:
-

Note: same bug for cordova platform

 cordova plugin command does not produce an error
 --

 Key: CB-3790
 URL: https://issues.apache.org/jira/browse/CB-3790
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 2.8.0
Reporter: Mike Sierra
Assignee: Filip Maj
Priority: Minor

 Assuming [add|remove|ls] are required, user should receive an error message 
 to that effect.

--
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-3790) cordova plugin command does not produce an error

2013-06-13 Thread Mike Sierra (JIRA)

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

Mike Sierra commented on CB-3790:
-

Also cordova create

 cordova plugin command does not produce an error
 --

 Key: CB-3790
 URL: https://issues.apache.org/jira/browse/CB-3790
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 2.8.0
Reporter: Mike Sierra
Assignee: Filip Maj
Priority: Minor

 Assuming [add|remove|ls] are required, user should receive an error message 
 to that effect.

--
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-3794) clarify required vs. optional syntax

2013-06-13 Thread Mike Sierra (JIRA)
Mike Sierra created CB-3794:
---

 Summary: 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 
mandatory path vs [optional] id/name arguments:

create [path] [id] [name]

Perhaps represent mandatory platform syntax like this?

platform(s) add|remove|ls [name]

--
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-3795) [BlackBerry10] Modify check_req to ensure NDK tools are on path

2013-06-13 Thread Bryan Higgins (JIRA)
Bryan Higgins created CB-3795:
-

 Summary: [BlackBerry10] Modify check_req to ensure NDK tools are 
on path
 Key: CB-3795
 URL: https://issues.apache.org/jira/browse/CB-3795
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Affects Versions: 2.8.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
 Fix For: 2.9.0


This script currently checks for the QNX environment variables, which are only 
required for compilation of native code. Instead, we should check that the 
tools necessary for packaging, signing and deployment are available on the path.

--
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-3796) [BlackBerry10] Create script should call check_reqs

2013-06-13 Thread Bryan Higgins (JIRA)
Bryan Higgins created CB-3796:
-

 Summary: [BlackBerry10] Create script should call check_reqs
 Key: CB-3796
 URL: https://issues.apache.org/jira/browse/CB-3796
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Affects Versions: 2.8.0
Reporter: Bryan Higgins
Assignee: Bryan Higgins
 Fix For: 2.9.0


We should not allow creation of a project if the required tools are not 
available. This script is already being used for the same purpose in 
cordova-cli.

--
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-3497) ./bin/create script requires `npm install` to be run

2013-06-13 Thread Bryan Higgins (JIRA)

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

Bryan Higgins resolved CB-3497.
---

   Resolution: Fixed
Fix Version/s: (was: 2.9.0)
   2.8.0

 ./bin/create script requires `npm install` to be run
 

 Key: CB-3497
 URL: https://issues.apache.org/jira/browse/CB-3497
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: 2.8.0
Reporter: Filip Maj
Assignee: Bryan Higgins
 Fix For: 2.8.0


 Tsted with latest 2.8.x branch.
 The create script should bootstrap itself as appropriate. Right now, you need 
 to run npm install before you can run create.
 This is an issue for tools consuming the script (i.e. cordova-cli).

--
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] [Closed] (CB-3396) Update Tizen For Tizen SDK 2.0

2013-06-13 Thread Paul Plaquette (JIRA)

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

Paul Plaquette closed CB-3396.
--


 Update Tizen For Tizen SDK 2.0
 --

 Key: CB-3396
 URL: https://issues.apache.org/jira/browse/CB-3396
 Project: Apache Cordova
  Issue Type: Bug
  Components: Tizen
Affects Versions: Master
Reporter: Paul Plaquette
Assignee: Paul Plaquette
Priority: Minor
  Labels: update
 Fix For: Master

   Original Estimate: 504h
  Remaining Estimate: 504h

 General update of Tizen platform for Tizen 2.0 SDK

--
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-3497) ./bin/create script requires `npm install` to be run

2013-06-13 Thread Bryan Higgins (JIRA)

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

Bryan Higgins commented on CB-3497:
---

Created a separate issue for validating the NDK tools are on the path:
https://issues.apache.org/jira/browse/CB-3795

Also added an issue to ensure the create script uses check_reqs:
https://issues.apache.org/jira/browse/CB-3796

 ./bin/create script requires `npm install` to be run
 

 Key: CB-3497
 URL: https://issues.apache.org/jira/browse/CB-3497
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: 2.8.0
Reporter: Filip Maj
Assignee: Bryan Higgins
 Fix For: 2.9.0


 Tsted with latest 2.8.x branch.
 The create script should bootstrap itself as appropriate. Right now, you need 
 to run npm install before you can run create.
 This is an issue for tools consuming the script (i.e. cordova-cli).

--
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-3739) Tizen SDK 2.1 port Extending APIs

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

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

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

Commit adb02051ea8601f1e6290dd4f32adbc8f1e5aacb in branch refs/heads/master 
from [~pplaquette]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-js.git;h=adb0205 ]

[CB-3739][Tizen][Tizen SDK 2.1 Nectarine] - splashscreen

Add splashscreen API
for now sending console message
implementation still to be done


 Tizen SDK 2.1 port Extending APIs
 -

 Key: CB-3739
 URL: https://issues.apache.org/jira/browse/CB-3739
 Project: Apache Cordova
  Issue Type: Bug
  Components: Tizen
Affects Versions: Master
 Environment: GNU/Linux (Ubuntu) - Tizen SDK 2.1 (tizen.org)
Reporter: Paul Plaquette
Assignee: Paul Plaquette
 Fix For: Master


 adding support to new apis that were added in COrdova and are missing from 
 port on Tizen SDK 2.1

--
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-3739) Tizen SDK 2.1 port Extending APIs

2013-06-13 Thread Paul Plaquette (JIRA)

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

Paul Plaquette commented on CB-3739:


Added Splahscreen API squeletton, they are sending console messages

 Tizen SDK 2.1 port Extending APIs
 -

 Key: CB-3739
 URL: https://issues.apache.org/jira/browse/CB-3739
 Project: Apache Cordova
  Issue Type: Bug
  Components: Tizen
Affects Versions: Master
 Environment: GNU/Linux (Ubuntu) - Tizen SDK 2.1 (tizen.org)
Reporter: Paul Plaquette
Assignee: Paul Plaquette
 Fix For: Master


 adding support to new apis that were added in COrdova and are missing from 
 port on Tizen SDK 2.1

--
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] [Issue Comment Deleted] (CB-3739) Tizen SDK 2.1 port Extending APIs

2013-06-13 Thread Paul Plaquette (JIRA)

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

Paul Plaquette updated CB-3739:
---

Comment: was deleted

(was: Added Splahscreen API squeletton, they are sending console messages)

 Tizen SDK 2.1 port Extending APIs
 -

 Key: CB-3739
 URL: https://issues.apache.org/jira/browse/CB-3739
 Project: Apache Cordova
  Issue Type: Bug
  Components: Tizen
Affects Versions: Master
 Environment: GNU/Linux (Ubuntu) - Tizen SDK 2.1 (tizen.org)
Reporter: Paul Plaquette
Assignee: Paul Plaquette
 Fix For: Master


 adding support to new apis that were added in COrdova and are missing from 
 port on Tizen SDK 2.1

--
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-3792) cordova emulate generates confusing error

2013-06-13 Thread Filip Maj (JIRA)

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

Filip Maj resolved CB-3792.
---

Resolution: Duplicate

This is a duplicate of the other issue you filed, Mike. CB-3758

 cordova emulate generates confusing error
 ---

 Key: CB-3792
 URL: https://issues.apache.org/jira/browse/CB-3792
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 2.8.0
Reporter: Mike Sierra
Assignee: Filip Maj
Priority: Minor

 Running cordova emulate with no emulator running produces an error:
 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.
 The error makes it unclear which platform's emulator is causing the problem.  
 No emulators found may cause further confusion if another platform's 
 emulator successfully runs.  And the path to 'list-started-emulators' assumes 
 you're in the platforms/android directory.

--
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-tabpanelfocusedCommentId=13682393#comment-13682393
 ] 

Mike Sierra commented on CB-3794:
-

Rusty on this. Sampled a couple of pages (http://tinyurl.com/l5jo27z, 
http://bit.ly/1a815La), based on which I suggest this:

create PATH [ID] [NAME]
platform(s) {add|remove} NAME
platform(s) ls
plugin(s) {add|remove} PATH
plugin(s) ls
prepare [PLATFORM...]
compile [PLATFORM...]
build [PLATFORM...]
emulate [PLATFORM...]
run [PLATFORM...]
ripple PLATFORM [PORT]

...where UPPERCASE clarifies variables; THIS is mandatory; {THIS|THAT} is 
mandatory; [THIS] or [THIS|THAT] is optional; [THESE...] could be more than 
one.  IMO, better to break ls onto a different line than represent how only 
{add|remove} require an additional arg.

 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 
 mandatory path vs [optional] id/name arguments:
 create [path] [id] [name]
 Perhaps represent mandatory platform syntax like this?
 platform(s) add|remove|ls [name]

--
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-3739) Tizen SDK 2.1 port Extending APIs

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

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

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

Commit 919f819cb6b1e954360d7efacff2d19ea11e3aa1 in branch refs/heads/master 
from [~pplaquette]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-js.git;h=919f819 ]

[CB-3739][Tizen][5tizenSDk 2.1 Nectarine] Globalization

add globalization API

for now sending message to console

implementation still to be done.


 Tizen SDK 2.1 port Extending APIs
 -

 Key: CB-3739
 URL: https://issues.apache.org/jira/browse/CB-3739
 Project: Apache Cordova
  Issue Type: Bug
  Components: Tizen
Affects Versions: Master
 Environment: GNU/Linux (Ubuntu) - Tizen SDK 2.1 (tizen.org)
Reporter: Paul Plaquette
Assignee: Paul Plaquette
 Fix For: Master


 adding support to new apis that were added in COrdova and are missing from 
 port on Tizen SDK 2.1

--
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-3792) cordova emulate generates confusing error

2013-06-13 Thread Mike Sierra (JIRA)

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

Mike Sierra commented on CB-3792:
-

OK, but mainly wanted to call out the which platform is producing the error 
problem.


 cordova emulate generates confusing error
 ---

 Key: CB-3792
 URL: https://issues.apache.org/jira/browse/CB-3792
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 2.8.0
Reporter: Mike Sierra
Assignee: Filip Maj
Priority: Minor

 Running cordova emulate with no emulator running produces an error:
 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.
 The error makes it unclear which platform's emulator is causing the problem.  
 No emulators found may cause further confusion if another platform's 
 emulator successfully runs.  And the path to 'list-started-emulators' assumes 
 you're in the platforms/android directory.

--
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-3580) ./bin/create script requires bootstrap windows support

2013-06-13 Thread Jeffrey Heifetz (JIRA)

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

Jeffrey Heifetz commented on CB-3580:
-

Not sure I understand what this issue is about. Can you clarify Lorin?

 ./bin/create script requires bootstrap windows support
 --

 Key: CB-3580
 URL: https://issues.apache.org/jira/browse/CB-3580
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: Master
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 create script should detect environment and use appropriate bootstrap command 
 for the environment

--
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-3580) ./bin/create script requires bootstrap windows support

2013-06-13 Thread Lorin Beer (JIRA)

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

Lorin Beer updated CB-3580:
---

Description: 
create script should detect environment and use appropriate bootstrap command 
for the environment

--edit--
create script on bb10 has node dependencies, bootstrapping refers to automating 
the install process.

  was:create script should detect environment and use appropriate bootstrap 
command for the environment


 ./bin/create script requires bootstrap windows support
 --

 Key: CB-3580
 URL: https://issues.apache.org/jira/browse/CB-3580
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: Master
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 create script should detect environment and use appropriate bootstrap command 
 for the environment
 --edit--
 create script on bb10 has node dependencies, bootstrapping refers to 
 automating the install process.

--
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-3580) ./bin/create script requires bootstrap windows support

2013-06-13 Thread Lorin Beer (JIRA)

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

Lorin Beer updated CB-3580:
---

Description: 
create script should detect environment and use appropriate bootstrap command 
for the environment

*edit*
create script on bb10 has node dependencies, bootstrapping refers to automating 
the install process.

  was:
create script should detect environment and use appropriate bootstrap command 
for the environment

--edit--
create script on bb10 has node dependencies, bootstrapping refers to automating 
the install process.


 ./bin/create script requires bootstrap windows support
 --

 Key: CB-3580
 URL: https://issues.apache.org/jira/browse/CB-3580
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: Master
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 create script should detect environment and use appropriate bootstrap command 
 for the environment
 *edit*
 create script on bb10 has node dependencies, bootstrapping refers to 
 automating the install process.

--
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-3580) ./bin/create script requires bootstrap windows support

2013-06-13 Thread Lorin Beer (JIRA)

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

Lorin Beer commented on CB-3580:


Create script bootstrap for windows platform. This was related to our 
overlapping work on the node dependency autoinstall.

This issue has been resolved with your contribution to the create script last 
week, I believe.

 ./bin/create script requires bootstrap windows support
 --

 Key: CB-3580
 URL: https://issues.apache.org/jira/browse/CB-3580
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: Master
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 create script should detect environment and use appropriate bootstrap command 
 for the environment
 *edit*
 create script on bb10 has node dependencies, bootstrapping refers to 
 automating the install process.

--
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-3580) ./bin/create script requires bootstrap windows support

2013-06-13 Thread Lorin Beer (JIRA)

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

Lorin Beer resolved CB-3580.


Resolution: Fixed

 ./bin/create script requires bootstrap windows support
 --

 Key: CB-3580
 URL: https://issues.apache.org/jira/browse/CB-3580
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: Master
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 create script should detect environment and use appropriate bootstrap command 
 for the environment
 *edit*
 create script on bb10 has node dependencies, bootstrapping refers to 
 automating the install process.

--
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-3604) target create script from project level to repo level

2013-06-13 Thread Jeffrey Heifetz (JIRA)

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

Jeffrey Heifetz commented on CB-3604:
-


I really like the fact that there is a top level (bin) and project level 
(cordova) target scripts, this will support whatever workflow the developer 
desires. However I dislike both the name of the json (targets) since it still 
contains other data (ie keystorepass) and the fact that the file doesn't live 
in a single location. I would propose that the file is moved to 
HOME/.cordova/blackberry10.json and all the target scripts modify it there. 


 target create script from project level to repo level
 -

 Key: CB-3604
 URL: https://issues.apache.org/jira/browse/CB-3604
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 as per the dev list discussion:
 1. the target create script to be moved from project level to repo level
 2. targets to be exposed from repo to projects created from said repo
 3. project bar name to be migrated out of project.json and into config.xml

--
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-3341) BlackBerry - add version script

2013-06-13 Thread Lorin Beer (JIRA)

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

Lorin Beer reassigned CB-3341:
--

Assignee: Lorin Beer  (was: Tim Kim)

 BlackBerry - add version script
 ---

 Key: CB-3341
 URL: https://issues.apache.org/jira/browse/CB-3341
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Affects Versions: 2.8.0
Reporter: Brian LeRoux
Assignee: Lorin Beer
 Fix For: 2.9.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-3580) ./bin/create script requires bootstrap windows support

2013-06-13 Thread Jeffrey Heifetz (JIRA)

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

Jeffrey Heifetz commented on CB-3580:
-

Great

 ./bin/create script requires bootstrap windows support
 --

 Key: CB-3580
 URL: https://issues.apache.org/jira/browse/CB-3580
 Project: Apache Cordova
  Issue Type: Bug
  Components: BlackBerry
Affects Versions: Master
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 create script should detect environment and use appropriate bootstrap command 
 for the environment
 *edit*
 create script on bb10 has node dependencies, bootstrapping refers to 
 automating the install process.

--
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-3604) target create script from project level to repo level

2013-06-13 Thread Lorin Beer (JIRA)

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

Lorin Beer commented on CB-3604:


Rename is trivial, I'm happy regardless what it's called. We can call it 
blackberry10.json

I considered a single location of the json data in the repo, however this 
creates a project-repo dependency on the system. If the project is zipped up 
and moved to a different system, it breaks the project.

I like the solution of a HOME/.cordova/blackberry10.json. If the project is 
moved to a new system, chances are it won't be using the same devices anyways, 
and this doesn't create a project-repo dependency.
+1, creating issue.

 target create script from project level to repo level
 -

 Key: CB-3604
 URL: https://issues.apache.org/jira/browse/CB-3604
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 as per the dev list discussion:
 1. the target create script to be moved from project level to repo level
 2. targets to be exposed from repo to projects created from said repo
 3. project bar name to be migrated out of project.json and into config.xml

--
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-3361) Remove commons codec fetching from 3.0.0 create scripts

2013-06-13 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-3361:
---

Priority: Critical  (was: Major)

 Remove commons codec fetching from 3.0.0 create scripts
 ---

 Key: CB-3361
 URL: https://issues.apache.org/jira/browse/CB-3361
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 2.8.0
Reporter: Joe Bowser
Assignee: Benn Mapes
Priority: Critical
 Fix For: 2.9.0


 This should be an easy one for you! Deleting code is awesome!

--
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-3797) [Blackberry10] HOME/.cordova/blackberry10.json master properties file

2013-06-13 Thread Lorin Beer (JIRA)
Lorin Beer created CB-3797:
--

 Summary: [Blackberry10] HOME/.cordova/blackberry10.json master 
properties file
 Key: CB-3797
 URL: https://issues.apache.org/jira/browse/CB-3797
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Affects Versions: 2.8.0
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


on Jeffrey Heifetz's suggestion, remove multiple targets.json files and create 
a system master file which both project/repo scripts writes/reads to
 
discussion here: 
https://issues.apache.org/jira/browse/CB-3604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13682462#comment-13682462



--
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-3604) target create script from project level to repo level

2013-06-13 Thread Lorin Beer (JIRA)

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

Lorin Beer commented on CB-3604:


issue created here: https://issues.apache.org/jira/browse/CB-3797

 target create script from project level to repo level
 -

 Key: CB-3604
 URL: https://issues.apache.org/jira/browse/CB-3604
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 as per the dev list discussion:
 1. the target create script to be moved from project level to repo level
 2. targets to be exposed from repo to projects created from said repo
 3. project bar name to be migrated out of project.json and into config.xml

--
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-3797) [Blackberry10] HOME/.cordova/blackberry10.json master properties file

2013-06-13 Thread Jeffrey Heifetz (JIRA)

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

Jeffrey Heifetz commented on CB-3797:
-

Are you planning on finishing this for 2.9, or should I take it on?

 [Blackberry10] HOME/.cordova/blackberry10.json master properties file
 -

 Key: CB-3797
 URL: https://issues.apache.org/jira/browse/CB-3797
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Affects Versions: 2.8.0
Reporter: Lorin Beer
Assignee: Lorin Beer
 Fix For: 2.9.0


 on Jeffrey Heifetz's suggestion, remove multiple targets.json files and 
 create a system master file which both project/repo scripts writes/reads to
  
 discussion here: 
 https://issues.apache.org/jira/browse/CB-3604?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13682462#comment-13682462

--
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-3798) [BlackBerry10] Add node js path to global config file

2013-06-13 Thread Bryan Higgins (JIRA)
Bryan Higgins created CB-3798:
-

 Summary: [BlackBerry10] Add node js path to global config file
 Key: CB-3798
 URL: https://issues.apache.org/jira/browse/CB-3798
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Affects Versions: 2.8.0
Reporter: Bryan Higgins
Assignee: Jeffrey Heifetz
 Fix For: 2.9.0


Currently we require a specific version of node js be installed globally. This 
may not be optimal for some developer environments. We should give them the 
ability to point to a specific node executable if desired.

Related to:
https://issues.apache.org/jira/browse/CB-3797

--
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-3799) [BlackBerry10] Debug token should be stored globally

2013-06-13 Thread Bryan Higgins (JIRA)
Bryan Higgins created CB-3799:
-

 Summary: [BlackBerry10] Debug token should be stored globally
 Key: CB-3799
 URL: https://issues.apache.org/jira/browse/CB-3799
 Project: Apache Cordova
  Issue Type: Improvement
  Components: BlackBerry
Affects Versions: 2.8.0
Reporter: Bryan Higgins
Assignee: Jeffrey Heifetz
 Fix For: 2.9.0


Since targets will now be stored in a global system location, the generated 
debug token should also be stored here. This will speed up deployments when 
working across multiple platforms and reduce calls to the BlackBerry signing 
server.

--
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-3620) ./cordova/run does not invoke build if you don't specify --debug or --release explicitly

2013-06-13 Thread Joe Bowser (JIRA)

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

Joe Bowser resolved CB-3620.


Resolution: Cannot Reproduce

WFM

 ./cordova/run does not invoke build if you don't specify --debug or --release 
 explicitly
 

 Key: CB-3620
 URL: https://issues.apache.org/jira/browse/CB-3620
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 2.8.0
 Environment: Mac OS X 10.7.5. 
Reporter: Filip Maj
Assignee: Joe Bowser
Priority: Minor

 According to the [Command Line Design Tooling 
 document|wiki.apache.org/cordova/CommandLineToolingDesign], {{run}} should 
 _always__ invoke {{build}}.

--
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-3575) Cyclic module dependencies within cordova.android.js

2013-06-13 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-3575:
---

Component/s: (was: Android)
 CordovaJS
   Assignee: Filip Maj  (was: Joe Bowser)

I don't think this is a problem, but since the JS is generated, I'm going to 
put this in your hands.

 Cyclic module dependencies within cordova.android.js
 

 Key: CB-3575
 URL: https://issues.apache.org/jira/browse/CB-3575
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CordovaJS
Affects Versions: 2.7.0
Reporter: Peter
Assignee: Filip Maj
Priority: Minor
  Labels: newbie

 Using a tool not dissimilar to the GraphViz script of CB-340 I have generated 
 a graph for the define/require dependencies within the cordova.android.js 
 file.
 Result is here:
 https://www.dropbox.com/s/5smd3pp55a7i0va/cordova-js-20130604.svg
 Notice there are a number of *circular dependencies* (look for arrows going 
 upwards). Don't these cycles represent some kind of problem?

--
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-3306) Lazy-load Device Platforms in CLI

2013-06-13 Thread Filip Maj (JIRA)

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

Filip Maj resolved CB-3306.
---

Resolution: Fixed

Merged into master2!

Pushed as 2.8.16 on npm.

 Lazy-load Device Platforms in CLI
 -

 Key: CB-3306
 URL: https://issues.apache.org/jira/browse/CB-3306
 Project: Apache Cordova
  Issue Type: Improvement
  Components: CLI
Reporter: Andrew Grieve
Assignee: Filip Maj
Priority: Critical
 Fix For: 2.9.0


 As per ML discussion: http://callback.markmail.org/thread/zurpjsjdxv3m5ogh
 Let's delete the checked in versions of cordova-android, cordova-ios, 
 cordova-blackberry. Instead, they should be downloaded to:
 ~/.cordova/platforms/cordova-FOO
 the first time they are required.

--
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-3778) clarify run command requirements

2013-06-13 Thread Mike Sierra (JIRA)

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

Mike Sierra commented on CB-3778:
-

Also clarify how to run Blackberry over-the-air. For others, if keyed by IP#, 
where do you find the number, where do you specify the number in the SDK, plug 
what cable where, etc.

 clarify run command requirements
 --

 Key: CB-3778
 URL: https://issues.apache.org/jira/browse/CB-3778
 Project: Apache Cordova
  Issue Type: Task
  Components: Android, BlackBerry, CLI, Docs, iOS, Windows 8
Reporter: Mike Sierra
Assignee: Michael Brooks
Priority: Critical

 Current CLI --help doc says run deploys the application to the specified (or 
 all) platform devices, which must be connected and configured for running via 
 your machine. Need to clarify for each platform to make this work. Which 
 devices are supported, e.g. both iPhone  iPad?  How are they connected, via 
 USB?  Do you have to do anything to pair the device with the SDK?  Etc.

--
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-3650) typo in chown warning message

2013-06-13 Thread Filip Maj (JIRA)

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

Filip Maj resolved CB-3650.
---

   Resolution: Fixed
Fix Version/s: 2.9.0

In the latest CLI (2.8.16 on npm), there is no longer a post-install script, 
and you should no longer have to {{chown}} anything :)

 typo in chown warning message
 -

 Key: CB-3650
 URL: https://issues.apache.org/jira/browse/CB-3650
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
 Environment: 2.8.10
Reporter: John M. Wargo
Assignee: Filip Maj
Priority: Trivial
 Fix For: 2.9.0


 There's a typo at the very end of the first line of the chown warning:
 * WARNING: YOU ARE INSTALLING GLOBALLY INTO A ROOT-ONLY DIRECTORY!!!1one *
 Also, since we know colors is installing during the cli installation, should 
 it have some color? :-)

--
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-3793) cordova help produces no output

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

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

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

Commit c56c0b90b32e1a1f83433efb54b4bd21fbffdfd9 in branch refs/heads/master2 
from Fil Maj
[ https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=c56c0b9 ]

[CB-3793] `cordova help` produced no output. also disabled wp7 parser specs atm


 cordova help produces no output
 -

 Key: CB-3793
 URL: https://issues.apache.org/jira/browse/CB-3793
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Reporter: Mike Sierra
Assignee: Filip Maj
Priority: Minor

 In 2.8.15, cordova command produces help output, but cordova help 
 produces nothing.

--
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-tabpanelfocusedCommentId=13682558#comment-13682558
 ] 

Filip Maj commented on CB-3791:
---

Same error applies to {{cordova platform add}} as well.

 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

 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] [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-tabpanelfocusedCommentId=13682563#comment-13682563
 ] 

Filip Maj commented on CB-3791:
---

.. and for both plugin and platform commands, doing the same with {{rm}}..

 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

 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] [Resolved] (CB-3279) Remove PhoneGap references from Hello World example app

2013-06-13 Thread Filip Maj (JIRA)

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

Filip Maj resolved CB-3279.
---

   Resolution: Fixed
Fix Version/s: 2.9.0

This is fixed in cli 2.8.16 and later, as we lazy load the 
cordova-app-hello-world now.

 Remove PhoneGap references from Hello World example app
 ---

 Key: CB-3279
 URL: https://issues.apache.org/jira/browse/CB-3279
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: Master
Reporter: Michal Mocny
Assignee: Filip Maj
Priority: Minor
 Fix For: 2.9.0


 Anis, you added a default preference to cordova-cli default app template:
 preference name=phonegap-version value=1.9.0 /
 I'm not sure what this is for, and likely it should not be in the default 
 cordova template?

--
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 Mike Sierra (JIRA)

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

Mike Sierra commented on CB-3791:
-

Didn't know about rm. Are there any other synonym commands not represented in 
the help screen's syntax listing?

 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] [Resolved] (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:all-tabpanel
 ]

Filip Maj resolved CB-3791.
---

   Resolution: Fixed
Fix Version/s: 2.9.0

This should be fixed in 2.8.17 that is on npm!

 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-3764) CLI not updating platform config files with app version from config.xml on WP7

2013-06-13 Thread Filip Maj (JIRA)

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

Filip Maj reassigned CB-3764:
-

Assignee: Benn Mapes  (was: Filip Maj)

Hey Benn, can you look into how a version string from an app's config.xml can 
be interpolated into a WP7 project?

 CLI not updating platform config files with app version from config.xml on WP7
 --

 Key: CB-3764
 URL: https://issues.apache.org/jira/browse/CB-3764
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CLI, WP7
Affects Versions: 2.8.0
Reporter: Tommy-Carlos Williams
Assignee: Benn Mapes

 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 WP7.
 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-3763) CLI not updating platform config files with app version from config.xml on Blackberry

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

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

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

Commit f829e63208ecab7e7af8ecc109a3015cbb7dff2a in branch refs/heads/master2 
from Fil Maj
[ https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=f829e63 ]

[CB-3763] config.xml version attrib now interpolated into blackberry projects.


 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


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

2013-06-13 Thread Filip Maj (JIRA)

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

Filip Maj reassigned CB-3765:
-

Assignee: Benn Mapes  (was: Filip Maj)

Hey Benn, can you look into how a version string from an app's config.xml can 
be interpolated into a WP8 project?

 CLI not updating platform config files with app version from config.xml on WP8
 --

 Key: CB-3765
 URL: https://issues.apache.org/jira/browse/CB-3765
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CLI, WP8
Affects Versions: 2.8.0
Reporter: Tommy-Carlos Williams
Assignee: Benn Mapes

 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 WP8.
 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] [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


[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-tabpanelfocusedCommentId=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] [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-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-tabpanelfocusedCommentId=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 
 mandatory path vs [optional] id/name arguments:
 create [path] [id] [name]
 Perhaps represent mandatory platform syntax like this?
 platform(s) add|remove|ls [name]

--
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] [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-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-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-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-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-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-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-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] [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-tabpanelfocusedCommentId=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-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] [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-tabpanelfocusedCommentId=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] [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-tabpanelfocusedCommentId=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] [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-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-tabpanelfocusedCommentId=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:
  cannot find symbol
 [javac] symbol : class ExifHelper
 [javac] location: class 

[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-tabpanelfocusedCommentId=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] [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-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-tabpanelfocusedCommentId=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] [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-tabpanelfocusedCommentId=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] [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-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-tabpanelfocusedCommentId=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] [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] [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-tabpanelfocusedCommentId=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] [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-tabpanelfocusedCommentId=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-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-tabpanelfocusedCommentId=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-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-tabpanelfocusedCommentId=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-tabpanelfocusedCommentId=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-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-tabpanelfocusedCommentId=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-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-tabpanelfocusedCommentId=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-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-tabpanelfocusedCommentId=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-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-tabpanelfocusedCommentId=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-tabpanelfocusedCommentId=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-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-tabpanelfocusedCommentId=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-tabpanelfocusedCommentId=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-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-tabpanelfocusedCommentId=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


  1   2   >