jquery / jquery

jQuery JavaScript Library

Added the submodule init/update to the Makefile for 'make test' and 
updated the README to be more current.
jeresig (author)
Thu Oct 22 18:44:44 -0700 2009
commit  4c85dec058d0edc41f06f88cb605a9c133cb18e5
tree    487678373183109890f40976a457e74ce8c07c1d
parent  920238d4851bc9b1ee22f6ebdffde9ed55cb1e91
M Makefile 2
M README 19
...
124
125
126
 
 
127
128
129
...
124
125
126
127
128
129
130
131
0
@@ -124,6 +124,8 @@ test: ${JQ}
0
   @@echo "Building Test Suite"
0
   @@echo "Test Suite Built"
0
   @@echo
0
+  git submodule init
0
+  git submodule update
0
 
0
 runtest: ${JQ} test
0
   @@echo "Running Automated Test Suite"
0
...
5
6
7
8
 
9
10
11
...
37
38
39
40
41
42
43
44
45
46
47
48
 
 
 
49
50
51
52
 
53
54
55
...
64
65
66
67
 
...
5
6
7
 
8
9
10
11
...
37
38
39
 
 
 
 
 
 
 
 
 
40
41
42
43
44
 
 
45
46
47
48
...
57
58
59
 
60
0
@@ -5,7 +5,7 @@ http://jquery.com/
0
 --------------------------------
0
 
0
 What you need to build your own jQuery:
0
- - Make sure that you have Java installed.
0
+ - Make sure that you have Java installed (if you want to build a minified or 'lite' version of jQuery).
0
 
0
    If not, go to this page and download "Java Runtime Environment (JRE) 5.0"
0
    http://java.sun.com/javase/downloads/index.jsp
0
@@ -37,19 +37,12 @@ make lite
0
   jQuery without all the additional inline documentation and test cases.
0
   Makes: ./dist/jquery.lite.js
0
 
0
-make pack
0
-  A compressed version of jQuery (made with Packer).
0
-  Makes: ./dist/jquery.pack.js
0
-
0
-make docs
0
-  Builds a complete copy of the documentation, based upon the jQuery source.
0
-  Makes ./docs/
0
-  Open this file in your browser:
0
-    ./docs/index.xml
0
+make min
0
+  A compressed version of jQuery (made the YUI Minifier).
0
+  Makes: ./dist/jquery.min.js
0
 
0
 make test
0
-  Builds a complete copy of the test suite, based upon the jQuery source.
0
-  Makes ./test/
0
+  Makes sure that the QUnit submodule is properly checked out.
0
   Open this file in your browser:
0
     ./test/index.html
0
 
0
@@ -64,4 +57,4 @@ OR
0
 
0
 If you have any questions, please feel free to ask them on the jQuery
0
 mailing list, which can be found here:
0
-  http://jquery.com/discuss/
0
+  http://docs.jquery.com/Discussion

Comments