[jquery-dev] Re: Ant build

2009-12-09 Thread Dave Methvin
> Fixed the ant build (build.xml) to clone/pull both Sizzle and QUnit. Tested > on Windows XP. So *that's* why it started working. Thanks, Jörn! -- You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to jquery-.

[jquery-dev] Re: Ant build

2009-12-03 Thread DBJDBJ
"There is always a well-known solution to every human problem--neat, plausible, and wrong." -- H. L. Mencken I was wrong. msbuild is not necessary. jQuery "building" on (almost) any windows can be done with one wsf file. I am making it right now. --DBJ -- You received this message becaus

[jquery-dev] Re: Ant build

2009-12-02 Thread DBJDBJ
@Scott (sorry others for privatising this thread) I advise you to look again in msbuild. It is actually deprecated, but still supported. The usual inital "knee jerk" reaction is just to dump it, it is xml etc .. but it is really simple and really works. I guess this is why it is deprecated ;o) I w

Re: [jquery-dev] Re: Ant build

2009-12-02 Thread Scott Sauyet
On Wed, Dec 2, 2009 at 10:12 AM, DBJDBJ wrote: > @Scott : I have never met any "poor soul" , who pays my fees and who > is in the same time not "stuck in the MS-land". Game over. Sorry, I'm working this week with C++ for the first time in more than five years and with Visual Studio for the first

[jquery-dev] Re: Ant build

2009-12-02 Thread DBJDBJ
@Scott : I have never met any "poor soul" , who pays my fees and who is in the same time not "stuck in the MS-land". Game over. On Dec 1, 5:18 pm, Scott Sauyet wrote: > On Tue, Dec 1, 2009 at 12:14 PM, DBJDBJ wrote: > > Actually even better would be jquery.proj. > > That is a "make file" for m

Re: [jquery-dev] Re: Ant build

2009-12-01 Thread Scott Sauyet
On Tue, Dec 1, 2009 at 12:14 PM, DBJDBJ 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 > "go out"

[jquery-dev] Re: Ant build

2009-12-01 Thread DBJDBJ
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 "go out" to use git, to pull sizzle and qunit. Perfectly doable bu

[jquery-dev] Re: Ant build

2009-11-30 Thread DBJDBJ
For ANT one needs JDK aka Java Development Kit ... For us several milion Microserfs, maybe one VisualStudio solution file (aka sln file) would be usefull ? Or I am missing something fundamental ? --DBJ On Nov 27, 5:39 pm, John Resig wrote: > Just to clarify: Java/JRE isn't required in order to

[jquery-dev] Re: Ant build

2009-11-28 Thread Scott González
On Nov 27, 11:25 am, John Resig wrote: > Very interesting - reading through the docs it looks like setting > core.autocrlf to 'input' is pretty useful (it'll make sure that the > line-endings are just LF for anyone that commits, which is what we > want). This is slightly different than what we ha

Re: [jquery-dev] Re: Ant build

2009-11-27 Thread John Resig
Just to clarify: Java/JRE isn't required in order to do the basic build of jQuery - only to do the minified build. --John On Fri, Nov 27, 2009 at 12:35 PM, DBJDBJ wrote: > I am (happily) using one (rudimentary) cmd file for (windows) > "building". > It is a bit of a overkill to install the who

[jquery-dev] Re: Ant build

2009-11-27 Thread DBJDBJ
I am (happily) using one (rudimentary) cmd file for (windows) "building". It is a bit of a overkill to install the whole JRE, +ant , just to be able to concatenate jQuery files into one...With cmd file(s) one can build a "real" make "system" no ant, make, gmake, etc ... necessary. --DBJ On Nov 25

Re: [jquery-dev] Re: Ant build

2009-11-27 Thread John Resig
Very interesting - reading through the docs it looks like setting core.autocrlf to 'input' is pretty useful (it'll make sure that the line-endings are just LF for anyone that commits, which is what we want). Let's hope this works, I guess! http://github.com/jquery/jquery/commit/1879e8cbeef6984495e

Re: [jquery-dev] Re: Ant build

2009-11-26 Thread Daniel Friesen
Some info from google: http://www.kernel.org/pub/software/scm/git-core/docs/gitattributes.html#_checking_out_and_checking_in http://www.mail-archive.com/msys...@googlegroups.com/msg00093.html http://www.mail-archive.com/msys...@googlegroups.com/msg00088.html Looks like this can be solved in the r

Re: [jquery-dev] Re: Ant build

2009-11-26 Thread John Resig
> Ah, git is by default CRLFing files.  To turn it off: > > git config core.autocrlf false That's... interesting. Yay git? --John -- You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to jquery-...@googlegroup

[jquery-dev] Re: Ant build

2009-11-26 Thread Justin Meyer
Ah, git is by default CRLFing files. To turn it off: git config core.autocrlf false On Nov 25, 2:33 pm, Justin Meyer wrote: > It works now that I have updated to the latest jQuery. > > On Nov 25, 1:13 pm, Justin Meyer wrote: > > > > > it might be the qunit file that is blocking it. > > > On No

[jquery-dev] Re: Ant build

2009-11-26 Thread Justin Meyer
Now it doesn't work: test/qunit/testrunner.js | 797 test/qunit/testsuite.css | 120 -- test/unit/selector.js| 52 +- 12 files changed, 3124 insertions(+), 3082 deletions(-) create mode 100644 .gitmodules delete mode 100644 Makefile delete mode 100644 libs/jquery.js create mo

[jquery-dev] Re: Ant build

2009-11-25 Thread Justin Meyer
It works now that I have updated to the latest jQuery. On Nov 25, 1:13 pm, Justin Meyer wrote: > it might be the qunit file that is blocking it. > > On Nov 25, 12:56 pm,JustinMeyer wrote: > > > > > Only sizzle runs for some reason.  Likely b/c I am using windows. > > Does this work for someone el

[jquery-dev] Re: Ant build

2009-11-25 Thread Justin Meyer
it might be the qunit file that is blocking it. On Nov 25, 12:56 pm, Justin Meyer wrote: > Only sizzle runs for some reason.  Likely b/c I am using windows. > Does this work for someone else using msysgit?  Here's the output: > -

[jquery-dev] Re: Ant build

2009-11-25 Thread Justin Meyer
Should qunit be listed in .git/config? http://pitupepito.homelinux.org/?p=24 says that submodules should be listed there. On Nov 25, 12:56 pm, Justin Meyer wrote: > Only sizzle runs for some reason.  Likely b/c I am using windows. > Does this work for someone else using msysgit?  Here's the outpu

[jquery-dev] Re: Ant build

2009-11-25 Thread Justin Meyer
Only sizzle runs for some reason. Likely b/c I am using windows. Does this work for someone else using msysgit? Here's the output: -- $ make Grabbing external dependencies... Submodule 'src/sizzle' (git://github.com/jeresig/sizzl