Re: cordova command cli and merges concept pull request

2013-02-12 Thread Gorkem Ercan
I have been cooking up a similar functionality for Cordova development plugins for Eclipse IDE that I am building. I think the only real difference with what I have is I have named the merges folder as www_platform. As my goal is to keep 100% compatible with cordova-cli I was planning to provide

WPCordovaClassLib.dll in the full template?

2013-02-12 Thread Marcel Kinard
Somebody asked me about the WPCordovaClassLib.dll in Cordova 2.3 for WP7 and WP8. I had never looked at WP7/WP8 before, so I started poking at it a bit. From what I can tell, the documentation says that the full template should include a pre-built dll, but I don't see one in the phonegap distro

Re: Android pull request for JS create script on Windows

2013-02-12 Thread Andrew Grieve
And these as well: https://github.com/apache/cordova-android/pull/7 https://github.com/apache/cordova-android/pull/5 On Tue, Feb 12, 2013 at 11:03 AM, Andrew Grieve agri...@chromium.orgwrote: https://github.com/apache/cordova-android/pull/8/files Can someone with a windows machine test this

Re: Android file chooser

2013-02-12 Thread Max Woghiren
Just to be clear, I'm asking whether it would be useful to add a file picker plugin for Android to core Cordova. On Tue, Feb 12, 2013 at 10:49 AM, Max Woghiren m...@google.com wrote: Thanks Simon. The file picker code in that project looks similar to what I was thinking might be useful to

Re: BlackBerry 2.4.0 Release

2013-02-12 Thread Brian LeRoux
Ah crap. Well, my thinking is just repackage it anyhow. (Not a world ending bug tracking nightmare.) On Mon, Feb 11, 2013 at 11:40 PM, Tim Kim timki...@gmail.com wrote: Someone had brought it up through the google groups: https://groups.google.com/forum/#!topic/phonegap/wnICEdCs-Qk/discussion

Re: BlackBerry 2.4.0 Release

2013-02-12 Thread Jesse MacFadyen
+1 to repack. Cheers, Jesse Sent from my iPhone5 On 2013-02-12, at 9:36 AM, Brian LeRoux b...@brian.io wrote: Ah crap. Well, my thinking is just repackage it anyhow. (Not a world ending bug tracking nightmare.) On Mon, Feb 11, 2013 at 11:40 PM, Tim Kim timki...@gmail.com wrote: Someone had

Re: cordova command cli and merges concept pull request

2013-02-12 Thread Andrew Grieve
I definitely think the use-case of per-platform files is valid. We already have this for plugin.xml I think, by putting asset tags within platform. Solving it through directory structure instead of through config.xml is easier I think. We should think about solving this for splash screens images

Re: cordova command cli and merges concept pull request

2013-02-12 Thread Michal Mocny
Perhaps this is crazy, but: We already have all this awesome functionality for plugins -- would it be impossible to just implement an app as a plugin? On Tue, Feb 12, 2013 at 12:59 PM, Filip Maj f...@adobe.com wrote: BTW, Michael love the pull req, but is there any chance you can add tests

Re: cordova command cli and merges concept pull request

2013-02-12 Thread Brian LeRoux
Splash screens and making an app a type of super plugin are rad ideas for other pull requests. ;) Attached image of me when idea of making an app a plugin came up. On Tue, Feb 12, 2013 at 5:58 PM, Michal Mocny mmo...@chromium.org wrote: Perhaps this is crazy, but: We already have all this

Re: cordova command cli and merges concept pull request

2013-02-12 Thread Michal Mocny
On Tue, Feb 12, 2013 at 1:11 PM, Brian LeRoux b...@brian.io wrote: Splash screens and making an app a type of super plugin are rad ideas for other pull requests. ;) Attached image of me when idea of making an app a plugin came up. No you didn't ;) On Tue, Feb 12, 2013 at 5:58 PM, Michal

Brainstorming Proposal: Implementing apps as plugins

2013-02-12 Thread Michal Mocny
It seems as if we could just add a trivial amount of extra functionality to plugins, after which we could implement apps using the same flow/tools as plugin dev. This would have all kinds of benefits. Lets brainstorm what it would take to do this, and what roadblocks we would face, in order to

Re: Brainstorming Proposal: Implementing apps as plugins

2013-02-12 Thread Michal Mocny
From the plugin spec description: a plugin could be a single JavaScript, or some native code with no corresponding JavaScript. which I think applies equally well to apps. Plugins already support: * asset's and platforms (which was just a feature requested to add to apps for cordova-cli) *

Re: replace incubator-* github repos with redirect?

