[jquery-dev] Live: multiple event listener bug

2009-12-01 Thread matas.petrikas
hi all, just discovered a weird bug in a current jQuery version (1.3.2). If you do this: $(document).live('onFirst onSecond onThird', function(event) { alert('Bind: multi event type worked:' + event.type); }); $('a').live('click', function(event) { $(this).trigger('onFirst');

Re: [jquery-dev] Re: Ant build

2009-12-01 Thread Scott Sauyet
On Tue, Dec 1, 2009 at 12:14 PM, DBJDBJ dbj...@gmail.com wrote: Actually even better would be jquery.proj. That is a make file for msbuild.exe which comes with .NET 2.0 Which makes it available on 99% of PC's on the planet. I have made one, if anyone is interested. Although it (still) does not

Re: [jquery-dev] Re: $.ajax feature matrix

2009-12-01 Thread Julian Aubourg
OK, so I have implemented my solution: - all unit tests pass in safari, chrome firefox - 3 tests fail in IE but I have no clue why - all tests fail in Opera (I'm guessing I'm doing something wrong in the code early but hell if I know what). I added several tests for the

[jquery-dev] Building/developing jQuery on Windows

2009-12-01 Thread Dave Methvin
I've been trying to get a jQuery build environment set up on Windows 7. I'm using TortoiseGit and Ant, everything seems to be working fine except when I try to push changes back to my Github fork. I get the message PuTTY Fatal Error: No supported authentication methods available. I've set up the

Re: [jquery-dev] Building/developing jQuery on Windows

2009-12-01 Thread Kelvin Luck
On Wed, 02 Dec 2009 00:11:24 -, Dave Methvin dave.meth...@gmail.com wrote: I've been trying to get a jQuery build environment set up on Windows 7. I'm using TortoiseGit and Ant, everything seems to be working fine except when I try to push changes back to my Github fork. I get the

Re: [jquery-dev] Building/developing jQuery on Windows

2009-12-01 Thread Karl Swedberg
Hey Dave, This article looks like it could be helpful: http://devlicio.us/blogs/sergio_pereira/archive/2009/05/06/git-ssh-putty-github-unfuddle-the-kitchen-sink.aspx --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Dec 1, 2009, at 7:11 PM, Dave Methvin

Re: [jquery-dev] Re: $.ajax feature matrix

2009-12-01 Thread Julian Aubourg
Thanks Dave but I think I kinda figured it out! Anyway, the code has been comitted at http://github.com/jaubourg/jquery I don't have time to write everything about it down right now but you can all have a look at least. 2009/12/2 Dave Methvin dave.meth...@gmail.com OK, so I have implemented

Re: [jquery-dev] Unable to pull qunit sizzle submodules in forked git repo

2009-12-01 Thread Mark Gibson
Ok, I've just had chance to play about. I've performed a new clone: $ git clone g...@github.com:jollytoad/jquery.git Initialized empty Git repository in /home/mark/git/jquery/.git/ remote: Counting objects: 10347, done. remote: Compressing objects: 100% (3098/3098), done. remote: Total 10347

Re: [jquery-dev] Unable to pull qunit sizzle submodules in forked git repo

2009-12-01 Thread John Resig
Just a heads-up: I actually removed all of the submodules from jQuery yesterday. After talking with Yehuda I realized that we actually didn't want submodules, we wanted atual clones of Sizzle and QUnit. I've changed the Makefile to handle this. You can see a clean clone here:

Re: [jquery-dev] Re: $.ajax feature matrix

2009-12-01 Thread John Resig
Phew - this is a beast of a patch indeed! In general though I'm liking the feel of the resulting code, a lot. This would be much more extensible, which is quite nice. I say we try to pursue this post-1.4. In the meantime you can start to apply some of the jQuery Core Style Guidelines to your code