[mochikit] Re: Activity

2007-10-08 Thread Kevin Kaiser
Wouldn't the solution just be to update mochikit.com to indicate that the project is stable, maintained silently in the background and isn't seeking to do active, steady releases due to already fulfilling its original function? A lot of software projects end up growing out of control after too

[mochikit] twoDigitFloat bug

2007-10-08 Thread Pedro Belo
Hey guys, I'm running into something that looks like a floating point problem, but I'm not sure about what can be done about it. The thing is: twoDigitFloat(568.80) returns 568.79. Just tested against the trunk, too. I've created a ticket in case anyone comes with a solution:

[mochikit] Re: twoDigitFloat bug

2007-10-08 Thread Bob Ippolito
That's how floats work, 568.80 is represented internally as (roughly) 567.7999. numberFormatter rounds though, you can use numberFormatter(#.##)(568.80) which should give you what you want. On 10/8/07, Pedro Belo [EMAIL PROTECTED] wrote: Hey guys, I'm running into something that looks like a