[osx, cli] pull request, need another set of eyes

2014-04-25 Thread Shazron
Seems trivial (a few lines), but CLI is not my forté so I would appreciate
another set looking at this:
https://github.com/apache/cordova-cli/pull/170


[GitHub] cordova-cli pull request: CB-6506 RTC: Add support for OSX

2014-04-28 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-cli/pull/170#issuecomment-41590320
  
From @shepheb on the mailing list:
"LGTM. There might be some reason we can't use identical flows for OSX and
iOS, but there's no point in having duplicate branches to the code if
they're the same right now. They can be split later if they diverge."

Thread: http://callback-dev.markmail.org/thread/3k45ht6lobxgeh5z


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Some pain points from our users :'(

2014-04-28 Thread Shazron
See: https://groups.google.com/d/msg/phonegap/II0qo-dSFWs/Fj8jkemGSbUJ


Re: Some pain points from our users :'(

2014-04-28 Thread Shazron
We come with a (framework) developer's perspective, thus an echo chamber.
The comments may or may not be fair but the users do encounter pain, and I
think it does help in identifying issues we missed (reading from the list
overall). Canary in the coal mine, etc.

Filing issues etc ideal, but some, for whatever reason, do not like that
type of forum, but still choose the Google Groups.




On Mon, Apr 28, 2014 at 11:44 AM, Brian LeRoux  wrote:

> I feel the comments there are not really constructive or fair. Cordova
> changes too much? Sorry, static code means bitrot aka abandonware.
>
> We work on Cordova because we are improving it for the many thousands of
> our users whom appreciate that. I don't need to tell you guys that but 1.8
> was a mess compared to 3.x and if you are only updating YOUR userland
> source once every 2 years and you don't expect it to be come with
> problems?! The bugs found usually are not introduced by us but with Xcode,
> iOS, or Android and we are FIXING those things with updates.
>
> Docs are a problem but as they say patches welcome. This is the sort of
> entitled complaint that lead me off that list.
>
>
>
> On Mon, Apr 28, 2014 at 11:30 AM, Shazron  wrote:
>
> > See: https://groups.google.com/d/msg/phonegap/II0qo-dSFWs/Fj8jkemGSbUJ
> >
>


Re: Help Wanted: Pull Requests

2014-04-29 Thread Shazron
Hmm let's get that fixed. Infra issue Jesse? or is this a Pmc chair thing

On Tuesday, April 29, 2014, Sergey Grebnov (Akvelon) 
wrote:

> Yep, I'm a committer but I believe I don't have write access to the repos.
>
> -Sergey
> -Original Message-
> From: purplecabbage [mailto:purplecabb...@gmail.com ]
> Sent: Tuesday, April 29, 2014 10:45 AM
> To: dev@cordova.apache.org 
> Subject: Re: Help Wanted: Pull Requests
>
> Um, Sergey is a committer, has been from since we moved to Apache.
>
> Sent from my iPhone
>
> > On Apr 29, 2014, at 10:14 AM, "Parashuram Narasimhan (MS OPEN TECH)" <
> panar...@microsoft.com > wrote:
> >
> > We also have a couple of pull requests open for Contacts, and other
> plugins. Would love to see them merged fast.
> > Sergey and I could help, but we are not committers and cannot merge.
> >
> > -Original Message-
> > From: Josh Soref [mailto:jso...@blackberry.com ]
> > Sent: Tuesday, April 29, 2014 9:12 AM
> > To: dev@cordova.apache.org 
> > Subject: Re: Help Wanted: Pull Requests
> >
> > Andrew Grieve wrote:
> >> I've been managing PRs for CLI & Plugman alright, but no one's been
> >> doing plugins.
> >> Just did camera last night, and now I'm spent on time.
> >>
> >> Any volunteers?
> >
> > I can't commit to doing this yet. I still haven't done any official
> commits yet. I've relied on others to merge for me.
> >
> > I will probably try to figure out the state of plugins/platforms shortly
> (probably next week, possibly late this week). Ideally, this will mean
> comments about code or indications that a rebase is needed. Which should at
> least help a little.
> >
>


[GitHub] cordova-plugins pull request: Keyboard: Fix issue with UIPickerVie...

2014-04-29 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-plugins/pull/11#issuecomment-41748065
  
CB-6563


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[ios] plugin os version support

2014-04-30 Thread Shazron
With 3.4.0, the default template only supports iOS 6.0 and up. I know that
plugins can specify iOS support (apple-ios key in engines tag) but we
haven't done it yet. I'm not even sure if the cli plugin installer checks
for this yet.

Should we start using this in core plugins?

A specific case is this PR:
https://github.com/apache/cordova-plugin-camera/pull/24
It is using [ALAssetsLibrary authorizationStatus] and that API only occurs
in iOS 6.0 and up.

Wrapping this in a runtime os version check is not hard, however
(IsAtLeastVersion macro).


Re: [ios] plugin os version support

2014-04-30 Thread Shazron
I agree of course, now comes the part where we add the "apple-ios" key into
the engines tag for all plugins. We can add 6.0 for everything or actually
test whether it actually needs 6.0 (more work, requires testing with an
older Cordova version, and Xcode version that has the iOS 5 SDK)


On Wed, Apr 30, 2014 at 1:47 PM, Michal Mocny  wrote:

> https://developer.apple.com/support/appstore/
>
> iOS <6 = 2%.  That meets the criteria we've used in the past..
>
>
> On Wed, Apr 30, 2014 at 4:13 PM, Shazron  wrote:
>
> > With 3.4.0, the default template only supports iOS 6.0 and up. I know
> that
> > plugins can specify iOS support (apple-ios key in engines tag) but we
> > haven't done it yet. I'm not even sure if the cli plugin installer checks
> > for this yet.
> >
> > Should we start using this in core plugins?
> >
> > A specific case is this PR:
> > https://github.com/apache/cordova-plugin-camera/pull/24
> > It is using [ALAssetsLibrary authorizationStatus] and that API only
> occurs
> > in iOS 6.0 and up.
> >
> > Wrapping this in a runtime os version check is not hard, however
> > (IsAtLeastVersion macro).
> >
>


[GitHub] cordova-plugin-camera pull request: [iOS] Returns a specific error...

2014-04-30 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/24#issuecomment-41855580
  
https://issues.apache.org/jira/browse/CB-6576


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: [ios] plugin os version support

2014-04-30 Thread Shazron
It's also informational - so it has some value for plain human eyes
(browsing the registry for example) vs automatons

On Wednesday, April 30, 2014, Michal Mocny  wrote:

> Why do we need to do that?
>
> If the cordova-ios template support iOS 6+, don't we only need to update
> the cordova engine requirements?  If you are using an older cordova-ios
> platform (that still supported iOS5), then would you be using a CLI that
> understood apple-ios engine tag?
>
> -Michal
>
>
> On Wed, Apr 30, 2014 at 4:54 PM, Shazron >
> wrote:
>
> > I agree of course, now comes the part where we add the "apple-ios" key
> into
> > the engines tag for all plugins. We can add 6.0 for everything or
> actually
> > test whether it actually needs 6.0 (more work, requires testing with an
> > older Cordova version, and Xcode version that has the iOS 5 SDK)
> >
> >
> > On Wed, Apr 30, 2014 at 1:47 PM, Michal Mocny 
> > >
> wrote:
> >
> > > https://developer.apple.com/support/appstore/
> > >
> > > iOS <6 = 2%.  That meets the criteria we've used in the past..
> > >
> > >
> > > On Wed, Apr 30, 2014 at 4:13 PM, Shazron >
> wrote:
> > >
> > > > With 3.4.0, the default template only supports iOS 6.0 and up. I know
> > > that
> > > > plugins can specify iOS support (apple-ios key in engines tag) but we
> > > > haven't done it yet. I'm not even sure if the cli plugin installer
> > checks
> > > > for this yet.
> > > >
> > > > Should we start using this in core plugins?
> > > >
> > > > A specific case is this PR:
> > > > https://github.com/apache/cordova-plugin-camera/pull/24
> > > > It is using [ALAssetsLibrary authorizationStatus] and that API only
> > > occurs
> > > > in iOS 6.0 and up.
> > > >
> > > > Wrapping this in a runtime os version check is not hard, however
> > > > (IsAtLeastVersion macro).
> > > >
> > >
> >
>


Re: [ios] plugin os version support

2014-04-30 Thread Shazron
Another motivation is to actually use it ourselves and bring light to this
feature which is underused. Inevitably there will be iOS 7 only plugins.
Eventually we will support only iOS 7 and 8 only, etc

On Wednesday, April 30, 2014, Shazron  wrote:

> It's also informational - so it has some value for plain human eyes
> (browsing the registry for example) vs automatons
>
> On Wednesday, April 30, 2014, Michal Mocny 
> >
> wrote:
>
>> Why do we need to do that?
>>
>> If the cordova-ios template support iOS 6+, don't we only need to update
>> the cordova engine requirements?  If you are using an older cordova-ios
>> platform (that still supported iOS5), then would you be using a CLI that
>> understood apple-ios engine tag?
>>
>> -Michal
>>
>>
>> On Wed, Apr 30, 2014 at 4:54 PM, Shazron  wrote:
>>
>> > I agree of course, now comes the part where we add the "apple-ios" key
>> into
>> > the engines tag for all plugins. We can add 6.0 for everything or
>> actually
>> > test whether it actually needs 6.0 (more work, requires testing with an
>> > older Cordova version, and Xcode version that has the iOS 5 SDK)
>> >
>> >
>> > On Wed, Apr 30, 2014 at 1:47 PM, Michal Mocny 
>> wrote:
>> >
>> > > https://developer.apple.com/support/appstore/
>> > >
>> > > iOS <6 = 2%.  That meets the criteria we've used in the past..
>> > >
>> > >
>> > > On Wed, Apr 30, 2014 at 4:13 PM, Shazron  wrote:
>> > >
>> > > > With 3.4.0, the default template only supports iOS 6.0 and up. I
>> know
>> > > that
>> > > > plugins can specify iOS support (apple-ios key in engines tag) but
>> we
>> > > > haven't done it yet. I'm not even sure if the cli plugin installer
>> > checks
>> > > > for this yet.
>> > > >
>> > > > Should we start using this in core plugins?
>> > > >
>> > > > A specific case is this PR:
>> > > > https://github.com/apache/cordova-plugin-camera/pull/24
>> > > > It is using [ALAssetsLibrary authorizationStatus] and that API only
>> > > occurs
>> > > > in iOS 6.0 and up.
>> > > >
>> > > > Wrapping this in a runtime os version check is not hard, however
>> > > > (IsAtLeastVersion macro).
>> > > >
>> > >
>> >
>>
>


Re: [ios] plugin os version support

2014-05-01 Thread Shazron
I agree that is the eventual goal, and that it is definitely not trivial.
Right now it's definitely based on the min version only of course.

Here's how the CLI handles the engine tag:

1.
https://github.com/apache/cordova-plugman/blob/8aca4cb5b1a8012aa23ba05386d10cb59b3b4817/src/util/default-engines.js
2.
https://github.com/apache/cordova-plugman/blob/8aca4cb5b1a8012aa23ba05386d10cb59b3b4817/src/install.js#L186-L200

I haven't tested the impact of this change in several scenarios, I'll make
sure to document and report my results if they are significant before
making any changes.


On Thu, May 1, 2014 at 5:59 AM, Ian Clelland  wrote:

> How would the CLI tools use this information? These sorts of dependencies
> are tricky, and involve:
>   * The minimum version of iOS required to build cordova (depends on when
> the APIs used were introduced)
>   * The maximum version of iOS supported by cordova (depends on when the
> APIs used were deprecated)
>   * The corresponding min and max versions for the plugin
>   * The versions of iOS that the developer *can* build for
>   * The version that the developer actually *wants* to build for.
>   * Oh, and also the regular plugin/engine dependencies
>
> Really, the information that we have available is the minimum iOS versions
> required for cordova-ios and for the plugin. (We don't know the maximum
> version until long after the code has been released, but it's at least as
> important)
>
> We don't have information (currently) about what versions of iOS the user
> *can* compile for, nor (maybe more importantly) what version they *want* to
> compile for.
>
> Cordova-ios 3.4.1 *supports* iOS 6 and 7. Applications built with just
> cordova *require* iOS 6.
>
> That doesn't mean that a plugin that supports iOS 5 won't work; it also
> doesn't mean that a plugin that requires iOS 7 won't work, for a particular
> app. And who knows about iOS 7.2, or 8?
>
> If our tools could support it, this is what I'd *love* to see:
>   * A way to declare in plugins a min and (optional) max iOS version, in
> plugin.xml
>   * A way to specify the ios target version when creating a project, that
> would live in config.xml
>   * A CLI that could download the right version of cordova-ios to match
> that version
>   * A plugman that could find and download the *appropriate* version of a
> plugin, or complain if one wasn't available.
>
> We're quite a long way from that today, but I'd love to get there.
>
> Ian
>
> On Wed, Apr 30, 2014 at 8:54 PM, Shazron  wrote:
>
> > Another motivation is to actually use it ourselves and bring light to
> this
> > feature which is underused. Inevitably there will be iOS 7 only plugins.
> > Eventually we will support only iOS 7 and 8 only, etc
> >
> > On Wednesday, April 30, 2014, Shazron  wrote:
> >
> > > It's also informational - so it has some value for plain human eyes
> > > (browsing the registry for example) vs automatons
> > >
> > > On Wednesday, April 30, 2014, Michal Mocny  > >
> > > wrote:
> > >
> > >> Why do we need to do that?
> > >>
> > >> If the cordova-ios template support iOS 6+, don't we only need to
> update
> > >> the cordova engine requirements?  If you are using an older
> cordova-ios
> > >> platform (that still supported iOS5), then would you be using a CLI
> that
> > >> understood apple-ios engine tag?
> > >>
> > >> -Michal
> > >>
> > >>
> > >> On Wed, Apr 30, 2014 at 4:54 PM, Shazron  wrote:
> > >>
> > >> > I agree of course, now comes the part where we add the "apple-ios"
> key
> > >> into
> > >> > the engines tag for all plugins. We can add 6.0 for everything or
> > >> actually
> > >> > test whether it actually needs 6.0 (more work, requires testing with
> > an
> > >> > older Cordova version, and Xcode version that has the iOS 5 SDK)
> > >> >
> > >> >
> > >> > On Wed, Apr 30, 2014 at 1:47 PM, Michal Mocny 
> > >> wrote:
> > >> >
> > >> > > https://developer.apple.com/support/appstore/
> > >> > >
> > >> > > iOS <6 = 2%.  That meets the criteria we've used in the past..
> > >> > >
> > >> > >
> > >> > > On Wed, Apr 30, 2014 at 4:13 PM, Shazron 
> wrote:
> > >> > >
> > >> > > > With 3.4.0, the default template only supports iOS 6.0 and up. I
> > >> know
> > >> > > that
> > >> > > > plugins can specify iOS support (apple-ios key in engines tag)
> but
> > >> we
> > >> > > > haven't done it yet. I'm not even sure if the cli plugin
> installer
> > >> > checks
> > >> > > > for this yet.
> > >> > > >
> > >> > > > Should we start using this in core plugins?
> > >> > > >
> > >> > > > A specific case is this PR:
> > >> > > > https://github.com/apache/cordova-plugin-camera/pull/24
> > >> > > > It is using [ALAssetsLibrary authorizationStatus] and that API
> > only
> > >> > > occurs
> > >> > > > in iOS 6.0 and up.
> > >> > > >
> > >> > > > Wrapping this in a runtime os version check is not hard, however
> > >> > > > (IsAtLeastVersion macro).
> > >> > > >
> > >> > >
> > >> >
> > >>
> > >
> >
>


Re: Nomination for a new chair for Apache Cordova

2014-05-01 Thread Shazron
Thanks for all you've done Brian! Also thank you for all the confidence and
acclaim everyone that has chimed in. I'll try to do my best for the project
and for Apache -- to dot the i's and cross all the t's (assuming the Apache
Board approves of course).

'Nuff said, I'll just express my gratitude in an 80's song - a classic by
the Pet Shop Boys and Dusty Springfield:
https://www.youtube.com/watch?v=Wn9E5i7l-Eg



On Wed, Apr 23, 2014 at 6:49 PM, Anis KADRI  wrote:

> +1 for Shaz! Thanks for everything Brian!
>
>
> On Wed, Apr 23, 2014 at 3:28 PM, Michael Brooks  >wrote:
>
> > Brian, thank you for all of the hard work that you've done over the past
> > few years. Drinks will have to be on the Cordova team.
> >
> > +1 Shaz for all the reasons listed above.
> >
> >
> > On Wed, Apr 23, 2014 at 1:36 PM, RUDD, Brett 
> wrote:
> >
> > > yep +1 to shaz, known (and worked on and off with) him for ten years
> and
> > > once you get used to his jokes (~ year 6) he's fine.
> > >
> > > >
> > > > Off topic: Joe and Jim, please may you each put up email filters for
> > the
> > > > others' comments?  Its almost entirely you two trolls yelling at each
> > > > other, throwing salt in wounds, in every thread about cordova vs
> apache
> > > > (actually they should be called Joe vs Jim threads).  The problems
> with
> > > our
> > > > PMC and the Board are being blown way, way out of proportion I think.
> > >
> > > i think jim and sebb's input is productive on any, and seemingly every,
> > > email thread we have ever had, and their contribution to cordova has
> been
> > > invaluable and i look forward to working with them more closely in the
> > > future.
> > >
> > > -brett
> >
>


