[Prototype-core] Re: Prototype and JavaScript 1.6 Array methods

2007-07-10 Thread Mislav Marohnić
On 7/10/07, Tobie Langel [EMAIL PROTECTED] wrote: Your post just triggered a commit (http://dev.rubyonrails.org/ changeset/7170). Check SVN for the latest implementation. Jeff, keep in mind that even this latest change still clobbers some native methods. This is because the native ones

[Prototype-core] Re: Prototype and JavaScript 1.6 Array methods

2007-07-10 Thread Jeff Watkins
Fantastic. I know breaking backward compatibility is never a good thing, but I'm glad to hear that standards compliance is considered just as important. On Jul 10, 2007, at 3:38 AM, Mislav Marohnić wrote: On 7/10/07, Tobie Langel [EMAIL PROTECTED] wrote: Your post just triggered a commit

[Prototype-core] Re: Bug in the Prototype's String.unescapeHTML()?

2007-07-10 Thread Vladimir V. Perepelitsa
prototype-1.5.1.1: line 406: unescapeHTML: function() { return this.replace(/amp;/g,'').replace(/lt;/g,'').replace(/gt;/g,''); } but should be unescapeHTML: function() { return this.replace(/lt;/g,'').replace(/gt;/g,'').replace(/amp;/g,''); } Compare the results of var

[Prototype-core] Re: Bug in the Prototype's String.unescapeHTML()?

2007-07-10 Thread jdalton
On Snap! Tricky, they define it again for WebKit and IE. Follow the info here : http://www.prototypejs.org/contribute and create a ticket 8) You can post back here with a link to the ticket if you wish. --~--~-~--~~~---~--~~ You received this message because

[Prototype-core] Re: Inheritance: your thoughts?

2007-07-10 Thread Alex Arnell
1. Does the current API make sense? Was there anything about it that surprised you? Anything you'd add or remove? Personally I am quite fond of the current API (for obvious reasons). I especially like Class.add addition, although I think it might make more sense represented as Class.reopen