[Prototype-core] Re: Array.insert

2008-03-28 Thread koozdra
Thanks for the quick reply. I ran some tests in ruby: array = [1,2,3,4] p array.insert(-3, 'one', 'two') array = [1,2,3,4] p array.insert(-1, 'one', 'two') array = [1,2,3,4] p array.insert(0, 'one', 'two') array = [1,2,3,4] p array.insert(1, 'one', 'two') array = [1,2,3,4] p array.insert(10,

[Prototype-core] Re: Array.insert

2008-03-28 Thread Ken Snyder
koozdra wrote: Thanks for the quick reply. I ran some tests in ruby: array = [1,2,3,4] p array.insert(-3, 'one', 'two') array = [1,2,3,4] p array.insert(-1, 'one', 'two') array = [1,2,3,4] p array.insert(0, 'one', 'two') array = [1,2,3,4] p array.insert(1, 'one', 'two') array =

[Prototype-core] Re: $_SESSION of PHP doesn't work with AJAX

2008-03-28 Thread Andrew Dupont
On Mar 27, 9:29 pm, Nouv Vitou [EMAIL PROTECTED] wrote: But if I have two different domains taiyocambodia.com and khmer-web.com. I would like to use the session to be used for both. How can I? Can't do it with cookies. Track your sessions on the server-side. Again let me suggest that this

[Prototype-core] Re: Array.insert

2008-03-28 Thread kangax
Next step would be to submit a patch (preferably with unit tests) http://www.prototypejs.org/contribute - kangax On Mar 28, 9:13 pm, koozdra [EMAIL PROTECTED] wrote: Thanks Ken that looks great. What is the next step? Can this change make into the next version of prototype? - Dimitri On