Re: [jQuery] Broken Build

2006-10-09 Thread John Resig
Why not just force everyone to use UNIX-style endlines (e.g. \n only)? Up until now, that has been the case. To everyone who commits to core: Please watch your endlines, especially in OSX and Windows. --John On 10/8/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Franck Marcia schrieb: It's not

Re: [jQuery] Broken Build

2006-10-08 Thread Franck Marcia
2006/10/8, Jörn Zaefferer [EMAIL PROTECTED]: the current build script seems to be broken: Only the ajax part of the complete jQuery file is parsed, resulting in a lite version with only ajax docs removed and api docs and tests with only ajax docs/tests. Doing some diff debugging by comparing

Re: [jQuery] Broken Build

2006-10-08 Thread Jörn Zaefferer
Franck Marcia schrieb: It's not because of the code but because of the data. There are many contributors now, using different OS which means different ways to insert a character when you strike enter :-) In short, the current regexp blockMatch in build/build/lite.js doesn't take '\r' into

Re: [jQuery] Broken Build

2006-10-08 Thread Franck Marcia
2006/10/8, Jörn Zaefferer [EMAIL PROTECTED]: I tried your quick and dirty fix for lite: It worked but was awfully slow. This hack works for me and is fast: var blockMatch = /\s*\/\*\*\s*((.|\r\n|\r|\n)*?)\s*\*\/(\r\n|\r|\n)*/g; var f = readFile(arguments[0]).replace( blockMatch, \n ).replace(

Re: [jQuery] Broken Build

2006-10-08 Thread Brandon Aaron
I guess it is obvious I'm using a different OS :) -- Brandon Aaron On 10/8/06, Franck Marcia [EMAIL PROTECTED] wrote: 2006/10/8, Jörn Zaefferer [EMAIL PROTECTED]: I tried your quick and dirty fix for lite: It worked but was awfully slow. This hack works for me and is fast: var

[jQuery] Broken Build

2006-10-07 Thread Jörn Zaefferer
Hi folks, the current build script seems to be broken: Only the ajax part of the complete jQuery file is parsed, resulting in a lite version with only ajax docs removed and api docs and tests with only ajax docs/tests. Doing some diff debugging by comparing revisions of the files involved

Re: [jQuery] Broken Build

2006-10-07 Thread Brandon Aaron
I just did a new checkout and did a make pack and everything seems to be okay. I ran a few of my example pages with it and didn't get any errors. -- Brandon Aaron On 10/7/06, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi folks, the current build script seems to be broken: Only the ajax part of