Re: blackberry10 build

2013-07-22 Thread Bryan Higgins
Matt - thanks for the detailed feedback! I'll be entering in JIRAs for the tasks needed to tighten up the bb10 CLI experience today. On Mon, Jul 22, 2013 at 11:20 AM, Lucas Holmquist lholm...@redhat.comwrote: Nice write up, On Jul 22, 2013, at 11:14 AM, Matt Lantz mattla...@gmail.com wrote:

cli docs - spaces in main activity name

2013-07-22 Thread Don Coleman
The CLI docs for creating an app, use a main activity name containing a space $ cordova create HelloWorld com.example.hello Hello World This works for iOS but fails on Android. Should we adjust the docs, or attempt to make the Android scripts remove spaces?

Cordova + Yeoman

2013-07-22 Thread Andrew Grieve
Would be neat to have first-class support for Cordova by Yeoman, but looks like their default template works decently already: http://www.gauntface.co.uk/blog/2013/07/18/cordova-web-best-practices/

Re: cli docs - spaces in main activity name

2013-07-22 Thread Brian LeRoux
At some point we just stripped spaces. I imagine this created a bug and my guess is we removed the functionality rather than addressing the issue. We def do not want titles with no spaces! Maybe we add a fourth param. On Mon, Jul 22, 2013 at 12:10 PM, Andrew Grieve agri...@chromium.org wrote:

Re: cli docs - spaces in main activity name

2013-07-22 Thread Andrew Grieve
The third parameter is the app's title, so I think it should be made to work with spaces. On Mon, Jul 22, 2013 at 12:07 PM, Don Coleman don.cole...@gmail.com wrote: The CLI docs for creating an app, use a main activity name containing a space $ cordova create HelloWorld

Re: blackberry10 build

2013-07-22 Thread Matt Lantz
Developing a BlackBerry10 App with Cordova 3.0.0So, I started by downloading all the appropriate developer SDKs from BlackBerry. Though in retrospect I suppose I only needed the webworks one.After downloading and installing those. I followed the

Re: blackberry10 build

2013-07-22 Thread Anis KADRI
Thanks for this feedback Matt Contributions to documentation or anything are always welcome. On Mon, Jul 22, 2013 at 8:14 AM, Matt Lantz mattla...@gmail.com wrote: ** *Developing a BlackBerry10 App with Cordova 3.0.0* ** * So, I started by

Re: blackberry10 build

2013-07-22 Thread Lucas Holmquist
Nice write up, On Jul 22, 2013, at 11:14 AM, Matt Lantz mattla...@gmail.com wrote: Developing a BlackBerry10 App with Cordova 3.0.0 So, I started by downloading all the appropriate developer SDKs from BlackBerry. Though in retrospect I

RE: cli docs - spaces in main activity name

2013-07-22 Thread Michael Sierra
I just added a JIRA CB-4343 for bb10 modified it to include android. This appears new to 3.0; had no problem with Hello World prior. --Mike S From: brian.ler...@gmail.com [brian.ler...@gmail.com] On Behalf Of Brian LeRoux [b...@brian.io] Sent:

Re: cli docs - spaces in main activity name

2013-07-22 Thread Don Coleman
Stripping spaces and other invalid chars seems preferable to adding another parameter. There is an issue https://issues.apache.org/jira/browse/CB-4074, which appears to be *incorrectly* marked as a dup of CB-4198. On Mon, Jul 22, 2013 at 1:10 PM, Michael Sierra msie...@adobe.com wrote: I

Re: cli docs - spaces in main activity name

2013-07-22 Thread Don Coleman
Had those backwards https://issues.apache.org/jira/browse/CB-4198 is the issue. On Mon, Jul 22, 2013 at 1:41 PM, Don Coleman don.cole...@gmail.com wrote: Stripping spaces and other invalid chars seems preferable to adding another parameter. There is an issue

Re: cli docs - spaces in main activity name

2013-07-22 Thread Filip Maj
I think it's an issue with Android's underlying create script. It should be smart enough to know to munge the title-with-spaces for its code purposes (Java package name, Activity, etc), but leave it as-is for the labeling. Thx for filing I will look into it when I can. On 7/22/13 10:44 AM, Don

Re: Cordova + Yeoman

2013-07-22 Thread Filip Maj
Theres a yeoman generator on npm already: https://npmjs.org/package/generator-cordova also: holy cow the downloads shot up like crazy over the weekend: 1600 downloads / day of cordova-cli. http://npm-stat.vorb.de/charts.html?package=cordova On 7/22/13 9:00 AM, Andrew Grieve