Re: First stab at Next Steps article

2014-05-01 Thread Shazron
Interesting that you are here to tell us what we are all about. We know
what we are about, we've been doing it every day for years. What you are
talking about is currently the means, not the goal.


On Thu, May 1, 2014 at 10:39 AM, Freak Show  wrote:

>
> On May 1, 2014, at 10:31 AM, Brian LeRoux  wrote:
>
> > WebSQL is deprecated by browsers. We're here to support the web not route
> > around it.
> >
>
> No you're not. You're here to bypass browser limitations to provide access
> to features the web doesn't think you need.  SQLite in the browser is very
> useful.  In my case, essential.
>


[GitHub] cordova-plugin-splashscreen pull request: Fix ios launchimage

2014-05-01 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-splashscreen/pull/13#issuecomment-41994042
  

https://github.com/apache/cordova-plugin-splashscreen/commit/e3e39967660c5715da2838f434bba288776ae358#commitcomment-6168568


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-osx pull request: enhancements to the cordova-osx

2014-05-01 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-osx/pull/9#issuecomment-41994793
  
I believe you said you are re-submitting? If so, please close this PR


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-file pull request: updated support for the OS X pla...

2014-05-02 Thread shazron
Github user shazron commented on a diff in the pull request:

https://github.com/apache/cordova-plugin-file/pull/42#discussion_r12221118
  
--- Diff: src/ios/CDVFile.m ---
@@ -313,11 +313,9 @@ - (void)pluginInitialize
 
--- End diff --

Since you are doing the copy route and not sharing code with src/ios, these 
callbackId fixes should be in a separate issue against iOS, and should be in a 
separate pull request.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-file pull request: updated support for the OS X pla...

2014-05-02 Thread shazron
Github user shazron commented on a diff in the pull request:

https://github.com/apache/cordova-plugin-file/pull/42#discussion_r12221112
  
--- Diff: plugin.xml ---
@@ -212,6 +212,27 @@ 
xmlns:android="http://schemas.android.com/apk/res/android";
 
 
 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
--- End diff --

Not critical since it's just a label, but this really should be 
"osxFileSystem"


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugman pull request: Fix plugin check error, when plugin ...

2014-05-02 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-plugman/pull/76#issuecomment-42056008
  
Would be great if there was a test for this in:
https://github.com/apache/cordova-plugman/blob/master/spec/fetch.spec.js


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-splashscreen pull request: Fix ios launchimage

2014-05-02 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-splashscreen/pull/13#issuecomment-42082556
  
@Inwinder Can you file a new issue? 
https://issues.apache.org/jira/browse/CB 
I'll work on it. what this needs is a possible re-factor so it is unit 
testable, right now it is only manually tested and error prone.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-inappbrowser pull request: Only Navigate *after* th...

2014-05-02 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-inappbrowser/pull/42#issuecomment-42088711
  
Filed issue: https://issues.apache.org/jira/browse/CB-6624


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-vibration pull request: Implemented vibrateWithPatt...

2014-05-02 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-vibration/pull/11#issuecomment-42088838
  
iCLA received.

Filed: https://issues.apache.org/jira/browse/CB-6625


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-file pull request: Update plugin.xml

2014-05-02 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-plugin-file/pull/40#issuecomment-42089981
  
From my code review comments (3 of them) in this PR, my recommendation is 
this pull request is unnecessary and is therefore rejected. Please close this 
pull request.

Thank you for your pull request, and please continue to contribute to the 
project!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-statusbar pull request: Added javascript event on s...

2014-05-02 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-statusbar/pull/4#issuecomment-42090058
  
Filed: https://issues.apache.org/jira/browse/CB-6626


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-camera pull request: Make dest NATIVE_URI compatibl...

2014-05-02 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/20#issuecomment-42090217
  
Filed https://issues.apache.org/jira/browse/CB-6627



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-camera pull request: Make dest NATIVE_URI compatibl...

2014-05-02 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/20#issuecomment-42091340
  
How are you testing this? My device is non-responsive when I integrated 
your code and do:
```
navigator.camera.getPicture(onSuccess, onFail, { quality: 50,
destinationType: 
Camera.DestinationType.NATIVE_URI,
sourceType : 
Camera.PictureSourceType.CAMERA,
saveToPhotoAlbum: true
});

function onSuccess(imageURI) {
alert(imageURI);
}

function onFail(message) {
alert('Failed because: ' + message);
}
```
I pulled your changes into my branch: 
https://github.com/shazron/cordova-plugin-camera/tree/CB-6627


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-camera pull request: Make dest NATIVE_URI compatibl...

2014-05-02 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/20#issuecomment-42091677
  
After debugging, there are two spots that are not handled:
1. 
https://github.com/shazron/cordova-plugin-camera/blob/e9c48138c1e3afdb7a18811042507026e3f5880b/src/ios/CDVCamera.m#L335
2. 
https://github.com/shazron/cordova-plugin-camera/blob/e9c48138c1e3afdb7a18811042507026e3f5880b/src/ios/CDVCamera.m#L358

For (1), there is no completionBlock
For (2) there is no case for handling DestinationTypeNativeUri

This is why my device was hanging, it was trying to return it as a Data URL


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-camera pull request: Make dest NATIVE_URI compatibl...

2014-05-02 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/20#issuecomment-42091967
  
Found the culprit:

https://github.com/shazron/cordova-plugin-camera/blob/e9c48138c1e3afdb7a18811042507026e3f5880b/src/ios/CDVCamera.m#L312

If either of the first two conditions are used, it results in what I 
experienced. Your code as you probably tested it used the third condition.

This test case results in a success:
```
navigator.camera.getPicture(onSuccess, onFail, { quality: 50,
destinationType: 
Camera.DestinationType.NATIVE_URI,
sourceType : 
Camera.PictureSourceType.CAMERA,
saveToPhotoAlbum: true,
encodingType: Camera.EncodingType.JPEG,
targetHeight: 200,
targetWidth: 200,
correctOrientation: true

});

function onSuccess(imageURI) {
alert(imageURI);
}

function onFail(message) {
alert('Failed because: ' + message);
}
```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-inappbrowser pull request: Renamed InAppBrowser.js ...

2014-05-05 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-inappbrowser/pull/27#issuecomment-42173861
  
Thank you but this problem has been fixed: 
https://github.com/apache/cordova-plugin-inappbrowser/commit/d0dd10103c9e2ff7833e008188c26a6505ea6b96

Please close this pull request, thanks!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: First stab at Next Steps article

2014-05-05 Thread Shazron
I don't suppose there is an export to Markdown? In any case should be easy
to convert somehow. I would think this would go in cordova-docs


On Mon, May 5, 2014 at 11:52 AM, Ray Camden  wrote:

> Ok - this feels like a kick ass document thanks to everyone who helped.
>
> To folks in charge: I'm more than willing to be responsible for this going
> forward, but what is the best way to get it off of my Google Doc and into
> your hands?
>
> FYI,I missed Mike's note below. Mike, I think I'm ok with the FastClick
> stuff, even w/ possible side issues. Do you want to take care of pushing it
> to the docs? (If it is just the right repo, then I can do a PR as well.)
>
>
> 
>
> The only thing really left to resolve is some details around recommending
> FastClick or not using touch events at all. We can let it simmer for a few
> more days, then I can push it into the docs (unless somebody else wants
> to.)
>
>
> On Fri, May 2, 2014 at 9:57 PM, Carlos Santana 
> wrote:
>


Re: [DISCUSS] Release 3.5.0

2014-05-05 Thread Shazron
For cleanup - don't forget https://issues.apache.org/jira/browse/CB-5932


On Wed, Mar 12, 2014 at 4:25 PM, Steven Gill  wrote:

> How are people feeling about doing a 3.5.0 release soon?
>


Re: Draft of Whitelist and Security Guide

2014-05-06 Thread Shazron
Thanks Mike, will look it over.

Regarding: https://issues.apache.org/jira/browse/CB-2179
How do we warn, is that just a doc issue or something in console.log?

There is a related issue: https://issues.apache.org/jira/browse/CB-5028 (I
was thinking an event that they can listen to, not sure)


On Tue, May 6, 2014 at 10:02 AM, Mike Billau  wrote:

> Hi everyone,
>
> After Ray's great work on the Next Steps article, I decided to finally
> start the Whitlist and Security Guide doc, located here:
>
>
> https://docs.google.com/document/d/13C6ZUZiqP83MQX0MvFlyVUZef-nT4cJwyd-qSvXLkK4/edit#
>
> This is an attempt to resolve CB-2179 and CB-5786, and will also be a good
> secondary place to put any security announcements, like those issues we had
> a few months ago.
>
> Please look it over, feel free to leave comments and suggestions. I will
> continue to iterate on it. I think for now it can be a standalone guide,
> but we might want to think about folding it into the Whitelist doc.
>
> Thanks,
> Mike
>


Re: github replication of cordova-lib

2014-05-06 Thread Shazron
Apparently re-opening the issue is clicking on the "WaitingForInfra" button:
https://issues.apache.org/jira/browse/INFRA-7596


On Tue, May 6, 2014 at 12:40 PM, Marcel Kinard  wrote:

> Although
> https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;a=summary has
> number of commits, https://github.com/apache/cordova-lib is empty. That
> makes pull requests difficult. ;-)
>
> Is there some config that needs to be performed by Infra or us? I'm not
> familiar with how the replication to github happens.
>
> Thanks!


Re: Accelerometer Build Issue

2014-05-10 Thread Shazron
Looks like CoreMotion.framework was not added. There is a bug in plugman
where this might happen - not sure if the patch landed in the new plugman
being released (Anis?)

On Saturday, May 10, 2014, Matt Lantz  wrote:

> Hey all, I’m trying to add the device-motion plugin via command line in
> OSX 10.9 and I’m using Xcode 5.1. It loads fine, but when I go to do the
> build I get the following error. I followed Shazron’s blog to set the
> details correctly. But I still get this error, any thoughts?
>
> Ld build/emulator/Clairebot.app/Clairebot normal i386
> cd /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios
> export IPHONEOS_DEPLOYMENT_TARGET=7.0
> export
> PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/opt/local/bin:/opt/local/sbin:/opt/local/bin:/opt/local/sbin:/Users/mlantz/.nvm/v0.10.18/bin:/Applications/MAMP/bin/php/php5.5.3/bin/:/Users/mlantz/pebble-dev/arm-cs-tools/bin:/opt/local/bin:/opt/local/sbin:/Users/mlantz/.rvm/gems/ruby-1.9.3-p194/bin:/Users/mlantz/.rvm/gems/ruby-1.9.3-p194@global/bin:/Users/mlantz/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/mlantz/.rvm/bin:/usr/local/bin:/usr/bin:/usr/local/lib:/Applications/MAMP/bin/php/php5.5.3/bin:/usr/local/php5/bin:/Users/mlantz/.composer/vendor/bin/:/Library/Frameworks/Python.framework/Versions/2.7/bin:/Developer/SDKs/Research
> In Motion/BlackBerry 10 WebWorks SDK
> 1.0.4.11/dependencies/tools/bin:/usr/local/mysql/bin:/Applications/MAMP/Library/bin:/Users/mlantz/Programming/devkit/bin:/Applications/MAMP/bin/ImageMagick/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/local/git/bin:/opt/ImageMagick/bin:/usr/local/MacGPG2/bin
> "
>
> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
> -arch i386 -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.1.sdk
> -L/Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator
> -F/Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator
> -filelist
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/Clairebot.build/Debug-iphonesimulator/Clairebot.build/Objects-normal/i386/Clairebot.LinkFileList
> -Xlinker -objc_abi_version -Xlinker 2 -weak_framework CoreFoundation
> -weak_framework UIKit -weak_framework AVFoundation -weak_framework
> CoreMedia -weak-lSystem -force_load
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator/libCordova.a
> -ObjC -fobjc-arc -fobjc-link-runtime -Xlinker -no_implicit_dylibs
> -mios-simulator-version-min=7.0 -framework AssetsLibrary
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator/libCordova.a
> -framework CoreGraphics -framework MobileCoreServices -framework
> CoreLocation -weak_framework AudioToolbox -Xlinker -dependency_info
> -Xlinker
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/Clairebot.build/Debug-iphonesimulator/Clairebot.build/Objects-normal/i386/Clairebot_dependency_info.dat
> -o
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator/Clairebot.app/Clairebot
> Undefined symbols for architecture i386:
>   "_OBJC_CLASS_$_CMMotionManager", referenced from:
>   objc-class-ref in CDVAccelerometer.o
> ld: symbol(s) not found for architecture i386
> clang: error: linker command failed with exit code 1 (use -v to see
> invocation)
>
> ** BUILD FAILED **
>
>
> The following build commands failed:
> Ld build/emulator/Clairebot.app/Clairebot normal i386
> (1 failure)
>
>
> Not too sure what is up with the i386 build failing, is this something I
> need to configure on my MacBook?
>
> Cheers,
>
> Matt Lantz


Re: Accelerometer Build Issue

2014-05-10 Thread Shazron
It's Sha"z"ron. Anis is another developer I was checking with, actually.
Check your Project Settings -> Build Phases -> Link Binary with Libraries.

I'm not sure if the change is in but you can try :
https://twitter.com/apachecordova/status/464911591561887745

On Saturday, May 10, 2014, Matt Lantz  wrote:

> Thanks Sharon, I'm confused cause it lists the coremotion in the
> directories and Xcode and I'm not sure what anis  is. Is it possible for me
> to update plugman via npm?
>
> Cheers,
>
> M. Lantz
>
> Via my mobile device
>
> > On May 10, 2014, at 9:06 PM, Shazron  wrote:
> >
> > Looks like CoreMotion.framework was not added. There is a bug in plugman
> > where this might happen - not sure if the patch landed in the new plugman
> > being released (Anis?)
> >
> >> On Saturday, May 10, 2014, Matt Lantz  wrote:
> >>
> >> Hey all, I’m trying to add the device-motion plugin via command line in
> >> OSX 10.9 and I’m using Xcode 5.1. It loads fine, but when I go to do the
> >> build I get the following error. I followed Shazron’s blog to set the
> >> details correctly. But I still get this error, any thoughts?
> >>
> >> Ld build/emulator/Clairebot.app/Clairebot normal i386
> >>cd /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios
> >>export IPHONEOS_DEPLOYMENT_TARGET=7.0
> >>export
> >>
> PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/opt/local/bin:/opt/local/sbin:/opt/local/bin:/opt/local/sbin:/Users/mlantz/.nvm/v0.10.18/bin:/Applications/MAMP/bin/php/php5.5.3/bin/:/Users/mlantz/pebble-dev/arm-cs-tools/bin:/opt/local/bin:/opt/local/sbin:/Users/mlantz/.rvm/gems/ruby-1.9.3-p194/bin:/Users/mlantz/.rvm/gems/ruby-1.9.3-p194@global
> /bin:/Users/mlantz/.rvm/rubies/ruby-1.9.3-p194/bin:/Users/mlantz/.rvm/bin:/usr/local/bin:/usr/bin:/usr/local/lib:/Applications/MAMP/bin/php/php5.5.3/bin:/usr/local/php5/bin:/Users/mlantz/.composer/vendor/bin/:/Library/Frameworks/Python.framework/Versions/2.7/bin:/Developer/SDKs/Research
> >> In Motion/BlackBerry 10 WebWorks SDK
> >>
> 1.0.4.11/dependencies/tools/bin:/usr/local/mysql/bin:/Applications/MAMP/Library/bin:/Users/mlantz/Programming/devkit/bin:/Applications/MAMP/bin/ImageMagick/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/local/git/bin:/opt/ImageMagick/bin:/usr/local/MacGPG2/bin
> >> "
> >>
> >>
> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
> >> -arch i386 -isysroot
> >>
> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.1.sdk
> >>
> -L/Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator
> >>
> -F/Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator
> >> -filelist
> >>
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/Clairebot.build/Debug-iphonesimulator/Clairebot.build/Objects-normal/i386/Clairebot.LinkFileList
> >> -Xlinker -objc_abi_version -Xlinker 2 -weak_framework CoreFoundation
> >> -weak_framework UIKit -weak_framework AVFoundation -weak_framework
> >> CoreMedia -weak-lSystem -force_load
> >>
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator/libCordova.a
> >> -ObjC -fobjc-arc -fobjc-link-runtime -Xlinker -no_implicit_dylibs
> >> -mios-simulator-version-min=7.0 -framework AssetsLibrary
> >>
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator/libCordova.a
> >> -framework CoreGraphics -framework MobileCoreServices -framework
> >> CoreLocation -weak_framework AudioToolbox -Xlinker -dependency_info
> >> -Xlinker
> >>
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/Clairebot.build/Debug-iphonesimulator/Clairebot.build/Objects-normal/i386/Clairebot_dependency_info.dat
> >> -o
> >>
> /Users/mlantz/Programming/PhoneGap/clairebot/platforms/ios/build/emulator/Clairebot.app/Clairebot
> >> Undefined symbols for architecture i386:
> >>  "_OBJC_CLASS_$_CMMotionManager", referenced from:
> >>  objc-class-ref in CDVAccelerometer.o
> >> ld: symbol(s)


Re: sans sudo on npm install

