[Prototype-core] Extra underscore in Ajax.Request.parameters

2009-11-23 Thread Arjen Nienhuis
Hi, Prototype adds a extra parameter _= to every GET Ajax.Request done by any WebKit browser. This is done to fix a bug in an old version of Safari. I'd like to see this feature removed for these reasons: - That version is of Safari is not used any more. (which version was it anyway?) - It

[Prototype-core] Who is using Prototype another prominent Company

2009-11-23 Thread Alexander von Loeffelholz
Hey Guys! Thanks for your good work!! Just wanted to say that another prominent user of prototype is Palm. They use it as their base for Mojo SDK and webOS. best regards, Alex -- You received this message because you are subscribed to the Google Groups Prototype: Core group. To post to this

[Prototype-core] Sprockets quesion

2009-11-23 Thread Jim Higson
Hi, Sorry if this isn't the right place to discuss sprockets. If I want to list dependent files in order, but not concatenate them, is that possible with command line sprocketize? This is so I can set up a project to allow concatenated or non-concatenated js to be used, but still use the

[Prototype-core] Re: Extra underscore in Ajax.Request.parameters

2009-11-23 Thread kangax
On Nov 19, 9:39 pm, Arjen Nienhuis a.g.nienh...@gmail.com wrote: Hi, Prototype adds a extra parameter _= to every GET Ajax.Request done by any WebKit browser. This is done to fix a bug in an old version of Safari. I'd like to see this feature removed for these reasons: - That version is

Re: [Prototype-core] Re: Extra underscore in Ajax.Request.parameters

2009-11-23 Thread Arjen Nienhuis
On Mon, Nov 23, 2009 at 5:51 PM, kangax kan...@gmail.com wrote: On Nov 19, 9:39 pm, Arjen Nienhuis a.g.nienh...@gmail.com wrote: Hi, Prototype adds a extra parameter _= to every GET Ajax.Request done by any WebKit browser. This is done to fix a bug in an old version of Safari. I'd like to

[Prototype-core] Re: Support full HTML set in (un)escapeHTML

2009-11-23 Thread disccomp
How about this sweet little scripty I found[1], call it a textarea hack: function html_entity_decode(str) { var ta=document.createElement(textarea); ta.innerHTML=str.replace(//g,lt;).replace(//g,gt;); return ta.value; } [1]