Re: Engine confusion

2014-02-24 Thread Andrew Grieve
I think it makes the most sense to have: name="..." <-- this is the only thing that specifies the thing whose version you care about platform="..." <-- this specifies that you care about the version only on a subset of platforms. So, for an android platform: So, for an android engine, I'd like

Re: Engine confusion

2014-02-21 Thread Marcel Kinard
I prefer the former. I'd rather do a match for a simple attribute value (which is easy to write an XSD for), than have to parse/unparse a value convention with a bunch of hyphens or some custom syntax. On Feb 21, 2014, at 9:36 AM, Jonathan Bond-Caron wrote: > runtime="chromeview" /> > > Vs.

RE: Engine confusion

2014-02-21 Thread Jonathan Bond-Caron
On Wed Feb 12 02:12 PM, Tim Kim wrote: > > > Yep, Braden is correct. That is totally a bug. Filed here: > https://issues.apache.org/jira/browse/CB-6023 > Thoughts on? Vs. I'm trying to look at how this can apply to 'runtimes'. E.g. Vs. ?

RE: Engine confusion

2014-02-13 Thread Jonathan Bond-Caron
On Wed Feb 12 10:22 PM, Andrew Grieve wrote: > > b) More a personal preference for: > > > version=">=3.3.0" platform="android"/> > > > > I can patch the code so that: > > > name="cordova-{$supported_platform} " version=">=3.3.0" /> > > > > > - Agree that the first example is more intuitive. > -

Re: Engine confusion

2014-02-12 Thread Andrew Grieve
On Wed, Feb 12, 2014 at 10:22 PM, Andrew Grieve wrote: > > > > On Wed, Feb 12, 2014 at 5:19 PM, Jonathan Bond-Caron < > jbo...@gdesolutions.com> wrote: > >> On Wed Feb 12 03:56 PM, Braden Shepherdson wrote: >> > Do the check the same file? I thought they were different. They might >> > check the >

Re: Engine confusion

2014-02-12 Thread Andrew Grieve
On Wed, Feb 12, 2014 at 5:19 PM, Jonathan Bond-Caron < jbo...@gdesolutions.com> wrote: > On Wed Feb 12 03:56 PM, Braden Shepherdson wrote: > > Do the check the same file? I thought they were different. They might > > check the > > same path in different platforms, but that script can > > return di

RE: Engine confusion

2014-02-12 Thread Jonathan Bond-Caron
On Wed Feb 12 03:56 PM, Braden Shepherdson wrote: > Do the check the same file? I thought they were different. They might > check the > same path in different platforms, but that script can > return different things. I > would consider that a bug as well. > > I don't see anything to be gained from

Re: Engine confusion

2014-02-12 Thread Braden Shepherdson
Do the check the same file? I thought they were different. They might check the same path in different platforms, but that script can return different things. I would consider that a bug as well. I don't see anything to be gained from changing the syntax. The reason we want to specify separately

RE: Engine confusion

2014-02-12 Thread Jonathan Bond-Caron
On Tue Feb 11 11:05 AM, Braden Shepherdson wrote: > The intention is that it allows plugins to specify that they require at least > a certain > version of the native code for each platform. This would be for things like > added > a new transport type to the bridge, as when we added binary data tr

Re: Engine confusion

2014-02-12 Thread Tim Kim
> > Should "cordova-plugman" be renamed to "node"? - The cordova-plugman version returning node's version sounds like a bug. > It should be Plugman's NPM version number so far as I know. Yep, Braden is correct. That is totally a bug. Filed here: https://issues.apache.org/jira/browse/CB-6023

Re: Engine confusion

2014-02-11 Thread Braden Shepherdson
The intention is that it allows plugins to specify that they require at least a certain version of the native code for each platform. This would be for things like added a new transport type to the bridge, as when we added binary data transmission on iOS and Android a year or so ago. Any plugins pu