2014-05-11 Thread Shazron
The premise here is npm running sudo is dangerous. Here's what it does with
that power:
https://github.com/npm/npm/issues/294

Note that the issue was filed and closed _after_ this article was written,
so the article is actually stale:
http://howtonode.org/introduction-to-npm

In my opinion, sudo is fine based on @izs' npm issue explanation above.


On Sun, May 11, 2014 at 9:28 PM, Brian LeRoux  wrote:

> I object. This does not solve a problem Cordova has set out to solve but
> this does make installation unnecessarily harder. Linking those docs for
> those whom want to level up their Node, and shell, acumen seems reasonable.
> I'm not a Node.js expert, but the Linux person inside me says that using
> sudo to install and run things ought to be avoided if possible.
>
> Would there be objection if I changed cordova-docs to omit sudo from the
> npm install commands? And added references to some of these items below?
>
> http://howtonode.org/introduction-to-npm
>
> http://justjs.com/posts/npm-link-developing-your-own-npm-modules-without-tears
>
> https://issues.apache.org/jira/browse/CB-5320
>


[GitHub] cordova-mobile-spec pull request: CB-6669 Fix blackberry10 path

2014-05-12 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-mobile-spec/pull/63#issuecomment-42855386
  
BB devs, this is solely a problem in the createmobilespec.js which does not 
need a cordova-lib dependency, and although it might not be ideal, the whole 
script just relies on hard-coded paths -- the reason this is fine is because as 
discussed in the list we are all in the process of moving the tests off 
cordova-mobilespec into the plugin repos themselves. 

@martincgg you should add another comment to your issue -- the cordova-dev 
list gets emails whenever a pull request is updated and hopefully a dev will 
get to your issue. Let's keep the issues separate


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: Hangout Today?

2014-05-13 Thread Shazron
+1 Skip


On Tue, May 13, 2014 at 8:00 AM, Andrew Grieve  wrote:

> I won't be able to make it tonight. Unless someone else wants to start it
> up, we can just skip this month's.
>
>
> On Tue, May 13, 2014 at 9:18 AM, Marcel Kinard  wrote:
>
> > Although I find the hangouts incredibly useful, I’d suggest to reschedule
> > since there is no agenda.
> >
> > On May 13, 2014, at 8:11 AM, Michal Mocny  wrote:
> >
> > > I'm not sure that we have an agenda, and its pretty short notice.
> > >
> > > I'd be fine to reschedule.
> > >
> > >
> > > On Tue, May 13, 2014 at 7:04 AM, Wargo, John 
> wrote:
> > >
> > >> Is there still a hangout scheduled for today? I've not seen any emails
> > >> about it lately.
> > >>
> > >>
> >
> >
>


Re: Plugman support for Android libraries

2014-05-13 Thread Shazron
Makes sense. Before we lose track of this, best to file an issue:
http://issues.apache.org/jira/browse/CB

... so it can be tracked and evaluated by the devs, and you can be notified.

Sign up here:
https://issues.apache.org/jira/secure/Signup!default.jspa

Thanks!






On Thu, May 8, 2014 at 6:53 AM, Martin Bektchiev <
martin.bektch...@telerik.com> wrote:

> Hi guys,
>
> I want to ask you for ideas about how would it be best to solve an issue
> that I'm facing. Sometimes a plugin's implementation depends on a native
> library, but there's no easy way to embed it as a .jar file in Android if
> the library has resources. Let's take
> https://github.com/phonegap/phonegap-facebook-plugin and
> https://github.com/wildabeast/BarcodeScanner for example. The former one
> can't be automatically installed and requires manually adding the
> FacebookSDK library. While the latter one relies on a gross hack which
> copies the resource files to the Cordova application project and then
> dynamically finds their IDs instead of using the R.* class. This is far
> from optimal because it makes updating the underlying library a lot more
> difficult, adds a lot of overhead in the plugin.xml file, adds performance
> overhead at runtime for retrieving the IDs and most importantly doesn't
> always work (e.g. the plugin installation will fail if the app itself
> contains a res/values/colors.xml file).
>
> Instead of these approaches it would be much better if plugman was capable
> of adding library references itself. How do you think that this should be
> implemented? Is it a good idea to use the framework tag? Should the
> implementation depend on calling "android update project" or would it be
> better to directly edit the project.properties file?
>
> Any ideas and suggestions will be more than welcome! Looking forward to
> your thoughts!
>
> Best regards,
> Martin Bektchiev
>


Apache mails

2014-05-15 Thread Shazron
Not sure if everyone saw this:
https://blogs.apache.org/infra/entry/mail_outage

This is why there has not been ML activity since yesterday afternoon and
earlier today


[GitHub] cordova-plugin-file pull request: Fix getFreeDiskSpace on iOS to r...

2014-05-16 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-plugin-file/pull/45#issuecomment-43275582
  
I'm not sure if we use this anymore, since it does not have a corresponding 
.js interface. How are you calling this?

Filed: https://issues.apache.org/jira/browse/CB-6703


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: Test.

2014-05-16 Thread Shazron
7 days ago - finally arrived, congrats


On Thu, May 8, 2014 at 7:03 AM, Michal Mocny  wrote:

>
>


Re: Nomination for a new chair for Apache Cordova

