Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Landing pull request 586. Create exports.js for exporting jQuery to window ↵ | jrburke | 2011-11-14 | 1 | -1/+2 |
| | | | | | | | | and AMD. Fixes #10687. More Details: - https://github.com/jquery/jquery/pull/586 - http://bugs.jquery.com/ticket/10687 | ||||
* | Eliminate spurious error message from `which`. | Dave Methvin | 2011-11-06 | 1 | -1/+1 |
| | | | | Some versions of `which` (Cygwin's among them) spit out an error to stderr when not all their args are found. We only expect one of these to be found anyway. | ||||
* | Landing pull request 523. Adds character frequency reporting tool, use: make ↵ | Rick Waldron | 2011-10-01 | 1 | -0/+7 |
| | | | | | | | | freq. Fixes #10372. More Details: - https://github.com/jquery/jquery/pull/523 - http://bugs.jquery.com/ticket/10372 | ||||
* | Removing topic.js as it will be a plugin | timmywil | 2011-09-19 | 1 | -1/+0 |
| | |||||
* | $.Callbacks, $.Topic and notify/progress on $.Deferred. | jaubourg | 2011-09-19 | 1 | -0/+2 |
| | |||||
* | Landing pull request 511. Adding a little Makefile jQuery sizing utility to ↵ | Corey Frang | 2011-09-19 | 1 | -2/+10 |
| | | | | | | | easily see differences in size between makes. Fixes #10308. More Details: - https://github.com/jquery/jquery/pull/511 | ||||
* | Merge branch 'master' of https://github.com/azatoth/jquery | jeresig | 2011-04-12 | 1 | -1/+1 |
|\ | |||||
| * | Makefile: pull_submodules cleaning | Carl Fürstenberg | 2011-03-22 | 1 | -1/+1 |
| | | | | | | | | Empirical testing confirms that pulling the url again is enough | ||||
* | | Merge branch 'master' into makefile_fixes | Carl Fürstenberg | 2011-03-22 | 1 | -7/+17 |
|\| | |||||
| * | merge doesn't work when init | Carl Fürstenberg | 2011-03-18 | 1 | -1/+9 |
| | | | | | | | | | | sadly the merge strategy doesn't work when doing an initial clone, circumvent that | ||||
| * | Adding core target | Carl Fürstenberg | 2011-03-18 | 1 | -2/+4 |
| | | | | | | | | Adding core target to do jquery, minimization and lint | ||||
| * | updating phony rules | Carl Fürstenberg | 2011-03-17 | 1 | -1/+1 |
| | | |||||
| * | Change makefile order to only update submodules on 'all' target | Carl Fürstenberg | 2011-03-17 | 1 | -5/+6 |
| | | | | | | | | | | insterad of always update the submodules, now only "make all" will run that, thus an "make jquery" will not update them | ||||
| * | Remove jq target | Carl Fürstenberg | 2011-03-17 | 1 | -1/+0 |
| | | | | | | | | remove obsolete jq target | ||||
| * | Merge when updating submodules on make | Carl Fürstenberg | 2011-03-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | When running make, the submodule update will remove all local changes. Adding flag --rebase or --merge does solve the issue. rebase will probably make it cleaner, but it might stop on conflict, thus --merge will result in fewer (probably none). | ||||
* | | Changing dependice order for minify to prevent reminify | Carl Fürstenberg | 2011-03-16 | 1 | -2/+2 |
|/ | | | | | | unless jquery.js has been updated, no minification should occur closes: #8519 | ||||
* | adding pull command | Carl Fürstenberg | 2011-03-15 | 1 | -0/+3 |
| | |||||
* | pull submodules make command | Carl Fürstenberg | 2011-03-15 | 1 | -0/+5 |
| | | | | | Adding an helper funciton to pull the latest from all registered submodules | ||||
* | Introduce submodules, closes #8536 | Carl Fürstenberg | 2011-03-15 | 1 | -30/+4 |
| | | | | | | Instead of the manual clone of sizzle and qunit, use git submodules instead. this will ensure that all future releases can be recreated by checking out an tag. | ||||
* | Moves Deferred-related code into a separate module. Context handling has ↵ | jaubourg | 2011-03-03 | 1 | -0/+1 |
| | | | | been simplified in _Deferred.resolve and jQuery.when has been refactored for clarity (and minor optimization). | ||||
* | Remove sed from post-build code, due to portability issues between GNU and ↵ | awgy | 2011-02-12 | 1 | -2/+3 |
| | | | | | | | BSD versions. Follow up to ba43d37394b6018779d9a668c548e11579cd424a which apparently didn't fix the problem completly on Mac OS X. | ||||
* | Fix Makefile to use plain sed agin. Remove unicode trickery. Thanks to ↵ | Anton M | 2011-01-26 | 1 | -2/+1 |
| | | | | danheberden and gnarf for figuring out why it previously faild on Mac OS X. | ||||
* | Make sure that init is run before jquery is built (avoiding weird warnings ↵ | jeresig | 2011-01-26 | 1 | -13/+26 |
| | | | | when running 'make jquery' or 'make min'). Additionally only attempt to run JSLint or the minifier if NodeJS is installed (avoiding a weird warning when you first run 'make' or 'make all'). | ||||
* | Revert "Fix Makefile to use plain sed. Remove unicode trickery" | jeresig | 2011-01-24 | 1 | -3/+5 |
| | | | | This reverts commit 6d358c0cdd4f84884c3d776bad0f48a93908b29b. | ||||
* | Fix Makefile to use plain sed. Remove unicode trickery | Anton M | 2011-01-24 | 1 | -5/+3 |
| | |||||
* | Revert uglify.js to original and handle build changes in make file | Dan Heberden | 2011-01-19 | 1 | -1/+4 |
| | |||||
* | Clarify cygwin instructions slightly and swap the order of arguments to ↵ | Colin Snover | 2011-01-17 | 1 | -1/+1 |
| | | | | which in Makefile because of a bug in current versions of MSYS that causes only the first argument to /bin/which to be searched. | ||||
* | Update Makefile to use either nodejs or node, whichever exists (Debian uses ↵ | Colin Snover | 2011-01-17 | 1 | -1/+1 |
| | | | | nodejs). | ||||
* | Replace build system with a faster new one that uses Node and UglifyJS and ↵ | Colin Snover | 2011-01-17 | 1 | -11/+4 |
| | | | | generates smaller minified files. Also removes builds through rake/ant since having 3 different build systems was too much to maintain (make was the only one consistently kept up-to-date). Fixes #7973. | ||||
* | Renamed src/transports to src/ajax (in case we need prefilters in the future ↵ | jaubourg | 2011-01-06 | 1 | -3/+3 |
| | | | | and to avoid a separate prefilters directory). | ||||
* | Removed re-usability from jXHR object (no more open, send & ↵ | jaubourg | 2010-12-31 | 1 | -1/+0 |
| | | | | onreadystatechange support). Streamlined the implementation and put it back into ajax.js (removed xhr.js in the process). Went back to a more simple & direct approach to options handling (keeping much room to further minification-related optimizations). Code is cleaner, smaller & faster. Removed & edited unit tests accordingly. All build files have had xhr.js removed. | ||||
* | Update Rakefile to remove module wrappers (feature parity with make and ↵ | Jonas Pfenniger | 2010-12-30 | 1 | -1/+1 |
| | | | | ant). Update Makefile to avoid rebuilding jquery.js when it is not necessary to do so. | ||||
* | Clean trailing whitespace from all files. | Colin Snover | 2010-12-30 | 1 | -1/+1 |
| | |||||
* | Replaced spaces with a tab in Makefile. | jaubourg | 2010-12-10 | 1 | -5/+5 |
| | |||||
* | Rewrite of the Ajax module by Julian Aubourg. Some (dated) details can be ↵ | jaubourg | 2010-12-09 | 1 | -1/+5 |
| | | | | found here: http://oksoclap.com/6Y26bm1ZsB more details are forthcoming. Fixes #7195. | ||||
* | Allow for versions with spaces in them, in the Makefile. | John Resig | 2010-10-23 | 1 | -1/+1 |
| | |||||
* | Updating the copy of Google Closure Compiler. | John Resig | 2010-10-14 | 1 | -1/+1 |
| | |||||
* | Fix broken min file header generation. | jeresig | 2010-10-10 | 1 | -2/+4 |
| | |||||
* | Makefile: cleanup | Carl Fürstenberg | 2010-09-22 | 1 | -20/+45 |
| | | | | | | | | * updating init to either pull or clone, not do both * make sure it building only when it needs to * make some variables overridable * use variables when they should be used instead of direct text * add V verbosity variable | ||||
* | Trim out the module wrappers during the build process. Follow-up to #7011. | jeresig | 2010-09-09 | 1 | -0/+2 |
| | |||||
* | Minor fix to Makefile so that 'make clean' doesn't fail when run immediately ↵ | Richard D. Worth | 2010-07-21 | 1 | -1/+1 |
| | | | | after 'make clean' | ||||
* | Simplified getting the commit date using git log --pretty. Fixed missing ↵ | Richard D. Worth | 2010-07-21 | 1 | -1/+1 |
| | | | | date in ant build. | ||||
* | Remove the need for the return in sizzle-jquery and just remove the attempt ↵ | jeresig | 2010-03-01 | 1 | -1/+1 |
| | | | | to expose Sizzle completely. jQuery is 100% passing JSLint ('make lint') now. | ||||
* | Added in integrated JSLint checking against the jQuery source. Just run ↵ | jeresig | 2010-03-01 | 1 | -3/+8 |
| | | | | 'make lint' to see the result. | ||||
* | Ignore potential error codes from Github in doing a clone. Fixes #6049. | Iraê Carvalho | 2010-02-10 | 1 | -2/+2 |
| | |||||
* | Add a new build mode to the Makefile that doesn't try to pull from external ↵ | jeresig | 2010-01-28 | 1 | -0/+1 |
| | | | | sources (assumes that they're already built and not changing frequently). | ||||
* | Fixed typo in logic, also disabled function setters in this case to allow ↵ | jeresig | 2010-01-12 | 1 | -1/+1 |
| | | | | the functions to passthrough and bind. | ||||
* | Accidentally removed the init from the Makefile selector build. | jeresig | 2010-01-12 | 1 | -1/+1 |
| | |||||
* | Make sure that Opera fires events after an aborted Ajax attempt. Fixes #5787. | jeresig | 2010-01-12 | 1 | -1/+1 |
| | |||||
* | Allow the Makefile to be more resiliant to broken builds and handle ↵ | jeresig | 2009-12-31 | 1 | -4/+4 |
| | | | | redirecting the output better in more shells. Thanks to 'candlerb' on jquery-dev for the suggestion. |