NPM stats on ripple

2013-07-22 Thread Gord Tanner
Just thought I would let everyone know we have had 7600 downloads of Ripple via npm this month. http://npm-stat.vorb.de/charts.html?package=ripple-emulator #OMFG

Re: blackberry10 build

2013-07-22 Thread Bryan Higgins
I've entered the following issues into JIRA and we will be working to get them resolved over the next two weeks. Code: - [CB-4273] CLI pass through of command line args - [CB-4340] Query device to get PIN (no longer required in blackberry10.json) - [CB-4342] Auto-detect connected USB device -

Re: Plugin / Platform mismatch problems

2013-07-22 Thread Andrew Grieve
Oh! Oh! Perhaps have multiple definitions based on CDV version. e.g.: engine min-cdv-version=2.8 max-cdv-version=2.8 default-git-refrefs/head/2.8.x/default-git-ref /engine engine min-cdv-version=2.9 default-git-refrefs/tags/stable/default-git-ref /engine Then, when someone plugman installs

cordova plugin add and variables

2013-07-22 Thread Shazron
I didn't see it in the help. For example when trying to install the Facebook Connect plugin it complains about APP_ID variable not being set (plugman supports variables however). Does anyone know the syntax to set a variable, or does this feature need to be filed as an issue?

Re: Plugin / Platform mismatch problems

2013-07-22 Thread Brian LeRoux
Like that On Mon, Jul 22, 2013 at 3:33 PM, Andrew Grieve agri...@chromium.org wrote: Oh! Oh! Perhaps have multiple definitions based on CDV version. e.g.: engine min-cdv-version=2.8 max-cdv-version=2.8 default-git-refrefs/head/2.8.x/default-git-ref /engine engine min-cdv-version=2.9

Re: blackberry10 build

2013-07-22 Thread Brian LeRoux
Wow, this is awesome thanks Bryan! On Mon, Jul 22, 2013 at 3:32 PM, Bryan Higgins br...@bryanhiggins.net wrote: I've entered the following issues into JIRA and we will be working to get them resolved over the next two weeks. Code: - [CB-4273] CLI pass through of command line args -

Re: cordova plugin add and variables

2013-07-22 Thread Filip Maj
Yeah file an issue. Maybe this needs to be encapsulated as a larger feature, I'm thinking, any flags you use with the cli get pushed down to the underlying tools. This way people could do `cordova build --release`, for example. On 7/22/13 12:33 PM, Shazron shaz...@gmail.com wrote: I didn't see

Re: Blog post feedback

2013-07-22 Thread Brian LeRoux
Ok. Somehow in the adding of these things I cannot get this to build. =( Could we use the awesome power of svn revision control to see wtf is going on? Also to confirm the changes are what we want? On Fri, Jul 19, 2013 at 6:52 PM, Andrew Grieve agri...@chromium.org wrote: --- layout: post

Re: blackberry10 build

2013-07-22 Thread Ken Wallis
Apparently I am getting older faster than I thought, seeing y's where there are i's... Sent from my BlackBerry 10 smartphone. From: Ken Wallis Sent: Monday, July 22, 2013 1:05 PM To: dev@cordova.apache.org; dev@cordova.apache.org Reply To: dev@cordova.apache.org Subject: Re: blackberry10 build

Re: blackberry10 build

2013-07-22 Thread Ken Wallis
Bryan is the man. Bryan H. that is. :P Sent from my BlackBerry 10 smartphone. From: Brian LeRoux Sent: Monday, July 22, 2013 12:41 PM To: dev@cordova.apache.org Reply To: dev@cordova.apache.org Subject: Re: blackberry10 build Wow, this is awesome thanks Bryan! On Mon, Jul 22, 2013 at 3:32 PM,

Re: blackberry10 build

2013-07-22 Thread Ken Wallis
Apparently I am getting older faster than I thought, seeing y's where there are i's... Sent from my BlackBerry 10 smartphone. From: Ken Wallis Sent: Monday, July 22, 2013 1:05 PM To: dev@cordova.apache.org; dev@cordova.apache.org Reply To: dev@cordova.apache.org Subject: Re: blackberry10 build

Questions regrading Contribution to the Project

2013-07-22 Thread Sharif Ahmed
Hi, I am Sharif Ahmed. I want to contribute to the project. I am interested in Android and Docs section. I have checked out the jira issues for these two sections, and found that there are few issues which are un-assigned. What is the process of assigning me any jira issue? I really want to