2014-05-16 Thread Shazron
Thanks Sam,
Over the past week everything that can be done by a non-chair PMC member
has been done - including sending the resolution, adding users to the
committee-info.txt (I've sent details to private@). The LDAP tasks have
been noted as a todo that needs to be done once/if I get the blessing and
karma from the Board for the changeover.


On Wed, May 7, 2014 at 4:40 PM, Sam Ruby  wrote:

> On Thu, 1 May 2014 10:18:43 -0700, Shazron  wrote:
>
>> Thanks for all you've done Brian! Also thank you for all the confidence
>> and
>> acclaim everyone that has chimed in. I'll try to do my best for the
>> project
>> and for Apache -- to dot the i's and cross all the t's (assuming the
>> Apache
>> Board approves of course).
>>
>
> The first i to dot or t to cross would be to send a resolution for the
> board to consider, per:
>
> http://www.apache.org/dev/pmc.html#newchair
>
> To help keep things moving, I've taken the liberty of creating one for you:
>
>  A. Change the Apache Cordova Project Chair
>>
>>WHEREAS, the Board of Directors heretofore appointed Brian LeRoux
>> to
>>the office of Vice President, Apache Cordova, and
>>
>>WHEREAS, the Board of Directors is in receipt of the resignation of
>>Brian LeRoux from the office of Vice President, Apache Cordova, and
>>
>>WHEREAS, the Project Management Committee of the Apache Cordova
>> project
>>has chosen by vote to recommend Shazron Abdullah as the successor
>> to
>>the post;
>>
>>NOW, THEREFORE, BE IT RESOLVED, that Brian LeRoux is relieved and
>>discharged from the duties and responsibilities of the office of
>> Vice
>>President, Apache Cordova, and
>>
>>BE IT FURTHER RESOLVED, that Shazron Abdullah be and hereby is
>>appointed to the office of Vice President, Apache Cordova, to
>> serve in
>>accordance with and subject to the direction of the Board of
>> Directors
>>and the Bylaws of the Foundation until death, resignation,
>> retirement,
>>removal or disqualification, or until a successor is appointed.
>>
>
> Let me know if this is not what the PMC wishes.
>
> - Sam Ruby
>
> P.S.  I encourage you to familiarize yourself with the process of adding
> members to the PMC, as there is a considerable backlog of additions that
> have not yet been processed:
>
> http://www.apache.org/dev/pmc.html#newpmc
>


[GitHub] cordova-plugin-file pull request: Fix getFreeDiskSpace on iOS to r...

2014-05-16 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-plugin-file/pull/45#issuecomment-43355107
  
Hi @ebrehault - I invite you to comment on the actual JIRA issue I linked 
above. @clelland has commented more on this


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: Nomination for a new chair for Apache Cordova

2014-05-16 Thread Shazron
marcelk should be in the pmc list now. I believe it didn't work before but
it appears to work now (I saw how Brian ran the commands):
> modify_committee.pl cordova --add=marcelk

Do the names have to be in the board/committee_info.txt before running the
ldap perl scripts? (is there a dependency somehow)


On Fri, May 16, 2014 at 2:49 PM, sebb  wrote:

> On 16 May 2014 21:36, Brian LeRoux  wrote:
> > The LDAP tasks have been run and I was getting a weird cron email…for a
> > while but no longer. I suspect there may have been an issue around
> > heartbleed and/or mail woe.
> >
> > Anyhow, maybe running the scripts again will work.
>
> What command did you use exactly?
>
> I have just checked the LDAP committee list for Cordova (see below)
> and it does not contain the following:
>
> bennmapes cguiraud csantanapr drkemp jeffheifetz jsoref kamrik ldeluca
> marcelk mrbillau naika pplaquette rmerlino sierra
>
> pwd ~ : list_committee.pl cordova
> abub
> agrieve
> anis
> bcurtis
> becka11y
> bhiggins
> bowserj
> braden
> brianleroux
> deedubbu
> devgeeks
> dkormalev
> doc
> don
> filmaj
> goya
> gtanner
> hermwong
> ian
> jamesjong
> jtyberg
> jukka
> longwei
> lorinbeer
> macdonst
> maxw
> mmocny
> mwbrooks
> pmuellr
> purplecabbage
> sgrebnov
> shazron
> steven
> timkim
> tranter
> viras
> wildabeast
> yohei
>
> >
> > On Fri, May 16, 2014 at 10:07 AM, Shazron  wrote:
> >
> >> Thanks Sam,
> >> Over the past week everything that can be done by a non-chair PMC member
> >> has been done - including sending the resolution, adding users to the
> >> committee-info.txt (I've sent details to private@). The LDAP tasks have
> >> been noted as a todo that needs to be done once/if I get the blessing
> and
> >> karma from the Board for the changeover.
> >>
> >>
> >> On Wed, May 7, 2014 at 4:40 PM, Sam Ruby 
> wrote:
> >>
> >> > On Thu, 1 May 2014 10:18:43 -0700, Shazron  wrote:
> >> >
> >> >> Thanks for all you've done Brian! Also thank you for all the
> confidence
> >> >> and
> >> >> acclaim everyone that has chimed in. I'll try to do my best for the
> >> >> project
> >> >> and for Apache -- to dot the i's and cross all the t's (assuming the
> >> >> Apache
> >> >> Board approves of course).
> >> >>
> >> >
> >> > The first i to dot or t to cross would be to send a resolution for the
> >> > board to consider, per:
> >> >
> >> > http://www.apache.org/dev/pmc.html#newchair
> >> >
> >> > To help keep things moving, I've taken the liberty of creating one for
> >> you:
> >> >
> >> >  A. Change the Apache Cordova Project Chair
> >> >>
> >> >>WHEREAS, the Board of Directors heretofore appointed Brian
> LeRoux
> >> >> to
> >> >>the office of Vice President, Apache Cordova, and
> >> >>
> >> >>WHEREAS, the Board of Directors is in receipt of the
> resignation
> >> of
> >> >>Brian LeRoux from the office of Vice President, Apache
> Cordova,
> >> and
> >> >>
> >> >>WHEREAS, the Project Management Committee of the Apache
> Cordova
> >> >> project
> >> >>has chosen by vote to recommend Shazron Abdullah as the
> successor
> >> >> to
> >> >>the post;
> >> >>
> >> >>NOW, THEREFORE, BE IT RESOLVED, that Brian LeRoux is relieved
> and
> >> >>discharged from the duties and responsibilities of the office
> of
> >> >> Vice
> >> >>President, Apache Cordova, and
> >> >>
> >> >>BE IT FURTHER RESOLVED, that Shazron Abdullah be and hereby is
> >> >>appointed to the office of Vice President, Apache Cordova, to
> >> >> serve in
> >> >>accordance with and subject to the direction of the Board of
> >> >> Directors
> >> >>and the Bylaws of the Foundation until death, resignation,
> >> >> retirement,
> >> >>removal or disqualification, or until a successor is
> appointed.
> >> >>
> >> >
> >> > Let me know if this is not what the PMC wishes.
> >> >
> >> > - Sam Ruby
> >> >
> >> > P.S.  I encourage you to familiarize yourself with the process of
> adding
> >> > members to the PMC, as there is a considerable backlog of additions
> that
> >> > have not yet been processed:
> >> >
> >> > http://www.apache.org/dev/pmc.html#newpmc
> >> >
> >>
>


[GitHub] cordova-osx pull request: enhancements to the cordova-osx

2014-05-20 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-osx/pull/9#issuecomment-43596586
  
Apache projects on Github are not under the control of the committers. 
Issues are to be reported in JIRA, see 
https://github.com/apache/cordova-osx/blob/master/CONTRIBUTING.md and you can 
subscribe to the cordova-dev mailing list as well.

PRs are to be submitted through Github still. All committers get an email 
notification on the cordova-dev mailing list regarding all pull requests.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: [Vote] 3.5.0 iOS Release

2014-05-20 Thread Shazron
+1 verified archive using coho.
Verified tag sha, and zip contents identical to repo contents at that tag.
When I initially tagged iOS, all tests were passing in mob-spec, but now
the battery-status plugin is failing 1 test (battery.spec.4)


On Thu, May 15, 2014 at 10:36 AM, Ian Clelland wrote:

> +1: Verified archive, confirmed match to repo@3.5.0. Ran tests on iOS
> 7.0.6, 7.1.1. (Enough tests to ensure that the platform is functioning. CI
> is red because of battery-status plugin.)
>
>
> On Wed, May 14, 2014 at 4:12 PM, Steven Gill 
> wrote:
>
> > Please review and vote on this 3.5.0 iOS Release.
> >
> > Release issue: https://issues.apache.org/jira/browse/CB-6586
> >
> > Repos ready to be released have been published to dist/dev:
> > https://dist.apache.org/repos/dist/dev/cordova/CB-6586/final
> >
> > The package was published from the corresponding git tag:
> > cordova-ios: 3.5.0 (643886ba8b)
> >
> > Upon a successful vote I will upload the archives to dist/, publish them
> to
> > NPM, and post the corresponding blog post.
> >
> > Voting guidelines:
> >
> https://github.com/apache/cordova-coho/blob/master/docs/release-voting.md
> >
> > Voting will go on for a minimum of 48 hours.
> >
> > I vote +1:
> > * Verified archive
> > * Ensured continuous build was green when repos were tagged
> >
>


Re: [Vote] 3.5.0 iOS Release

2014-05-20 Thread Shazron
Filed: https://issues.apache.org/jira/browse/CB-6721

Battery (navigator.battery) battery.spec.4 should fire batterycritical
events.
timeout: timed out after 100 msec waiting for batterycritical onEvent was
not called when level goes from 19->5


On Tue, May 20, 2014 at 2:01 AM, Shazron  wrote:

> +1 verified archive using coho.
> Verified tag sha, and zip contents identical to repo contents at that tag.
> When I initially tagged iOS, all tests were passing in mob-spec, but now
> the battery-status plugin is failing 1 test (battery.spec.4)
>
>
> On Thu, May 15, 2014 at 10:36 AM, Ian Clelland wrote:
>
>> +1: Verified archive, confirmed match to repo@3.5.0. Ran tests on iOS
>> 7.0.6, 7.1.1. (Enough tests to ensure that the platform is functioning. CI
>> is red because of battery-status plugin.)
>>
>>
>> On Wed, May 14, 2014 at 4:12 PM, Steven Gill 
>> wrote:
>>
>> > Please review and vote on this 3.5.0 iOS Release.
>> >
>> > Release issue: https://issues.apache.org/jira/browse/CB-6586
>> >
>> > Repos ready to be released have been published to dist/dev:
>> > https://dist.apache.org/repos/dist/dev/cordova/CB-6586/final
>> >
>> > The package was published from the corresponding git tag:
>> > cordova-ios: 3.5.0 (643886ba8b)
>> >
>> > Upon a successful vote I will upload the archives to dist/, publish
>> them to
>> > NPM, and post the corresponding blog post.
>> >
>> > Voting guidelines:
>> >
>> https://github.com/apache/cordova-coho/blob/master/docs/release-voting.md
>> >
>> > Voting will go on for a minimum of 48 hours.
>> >
>> > I vote +1:
>> > * Verified archive
>> > * Ensured continuous build was green when repos were tagged
>> >
>>
>
>


Re: [Vote] 3.5.0 iOS Release

2014-05-20 Thread Shazron
It is already using the latest battery-status-plugin code, I verified -
still fails. See https://issues.apache.org/jira/browse/CB-6721 on why its
failing.


On Tue, May 20, 2014 at 8:24 AM, purplecabbage wrote:

> And it's just a new test. There were NO tests before. Update/repub the
> battery plugin and the test will pass.
>
> Sent from my iPhone
>
> > On May 20, 2014, at 8:12 AM, Ian Clelland 
> wrote:
> >
> > Yep. It's just in the battery-status plugin.
> >
> >
> > On Tue, May 20, 2014 at 11:08 AM, Steven Gill  >wrote:
> >
> >> Is this a plugin issue or platform issue? Looks like a plugin one.
> >> Filed: https://issues.apache.org/jira/browse/CB-6721
> >>
> >> Battery (navigator.battery) battery.spec.4 should fire batterycritical
> >> events.
> >> timeout: timed out after 100 msec waiting for batterycritical onEvent
> was
> >> not called when level goes from 19->5
> >>
> >>
> >>> On Tue, May 20, 2014 at 2:01 AM, Shazron  wrote:
> >>>
> >>> +1 verified archive using coho.
> >>> Verified tag sha, and zip contents identical to repo contents at that
> >> tag.
> >>> When I initially tagged iOS, all tests were passing in mob-spec, but
> now
> >>> the battery-status plugin is failing 1 test (battery.spec.4)
> >>>
> >>>
> >>> On Thu, May 15, 2014 at 10:36 AM, Ian Clelland  >>> wrote:
> >>>
> >>>> +1: Verified archive, confirmed match to repo@3.5.0. Ran tests on iOS
> >>>> 7.0.6, 7.1.1. (Enough tests to ensure that the platform is
> functioning.
> >> CI
> >>>> is red because of battery-status plugin.)
> >>>>
> >>>>
> >>>> On Wed, May 14, 2014 at 4:12 PM, Steven Gill 
> >>>> wrote:
> >>>>
> >>>>> Please review and vote on this 3.5.0 iOS Release.
> >>>>>
> >>>>> Release issue: https://issues.apache.org/jira/browse/CB-6586
> >>>>>
> >>>>> Repos ready to be released have been published to dist/dev:
> >>>>> https://dist.apache.org/repos/dist/dev/cordova/CB-6586/final
> >>>>>
> >>>>> The package was published from the corresponding git tag:
> >>>>> cordova-ios: 3.5.0 (643886ba8b)
> >>>>>
> >>>>> Upon a successful vote I will upload the archives to dist/, publish
> >>>> them to
> >>>>> NPM, and post the corresponding blog post.
> >>>>>
> >>>>> Voting guidelines:
> >>
> https://github.com/apache/cordova-coho/blob/master/docs/release-voting.md
> >>>>>
> >>>>> Voting will go on for a minimum of 48 hours.
> >>>>>
> >>>>> I vote +1:
> >>>>> * Verified archive
> >>>>> * Ensured continuous build was green when repos were tagged
> >>
>


Re: 3.5.0 blog post review

2014-05-21 Thread Shazron
Carlos, elaborated on the arm64 support:
https://github.com/cordova/apache-blog-posts/pull/4


On Tue, May 20, 2014 at 2:23 PM, Carlos Santana wrote:

> This line looks vague and confusing "CB-4863 - Drop iOS 5.0 support, and
> support arm64"
> Could someone with more knowledge about the impact and what it means to
> have 32 and 64&32 for ios7 put more details?
>
> Also Steve I like the setup on github,
> I did something similar long time ago if you are interested I can updated
> and make it current, of you can just fork it from my repo into
> apache-blog-posts.
> drop .md here:
> https://github.com/csantanapr/cordova-blog/tree/gh-pages/_posts and
> preview
> here: http://csantanapr.github.io/cordova-blog/#news
>
> Basically same thing you have, just it allows you to fully preview the blog
> entries showing how they would look on final stage on the blog.
>
> Very cool script and name linkify-bugs.sh Andrew
>
>
>
>
> On Tue, May 20, 2014 at 4:28 PM, Steven Gill 
> wrote:
>
> > wow I didn't even know about that! thanks!
> >
> >
> > On Tue, May 20, 2014 at 1:20 PM, Andrew Grieve 
> > wrote:
> >
> > > Nice. Post looks good, and I think checking into github is a nice flow.
> > >
> > > Be sure to run cordova-website/www/_posts/linkify-bugs.sh so that the
> > > CB-*** turn into links.
> > >
> > >
> > > On Mon, May 19, 2014 at 7:09 PM, Steven Gill 
> > > wrote:
> > >
> > > > Hey Everyone,
> > > >
> > > > You can find the 3.5.0 blog post draft at
> > > >
> > > >
> > >
> >
> https://github.com/cordova/apache-blog-posts/blob/master/2014-05-20-cordova-350.md
> > > > .
> > > >
> > > > I thought I would try something new out in terms of composing blog
> > posts.
> > > >
> > > > I have copied over all of our blog posts to
> > > > https://github.com/cordova/apache-blog-posts. I figured this is a
> good
> > > > place to preview and make quick edits.
> > > >
> > > > Anyone who wants to edit can send a PR or ask me to add them to the
> > repo
> > > > (commiters only). I wouldn't mind getting some help to add more to
> the
> > > most
> > > > notable changes section of the post.
> > > >
> > > > If people like this setup, I can write up a grunt task in the cordova
> > > > website repo that will copy the blog posts into the site.
> > > >
> > > > Let me know!
> > > >
> > >
> >
>
>
>
> --
> Carlos Santana
> 
>


Re: Speculation: Apple supports WebGL in UIWebView, soon

2014-05-22 Thread Shazron
About time!


On Thu, May 22, 2014 at 8:14 AM, Ian Clelland wrote:

> The reasoning is a little thin, but it's an interesting possibility:
> http://blog.playcanvas.com/apple-embraces-webgl/
>


Re: Issue building docs :(

2014-05-24 Thread Shazron
Tagged 3.5.0 docs and I managed to build cordova-docs/bin/generate.
Let me know what you want me to do now -- I have to step out but I can do
it later (I'm sure there are docs somewhere, I'll find them as well)


On Fri, May 23, 2014 at 5:08 PM, Steven Gill  wrote:

> Docs aren't building for me. I've been trying to debug but it ain't looking
> pretty.
>
> Pretty much everything else for the release is ready to go and live.
>
> Things done
> Release is live on dist
> NPM has latest version of cordova set to default (3.5.0-0.2.4)
> Site has been updated
> blog has been published
>
> Things left
> - Update docs
> - Publish platforms to npm + plugman
> - Announce
> - ???
> - Profit
>
> I have to step away for a bit, if someone else has a chance to look at
> docs, great. If not, I will try again later tonight/tomorrow. I am going to
> save announcing it until the docs situation is sorted.
>
> -Steve
>


Re: Issue building docs :(

2014-05-24 Thread Shazron
Docs uploaded.


On Sat, May 24, 2014 at 9:50 AM, Shazron  wrote:

> Tagged 3.5.0 docs and I managed to build cordova-docs/bin/generate.
> Let me know what you want me to do now -- I have to step out but I can do
> it later (I'm sure there are docs somewhere, I'll find them as well)
>
>
> On Fri, May 23, 2014 at 5:08 PM, Steven Gill wrote:
>
>> Docs aren't building for me. I've been trying to debug but it ain't
>> looking
>> pretty.
>>
>> Pretty much everything else for the release is ready to go and live.
>>
>> Things done
>> Release is live on dist
>> NPM has latest version of cordova set to default (3.5.0-0.2.4)
>> Site has been updated
>> blog has been published
>>
>> Things left
>> - Update docs
>> - Publish platforms to npm + plugman
>> - Announce
>> - ???
>> - Profit
>>
>> I have to step away for a bit, if someone else has a chance to look at
>> docs, great. If not, I will try again later tonight/tomorrow. I am going
>> to
>> save announcing it until the docs situation is sorted.
>>
>> -Steve
>>
>
>


Re: Broken links in cordova.apache.org

2014-05-24 Thread Shazron
Yes we were aware. There were some issues with generating docs - the docs
have been uploaded now.


On Sat, May 24, 2014 at 1:46 AM, Juan Matías  wrote:

> First apologies, maybe this is not the right place, I tried
> iss...@cordova.apache.org but the email wasn't able to deliver.
>
> I was trying to access the documentation link in the webpage:
>
> http://cordova.apache.org/docs/en/3.5.0/
>
> And I get a Not Found error. Are you aware of this?
>
> Also in the Download & Archives the link "Command-Line Interface" is
> broken.
>
> Regards.
>
> --
> Matías
>


Unpublishing org.apache.cordova.keyboard from the registry

2014-05-27 Thread Shazron
I want to unpublish:
http://plugins.cordova.io/#/package/org.apache.cordova.keyboard

The namespace has been changed anyway to org.apache.cordova.labs.keyboard.

Also, the release of this plugin has not been voted on, so it should not be
"released", nor do I think it should be voted on (labs and all that
implies). If it is not an official release, according to Apache policy I
believe we should not even reference this in any of the official
documentation and website (I don't think it is).

Users can still choose to install it by referencing the git url with
#master:keyboard.


Releasing 3.5.0 in JIRA - prepare for email flood EOM

2014-05-27 Thread Shazron



[GitHub] cordova-plugin-statusbar pull request: added StatusBarStyle config...

2014-05-27 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-statusbar/pull/8#issuecomment-44341503
  
This PR has too many commits in it. Please re-submit with only the one 
commit: 
https://github.com/pelish8/cordova-plugin-statusbar/commit/bc92d8602cf37a1bf8fa55327034e6041826f70f

(rebase, cherry-pick etc)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-file-transfer pull request: [CB-6202] [WP8] Upload ...

2014-05-27 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-file-transfer/pull/23#issuecomment-44341688
  
ping @purplecabbage


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-file pull request: Update Metadata.js

2014-05-28 Thread shazron
Github user shazron commented on the pull request:

https://github.com/apache/cordova-plugin-file/pull/39#issuecomment-44431873
  
Hmm File.js represents the File interface in the File API spec: 
http://www.w3.org/TR/FileAPI/#file and it does specify lastModifiedDate, which 
is correct.

FileEntry.file is correct, it should return a File object, so that's fine 
-- but it has a bug in it in how it constructs the File object. Since it is 
calling the getMetadata function, the call to get the date should be 
f.modificationTime instead of f.lastModifiedDate (since the returned object to 
the successcallback is a Metadata object): 
https://github.com/apache/cordova-plugin-file/blob/767e2c5919ad92e5c94c1b06f19a21b90d8277f1/www/FileEntry.js#L71




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: Build Cordova apps in VIsual Studio for iOS, Android, WP8 and Windows Store

2014-05-28 Thread Shazron
Josh, I believe all Apache Committers get a complimentary subscription to
MSDN, if that's a barrier.
Login required:
https://svn.apache.org/repos/private/committers/donated-licenses/msdn-subscription.html

On Wed, May 28, 2014 at 8:23 AM, Josh Soref  wrote:

> Parashuram wrote:
> > At the moment, this is supported only in Pro, Premium and Ultimate but
> >not is express.
> > Is that a blocker for you?
> > I could take your feedback to the Visual Studio team at Microsoft.
>
> It's a problem for a number of us.
>
> I'd love to use it/give feedback, but I'm not I a position to get anything
> other than Express.
>
>


Re: Android Plugin API

2014-05-28 Thread Shazron
https://github.com/apache/cordova-ios/blob/50ca482c8e861c1aa480dadba726b1abbacbc0e1/CordovaLib/Classes/CDVCommandQueue.m#L193-L198


On Wed, May 28, 2014 at 12:05 PM, Erik Jan de Wit  wrote:

>
> >
> > I don't know, it very much could be.  It could be that this makes sense
> in
> > Obj-C but not in Java based on how they handle NoSuchMethod.  I'd prefer
> to
> > not have to rely on an exception being caught, especially since it could
> > suppress other exceptions being thrown that I want to know about.
>
> Sending a message (calling a method) in object-c for a method that doesn’t
> exist will also throw an exception, I haven’t looked at the implementation
> but I would suspect that there is a test to see if the method (selector) is
> there.
>
> >
> > Also, I'm assuming the exception is NoSuchMethod, which isn't a safe
> > assumption given that each device has their own quirks and this isn't
> > guaranteed.
>
> One could just lookup if the method exist and not just try to invoke it
> and wait for the NoSuchMethod. That way one could make the error handling
> nicer, for example:
>
> You have a method called ‘myAction’ but it does not have the proper method
> signature! Found public void myAction() but should be pubic PluginResult
> myAction(JSONArray, CallbackContext)
>
>


Unknown "committer"

2014-05-28 Thread Shazron
https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;a=commit;h=b128ad7c6dcf0061c8616ba3e145c07faeaa8e02

Rowell Cruz, from BlackBerry. He has a listed CLA but is definitely not an
Apache Cordova committer. Can someone at Blackberry shed some light on this?

I was triaging issues and came to this issue:
https://issues.apache.org/jira/browse/CB-6730
and wanted to see who pulled this in, but both author and committer are the
same. The committer field should be only a Cordova PMC voted committer.


Re: Unknown "committer"

2014-05-28 Thread Shazron
Yeah mystery solved:
http://apache.markmail.org/thread/zxrdc25iaq4g7bu7

I usually add a ".patch" to the Github PR url and download then apply the
patch (after review of course) then do a signoff when applying the patch
(git am --signoff ...)


On Wed, May 28, 2014 at 4:55 PM, Joe Bowser  wrote:

> I'm pretty sure this is more of a git issue than anything else:
>
> I found an unknown committer in Cordova-Android:
>
> https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;a=commit;h=11fc6be32871c3e6ce5159d34c99665cd7d05de5
>
> It would be good to know how this commit wound up in here, since I
> would rather blame a bad git merge.  I'm not going to roll anything
> back because of this trivial commit.
>
> On Wed, May 28, 2014 at 4:20 PM, Shazron  wrote:
> >
> https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;a=commit;h=b128ad7c6dcf0061c8616ba3e145c07faeaa8e02
> >
> > Rowell Cruz, from BlackBerry. He has a listed CLA but is definitely not
> an
> > Apache Cordova committer. Can someone at Blackberry shed some light on
> this?
> >
> > I was triaging issues and came to this issue:
> > https://issues.apache.org/jira/browse/CB-6730
> > and wanted to see who pulled this in, but both author and committer are
> the
> > same. The committer field should be only a Cordova PMC voted committer.
>


Re: Unknown "committer"

2014-05-28 Thread Shazron
http://apache.markmail.org/thread/msim6zib75ppy2c4


On Wed, May 28, 2014 at 4:55 PM, Joe Bowser  wrote:

> I'm pretty sure this is more of a git issue than anything else:
>
> I found an unknown committer in Cordova-Android:
>
> https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;a=commit;h=11fc6be32871c3e6ce5159d34c99665cd7d05de5
>
> It would be good to know how this commit wound up in here, since I
> would rather blame a bad git merge.  I'm not going to roll anything
> back because of this trivial commit.
>
> On Wed, May 28, 2014 at 4:20 PM, Shazron  wrote:
> >
> https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;a=commit;h=b128ad7c6dcf0061c8616ba3e145c07faeaa8e02
> >
> > Rowell Cruz, from BlackBerry. He has a listed CLA but is definitely not
> an
> > Apache Cordova committer. Can someone at Blackberry shed some light on
> this?
> >
> > I was triaging issues and came to this issue:
> > https://issues.apache.org/jira/browse/CB-6730
> > and wanted to see who pulled this in, but both author and committer are
> the
> > same. The committer field should be only a Cordova PMC voted committer.
>


Re: Unknown "committer"

2014-05-28 Thread Shazron
I think its fine as long as it's traceable who did the actual commit


On Wed, May 28, 2014 at 5:15 PM, Michal Mocny  wrote:

> ..both the git am --signoff and the git merge --no-ff option ends up with
> committer: and author: metadata that are not cordova committers.  I think
> that should be fine so long as its clear which committer did the signoff /
> merge -- but wanted to confirm?
>
>
> On Wed, May 28, 2014 at 8:11 PM, Shazron  wrote:
>
> > Yeah mystery solved:
> > http://apache.markmail.org/thread/zxrdc25iaq4g7bu7
> >
> > I usually add a ".patch" to the Github PR url and download then apply the
> > patch (after review of course) then do a signoff when applying the patch
> > (git am --signoff ...)
> >
> >
> > On Wed, May 28, 2014 at 4:55 PM, Joe Bowser  wrote:
> >
> > > I'm pretty sure this is more of a git issue than anything else:
> > >
> > > I found an unknown committer in Cordova-Android:
> > >
> > >
> >
> https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;a=commit;h=11fc6be32871c3e6ce5159d34c99665cd7d05de5
> > >
> > > It would be good to know how this commit wound up in here, since I
> > > would rather blame a bad git merge.  I'm not going to roll anything
> > > back because of this trivial commit.
> > >
> > > On Wed, May 28, 2014 at 4:20 PM, Shazron  wrote:
> > > >
> > >
> >
> https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;a=commit;h=b128ad7c6dcf0061c8616ba3e145c07faeaa8e02
> > > >
> > > > Rowell Cruz, from BlackBerry. He has a listed CLA but is definitely
> not
> > > an
> > > > Apache Cordova committer. Can someone at Blackberry shed some light
> on
> > > this?
> > > >
> > > > I was triaging issues and came to this issue:
> > > > https://issues.apache.org/jira/browse/CB-6730
> > > > and wanted to see who pulled this in, but both author and committer
> are
> > > the
> > > > same. The committer field should be only a Cordova PMC voted
> committer.
> > >
> >
>


Re: Unknown "committer"

2014-05-28 Thread Shazron
It's super convenient if all pulled commits had sign offs for quick
verification, but of course we have comm...@cordova.apache.org ML as a
backup if we really need to dig down...


On Wed, May 28, 2014 at 5:43 PM, Andrew Grieve  wrote:

> The guidance for how to do pull requests is here:
>
> https://github.com/apache/cordova-coho/blob/master/docs/processing-pull-requests.md
>
> Sounds like it should be updated to include --sign-off or --no-ff or both?
>
>
> On Wed, May 28, 2014 at 8:23 PM, Steven Gill 
> wrote:
>
> > I use coho to manage PRs. Not sure if it handles this use case.
> >
> > ./coho list-pulls -r repoName
> >
> > If commits exist, coho outputs something like
> >
> >
> ---
> > stevengill: Update tools-release-process.md (stevengill 3 days ago)
> >
> >
> ---
> > * https://github.com/apache/cordova-coho/pull/25
> > To merge: git pull https://github.com/stevengill/cordova-coho.gitpatch-8
> >
> > I then either review on github or paste & run that merge command in the
> > repo and review it locally. I push to master if everything looks good.
> >
> > Not sure if this is the best way to do it.
> >
> > Any suggestions on a optimal workflow for this would be appreciated.
> >
> >
> > On Wed, May 28, 2014 at 5:17 PM, Shazron  wrote:
> >
> > > I think its fine as long as it's traceable who did the actual commit
> > >
> > >
> > > On Wed, May 28, 2014 at 5:15 PM, Michal Mocny 
> > wrote:
> > >
> > > > ..both the git am --signoff and the git merge --no-ff option ends up
> > with
> > > > committer: and author: metadata that are not cordova committers.  I
> > think
> > > > that should be fine so long as its clear which committer did the
> > signoff
> > > /
> > > > merge -- but wanted to confirm?
> > > >
> > > >
> > > > On Wed, May 28, 2014 at 8:11 PM, Shazron  wrote:
> > > >
> > > > > Yeah mystery solved:
> > > > > http://apache.markmail.org/thread/zxrdc25iaq4g7bu7
> > > > >
> > > > > I usually add a ".patch" to the Github PR url and download then
> apply
> > > the
> > > > > patch (after review of course) then do a signoff when applying the
> > > patch
> > > > > (git am --signoff ...)
> > > > >
> > > > >
> > > > > On Wed, May 28, 2014 at 4:55 PM, Joe Bowser 
> > wrote:
> > > > >
> > > > > > I'm pretty sure this is more of a git issue than anything else:
> > > > > >
> > > > > > I found an unknown committer in Cordova-Android:
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;a=commit;h=11fc6be32871c3e6ce5159d34c99665cd7d05de5
> > > > > >
> > > > > > It would be good to know how this commit wound up in here, since
> I
> > > > > > would rather blame a bad git merge.  I'm not going to roll
> anything
> > > > > > back because of this trivial commit.
> > > > > >
> > > > > > On Wed, May 28, 2014 at 4:20 PM, Shazron 
> > wrote:
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;a=commit;h=b128ad7c6dcf0061c8616ba3e145c07faeaa8e02
> > > > > > >
> > > > > > > Rowell Cruz, from BlackBerry. He has a listed CLA but is
> > definitely
> > > > not
> > > > > > an
> > > > > > > Apache Cordova committer. Can someone at Blackberry shed some
> > light
> > > > on
> > > > > > this?
> > > > > > >
> > > > > > > I was triaging issues and came to this issue:
> > > > > > > https://issues.apache.org/jira/browse/CB-6730
> > > > > > > and wanted to see who pulled this in, but both author and
> > committer
> > > > are
> > > > > > the
> > > > > > > same. The committer field should be only a Cordova PMC voted
> > > > committer.
> > > > > >
> > > > >
> > > >
> > >
> >
>


Release Notes

2014-05-29 Thread Shazron
This was here before the upgrade, but I'm wondering if we can use it for
release blog posts (maybe just a link to it) - it's not divided by
component however, even has HTML output for copy and paste. This of course
requires issue resolution to have the right "Fix Version".

https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:changelog-panel

3.5.0 Release Notes:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12312420&version=12325861


Re: iOS emulate targets

2014-05-29 Thread Shazron
Hi,
I help maintain ios-sim. Correct, the latest 64bit support has not been
published on npm. Filed an issue:
https://github.com/phonegap/ios-sim/issues/89
I also filed the Cordova issue:
https://issues.apache.org/jira/browse/CB-6782

Shaz


On Thu, May 29, 2014 at 7:46 AM, Paul Devine  wrote:

> Hello
>
> I am a developer on the Visual Studio Multi-Device Hybrid Apps project. We
> have some known bugs around the iOS targets a user can emulate their app in
> the iOS Simulator.   From what I can tell, within the last couple of months
> ios-sim has added support for 64 bit targets and fixed iPad Retina
> (although not yet published to npm.)  So I am wondering if there are plans
> to synch-up cordova-ios scripts with new ios-sim targets?
>
> Thanks
> - Paul Devine
>
>


[GitHub] cordova-plugin-statusbar pull request: added StatusBarStyle config...

2014-05-29 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-statusbar/pull/9#issuecomment-44587513
  
Hmm a lot of whitespace changes - we'll let it go this time :)
Reviewers: to see the diffs without whitespace changes see 
https://github.com/pelish8/cordova-plugin-statusbar/commit/a83cf8b17c0e0f89496eaeadcbaaf8853cc2e9c6?w=1


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-statusbar pull request: added StatusBarStyle config...

2014-05-29 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-statusbar/pull/8#issuecomment-44591476
  
Since you resubmitted as #9, please close this PR.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-statusbar pull request: added StatusBarStyle config...

2014-05-29 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-statusbar/pull/9#issuecomment-44591865
  
CB-6783


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cordova-plugin-statusbar pull request: added StatusBarStyle config...

2014-05-29 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-statusbar/pull/9#issuecomment-44592280
  
I didn't see you listed as someone that has already signed the Apache iCLA. 
We will need one before this is pulled in - see 
https://github.com/apache/cordova-plugin-statusbar/blob/master/CONTRIBUTING.md


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Header licenses

2014-05-29 Thread Shazron
Filed an issue with sub-tasks for header license issues:
https://issues.apache.org/jira/browse/CB-6818


Re: Header licenses

2014-05-30 Thread Shazron
Actually I missed checking on some repos I think (new platforms) I'll get
to that today.

On Thursday, May 29, 2014, Shazron  wrote:

> Filed an issue with sub-tasks for header license issues:
> https://issues.apache.org/jira/browse/CB-6818
>
>
>


Re: Header licenses

2014-05-30 Thread Shazron
All 50 cordova-* repos added to the issue from the list at
https://git-wip-us.apache.org/repos/asf?s=cordova-
Note that there are 51 repos but cordova-windows-phone is an alias for
cordova-wp8




On Fri, May 30, 2014 at 8:35 AM, Shazron  wrote:

> Actually I missed checking on some repos I think (new platforms) I'll get
> to that today.
>
>
> On Thursday, May 29, 2014, Shazron  wrote:
>
>> Filed an issue with sub-tasks for header license issues:
>> https://issues.apache.org/jira/browse/CB-6818
>>
>>
>>


Re: Attending WWDC 2014?

2014-05-30 Thread Shazron
Unfortunately no :/ chug down an Odwalla for me.

On Friday, May 30, 2014, Carlos Santana  wrote:

> I will be attending wwdc next week, I was wondering if any one else is also
> attending and want to setup a meetup.
>
> --
> Carlos Santana
> >
>


Re: jira permissions

2014-06-02 Thread Shazron
Saw someone already added you in the Contributors group. If that
didn't work let us know.

On Mon, Jun 2, 2014 at 7:39 AM, Staci Cooper  wrote:
> Hey all,
>
> I can't assign issues to myself on jira. Any chance someone could change my
> permissions for me?
>
> Thanks,
> Staci


Re: jira permissions

2014-06-02 Thread Shazron
I find that whole list confusing -- there are people in the PMC group
that are not PMC (in Cordova all committers are PMC), and only the PMC
group is part of "callback-developers" (can't really find out what
privileges that group gives), it's a mess.

However, I could create an issue and assign it to either Staci or
Martin... not sure what is going on.

On Mon, Jun 2, 2014 at 12:58 PM, Staci Cooper  wrote:
> I just checked and I still can't assign issues to myself. Is there anything
> else that needs to be changed?
>
> Thanks,
> Staci
>
>
> On Mon, Jun 2, 2014 at 12:44 PM, Martin Gonzalez <
> martin.c.glez.g...@gmail.com> wrote:
>
>> I'm a contributor as well, and I don't have permission to assign issues to
>> myself, I'd really like to be able to do that as well.
>>
>> Regards,
>> Martin
>>
>>
>> 2014-06-02 14:27 GMT-05:00 Ian Clelland :
>>
>> > I think someone just made the (very sensible) move to allow Contributors
>> to
>> > assign issues (not just Committers / PMC).
>> >
>> >
>> > On Mon, Jun 2, 2014 at 3:00 PM, Shazron  wrote:
>> >
>> > > Saw someone already added you in the Contributors group. If that
>> > > didn't work let us know.
>> > >
>> > > On Mon, Jun 2, 2014 at 7:39 AM, Staci Cooper 
>> > wrote:
>> > > > Hey all,
>> > > >
>> > > > I can't assign issues to myself on jira. Any chance someone could
>> > change
>> > > my
>> > > > permissions for me?
>> > > >
>> > > > Thanks,
>> > > > Staci
>> > >
>> >
>>
>>
>>
>> --
>> Regards,
>> Martin Gonzalez
>>


Re: jira permissions

2014-06-02 Thread Shazron
I don't think there is a requirement - that's so much overhead. Not
sure why there are two lists, maybe we just make them into one. What's
more important is only the PMC be able to administrate Cordova JIRA

On Mon, Jun 2, 2014 at 1:37 PM, Ian Clelland  wrote:
> Jesse -- you're totally right; I misread the permissions page. I don't know
> if it can even be changed, or if we're necessarily using a standard Apache
> permission scheme that can't be modified. Gianugo or Jukka would be the
> ones to know, I suppose.
>
> Q: Is there an ASF-level requirement that the JIRA groups map to actual
> project committer/PMC membership status? Because if not, we should just add
> Staci to the "Committers" group in Jira.
>
> (And if there is, then we should start a PMC thread to make her a committer)
>
>
> On Mon, Jun 2, 2014 at 4:24 PM, Jesse  wrote:
>
>>- Project Role (Contributors) are assignable, but cannot assign issues
>>... I think is the root of the issue.
>>- I don't seem to be able to change it though.
>>
>>
>> @purplecabbage
>> risingj.com
>>
>>
>> On Mon, Jun 2, 2014 at 1:18 PM, Shazron  wrote:
>>
>> > I find that whole list confusing -- there are people in the PMC group
>> > that are not PMC (in Cordova all committers are PMC), and only the PMC
>> > group is part of "callback-developers" (can't really find out what
>> > privileges that group gives), it's a mess.
>> >
>> > However, I could create an issue and assign it to either Staci or
>> > Martin... not sure what is going on.
>> >
>> > On Mon, Jun 2, 2014 at 12:58 PM, Staci Cooper 
>> wrote:
>> > > I just checked and I still can't assign issues to myself. Is there
>> > anything
>> > > else that needs to be changed?
>> > >
>> > > Thanks,
>> > > Staci
>> > >
>> > >
>> > > On Mon, Jun 2, 2014 at 12:44 PM, Martin Gonzalez <
>> > > martin.c.glez.g...@gmail.com> wrote:
>> > >
>> > >> I'm a contributor as well, and I don't have permission to assign
>> issues
>> > to
>> > >> myself, I'd really like to be able to do that as well.
>> > >>
>> > >> Regards,
>> > >> Martin
>> > >>
>> > >>
>> > >> 2014-06-02 14:27 GMT-05:00 Ian Clelland :
>> > >>
>> > >> > I think someone just made the (very sensible) move to allow
>> > Contributors
>> > >> to
>> > >> > assign issues (not just Committers / PMC).
>> > >> >
>> > >> >
>> > >> > On Mon, Jun 2, 2014 at 3:00 PM, Shazron  wrote:
>> > >> >
>> > >> > > Saw someone already added you in the Contributors group. If that
>> > >> > > didn't work let us know.
>> > >> > >
>> > >> > > On Mon, Jun 2, 2014 at 7:39 AM, Staci Cooper > >
>> > >> > wrote:
>> > >> > > > Hey all,
>> > >> > > >
>> > >> > > > I can't assign issues to myself on jira. Any chance someone
>> could
>> > >> > change
>> > >> > > my
>> > >> > > > permissions for me?
>> > >> > > >
>> > >> > > > Thanks,
>> > >> > > > Staci
>> > >> > >
>> > >> >
>> > >>
>> > >>
>> > >>
>> > >> --
>> > >> Regards,
>> > >> Martin Gonzalez
>> > >>
>> >
>>


Re: Adding sugar platform to cordova

2014-06-02 Thread Shazron
Hi Puneet,
Welcome! I would suggest looking at how firefoxos integrated into
Cordova. I think Daniel Villa is trying to get cordova-web into
Cordova judging by the pull requests to cordova-lib so you should
collaborate (although we already have an empty repo for that at
https://github.com/apache/cordova-browser)

On Mon, Jun 2, 2014 at 12:51 PM, Puneet Kaur  wrote:
> Thanks Daniel,
>
> copying susgar-devel mailing list and Lionel on the mail thread.
>
> May be he can help us know which way to go.
>
> Thanks for your pointers to the collineargroup github code, it would be
> surely of use to us.
>
>
> On Tue, Jun 3, 2014 at 1:17 AM, Daniel Villa 
> wrote:
>
>> As far as the 'web server' part of this idea is concerned, we've begun some
>> development  on that idea.
>> You may be interested.
>>
>>
>>
>>
>> On Mon, Jun 2, 2014 at 11:44 AM, Puneet Kaur 
>> wrote:
>>
>> > Yes, sugar is not an app.Its a seperate full blown os, based on linux
>> >
>> > Incase you want details you can read through the mail I had sent on this
>> > mailing list earlier.
>> >
>> > Here it is once again :
>> >
>> >
>> ---
>> > Hey all ,
>> >
>> > We at sugar labs are trying to add the sugar platform to cordova.
>> >
>> > Here lies our code : https://github.com/sugarlabs and here's our
>> website :
>> > http://sugarlabs.org/
>> >
>> > Sugar was developed at MIT Media Labs to provide a free open source
>> > learning platforms to kids over the olpc (one laptop per child)
>> > computers.These are specially designed keeping the young students in
>> mind.
>> >
>> > We have different activities on this operating system which make it fun.
>> > You can have a look here : http://activities.sugarlabs.org/ but
>> currently
>> > these are all the native activities which are build in python.(sugar's
>> > native base is in python)
>> >
>> > Recently we have developed an architecture known as sugar web which helps
>> > us to develop activities using web languages like html, js and css and
>> > these can then communicate with the native base.
>> >
>> > To take this a step further we are trying to incorporate all the device
>> > functionalities too in the web activities so that all the web developers
>> > can contribute to the code and make their own activities and also port
>> > there application for different platform to sugar. So here cordova comes
>> to
>> > the picture.
>> >
>> > So start with we already have a bridge between web interface and the
>> native
>> > side, just that need to provide cordova api's at the top.
>> >
>> > Our team is currently working on it which basically comprises of Lionel
>> > (president, olpc france), me  and other sugar web team members.
>> >
>> > I would request the cordova community to kindly help us to successfully
>> > port the sugar project to cordova.
>> >
>> > We shall be blogging about the success of the project here :
>> > http://www.sugarcordova.blogspot.com
>> >
>> > you can have a taste of what sugar looks like here :
>> > http://server.sugarizer.org/ or http://sugarizer.org/
>> >
>> > We have currently integrated cordova.js with the sugar web code and have
>> > made a minimal cordova.js for sugar.
>> >
>> > Would be nice if some cordova people can guide us as to how to go about
>> > successfully adding up our platform to cordova .
>> >
>> >
>> --
>> >
>> >
>> > On Tue, Jun 3, 2014 at 12:07 AM, Wargo, John  wrote:
>> >
>> > > I'm not sure I'm getting this.
>> > >
>> > > Sugar is an app, content that would run in the container, right?
>> > >
>> > > Adding web application content to a cordova project is not really a use
>> > > case for the CLI. You can use the templeting capabilities of the CLI
>> > > Create command to pass in a pre-configured web app (Sugar).
>> > >
>> > >
>> > > To add Sugar as a platform to a Cordova app would mean that Sugar is an
>> > > output target for the application.  Is that really what you want?
>> > >
>> > > On 6/2/14 6:14 AM, "Puneet Kaur"  wrote:
>> > >
>> > > >Thanks for the reply.
>> > > >
>> > > >that page mentions the various commands possible and the platforms
>> > > >supported.
>> > > >
>> > > >I wished to know how to go about adding ours to the already existing
>> > list
>> > > >of supported platform.
>> > > >
>> > > >All what I could infer from searching places is that we need to make
>> > > >something similar to this :
>> > > >
>> > >
>> >
>> https://github.com/apache/cordova-lib/tree/master/cordova-lib/src/cordova/
>> > > >metadata
>> > > >- a parser for ours too ..
>> > > >
>> > > >Please let me know if I am wrong or if there's something else also
>> needs
>> > > >to
>> > > >be done to have the cli support for new platform ?
>> > > >
>> > > >
>> > > >On Mon, Jun 2, 2014 at 2:31 A

[GitHub] cordova-plugin-statusbar pull request: added StatusBarStyle config...

2014-06-02 Thread shazron
Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-statusbar/pull/9#issuecomment-44894443
  
Verified. Thanks for filing. I'll pull it in soon


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: Attending WWDC 2014?

2014-06-03 Thread Shazron
See API diffs: 
https://developer.apple.com/library/prerelease/ios/releasenotes/General/iOS80APIDiffs/index.html
Some random search terms: UIWebView, Tofu, Rice Pilaf, WebKit, Curry,
Green Beans


On Tue, Jun 3, 2014 at 10:05 AM, purplecabbage  wrote:
> The sessions will all be nda, but the docs should be available now, and 
> videos to come.
> So I recommend you don't live tweet.
>
> Sent from my iPhone
>
>> On Jun 3, 2014, at 2:47 AM, tommy-carlos williams  wrote:
>>
>> Carlos,
>>
>> PLEASE tell me you are going to “Introducing the Modern WebKit API” and live 
>> tweeting it, or something?!
>>
>> “...advanced bridging between JavaScript and Objective-C, increased 
>> JavaScript performance via WebKit's super-fast JIT, and more"
>>
>> Is that saying what I THINK it’s saying?
>>
>> - tommy
>>
>> On 3 June 2014 at 17:39:57, Steven Gill (stevengil...@gmail.com) wrote:
>>
>> Interested in meeting at beerjs?
>> http://www.meetup.com/beerjs/events/180505862/
>>
>>
>>> On Mon, Jun 2, 2014 at 2:12 PM, Joe Bowser  wrote:
>>>
>>> I'm also in SF Monday-Wednesday.
>>>
>>> On Mon, Jun 2, 2014 at 10:47 AM, Michael Brooks
>>>  wrote:
 I'm in SF Monday-Wednesday as well (not for WWDC). It would be great to
 meet up!


> On Mon, Jun 2, 2014 at 9:28 AM, Ken Wallis 
 wrote:

> I am at the Tizen dev conf tomorrow and Wednesday, would be interested
>>> in
> a cordova meet as well!
> --
> Ken Wallis
> Senior Product Manager - WebWorks
> BlackBerry
> 925-931-6024
>
>
>
>
>
> -Original Message-
> From: Brian LeRoux 
> Reply-To: "dev@cordova.apache.org" 
> Date: Monday, June 2, 2014 at 9:09 AM
> To: "dev@cordova.apache.org" 
> Subject: Re: Attending WWDC 2014?
>
>> Cordova dinner this week works for me!
>> On May 30, 2014 12:49 PM, "Carlos Santana" 
>>> wrote:
>>
>>> I will be attending wwdc next week, I was wondering if any one else
>>> is
>>> also
>>> attending and want to setup a meetup.
>>>
>>> --
>>> Carlos Santana
>>> 
>>


Re: Attending WWDC 2014?

2014-06-03 Thread Shazron
Hmm. I thought the link was under a login. Turns out it isn't - oh well :P
I think the main difference I saw is it opens up a lot more interfaces
(delegates) for us to fix some of our workarounds with.

On Tue, Jun 3, 2014 at 12:55 PM, Kerri Shotts  wrote:
> Ooooh, those diffs have some *very interesting* things going on there.
> ;-)
>
>
>
>
> ___
> Kerri Shotts
> photoKandy Studios, LLC
>
> On the Web: http://www.photokandy.com/
>
> Social Media:
>   Twitter: @photokandy, http://twitter.com/photokandy
>   Tumblr: http://photokandy.tumblr.com/
>   Github: https://github.com/kerrishotts
> https://github.com/organizations/photokandyStudios
>   CoderWall: https://coderwall.com/kerrishotts
>
> Apps on the Apple Store:
>
> https://itunes.apple.com/us/artist/photokandy-studios-llc/id498577828
>
> Books:
>   http://www.packtpub.com/phonegap-2-mobile-application-hotshot/book
>   http://www.packtpub.com/phonegap-social-app-development/book
>
>
> On Tue, Jun 3, 2014 at 2:37 PM, Marc Weiner  wrote:
>
>> WOW! Really?? That sounds promising!
>>
>>
>> On Tue, Jun 3, 2014 at 3:23 PM, Michal Mocny  wrote:
>>
>> > WKWebView?!
>> >
>> >
>> > On Tue, Jun 3, 2014 at 3:14 PM, Shazron  wrote:
>> >
>> > > See API diffs:
>> > >
>> >
>> https://developer.apple.com/library/prerelease/ios/releasenotes/General/iOS80APIDiffs/index.html
>> > > Some random search terms: UIWebView, Tofu, Rice Pilaf, WebKit, Curry,
>> > > Green Beans
>> > >
>> > >
>> > > On Tue, Jun 3, 2014 at 10:05 AM, purplecabbage <
>> purplecabb...@gmail.com>
>> > > wrote:
>> > > > The sessions will all be nda, but the docs should be available now,
>> and
>> > > videos to come.
>> > > > So I recommend you don't live tweet.
>> > > >
>> > > > Sent from my iPhone
>> > > >
>> > > >> On Jun 3, 2014, at 2:47 AM, tommy-carlos williams <
>> to...@devgeeks.org
>> > >
>> > > wrote:
>> > > >>
>> > > >> Carlos,
>> > > >>
>> > > >> PLEASE tell me you are going to “Introducing the Modern WebKit API”
>> > and
>> > > live tweeting it, or something?!
>> > > >>
>> > > >> “...advanced bridging between JavaScript and Objective-C, increased
>> > > JavaScript performance via WebKit's super-fast JIT, and more"
>> > > >>
>> > > >> Is that saying what I THINK it’s saying?
>> > > >>
>> > > >> - tommy
>> > > >>
>> > > >> On 3 June 2014 at 17:39:57, Steven Gill (stevengil...@gmail.com)
>> > wrote:
>> > > >>
>> > > >> Interested in meeting at beerjs?
>> > > >> http://www.meetup.com/beerjs/events/180505862/
>> > > >>
>> > > >>
>> > > >>> On Mon, Jun 2, 2014 at 2:12 PM, Joe Bowser 
>> > wrote:
>> > > >>>
>> > > >>> I'm also in SF Monday-Wednesday.
>> > > >>>
>> > > >>> On Mon, Jun 2, 2014 at 10:47 AM, Michael Brooks
>> > > >>>  wrote:
>> > > >>>> I'm in SF Monday-Wednesday as well (not for WWDC). It would be
>> great
>> > > to
>> > > >>>> meet up!
>> > > >>>>
>> > > >>>>
>> > > >>>>> On Mon, Jun 2, 2014 at 9:28 AM, Ken Wallis <
>> kwal...@blackberry.com
>> > >
>> > > >>>> wrote:
>> > > >>>>
>> > > >>>>> I am at the Tizen dev conf tomorrow and Wednesday, would be
>> > > interested
>> > > >>> in
>> > > >>>>> a cordova meet as well!
>> > > >>>>> --
>> > > >>>>> Ken Wallis
>> > > >>>>> Senior Product Manager - WebWorks
>> > > >>>>> BlackBerry
>> > > >>>>> 925-931-6024
>> > > >>>>>
>> > > >>>>>
>> > > >>>>>
>> > > >>>>>
>> > > >>>>>
>> > > >>>>> -Original Message-
>> > > >>>>> From: Brian LeRoux 
>> > > >>>>> Reply-To: "dev@cordova.apache.org" 
>> > > >>>>> Date: Monday, June 2, 2014 at 9:09 AM
>> > > >>>>> To: "dev@cordova.apache.org" 
>> > > >>>>> Subject: Re: Attending WWDC 2014?
>> > > >>>>>
>> > > >>>>>> Cordova dinner this week works for me!
>> > > >>>>>> On May 30, 2014 12:49 PM, "Carlos Santana" <
>> csantan...@gmail.com>
>> > > >>> wrote:
>> > > >>>>>>
>> > > >>>>>>> I will be attending wwdc next week, I was wondering if any one
>> > else
>> > > >>> is
>> > > >>>>>>> also
>> > > >>>>>>> attending and want to setup a meetup.
>> > > >>>>>>>
>> > > >>>>>>> --
>> > > >>>>>>> Carlos Santana
>> > > >>>>>>> 
>> > > >>
>> > >
>> >
>>


Re: jira permissions

2014-06-03 Thread Shazron
I see the problem. Contributors may be assigned issues, but they can't
assign issues (Committer can)
I think by default any community member that wants to work on an issue
should be in the "Committers" group (does not need to correspond to
actual LDAP designation).
Only actual PMC members I think should be in the PMC group since that
has Admin privileges (which includes deleting issues).

https://issues.apache.org/jira/plugins/servlet/project-config/CB/permissions

I'll make those changes unless anyone objects.


On Tue, Jun 3, 2014 at 11:47 AM, Staci Cooper  wrote:
> Checked again and it's working now.
>
> Thanks Ian!
>
>
> On Tue, Jun 3, 2014 at 11:40 AM, Martin Gonzalez <
> martin.c.glez.g...@gmail.com> wrote:
>
>> I'd like to be able to assign issues to myself Ian, can you add me as well,
>> please?
>>
>> Thanks.
>>
>>
>>
>>
>> 2014-06-03 13:35 GMT-05:00 Ian Clelland :
>>
>> > Staci, can you try again? I've added you to the 'committers' group in
>> JIRA,
>> > and I *think* that should work.
>> >
>> >
>> > On Tue, Jun 3, 2014 at 1:45 PM, Staci Cooper 
>> wrote:
>> >
>> > > I didn't realize I had two JIRA accounts--the ibm one must have been
>> > > generated unintentionally. I use the @gmail.com one.
>> > >
>> > > I ask in particular because I'm starting to work through the heap of
>> > > failing mobile spec tests on windows phone. So I'll be opening a lot of
>> > > issues and it's a pain to bother someone else to change the assignment
>> on
>> > > each of them.
>> > >
>> > >
>> > > On Mon, Jun 2, 2014 at 7:17 PM, Andrew Grieve 
>> > > wrote:
>> > >
>> > > > I've always made a habit of adding everyone to the PMC list since
>> > that's
>> > > > required to be able to assign issues to yourself. We've never had
>> > > problems
>> > > > with JIRA abuse.
>> > > >
>> > > >
>> > > > On Mon, Jun 2, 2014 at 8:19 PM, sebb  wrote:
>> > > >
>> > > > > On 2 June 2014 21:43, Shazron  wrote:
>> > > > > > I don't think there is a requirement - that's so much overhead.
>> Not
>> > > > > > sure why there are two lists, maybe we just make them into one.
>> > > What's
>> > > > > > more important is only the PMC be able to administrate Cordova
>> JIRA
>> > > > >
>> > > > > I seem to remember that there are some aspects of the JIRA
>> > permissions
>> > > > > schemes that don't work well.
>> > > > > So if you are having issues, please raise an INFRA JIRA and explain
>> > > > > what you are trying to do.
>> > > > >
>> > > > > > On Mon, Jun 2, 2014 at 1:37 PM, Ian Clelland <
>> > iclell...@chromium.org
>> > > >
>> > > > > wrote:
>> > > > > >> Jesse -- you're totally right; I misread the permissions page. I
>> > > don't
>> > > > > know
>> > > > > >> if it can even be changed, or if we're necessarily using a
>> > standard
>> > > > > Apache
>> > > > > >> permission scheme that can't be modified. Gianugo or Jukka would
>> > be
>> > > > the
>> > > > > >> ones to know, I suppose.
>> > > > > >>
>> > > > > >> Q: Is there an ASF-level requirement that the JIRA groups map to
>> > > > actual
>> > > > > >> project committer/PMC membership status? Because if not, we
>> should
>> > > > just
>> > > > > add
>> > > > > >> Staci to the "Committers" group in Jira.
>> > > > > >>
>> > > > > >> (And if there is, then we should start a PMC thread to make her
>> a
>> > > > > committer)
>> > > > > >>
>> > > > > >>
>> > > > > >> On Mon, Jun 2, 2014 at 4:24 PM, Jesse 
>> > > > wrote:
>> > > > > >>
>> > > > > >>>- Project Role (Contributors) are assignable, but cannot
>> > assign
>> > > > > issues
>> > > > > >>>... I think is t

Re: Attending WWDC 2014?

2014-06-03 Thread Shazron
Actually - this is a breath of fresh air -- we can talk about the
Apple pre-release stuff with certain conditions:
http://oleb.net/blog/2014/06/apple-lifted-beta-nda/

On Tue, Jun 3, 2014 at 12:58 PM, Shazron  wrote:
> Hmm. I thought the link was under a login. Turns out it isn't - oh well :P
> I think the main difference I saw is it opens up a lot more interfaces
> (delegates) for us to fix some of our workarounds with.
>
> On Tue, Jun 3, 2014 at 12:55 PM, Kerri Shotts  wrote:
>> Ooooh, those diffs have some *very interesting* things going on there.
>> ;-)
>>
>>
>>
>>
>> ___
>> Kerri Shotts
>> photoKandy Studios, LLC
>>
>> On the Web: http://www.photokandy.com/
>>
>> Social Media:
>>   Twitter: @photokandy, http://twitter.com/photokandy
>>   Tumblr: http://photokandy.tumblr.com/
>>   Github: https://github.com/kerrishotts
>> https://github.com/organizations/photokandyStudios
>>   CoderWall: https://coderwall.com/kerrishotts
>>
>> Apps on the Apple Store:
>>
>> https://itunes.apple.com/us/artist/photokandy-studios-llc/id498577828
>>
>> Books:
>>   http://www.packtpub.com/phonegap-2-mobile-application-hotshot/book
>>   http://www.packtpub.com/phonegap-social-app-development/book
>>
>>
>> On Tue, Jun 3, 2014 at 2:37 PM, Marc Weiner  wrote:
>>
>>> WOW! Really?? That sounds promising!
>>>
>>>
>>> On Tue, Jun 3, 2014 at 3:23 PM, Michal Mocny  wrote:
>>>
>>> > WKWebView?!
>>> >
>>> >
>>> > On Tue, Jun 3, 2014 at 3:14 PM, Shazron  wrote:
>>> >
>>> > > See API diffs:
>>> > >
>>> >
>>> https://developer.apple.com/library/prerelease/ios/releasenotes/General/iOS80APIDiffs/index.html
>>> > > Some random search terms: UIWebView, Tofu, Rice Pilaf, WebKit, Curry,
>>> > > Green Beans
>>> > >
>>> > >
>>> > > On Tue, Jun 3, 2014 at 10:05 AM, purplecabbage <
>>> purplecabb...@gmail.com>
>>> > > wrote:
>>> > > > The sessions will all be nda, but the docs should be available now,
>>> and
>>> > > videos to come.
>>> > > > So I recommend you don't live tweet.
>>> > > >
>>> > > > Sent from my iPhone
>>> > > >
>>> > > >> On Jun 3, 2014, at 2:47 AM, tommy-carlos williams <
>>> to...@devgeeks.org
>>> > >
>>> > > wrote:
>>> > > >>
>>> > > >> Carlos,
>>> > > >>
>>> > > >> PLEASE tell me you are going to “Introducing the Modern WebKit API”
>>> > and
>>> > > live tweeting it, or something?!
>>> > > >>
>>> > > >> “...advanced bridging between JavaScript and Objective-C, increased
>>> > > JavaScript performance via WebKit's super-fast JIT, and more"
>>> > > >>
>>> > > >> Is that saying what I THINK it’s saying?
>>> > > >>
>>> > > >> - tommy
>>> > > >>
>>> > > >> On 3 June 2014 at 17:39:57, Steven Gill (stevengil...@gmail.com)
>>> > wrote:
>>> > > >>
>>> > > >> Interested in meeting at beerjs?
>>> > > >> http://www.meetup.com/beerjs/events/180505862/
>>> > > >>
>>> > > >>
>>> > > >>> On Mon, Jun 2, 2014 at 2:12 PM, Joe Bowser 
>>> > wrote:
>>> > > >>>
>>> > > >>> I'm also in SF Monday-Wednesday.
>>> > > >>>
>>> > > >>> On Mon, Jun 2, 2014 at 10:47 AM, Michael Brooks
>>> > > >>>  wrote:
>>> > > >>>> I'm in SF Monday-Wednesday as well (not for WWDC). It would be
>>> great
>>> > > to
>>> > > >>>> meet up!
>>> > > >>>>
>>> > > >>>>
>>> > > >>>>> On Mon, Jun 2, 2014 at 9:28 AM, Ken Wallis <
>>> kwal...@blackberry.com
>>> > >
>>> > > >>>> wrote:
>>> > > >>>>
>>> > > >>>>> I am at the Tizen dev conf tomorrow and Wednesday, would be
>>> > > interested
>>> > > >>> in
>>> > > >>>>> a cordova meet as well!
>>> > > >>>>> --
>>> > > >>>>> Ken Wallis
>>> > > >>>>> Senior Product Manager - WebWorks
>>> > > >>>>> BlackBerry
>>> > > >>>>> 925-931-6024
>>> > > >>>>>
>>> > > >>>>>
>>> > > >>>>>
>>> > > >>>>>
>>> > > >>>>>
>>> > > >>>>> -Original Message-
>>> > > >>>>> From: Brian LeRoux 
>>> > > >>>>> Reply-To: "dev@cordova.apache.org" 
>>> > > >>>>> Date: Monday, June 2, 2014 at 9:09 AM
>>> > > >>>>> To: "dev@cordova.apache.org" 
>>> > > >>>>> Subject: Re: Attending WWDC 2014?
>>> > > >>>>>
>>> > > >>>>>> Cordova dinner this week works for me!
>>> > > >>>>>> On May 30, 2014 12:49 PM, "Carlos Santana" <
>>> csantan...@gmail.com>
>>> > > >>> wrote:
>>> > > >>>>>>
>>> > > >>>>>>> I will be attending wwdc next week, I was wondering if any one
>>> > else
>>> > > >>> is
>>> > > >>>>>>> also
>>> > > >>>>>>> attending and want to setup a meetup.
>>> > > >>>>>>>
>>> > > >>>>>>> --
>>> > > >>>>>>> Carlos Santana
>>> > > >>>>>>> 
>>> > > >>
>>> > >
>>> >
>>>


Re: jira permissions

2014-06-03 Thread Shazron
I've updated the PMC Group in JIRA to include members of the PMC (plus
any Apache Members -- not sure what the ASF Members Role is, so I
didn't move them there). However - I can't find 4 PMC members in JIRA
-- either I don't know their user handle or they haven't created an
account.

They are:
dkormalev Denis Kormalev
doc David Charles Johnson
jtyberg Justin Tyberg
yohei Yohei Shimomae

PMC list: https://whimsy.apache.org/roster/committee/cordova

On Tue, Jun 3, 2014 at 1:33 PM, Shazron  wrote:
> I see the problem. Contributors may be assigned issues, but they can't
> assign issues (Committer can)
> I think by default any community member that wants to work on an issue
> should be in the "Committers" group (does not need to correspond to
> actual LDAP designation).
> Only actual PMC members I think should be in the PMC group since that
> has Admin privileges (which includes deleting issues).
>
> https://issues.apache.org/jira/plugins/servlet/project-config/CB/permissions
>
> I'll make those changes unless anyone objects.
>
>
> On Tue, Jun 3, 2014 at 11:47 AM, Staci Cooper  wrote:
>> Checked again and it's working now.
>>
>> Thanks Ian!
>>
>>
>> On Tue, Jun 3, 2014 at 11:40 AM, Martin Gonzalez <
>> martin.c.glez.g...@gmail.com> wrote:
>>
>>> I'd like to be able to assign issues to myself Ian, can you add me as well,
>>> please?
>>>
>>> Thanks.
>>>
>>>
>>>
>>>
>>> 2014-06-03 13:35 GMT-05:00 Ian Clelland :
>>>
>>> > Staci, can you try again? I've added you to the 'committers' group in
>>> JIRA,
>>> > and I *think* that should work.
>>> >
>>> >
>>> > On Tue, Jun 3, 2014 at 1:45 PM, Staci Cooper 
>>> wrote:
>>> >
>>> > > I didn't realize I had two JIRA accounts--the ibm one must have been
>>> > > generated unintentionally. I use the @gmail.com one.
>>> > >
>>> > > I ask in particular because I'm starting to work through the heap of
>>> > > failing mobile spec tests on windows phone. So I'll be opening a lot of
>>> > > issues and it's a pain to bother someone else to change the assignment
>>> on
>>> > > each of them.
>>> > >
>>> > >
>>> > > On Mon, Jun 2, 2014 at 7:17 PM, Andrew Grieve 
>>> > > wrote:
>>> > >
>>> > > > I've always made a habit of adding everyone to the PMC list since
>>> > that's
>>> > > > required to be able to assign issues to yourself. We've never had
>>> > > problems
>>> > > > with JIRA abuse.
>>> > > >
>>> > > >
>>> > > > On Mon, Jun 2, 2014 at 8:19 PM, sebb  wrote:
>>> > > >
>>> > > > > On 2 June 2014 21:43, Shazron  wrote:
>>> > > > > > I don't think there is a requirement - that's so much overhead.
>>> Not
>>> > > > > > sure why there are two lists, maybe we just make them into one.
>>> > > What's
>>> > > > > > more important is only the PMC be able to administrate Cordova
>>> JIRA
>>> > > > >
>>> > > > > I seem to remember that there are some aspects of the JIRA
>>> > permissions
>>> > > > > schemes that don't work well.
>>> > > > > So if you are having issues, please raise an INFRA JIRA and explain
>>> > > > > what you are trying to do.
>>> > > > >
>>> > > > > > On Mon, Jun 2, 2014 at 1:37 PM, Ian Clelland <
>>> > iclell...@chromium.org
>>> > > >
>>> > > > > wrote:
>>> > > > > >> Jesse -- you're totally right; I misread the permissions page. I
>>> > > don't
>>> > > > > know
>>> > > > > >> if it can even be changed, or if we're necessarily using a
>>> > standard
>>> > > > > Apache
>>> > > > > >> permission scheme that can't be modified. Gianugo or Jukka would
>>> > be
>>> > > > the
>>> > > > > >> ones to know, I suppose.
>>> > > > > >>
>>> > > > > >> Q: Is there an ASF-level requirement that the JIRA groups map to
>>> &g

Re: jira permissions

2014-06-03 Thread Shazron
https://issues.apache.org/jira/browse/INFRA-7863

On Tue, Jun 3, 2014 at 3:23 PM, Shazron  wrote:
> I've updated the PMC Group in JIRA to include members of the PMC (plus
> any Apache Members -- not sure what the ASF Members Role is, so I
> didn't move them there). However - I can't find 4 PMC members in JIRA
> -- either I don't know their user handle or they haven't created an
> account.
>
> They are:
> dkormalev Denis Kormalev
> doc David Charles Johnson
> jtyberg Justin Tyberg
> yohei Yohei Shimomae
>
> PMC list: https://whimsy.apache.org/roster/committee/cordova
>
> On Tue, Jun 3, 2014 at 1:33 PM, Shazron  wrote:
>> I see the problem. Contributors may be assigned issues, but they can't
>> assign issues (Committer can)
>> I think by default any community member that wants to work on an issue
>> should be in the "Committers" group (does not need to correspond to
>> actual LDAP designation).
>> Only actual PMC members I think should be in the PMC group since that
>> has Admin privileges (which includes deleting issues).
>>
>> https://issues.apache.org/jira/plugins/servlet/project-config/CB/permissions
>>
>> I'll make those changes unless anyone objects.
>>
>>
>> On Tue, Jun 3, 2014 at 11:47 AM, Staci Cooper  wrote:
>>> Checked again and it's working now.
>>>
>>> Thanks Ian!
>>>
>>>
>>> On Tue, Jun 3, 2014 at 11:40 AM, Martin Gonzalez <
>>> martin.c.glez.g...@gmail.com> wrote:
>>>
>>>> I'd like to be able to assign issues to myself Ian, can you add me as well,
>>>> please?
>>>>
>>>> Thanks.
>>>>
>>>>
>>>>
>>>>
>>>> 2014-06-03 13:35 GMT-05:00 Ian Clelland :
>>>>
>>>> > Staci, can you try again? I've added you to the 'committers' group in
>>>> JIRA,
>>>> > and I *think* that should work.
>>>> >
>>>> >
>>>> > On Tue, Jun 3, 2014 at 1:45 PM, Staci Cooper 
>>>> wrote:
>>>> >
>>>> > > I didn't realize I had two JIRA accounts--the ibm one must have been
>>>> > > generated unintentionally. I use the @gmail.com one.
>>>> > >
>>>> > > I ask in particular because I'm starting to work through the heap of
>>>> > > failing mobile spec tests on windows phone. So I'll be opening a lot of
>>>> > > issues and it's a pain to bother someone else to change the assignment
>>>> on
>>>> > > each of them.
>>>> > >
>>>> > >
>>>> > > On Mon, Jun 2, 2014 at 7:17 PM, Andrew Grieve 
>>>> > > wrote:
>>>> > >
>>>> > > > I've always made a habit of adding everyone to the PMC list since
>>>> > that's
>>>> > > > required to be able to assign issues to yourself. We've never had
>>>> > > problems
>>>> > > > with JIRA abuse.
>>>> > > >
>>>> > > >
>>>> > > > On Mon, Jun 2, 2014 at 8:19 PM, sebb  wrote:
>>>> > > >
>>>> > > > > On 2 June 2014 21:43, Shazron  wrote:
>>>> > > > > > I don't think there is a requirement - that's so much overhead.
>>>> Not
>>>> > > > > > sure why there are two lists, maybe we just make them into one.
>>>> > > What's
>>>> > > > > > more important is only the PMC be able to administrate Cordova
>>>> JIRA
>>>> > > > >
>>>> > > > > I seem to remember that there are some aspects of the JIRA
>>>> > permissions
>>>> > > > > schemes that don't work well.
>>>> > > > > So if you are having issues, please raise an INFRA JIRA and explain
>>>> > > > > what you are trying to do.
>>>> > > > >
>>>> > > > > > On Mon, Jun 2, 2014 at 1:37 PM, Ian Clelland <
>>>> > iclell...@chromium.org
>>>> > > >
>>>> > > > > wrote:
>>>> > > > > >> Jesse -- you're totally right; I misread the permissions page. I
>>>> > > don't
>>>> > > > > know
>>>> > > > > >> if it can even be chan

Re: Attending WWDC 2014?

2014-06-03 Thread Shazron
https://twitter.com/vickimurley/status/473955064629829632

On Tue, Jun 3, 2014 at 2:47 PM, Jesse  wrote:
> Wow, that's new! Has the whole world gone sane?
>
> @purplecabbage
> risingj.com
>
>
> On Tue, Jun 3, 2014 at 2:17 PM, Shazron  wrote:
>
>> Actually - this is a breath of fresh air -- we can talk about the
>> Apple pre-release stuff with certain conditions:
>> http://oleb.net/blog/2014/06/apple-lifted-beta-nda/
>>
>> On Tue, Jun 3, 2014 at 12:58 PM, Shazron  wrote:
>> > Hmm. I thought the link was under a login. Turns out it isn't - oh well
>> :P
>> > I think the main difference I saw is it opens up a lot more interfaces
>> > (delegates) for us to fix some of our workarounds with.
>> >
>> > On Tue, Jun 3, 2014 at 12:55 PM, Kerri Shotts 
>> wrote:
>> >> Ooooh, those diffs have some *very interesting* things going on
>> there.
>> >> ;-)
>> >>
>> >>
>> >>
>> >>
>> >> ___
>> >> Kerri Shotts
>> >> photoKandy Studios, LLC
>> >>
>> >> On the Web: http://www.photokandy.com/
>> >>
>> >> Social Media:
>> >>   Twitter: @photokandy, http://twitter.com/photokandy
>> >>   Tumblr: http://photokandy.tumblr.com/
>> >>   Github: https://github.com/kerrishotts
>> >>
>> https://github.com/organizations/photokandyStudios
>> >>   CoderWall: https://coderwall.com/kerrishotts
>> >>
>> >> Apps on the Apple Store:
>> >>
>> >> https://itunes.apple.com/us/artist/photokandy-studios-llc/id498577828
>> >>
>> >> Books:
>> >>
>> http://www.packtpub.com/phonegap-2-mobile-application-hotshot/book
>> >>   http://www.packtpub.com/phonegap-social-app-development/book
>> >>
>> >>
>> >> On Tue, Jun 3, 2014 at 2:37 PM, Marc Weiner 
>> wrote:
>> >>
>> >>> WOW! Really?? That sounds promising!
>> >>>
>> >>>
>> >>> On Tue, Jun 3, 2014 at 3:23 PM, Michal Mocny 
>> wrote:
>> >>>
>> >>> > WKWebView?!
>> >>> >
>> >>> >
>> >>> > On Tue, Jun 3, 2014 at 3:14 PM, Shazron  wrote:
>> >>> >
>> >>> > > See API diffs:
>> >>> > >
>> >>> >
>> >>>
>> https://developer.apple.com/library/prerelease/ios/releasenotes/General/iOS80APIDiffs/index.html
>> >>> > > Some random search terms: UIWebView, Tofu, Rice Pilaf, WebKit,
>> Curry,
>> >>> > > Green Beans
>> >>> > >
>> >>> > >
>> >>> > > On Tue, Jun 3, 2014 at 10:05 AM, purplecabbage <
>> >>> purplecabb...@gmail.com>
>> >>> > > wrote:
>> >>> > > > The sessions will all be nda, but the docs should be available
>> now,
>> >>> and
>> >>> > > videos to come.
>> >>> > > > So I recommend you don't live tweet.
>> >>> > > >
>> >>> > > > Sent from my iPhone
>> >>> > > >
>> >>> > > >> On Jun 3, 2014, at 2:47 AM, tommy-carlos williams <
>> >>> to...@devgeeks.org
>> >>> > >
>> >>> > > wrote:
>> >>> > > >>
>> >>> > > >> Carlos,
>> >>> > > >>
>> >>> > > >> PLEASE tell me you are going to “Introducing the Modern WebKit
>> API”
>> >>> > and
>> >>> > > live tweeting it, or something?!
>> >>> > > >>
>> >>> > > >> “...advanced bridging between JavaScript and Objective-C,
>> increased
>> >>> > > JavaScript performance via WebKit's super-fast JIT, and more"
>> >>> > > >>
>> >>> > > >> Is that saying what I THINK it’s saying?
>> >>> > > >>
>> >>> > > >> - tommy
>> >>> > > >>
>> >>> > > >> On 3 June 2014 at 17:39:57, Steven Gill (stevengil...@gmail.com
>> )
>> >>> > wrote:
>> >>> > > >>
>> >>> > > >> Interested in meeting at be

iOS 8 Release Notes - PhoneGap/Cordova mention

2014-06-03 Thread Shazron
No login required due to Apple's reforms:
https://developer.apple.com/library/prerelease/ios/releasenotes/General/RN-iOSSDK-8.0/index.html

WebKit
- Known Issues
-- Applications that use Apache Cordova/PhoneGap are broken due to a
bug that causes the window.navigator.userAgent object to become
undefined when window.navigator is replaced by a pure JavaScript
wrapper object.

https://issues.apache.org/jira/browse/CB-6863


Re: jira permissions

2014-06-04 Thread Shazron
>From INFRA, info about Roles:
https://cwiki.apache.org/confluence/display/INFRA/Role+Based+JIRA+Authorization

On Tue, Jun 3, 2014 at 3:55 PM, Shazron  wrote:
> https://issues.apache.org/jira/browse/INFRA-7863
>
> On Tue, Jun 3, 2014 at 3:23 PM, Shazron  wrote:
>> I've updated the PMC Group in JIRA to include members of the PMC (plus
>> any Apache Members -- not sure what the ASF Members Role is, so I
>> didn't move them there). However - I can't find 4 PMC members in JIRA
>> -- either I don't know their user handle or they haven't created an
>> account.
>>
>> They are:
>> dkormalev Denis Kormalev
>> doc David Charles Johnson
>> jtyberg Justin Tyberg
>> yohei Yohei Shimomae
>>
>> PMC list: https://whimsy.apache.org/roster/committee/cordova
>>
>> On Tue, Jun 3, 2014 at 1:33 PM, Shazron  wrote:
>>> I see the problem. Contributors may be assigned issues, but they can't
>>> assign issues (Committer can)
>>> I think by default any community member that wants to work on an issue
>>> should be in the "Committers" group (does not need to correspond to
>>> actual LDAP designation).
>>> Only actual PMC members I think should be in the PMC group since that
>>> has Admin privileges (which includes deleting issues).
>>>
>>> https://issues.apache.org/jira/plugins/servlet/project-config/CB/permissions
>>>
>>> I'll make those changes unless anyone objects.
>>>
>>>
>>> On Tue, Jun 3, 2014 at 11:47 AM, Staci Cooper  wrote:
>>>> Checked again and it's working now.
>>>>
>>>> Thanks Ian!
>>>>
>>>>
>>>> On Tue, Jun 3, 2014 at 11:40 AM, Martin Gonzalez <
>>>> martin.c.glez.g...@gmail.com> wrote:
>>>>
>>>>> I'd like to be able to assign issues to myself Ian, can you add me as 
>>>>> well,
>>>>> please?
>>>>>
>>>>> Thanks.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> 2014-06-03 13:35 GMT-05:00 Ian Clelland :
>>>>>
>>>>> > Staci, can you try again? I've added you to the 'committers' group in
>>>>> JIRA,
>>>>> > and I *think* that should work.
>>>>> >
>>>>> >
>>>>> > On Tue, Jun 3, 2014 at 1:45 PM, Staci Cooper 
>>>>> wrote:
>>>>> >
>>>>> > > I didn't realize I had two JIRA accounts--the ibm one must have been
>>>>> > > generated unintentionally. I use the @gmail.com one.
>>>>> > >
>>>>> > > I ask in particular because I'm starting to work through the heap of
>>>>> > > failing mobile spec tests on windows phone. So I'll be opening a lot 
>>>>> > > of
>>>>> > > issues and it's a pain to bother someone else to change the assignment
>>>>> on
>>>>> > > each of them.
>>>>> > >
>>>>> > >
>>>>> > > On Mon, Jun 2, 2014 at 7:17 PM, Andrew Grieve 
>>>>> > > wrote:
>>>>> > >
>>>>> > > > I've always made a habit of adding everyone to the PMC list since
>>>>> > that's
>>>>> > > > required to be able to assign issues to yourself. We've never had
>>>>> > > problems
>>>>> > > > with JIRA abuse.
>>>>> > > >
>>>>> > > >
>>>>> > > > On Mon, Jun 2, 2014 at 8:19 PM, sebb  wrote:
>>>>> > > >
>>>>> > > > > On 2 June 2014 21:43, Shazron  wrote:
>>>>> > > > > > I don't think there is a requirement - that's so much overhead.
>>>>> Not
>>>>> > > > > > sure why there are two lists, maybe we just make them into one.
>>>>> > > What's
>>>>> > > > > > more important is only the PMC be able to administrate Cordova
>>>>> JIRA
>>>>> > > > >
>>>>> > > > > I seem to remember that there are some aspects of the JIRA
>>>>> > permissions
>>>>> > > > > schemes that don't work well.
>>>>> > > > > So if you are having issues, please raise an INFRA 

Re: WKWebView for iOS8

2014-06-04 Thread Shazron
Use Safari to watch "Introducing the Modern WebKit API" (no login required):
https://developer.apple.com/videos/wwdc/2014/

On Wed, Jun 4, 2014 at 8:25 AM, Michal Mocny  wrote:
> You can probably bet on it.
>
> But this is really fresh news, we're as excited as you are, trying to
> figure out the details.
>
>
> On Wed, Jun 4, 2014 at 11:05 AM, Matthew David 
> wrote:
>
>> I am sure I am not the first to ask for this, but the new WebView for iOS
>> is now WKWebView with support for Nitro JS engine. Will WKWebView be a
>> selectable option in future builds of PhoneGap for iOS along with support
>> for iOS7 and earlier?
>>
>> Matt
>>


Re: [DISCUSS] Plugins Release!

2014-06-04 Thread Shazron
The Board Report is due on June 11th. I reckon all votes and release
won't finish by then?

On Mon, Jun 2, 2014 at 11:17 AM, Steven Gill  wrote:
> I'm planning on doing a plugins release this week!
>
> Please let me know if you have outstanding pull requests you would like
> merged in before release.
>
> I'm hoping to get a vote thread started tomorrow.
>
> Any problems with this plan?
>
> -Steve


Re: WKWebView for iOS8

2014-06-05 Thread Shazron
My intent is to work on this today, in a branch for cordova-ios:
https://issues.apache.org/jira/browse/CB-6863

On Wed, Jun 4, 2014 at 10:15 AM, Shazron  wrote:
> Use Safari to watch "Introducing the Modern WebKit API" (no login required):
> https://developer.apple.com/videos/wwdc/2014/
>
> On Wed, Jun 4, 2014 at 8:25 AM, Michal Mocny  wrote:
>> You can probably bet on it.
>>
>> But this is really fresh news, we're as excited as you are, trying to
>> figure out the details.
>>
>>
>> On Wed, Jun 4, 2014 at 11:05 AM, Matthew David 
>> wrote:
>>
>>> I am sure I am not the first to ask for this, but the new WebView for iOS
>>> is now WKWebView with support for Nitro JS engine. Will WKWebView be a
>>> selectable option in future builds of PhoneGap for iOS along with support
>>> for iOS7 and earlier?
>>>
>>> Matt
>>>


Re: WKWebView for iOS8

2014-06-05 Thread Shazron
Well seems like the answer in iOS 8 beta 1 is -- no arbitrary sending
of JS, so no Obj-C -> JS communication, which leaves Cordova
handcuffed. Please everyone file radars for this.
https://devforums.apple.com/message/975230#975230

On Thu, Jun 5, 2014 at 3:40 PM, Shazron  wrote:
> Thanks Tommy - I sure will.
>
> I think injecting JavaScript at arbitrary times -- you would just use
> WKUserScriptInjectionTimeAtDocumentEnd for WKUserScript -- although I
> haven't tested it. If setting JS at arbitrary times is taken away -
> yikes.
>
> Anyways, on the bridge front, I've posted my approach for the new bridge:
> https://issues.apache.org/jira/browse/CB-6884
>
> On Thu, Jun 5, 2014 at 2:06 PM, Tommy Williams  wrote:
>> I am sure you won't need it, but if I can help, let me know.
>>
>> I think the biggest hurdle will be firing user scripts at arbitrary times
>> instead of only on page load.. There seems to be an API that hasn't been
>> exposed :/
>> On 6 Jun 2014 04:59, "Shazron"  wrote:
>>
>>> My intent is to work on this today, in a branch for cordova-ios:
>>> https://issues.apache.org/jira/browse/CB-6863
>>>
>>> On Wed, Jun 4, 2014 at 10:15 AM, Shazron  wrote:
>>> > Use Safari to watch "Introducing the Modern WebKit API" (no login
>>> required):
>>> > https://developer.apple.com/videos/wwdc/2014/
>>> >
>>> > On Wed, Jun 4, 2014 at 8:25 AM, Michal Mocny 
>>> wrote:
>>> >> You can probably bet on it.
>>> >>
>>> >> But this is really fresh news, we're as excited as you are, trying to
>>> >> figure out the details.
>>> >>
>>> >>
>>> >> On Wed, Jun 4, 2014 at 11:05 AM, Matthew David >> >
>>> >> wrote:
>>> >>
>>> >>> I am sure I am not the first to ask for this, but the new WebView for
>>> iOS
>>> >>> is now WKWebView with support for Nitro JS engine. Will WKWebView be a
>>> >>> selectable option in future builds of PhoneGap for iOS along with
>>> support
>>> >>> for iOS7 and earlier?
>>> >>>
>>> >>> Matt
>>> >>>
>>>


Re: WKWebView for iOS8

2014-06-05 Thread Shazron
Thanks Tommy - I sure will.

I think injecting JavaScript at arbitrary times -- you would just use
WKUserScriptInjectionTimeAtDocumentEnd for WKUserScript -- although I
haven't tested it. If setting JS at arbitrary times is taken away -
yikes.

Anyways, on the bridge front, I've posted my approach for the new bridge:
https://issues.apache.org/jira/browse/CB-6884

On Thu, Jun 5, 2014 at 2:06 PM, Tommy Williams  wrote:
> I am sure you won't need it, but if I can help, let me know.
>
> I think the biggest hurdle will be firing user scripts at arbitrary times
> instead of only on page load.. There seems to be an API that hasn't been
> exposed :/
> On 6 Jun 2014 04:59, "Shazron"  wrote:
>
>> My intent is to work on this today, in a branch for cordova-ios:
>> https://issues.apache.org/jira/browse/CB-6863
>>
>> On Wed, Jun 4, 2014 at 10:15 AM, Shazron  wrote:
>> > Use Safari to watch "Introducing the Modern WebKit API" (no login
>> required):
>> > https://developer.apple.com/videos/wwdc/2014/
>> >
>> > On Wed, Jun 4, 2014 at 8:25 AM, Michal Mocny 
>> wrote:
>> >> You can probably bet on it.
>> >>
>> >> But this is really fresh news, we're as excited as you are, trying to
>> >> figure out the details.
>> >>
>> >>
>> >> On Wed, Jun 4, 2014 at 11:05 AM, Matthew David > >
>> >> wrote:
>> >>
>> >>> I am sure I am not the first to ask for this, but the new WebView for
>> iOS
>> >>> is now WKWebView with support for Nitro JS engine. Will WKWebView be a
>> >>> selectable option in future builds of PhoneGap for iOS along with
>> support
>> >>> for iOS7 and earlier?
>> >>>
>> >>> Matt
>> >>>
>>


Re: WKWebView for iOS8

2014-06-05 Thread Shazron
No use in polling if we can't write anything back to JS from Obj-C.

There's a private API to do so:
https://github.com/WebKit/webkit/commit/adb4c60064b38b5ab3d6e78422325f35f0b7fe2b
only landed a few months ago, we'll have to do some advocacy through
whatever channels we have to get it in the public API (radars,
connections), since it is a deficiency in their API losing something
like stringByEvaluatingJavaScriptFromString



On Thu, Jun 5, 2014 at 6:09 PM, Michal Mocny  wrote:
> Oh wow.  I totally assumed that you can postMessage in either direction at
> any time.  Wouldn't the alternative be polling from JS?
>
> -Michal
>
>
> On Thu, Jun 5, 2014 at 6:46 PM, Shazron  wrote:
>
>> Well seems like the answer in iOS 8 beta 1 is -- no arbitrary sending
>> of JS, so no Obj-C -> JS communication, which leaves Cordova
>> handcuffed. Please everyone file radars for this.
>> https://devforums.apple.com/message/975230#975230
>>
>> On Thu, Jun 5, 2014 at 3:40 PM, Shazron  wrote:
>> > Thanks Tommy - I sure will.
>> >
>> > I think injecting JavaScript at arbitrary times -- you would just use
>> > WKUserScriptInjectionTimeAtDocumentEnd for WKUserScript -- although I
>> > haven't tested it. If setting JS at arbitrary times is taken away -
>> > yikes.
>> >
>> > Anyways, on the bridge front, I've posted my approach for the new bridge:
>> > https://issues.apache.org/jira/browse/CB-6884
>> >
>> > On Thu, Jun 5, 2014 at 2:06 PM, Tommy Williams 
>> wrote:
>> >> I am sure you won't need it, but if I can help, let me know.
>> >>
>> >> I think the biggest hurdle will be firing user scripts at arbitrary
>> times
>> >> instead of only on page load.. There seems to be an API that hasn't been
>> >> exposed :/
>> >> On 6 Jun 2014 04:59, "Shazron"  wrote:
>> >>
>> >>> My intent is to work on this today, in a branch for cordova-ios:
>> >>> https://issues.apache.org/jira/browse/CB-6863
>> >>>
>> >>> On Wed, Jun 4, 2014 at 10:15 AM, Shazron  wrote:
>> >>> > Use Safari to watch "Introducing the Modern WebKit API" (no login
>> >>> required):
>> >>> > https://developer.apple.com/videos/wwdc/2014/
>> >>> >
>> >>> > On Wed, Jun 4, 2014 at 8:25 AM, Michal Mocny 
>> >>> wrote:
>> >>> >> You can probably bet on it.
>> >>> >>
>> >>> >> But this is really fresh news, we're as excited as you are, trying
>> to
>> >>> >> figure out the details.
>> >>> >>
>> >>> >>
>> >>> >> On Wed, Jun 4, 2014 at 11:05 AM, Matthew David <
>> matthewada...@gmail.com
>> >>> >
>> >>> >> wrote:
>> >>> >>
>> >>> >>> I am sure I am not the first to ask for this, but the new WebView
>> for
>> >>> iOS
>> >>> >>> is now WKWebView with support for Nitro JS engine. Will WKWebView
>> be a
>> >>> >>> selectable option in future builds of PhoneGap for iOS along with
>> >>> support
>> >>> >>> for iOS7 and earlier?
>> >>> >>>
>> >>> >>> Matt
>> >>> >>>
>> >>>
>>


Re: WKWebView for iOS8

2014-06-07 Thread Shazron
No it's not. That is precisely what we discussed, it's the limitation in
WKUserScript.

On Saturday, June 7, 2014, Carlos Santana  wrote:

> Shaz
>   I think the closest replacement is [1] - (void)addUserScript:(
> WKUserScript *)*userScript *
>
> I have not tried my self, but looking forward on helping out.
>
> [1]:
>
> https://developer.apple.com/library/prerelease/ios/documentation/WebKit/Reference/WKUserContentController_Ref/index.html#//apple_ref/occ/instm/WKUserContentController/addUserScript
> :
>
>
> On Fri, Jun 6, 2014 at 12:47 AM, Shazron  wrote:
>
> > No use in polling if we can't write anything back to JS from Obj-C.
> >
> > There's a private API to do so:
> >
> >
> https://github.com/WebKit/webkit/commit/adb4c60064b38b5ab3d6e78422325f35f0b7fe2b
> > only landed a few months ago, we'll have to do some advocacy through
> > whatever channels we have to get it in the public API (radars,
> > connections), since it is a deficiency in their API losing something
> > like stringByEvaluatingJavaScriptFromString
> >
> >
> >
> > On Thu, Jun 5, 2014 at 6:09 PM, Michal Mocny 
> wrote:
> > > Oh wow.  I totally assumed that you can postMessage in either direction
> > at
> > > any time.  Wouldn't the alternative be polling from JS?
> > >
> > > -Michal
> > >
> > >
> > > On Thu, Jun 5, 2014 at 6:46 PM, Shazron  wrote:
> > >
> > >> Well seems like the answer in iOS 8 beta 1 is -- no arbitrary sending
> > >> of JS, so no Obj-C -> JS communication, which leaves Cordova
> > >> handcuffed. Please everyone file radars for this.
> > >> https://devforums.apple.com/message/975230#975230
> > >>
> > >> On Thu, Jun 5, 2014 at 3:40 PM, Shazron  wrote:
> > >> > Thanks Tommy - I sure will.
> > >> >
> > >> > I think injecting JavaScript at arbitrary times -- you would just
> use
> > >> > WKUserScriptInjectionTimeAtDocumentEnd for WKUserScript -- although
> I
> > >> > haven't tested it. If setting JS at arbitrary times is taken away -
> > >> > yikes.
> > >> >
> > >> > Anyways, on the bridge front, I've posted my approach for the new
> > bridge:
> > >> > https://issues.apache.org/jira/browse/CB-6884
> > >> >
> > >> > On Thu, Jun 5, 2014 at 2:06 PM, Tommy Williams 
> > >> wrote:
> > >> >> I am sure you won't need it, but if I can help, let me know.
> > >> >>
> > >> >> I think the biggest hurdle will be firing user scripts at arbitrary
> > >> times
> > >> >> instead of only on page load.. There seems to be an API that hasn't
> > been
> > >> >> exposed :/
> > >> >> On 6 Jun 2014 04:59, "Shazron"  wrote:
> > >> >>
> > >> >>> My intent is to work on this today, in a branch for cordova-ios:
> > >> >>> https://issues.apache.org/jira/browse/CB-6863
> > >> >>>
> > >> >>> On Wed, Jun 4, 2014 at 10:15 AM, Shazron 
> wrote:
> > >> >>> > Use Safari to watch "Introducing the Modern WebKit API" (no
> login
> > >> >>> required):
> > >> >>> > https://developer.apple.com/videos/wwdc/2014/
> > >> >>> >
> > >> >>> > On Wed, Jun 4, 2014 at 8:25 AM, Michal Mocny <
> mmo...@chromium.org
> > >
> > >> >>> wrote:
> > >> >>> >> You can probably bet on it.
> > >> >>> >>
> > >> >>> >> But this is really fresh news, we're as excited as you are,
> > trying
> > >> to
> > >> >>> >> figure out the details.
> > >> >>> >>
> > >> >>> >>
> > >> >>> >> On Wed, J--
> Carlos Santana
> >
>


Re: bugs with components and subtasks for the same components

2014-06-09 Thread Shazron
+1

On Mon, Jun 9, 2014 at 2:57 PM, Josh Soref  wrote:
> https://issues.apache.org/jira/browse/CB-4650 is currently unresolved.
>
> Unfortunately, it shows up when I search for open blackberry bugs.
>
> It has 5 subtasks, 4 of which are done.
>
> I'd like to (as a policy) remove all platform tags from meta bugs when
> there's a subtask specific to that platform.
>
> Any objections?
>


Re: [WP8][cordova-plugin-file] filesystem: null after use IsolatedStorageFile.MoveDirectory

2014-06-09 Thread Shazron
Thanks Martin, is this captured in a JIRA issue just in case people
are away and this thread gets buried?

On Mon, Jun 9, 2014 at 10:39 AM, Martin Gonzalez
 wrote:
> I'm working on fix mobile spec automated tests, specifically on those which
> involves the File plugin. In the test # 67 of that test suite, I've found
> out that the problem is not that the directory is not moved, the problem is
> that after this line is executed:
> https://github.com/apache/cordova-plugin-file/blob/master/src/wp/File.cs#L1412
> The DispatchCommandResult sends the entry file with the CallbackID, but the
> problem is that the information about the filesystem is missing.
> This situation it doesn't happen when isoFile.MoveFile(newPath),
> IsolatedStorageFile.CreateDirectory(path) or
> IsolatedStorageFile.CreateFile(path) are used the filesystem information it
> remains with those but not with MoveDirectory.
> During the 67 test and several others, it uses the filesystem information
> of the recent moved directory to determine if the file exists, and when it
> gets to GeFileOrDirectory on the options this is the array obtained:
> "[null,"file1","{\"create\":false}","File619232322"]"
>
> When Create or MoveFile:
> "["\/\/entry,move.dsp.srcDir","file1","{\"create\":false}","File619232322"]"
>
> From the JS side object:
> MoveDirectory:
> {"isFile":false, "isDirectory":true, "name" : "entry.move.dsp.dstDir",
> "filesystem":null, "nativeURL":null}
>
> MoveFile:
> {"isFile":true, "isDirectory":false, "name" : "entry.move.dsp.dstDir",
> "filesystem":"", "nativeURL":null}
>
> That's the reason why some automated tests on the MoveTo section are
> failing.
>
> Tested on Windows Phone 8 and 8.1, emulator and device. Same behavior.
>
> Any thoughts about this?
>
> --
> Regards,
> Martin Gonzalez


Re: Coho updates

2014-06-09 Thread Shazron
This is great, thanks Andrew.
 One further enhancement would be to verify the source zip vs
downloading the source at the tag, whether there are any differences
(would help with release)

On Fri, Jun 6, 2014 at 9:18 AM, Andrew Grieve  wrote:
> Spent some time on it yesterday & today. Highlights:
> - Much faster start-up on node 0.10 (made some requires lazy)
> - Much faster repo-clone and repo-update commands (made network work
> concurrent)
> - Clearer output for repo-status command (prints nothing for no changes,
> prints unpushed changes & uncommitted files)
> - Added a "verify-tags" command, so you can paste in Steve's plugins
> release vote email and it will check that all the tags match the hashes.


<    2   3   4   5   6   7   8   9   10   11   >