Hi,
On Wed, Mar 13, 2013 at 1:17 AM, Andrew Grieve wrote:
> Awesome! Yes, works fine. I couldn't find a link to it for the life of me!
Look for the "Administer Project" button (not link) at the top-right
corner of https://issues.apache.org/jira/browse/CB.
> So... On the Roles tab, there are "Co
I see it! Thanks Jukka!
On Wed, Mar 13, 2013 at 6:38 AM, Jukka Zitting wrote:
> Hi,
>
> On Wed, Mar 13, 2013 at 1:17 AM, Andrew Grieve
> wrote:
> > Awesome! Yes, works fine. I couldn't find a link to it for the life of
> me!
>
> Look for the "Administer Project" button (not link) at the top-rig
An alternative, for the big breaking changes in 3.0, would be to allow it
to be a clean, break-everything jump, and then support the last 2.x release
for six months, fixing major bugs and doing point releases if necessary.
Braden
On Tue, Mar 12, 2013 at 8:06 PM, Tommy-Carlos Williams
wrote:
> J
given the reasoning presented by Joe and Tommy, I'm +1 for this.
It strikes me that a project which releases as often as ours (~1/month)
needs to have a deprecation policy based on that, not an arbitrary fixed
length of time.
On Tue, Mar 12, 2013 at 5:06 PM, Tommy-Carlos Williams
wrote:
> Just m
Had a glance at your code. Things you may want to address:
while(!mUIThreadDone) {}
You shouldn't need to busy-wait. Pass the CallbackContext to the Runnable,
and call success/error on it whenever you're done. No need to have the web
thread wait for it. Even better would be to use a second Runnab
I think this is a good start, please fill in whoever I've missed.
http://wiki.apache.org/cordova/who
We can add more detail about each individual, but for now I just link to
the phonegap page which already has a lot of good stuff. If your name
doesn't have a link, I encourage you to make one!
O
Huge +1 to decreasing the time. I also *really* like the suggestion of
moving towards deprecation time in-terms-of-releases. This is easier to
track for everyone. It also means we can leverage changes to the way we
manage releases in git (so, for example, we can give even longer-term
support for
I added a profile on people.phonegap.com and updated the link on the
cordova/who page. If someone could "star" my phonegap people page I would
appreciate it.
-b
On Wed, Mar 13, 2013 at 11:23 AM, Michal Mocny wrote:
> I think this is a good start, please fill in whoever I've missed.
> http://w
No go ahead James, no point waiting.
On 3/12/13 1:59 PM, "James Jong" wrote:
>Great! Thanks for all the feedback. I'll start working on it.
>
>Fil - on the helper scripts. Is this something you want me to wait on
>before opening up the JIRA for this?
>
>Max - thanks for alerting me to the but
This is perfect, thanks Jukka! I've edited the "Becoming a Committer" [1]
wiki article with a section on how to vote a new committer in and what to
do once someone joins.
[1] http://wiki.apache.org/cordova/BecomingACommitter
On 3/13/13 7:21 AM, "Andrew Grieve" wrote:
>I see it! Thanks Jukka!
>
I have starred it. If anyone else here is missing a star, let me know.
-Steve
On Wed, Mar 13, 2013 at 8:34 AM, Becky Gibson wrote:
> I added a profile on people.phonegap.com and updated the link on the
> cordova/who page. If someone could "star" my phonegap people page I would
> appreciate it.
I need a star too! :-)
-James Jong
On Mar 13, 2013, at 2:24 PM, Steven Gill wrote:
> I have starred it. If anyone else here is missing a star, let me know.
>
> -Steve
>
> On Wed, Mar 13, 2013 at 8:34 AM, Becky Gibson wrote:
>
>> I added a profile on people.phonegap.com and updated the link o
+1 to decreasing the time. Right now on the wiki we have to have a ballpark
on when to deprecate in the "Remove By" column, and while it's easy to
guess because of my monthly schedule, it is less precise:
http://wiki.apache.org/cordova/DeprecationPolicy
On Wed, Mar 13, 2013 at 8:32 AM, Michal Mo
A bit more detail.
I was curious about some items in the Contact Manager API so I dove into
the mail archives for the System Applications Working group who published
this working draft. It seems that this is a parallel effort to the Device
API working group which published the initial contacts
Thanks Andrew these are great suggestions!
About not needing the busy-wait in getScreenBits:
I'm not a fan of busy-waiting either.
Perhaps it's a side effect of Jasmine requiring tests to be run and
evaluated synchronously that I decided to use a busy-wait in getScreenBits.
If the Runnable calls
Quick follow up question for the return values stuff:
Does it make sense to have my functions called from execute (capture() and
captureAndCompare()) return an error string if one is encountered and pass
that back in callbackContext.error, then have execute return true?
Or is there a preferred way
Jasmine does support asynchronous tests, and waiting an arbitrary period or
until some condition is true. Why does that not work for these tests?
Braden
On Wed, Mar 13, 2013 at 3:42 PM, Aaron Charbonneau wrote:
> Quick follow up question for the return values stuff:
> Does it make sense to have
Please star me up, Steve.
On Wed, Mar 13, 2013 at 2:28 PM, James Jong wrote:
> I need a star too! :-)
>
> -James Jong
>
> On Mar 13, 2013, at 2:24 PM, Steven Gill wrote:
>
> > I have starred it. If anyone else here is missing a star, let me know.
> >
> > -Steve
> >
> > On Wed, Mar 13, 2013 at
Hi,
My name is Shravan Narayan. I am a new intern at Google in the Cordova team
since mid February. I'm working on implementing the ChromeApps api in
Cordova for Android and iOS .
The list of api's are available here if you're curious
http://developer.chrome.com/apps/api_index.html
http://develope
BB10 has support for this and I'll volunteer to do the implementation.
If a JIRA task has or is being created, please assign it to me (bryanhiggins).
Thanks,
Bryan
From: Filip Maj mailto:f...@adobe.com>>
Date: Wed, Mar 13, 2013 at 12:55 PM
Subject: Re: prompt dialog for the Notification API?
To
*small correction - the subject of my previous email says "Intro +
InAppBrowser Feature addition" Please ignore the "InAppBrowser Feature
addition" part.
On Wed, Mar 13, 2013 at 4:20 PM, Shravan Narayan wrote:
> Hi,
> My name is Shravan Narayan. I am a new intern at Google in the Cordova
> t
Hi Braden,
Sorry maybe I am overlooking something. The way I understand it is that a
previous 'it' block needs to complete before the next one can run. So I
have various tests setup like this:
it("renders something", function() {
//draw something
captureAndCompare(); //call the native funct
As far as I know, you're correct: there's no way to move on the next it()
block before the first one is done.
What's the problem with just making the tests wait? Why does the next it()
block need to start early? You can make your call to Java, use waitFor to
wait until the callback with the data i
Please star me. Thanks!
-- Marcel Kinard
On Mar 13, 2013, at 2:24 PM, Steven Gill wrote:
> I have starred it. If anyone else here is missing a star, let me know.
>
> -Steve
Yah that's how I have it working now :) No problem with that approach for
working with Jasmine.
I made reference to running them asynchronously to respond to Andrew about
returning immediately after the bits are captured, which in the case of
using that with Jasmine would only see a benefit IF we
Ignored :) Welcome Sharavan!
On Wed, Mar 13, 2013 at 1:42 PM, Shravan Narayan wrote:
> *small correction - the subject of my previous email says "Intro +
> InAppBrowser Feature addition" Please ignore the "InAppBrowser Feature
> addition" part.
>
>
> On Wed, Mar 13, 2013 at 4:20 PM, Shravan
Thanks for volunteering Bryan! I'll be creating the JIRA items tonight and
assign BB10 to you.
-James Jong
On Mar 13, 2013, at 2:28 PM, Bryan Higgins wrote:
> BB10 has support for this and I'll volunteer to do the implementation.
>
> If a JIRA task has or is being created, please assign it
Welcome Shravan!
On Wed, Mar 13, 2013 at 2:06 PM, Shazron wrote:
> Ignored :) Welcome Sharavan!
>
>
> On Wed, Mar 13, 2013 at 1:42 PM, Shravan Narayan >wrote:
>
> > *small correction - the subject of my previous email says "Intro +
> > InAppBrowser Feature addition" Please ignore the "InAp
Welcome Sharavan! Glad you're joining the party with me!
-James Jong
On Mar 13, 2013, at 5:29 PM, Anis KADRI wrote:
> Welcome Shravan!
>
>
> On Wed, Mar 13, 2013 at 2:06 PM, Shazron wrote:
>
>> Ignored :) Welcome Sharavan!
>>
>>
>> On Wed, Mar 13, 2013 at 1:42 PM, Shravan Narayan >> wrot
Shazron,
Did you get this to work?
I think the scrolling fix removed the blank space (of tool bar height) that
was visible when scrolling to the bottom of the page.
Are you adding an API to enable and disabled the accessory bar too? I
created the plugin for an app where we remove the toolbar on
/me highfives all around
On Wed, Mar 13, 2013 at 2:33 PM, James Jong wrote:
> Welcome Sharavan! Glad you're joining the party with me!
>
> -James Jong
>
> On Mar 13, 2013, at 5:29 PM, Anis KADRI wrote:
>
>> Welcome Shravan!
>>
>>
>> On Wed, Mar 13, 2013 at 2:06 PM, Shazron wrote:
>>
>>> Ignore
Hi Don,
No, it's a startup setting only right now. I'll look at the scrollview
stuff when I have the chance.
Issue: https://issues.apache.org/jira/browse/CB-2384
On Wed, Mar 13, 2013 at 2:58 PM, Don Coleman wrote:
> Shazron,
>
> Did you get this to work?
>
> I think the scrolling fix removed
Rad!
On 3/13/13 3:34 PM, "Herm Wong" wrote:
>Cordova-FirefoxOS repo has been created with the initial project.
>https://git-wip-us.apache.org/repos/asf?p=cordova-firefoxos.git;a=summary
>
>Should propagate to github soon.
I've added more detail to the ReportingBugs [1] and CuttingReleases [2]
wiki articles to address that issue.
Still working on a first pass of the "file a top-level issue with
subtasks" magic script. Hopefully get that done tomorrow.
[1] http://wiki.apache.org/cordova/ReportingBugs
[2] http://wiki
Fil or Andrew,
I was trying to assign a JIRA item to Bryan Higgins. He's in JIRA but he
doesn't show up in the list of people I can assign to. Can you help get him
the correct permissions?
-James Jong
On Mar 13, 2013, at 1:44 PM, Filip Maj wrote:
> This is perfect, thanks Jukka! I've edite
I think I got it. I added Bryan to the "contributors" list of people in
JIRA admin. I guess that needs to be done before we can assign tasks to
people.
On 3/13/13 6:25 PM, "James Jong" wrote:
>Fil or Andrew,
>
>I was trying to assign a JIRA item to Bryan Higgins. He's in JIRA but he
>doesn't sh
On Tue, Mar 12, 2013 at 8:06 PM, Tommy-Carlos Williams
wrote:
>
> No one sees a deprecation warning and thinks "ooh… better not use that…",
> they say "a warning is not an error" and move on with their project.
What I find incredibly weird is no one cares about our deprecation
method but god for
That did it. Thanks Fil.
-James Jong
On Mar 13, 2013, at 9:39 PM, Filip Maj wrote:
> I think I got it. I added Bryan to the "contributors" list of people in
> JIRA admin. I guess that needs to be done before we can assign tasks to
> people.
>
> On 3/13/13 6:25 PM, "James Jong" wrote:
>
>> Fi
I don't need anyone to tell me I'm a starexcept my mom!
Simon Mac Donald
http://hi.im/simonmacdonald
On Wed, Mar 13, 2013 at 4:56 PM, Marcel Kinard wrote:
> Please star me. Thanks!
>
> -- Marcel Kinard
>
> On Mar 13, 2013, at 2:24 PM, Steven Gill wrote:
>
>> I have starred it. If anyone el
*guitar solo*
On Wed, Mar 13, 2013 at 3:36 PM, Filip Maj wrote:
> Rad!
>
> On 3/13/13 3:34 PM, "Herm Wong" wrote:
>
>>Cordova-FirefoxOS repo has been created with the initial project.
>>https://git-wip-us.apache.org/repos/asf?p=cordova-firefoxos.git;a=summary
>>
>>Should propagate to github soon
40 matches
Mail list logo