2013-02-12 Thread Shazron
Actually I don't see any incubator-cordova-* repos on https://github.com/apache ? Are you referring to something else? On Tue, Feb 12, 2013 at 10:37 AM, Mike Billau mike.bil...@gmail.com wrote: Hello everyone, I noticed that all of the incubator-* repositories are still up on github and

Re: cordova command cli and merges concept pull request

2013-02-12 Thread Michael Wolf
Have looked at suggesting folks mock in-browser using ripple... however there are a few issues with that, firstly being simply doesn't work for non webkit platforms (ie windows phone... yah the cli doesn't currently support windows phone but no reason why it can't) ... Also while you can mock to

Re: replace incubator-* github repos with redirect?

2013-02-12 Thread Shazron
18 repos total. I can add tasks to get these resolved, but ultimately only someone with better privileges than the committers need to close these. I reckon once we are satisfied, we can file an INFRA issue to close these repos down. apache/incubator-cordova-android ยท

Re: Brainstorming Proposal: Implementing apps as plugins

2013-02-12 Thread Michal Mocny
On Tue, Feb 12, 2013 at 1:48 PM, Filip Maj f...@adobe.com wrote: So, if an app was bundled as a plugin with its www folder, then if it could use config-file modification to set the startPage (this may not be supported yet), would that be enough? Ideally plugins would support importing a

Re: Brainstorming Proposal: Implementing apps as plugins

2013-02-12 Thread Braden Shepherdson
Plugin devs are left to put together their own file structure. Plugins are pretty freeform, you specify where to find things with asset and source-file tags; the installed locations have nothing to do with the plugin repo locations. The main difference that I can see is that plugins specify every

Re: Brainstorming Proposal: Implementing apps as plugins

2013-02-12 Thread Michal Mocny
Plugins can specify whole directories as well, so it would be trivial to copy the whole www folder, I believe. On Tue, Feb 12, 2013 at 2:31 PM, Braden Shepherdson bra...@chromium.orgwrote: Plugin devs are left to put together their own file structure. Plugins are pretty freeform, you specify

Re: Symbol Mapping in Cordova

2013-02-12 Thread Andrew Grieve
I've just merged in most of the changes for this (CB-2227). Again, the goal here was to move all plugin-specific logic out of common files. It's not the end-game solution, but a step in the right direction. There are still some changes left on the symbolmapping branch that affect windows webos.

Re: Brainstorming Proposal: Implementing apps as plugins

2013-02-12 Thread Michal Mocny
That sounds great, Fil! -Michal On Tue, Feb 12, 2013 at 2:59 PM, Andrew Grieve agri...@chromium.org wrote: +1 to moving plugman into CLI. I think the two tools will have more and more overlap going forward. On Tue, Feb 12, 2013 at 3:00 PM, Filip Maj f...@adobe.com wrote: This is

Re: Brainstorming Proposal: Implementing apps as plugins

2013-02-12 Thread Michal Mocny
Sounds good. -Michal On Tue, Feb 12, 2013 at 3:20 PM, Filip Maj f...@adobe.com wrote: Cool, let me loop back with Anis and come up with a breakdown of the code for both cli and plugman. Once we have it figured I'll come back to the list and we can schedule an online meeting? On 2/12/13

Re: replace incubator-* github repos with redirect?

2013-02-12 Thread Shazron
https://issues.apache.org/jira/browse/CB-2417 On Tue, Feb 12, 2013 at 10:55 AM, Shazron shaz...@gmail.com wrote: 18 repos total. I can add tasks to get these resolved, but ultimately only someone with better privileges than the committers need to close these. I reckon once we are satisfied,

Re: BlackBerry 2.4.0 Release

2013-02-12 Thread Steven Gill
+1. On Tue, Feb 12, 2013 at 9:43 AM, Jesse MacFadyen purplecabb...@gmail.comwrote: +1 to repack. Cheers, Jesse Sent from my iPhone5 On 2013-02-12, at 9:36 AM, Brian LeRoux b...@brian.io wrote: Ah crap. Well, my thinking is just repackage it anyhow. (Not a world ending bug tracking

Re: BlackBerry 2.4.0 Release

2013-02-12 Thread Tim Kim
All right, it looks like everything is re-packaged and working. On 12 February 2013 13:43, Steven Gill stevengil...@gmail.com wrote: +1. On Tue, Feb 12, 2013 at 9:43 AM, Jesse MacFadyen purplecabb...@gmail.com wrote: +1 to repack. Cheers, Jesse Sent from my iPhone5 On

Re: cordova command cli and merges concept pull request

2013-02-12 Thread Filip Maj
I'm working with Michael off this discussion thread to get the code up to par. Michael, feel free to update your pull request and ping this thread whenever you get a chance to update it. Then we can all take a look. On 2/12/13 10:15 PM, Anis KADRI anis.ka...@gmail.com wrote: I believe this is a