[Prototype-core] Native JSON breakage

2009-12-01 Thread Bob Aman
Tobie et al, Currently, large sections of the Google JavaScript APIs, most notably the Friend Connect bits, are being broken in FF 3.5 anytime that Prototype also appears on a page. (Typically WordPress sites.) This is causing all kinds of support issues because it's easily misdiagnosed as some

[Prototype-core] Re: Server push capabilities

2009-12-01 Thread Sebastien
Ok, thanks for answers, I understood what you said, I've seen Comet programming, I've search a while before I've post this thread. And it's because all ways I found were dirty ways : Like I said, APE keep connexion alive waiting for data, then can give only one flow per connexion. And DWR seems cl

[Prototype-core] Re: Native JSON breakage

2009-12-01 Thread Yaffle
Add this code after prototype.js =). Also this code replaces FF 3.5 Native JSON.stringify with ES compatible... It breaks compatibility! delete String.prototype.toJSON; //! deleting this properties required to save FF 3.5 Native JSON.stringify delete Array.prototype.toJSON; //! delete Number.prot

Re: [Prototype-core] Re: Native JSON breakage

2009-12-01 Thread Bob Aman
> Add this code after prototype.js =) Thus far, this is the technique we've already been advocating, though in considerably shorter form. It's a stop-gap measure at best, and brittle at worst. However, my issue here is that while we're waiting for a newer version of Prototype, more sites are dep

[Prototype-core] Re: Native JSON breakage

2009-12-01 Thread Yaffle
I'm waiting prototype.js 1.7 too. -- You received this message because you are subscribed to the Google Groups "Prototype: Core" group. To post to this group, send email to prototype-core@googlegroups.com To unsubscribe from this group, send email to prototype-core-unsubscr...@googlegroups.com

[Prototype-core] Re: Native JSON breakage

2009-12-01 Thread Tobie Langel
Hi, Bob. Thanks for your post. We'll be including fixes for native JSON in Prototype 1.7, a prerelease of which is just around the corner. I understand your frustration with this issue. It's on our top priority list. Best, Tobie -- You received this message because you are subscribed to the

Re: [Prototype-core] Re: Native JSON breakage

2009-12-01 Thread Bob Aman
> We'll be including fixes for native JSON in Prototype 1.7, a > prerelease of which is just around the corner. "Just around the corner" means different things on different projects. Are we talking weeks, months? I'm trying to determine if Google should be spending some engineering time on detec