guff-compass 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.editorconfig +21 -0
- data/.gitignore +6 -0
- data/LICENSE.txt +22 -0
- data/README.md +21 -0
- data/demo/bower_components/jquery/.bower.json +21 -0
- data/demo/bower_components/jquery/.editorconfig +43 -0
- data/demo/bower_components/jquery/.gitattributes +2 -0
- data/demo/bower_components/jquery/.gitignore +14 -0
- data/demo/bower_components/jquery/.gitmodules +6 -0
- data/demo/bower_components/jquery/.jshintrc +17 -0
- data/demo/bower_components/jquery/.mailmap +94 -0
- data/demo/bower_components/jquery/AUTHORS.txt +170 -0
- data/demo/bower_components/jquery/CONTRIBUTING.md +216 -0
- data/demo/bower_components/jquery/Gruntfile.js +594 -0
- data/demo/bower_components/jquery/MIT-LICENSE.txt +21 -0
- data/demo/bower_components/jquery/README.md +398 -0
- data/demo/bower_components/jquery/bower.json +11 -0
- data/demo/bower_components/jquery/build/release-notes.js +59 -0
- data/demo/bower_components/jquery/build/release.js +316 -0
- data/demo/bower_components/jquery/component.json +15 -0
- data/demo/bower_components/jquery/composer.json +35 -0
- data/demo/bower_components/jquery/jquery-migrate.js +511 -0
- data/demo/bower_components/jquery/jquery-migrate.min.js +3 -0
- data/demo/bower_components/jquery/jquery.js +9789 -0
- data/demo/bower_components/jquery/jquery.min.js +6 -0
- data/demo/bower_components/jquery/jquery.min.map +1 -0
- data/demo/bower_components/jquery/package.json +38 -0
- data/demo/bower_components/jquery/speed/benchmark.js +15 -0
- data/demo/bower_components/jquery/speed/benchmarker.css +65 -0
- data/demo/bower_components/jquery/speed/benchmarker.js +181 -0
- data/demo/bower_components/jquery/speed/closest.html +39 -0
- data/demo/bower_components/jquery/speed/css.html +82 -0
- data/demo/bower_components/jquery/speed/event.html +58 -0
- data/demo/bower_components/jquery/speed/filter.html +183 -0
- data/demo/bower_components/jquery/speed/find.html +179 -0
- data/demo/bower_components/jquery/speed/index.html +72 -0
- data/demo/bower_components/jquery/speed/jquery-basis.js +6238 -0
- data/demo/bower_components/jquery/speed/slice.vs.concat.html +47 -0
- data/demo/bower_components/jquery/src/.jshintrc +27 -0
- data/demo/bower_components/jquery/src/ajax.js +855 -0
- data/demo/bower_components/jquery/src/ajax/jsonp.js +80 -0
- data/demo/bower_components/jquery/src/ajax/script.js +86 -0
- data/demo/bower_components/jquery/src/ajax/xhr.js +207 -0
- data/demo/bower_components/jquery/src/attributes.js +659 -0
- data/demo/bower_components/jquery/src/callbacks.js +197 -0
- data/demo/bower_components/jquery/src/core.js +981 -0
- data/demo/bower_components/jquery/src/css.js +661 -0
- data/demo/bower_components/jquery/src/data.js +336 -0
- data/demo/bower_components/jquery/src/deferred.js +141 -0
- data/demo/bower_components/jquery/src/deprecated.js +11 -0
- data/demo/bower_components/jquery/src/dimensions.js +41 -0
- data/demo/bower_components/jquery/src/effects.js +732 -0
- data/demo/bower_components/jquery/src/event-alias.js +32 -0
- data/demo/bower_components/jquery/src/event.js +995 -0
- data/demo/bower_components/jquery/src/exports.js +21 -0
- data/demo/bower_components/jquery/src/intro.js +20 -0
- data/demo/bower_components/jquery/src/manipulation.js +744 -0
- data/demo/bower_components/jquery/src/offset.js +169 -0
- data/demo/bower_components/jquery/src/outro.js +2 -0
- data/demo/bower_components/jquery/src/queue.js +146 -0
- data/demo/bower_components/jquery/src/serialize.js +99 -0
- data/demo/bower_components/jquery/src/sizzle-jquery.js +7 -0
- data/demo/bower_components/jquery/src/support.js +246 -0
- data/demo/bower_components/jquery/src/traversing.js +283 -0
- data/demo/bower_components/jquery/src/wrap.js +66 -0
- data/demo/bower_components/jquery/test/.jshintignore +3 -0
- data/demo/bower_components/jquery/test/.jshintrc +60 -0
- data/demo/bower_components/jquery/test/data/1x1.jpg +0 -0
- data/demo/bower_components/jquery/test/data/ajax/unreleasedXHR.html +25 -0
- data/demo/bower_components/jquery/test/data/atom+xml.php +4 -0
- data/demo/bower_components/jquery/test/data/badcall.js +1 -0
- data/demo/bower_components/jquery/test/data/badjson.js +1 -0
- data/demo/bower_components/jquery/test/data/cleanScript.html +10 -0
- data/demo/bower_components/jquery/test/data/core/cc_on.html +22 -0
- data/demo/bower_components/jquery/test/data/dashboard.xml +11 -0
- data/demo/bower_components/jquery/test/data/dimensions/documentLarge.html +17 -0
- data/demo/bower_components/jquery/test/data/dimensions/documentSmall.html +21 -0
- data/demo/bower_components/jquery/test/data/echoData.php +1 -0
- data/demo/bower_components/jquery/test/data/echoQuery.php +1 -0
- data/demo/bower_components/jquery/test/data/errorWithJSON.php +6 -0
- data/demo/bower_components/jquery/test/data/errorWithText.php +5 -0
- data/demo/bower_components/jquery/test/data/etag.php +21 -0
- data/demo/bower_components/jquery/test/data/evalScript.php +1 -0
- data/demo/bower_components/jquery/test/data/event/focusElem.html +16 -0
- data/demo/bower_components/jquery/test/data/event/longLoadScript.php +4 -0
- data/demo/bower_components/jquery/test/data/event/promiseReady.html +17 -0
- data/demo/bower_components/jquery/test/data/event/syncReady.html +23 -0
- data/demo/bower_components/jquery/test/data/headers.php +18 -0
- data/demo/bower_components/jquery/test/data/if_modified_since.php +20 -0
- data/demo/bower_components/jquery/test/data/iframe.html +8 -0
- data/demo/bower_components/jquery/test/data/jquery-1.9.1.ajax_xhr.min.js +5 -0
- data/demo/bower_components/jquery/test/data/json.php +13 -0
- data/demo/bower_components/jquery/test/data/json_obj.js +1 -0
- data/demo/bower_components/jquery/test/data/jsonp.php +14 -0
- data/demo/bower_components/jquery/test/data/manipulation/iframe-denied.html +36 -0
- data/demo/bower_components/jquery/test/data/name.html +1 -0
- data/demo/bower_components/jquery/test/data/name.php +24 -0
- data/demo/bower_components/jquery/test/data/nocontent.php +5 -0
- data/demo/bower_components/jquery/test/data/offset/absolute.html +41 -0
- data/demo/bower_components/jquery/test/data/offset/body.html +26 -0
- data/demo/bower_components/jquery/test/data/offset/fixed.html +34 -0
- data/demo/bower_components/jquery/test/data/offset/relative.html +31 -0
- data/demo/bower_components/jquery/test/data/offset/scroll.html +39 -0
- data/demo/bower_components/jquery/test/data/offset/static.html +31 -0
- data/demo/bower_components/jquery/test/data/offset/table.html +43 -0
- data/demo/bower_components/jquery/test/data/params_html.php +12 -0
- data/demo/bower_components/jquery/test/data/readywaitasset.js +1 -0
- data/demo/bower_components/jquery/test/data/readywaitloader.js +25 -0
- data/demo/bower_components/jquery/test/data/script.php +11 -0
- data/demo/bower_components/jquery/test/data/selector/html5_selector.html +114 -0
- data/demo/bower_components/jquery/test/data/selector/sizzle_cache.html +21 -0
- data/demo/bower_components/jquery/test/data/statusText.php +5 -0
- data/demo/bower_components/jquery/test/data/support/bodyBackground.html +28 -0
- data/demo/bower_components/jquery/test/data/support/boxSizing.html +19 -0
- data/demo/bower_components/jquery/test/data/support/csp.js +3 -0
- data/demo/bower_components/jquery/test/data/support/csp.php +22 -0
- data/demo/bower_components/jquery/test/data/support/shrinkWrapBlocks.html +23 -0
- data/demo/bower_components/jquery/test/data/support/testElementCrash.html +17 -0
- data/demo/bower_components/jquery/test/data/test.html +7 -0
- data/demo/bower_components/jquery/test/data/test.js +3 -0
- data/demo/bower_components/jquery/test/data/test.php +7 -0
- data/demo/bower_components/jquery/test/data/test2.html +5 -0
- data/demo/bower_components/jquery/test/data/test3.html +3 -0
- data/demo/bower_components/jquery/test/data/testinit.js +264 -0
- data/demo/bower_components/jquery/test/data/testrunner.js +371 -0
- data/demo/bower_components/jquery/test/data/testsuite.css +155 -0
- data/demo/bower_components/jquery/test/data/text.php +12 -0
- data/demo/bower_components/jquery/test/data/ua.txt +272 -0
- data/demo/bower_components/jquery/test/data/with_fries.xml +25 -0
- data/demo/bower_components/jquery/test/data/with_fries_over_jsonp.php +7 -0
- data/demo/bower_components/jquery/test/delegatetest.html +228 -0
- data/demo/bower_components/jquery/test/hovertest.html +158 -0
- data/demo/bower_components/jquery/test/index.html +337 -0
- data/demo/bower_components/jquery/test/jquery.js +5 -0
- data/demo/bower_components/jquery/test/localfile.html +75 -0
- data/demo/bower_components/jquery/test/networkerror.html +84 -0
- data/demo/bower_components/jquery/test/readywait.html +70 -0
- data/demo/bower_components/jquery/test/unit/ajax.js +2016 -0
- data/demo/bower_components/jquery/test/unit/attributes.js +1388 -0
- data/demo/bower_components/jquery/test/unit/callbacks.js +342 -0
- data/demo/bower_components/jquery/test/unit/core.js +1360 -0
- data/demo/bower_components/jquery/test/unit/css.js +1056 -0
- data/demo/bower_components/jquery/test/unit/data.js +645 -0
- data/demo/bower_components/jquery/test/unit/deferred.js +436 -0
- data/demo/bower_components/jquery/test/unit/deprecated.js +8 -0
- data/demo/bower_components/jquery/test/unit/dimensions.js +472 -0
- data/demo/bower_components/jquery/test/unit/effects.js +2242 -0
- data/demo/bower_components/jquery/test/unit/event.js +2755 -0
- data/demo/bower_components/jquery/test/unit/exports.js +7 -0
- data/demo/bower_components/jquery/test/unit/manipulation.js +2120 -0
- data/demo/bower_components/jquery/test/unit/offset.js +559 -0
- data/demo/bower_components/jquery/test/unit/queue.js +314 -0
- data/demo/bower_components/jquery/test/unit/selector.js +172 -0
- data/demo/bower_components/jquery/test/unit/serialize.js +148 -0
- data/demo/bower_components/jquery/test/unit/support.js +370 -0
- data/demo/bower_components/jquery/test/unit/traversing.js +797 -0
- data/demo/bower_components/jquery/test/unit/wrap.js +265 -0
- data/demo/bower_components/jquery/test/xhtml.php +5 -0
- data/demo/index.html +347 -0
- data/demo/styles/main.css +208 -0
- data/demo/styles/main.scss +138 -0
- data/docs/docco.css +506 -0
- data/docs/guff.html +1127 -0
- data/docs/public/fonts/aller-bold.eot +0 -0
- data/docs/public/fonts/aller-bold.ttf +0 -0
- data/docs/public/fonts/aller-bold.woff +0 -0
- data/docs/public/fonts/aller-light.eot +0 -0
- data/docs/public/fonts/aller-light.ttf +0 -0
- data/docs/public/fonts/aller-light.woff +0 -0
- data/docs/public/fonts/novecento-bold.eot +0 -0
- data/docs/public/fonts/novecento-bold.ttf +0 -0
- data/docs/public/fonts/novecento-bold.woff +0 -0
- data/docs/public/stylesheets/normalize.css +375 -0
- data/guff.gemspec +16 -0
- data/guff.scss +514 -0
- data/gulpfile.js +67 -0
- data/lib/guff.rb +4 -0
- data/lib/stylesheets/_guff.scss +514 -0
- data/package.json +19 -0
- data/src/_functions.scss +57 -0
- data/src/_mixins.scss +301 -0
- data/src/_reset.scss +67 -0
- data/src/_settings.scss +22 -0
- data/src/_typography.scss +67 -0
- metadata +259 -0
@@ -0,0 +1,316 @@
|
|
1
|
+
#!/usr/bin/env node
|
2
|
+
/*
|
3
|
+
* jQuery Core Release Management
|
4
|
+
*/
|
5
|
+
|
6
|
+
// Debugging variables
|
7
|
+
var debug = false,
|
8
|
+
skipRemote = false;
|
9
|
+
|
10
|
+
var fs = require("fs"),
|
11
|
+
child = require("child_process"),
|
12
|
+
path = require("path"),
|
13
|
+
archiver = require("archiver");
|
14
|
+
|
15
|
+
var releaseVersion,
|
16
|
+
nextVersion,
|
17
|
+
isBeta,
|
18
|
+
pkg,
|
19
|
+
branch,
|
20
|
+
|
21
|
+
scpURL = "jqadmin@code.origin.jquery.com:/var/www/html/code.jquery.com/",
|
22
|
+
cdnURL = "http://code.origin.jquery.com/",
|
23
|
+
repoURL = "git@github.com:jquery/jquery.git",
|
24
|
+
|
25
|
+
// Windows needs the .cmd version but will find the non-.cmd
|
26
|
+
// On Windows, ensure the HOME environment variable is set
|
27
|
+
gruntCmd = process.platform === "win32" ? "grunt.cmd" : "grunt",
|
28
|
+
|
29
|
+
devFile = "dist/jquery.js",
|
30
|
+
minFile = "dist/jquery.min.js",
|
31
|
+
mapFile = "dist/jquery.min.map",
|
32
|
+
|
33
|
+
releaseFiles = {
|
34
|
+
"jquery-VER.js": devFile,
|
35
|
+
"jquery-VER.min.js": minFile,
|
36
|
+
"jquery-VER.min.map": mapFile,
|
37
|
+
"jquery.js": devFile,
|
38
|
+
"jquery.min.js": minFile,
|
39
|
+
"jquery.min.map": mapFile,
|
40
|
+
"jquery-latest.js": devFile,
|
41
|
+
"jquery-latest.min.js": minFile,
|
42
|
+
"jquery-latest.min.map": mapFile
|
43
|
+
},
|
44
|
+
|
45
|
+
jQueryFilesCDN = [],
|
46
|
+
|
47
|
+
googleFilesCDN = [
|
48
|
+
"jquery.js", "jquery.min.js", "jquery.min.map"
|
49
|
+
],
|
50
|
+
|
51
|
+
msFilesCDN = [
|
52
|
+
"jquery-VER.js", "jquery-VER.min.js", "jquery-VER.min.map"
|
53
|
+
];
|
54
|
+
|
55
|
+
|
56
|
+
steps(
|
57
|
+
initialize,
|
58
|
+
checkGitStatus,
|
59
|
+
tagReleaseVersion,
|
60
|
+
gruntBuild,
|
61
|
+
makeReleaseCopies,
|
62
|
+
setNextVersion,
|
63
|
+
copyTojQueryCDN,
|
64
|
+
buildGoogleCDN,
|
65
|
+
buildMicrosoftCDN,
|
66
|
+
pushToGithub,
|
67
|
+
exit
|
68
|
+
);
|
69
|
+
|
70
|
+
function initialize( next ) {
|
71
|
+
|
72
|
+
if ( process.argv[2] === "-d" ) {
|
73
|
+
process.argv.shift();
|
74
|
+
debug = true;
|
75
|
+
console.warn("=== DEBUG MODE ===" );
|
76
|
+
}
|
77
|
+
|
78
|
+
// First arg should be the version number being released
|
79
|
+
var newver, oldver,
|
80
|
+
rsemver = /^(\d+)\.(\d+)\.(\d+)(?:-([\dA-Za-z\-]+(?:\.[\dA-Za-z\-]+)*))?$/,
|
81
|
+
version = ( process.argv[3] || "" ).toLowerCase().match( rsemver ) || {},
|
82
|
+
major = version[1],
|
83
|
+
minor = version[2],
|
84
|
+
patch = version[3],
|
85
|
+
xbeta = version[4];
|
86
|
+
|
87
|
+
branch = process.argv[2];
|
88
|
+
releaseVersion = process.argv[3];
|
89
|
+
isBeta = !!xbeta;
|
90
|
+
|
91
|
+
if ( !branch || !major || !minor || !patch ) {
|
92
|
+
die( "Usage: " + process.argv[1] + " branch releaseVersion" );
|
93
|
+
}
|
94
|
+
if ( xbeta === "pre" ) {
|
95
|
+
die( "Cannot release a 'pre' version!" );
|
96
|
+
}
|
97
|
+
if ( !(fs.existsSync || path.existsSync)( "package.json" ) ) {
|
98
|
+
die( "No package.json in this directory" );
|
99
|
+
}
|
100
|
+
pkg = JSON.parse( fs.readFileSync( "package.json" ) );
|
101
|
+
|
102
|
+
console.log( "Current version is " + pkg.version + "; generating release " + releaseVersion );
|
103
|
+
version = pkg.version.match( rsemver );
|
104
|
+
oldver = ( +version[1] ) * 10000 + ( +version[2] * 100 ) + ( +version[3] )
|
105
|
+
newver = ( +major ) * 10000 + ( +minor * 100 ) + ( +patch );
|
106
|
+
if ( newver < oldver ) {
|
107
|
+
die( "Next version is older than current version!" );
|
108
|
+
}
|
109
|
+
|
110
|
+
nextVersion = major + "." + minor + "." + ( isBeta ? patch : +patch + 1 ) + "-pre";
|
111
|
+
next();
|
112
|
+
}
|
113
|
+
|
114
|
+
function checkGitStatus( next ) {
|
115
|
+
git( [ "status" ], function( error, stdout, stderr ) {
|
116
|
+
var onBranch = ((stdout||"").match( /On branch (\S+)/ ) || [])[1];
|
117
|
+
if ( onBranch !== branch ) {
|
118
|
+
dieIfReal( "Branches don't match: Wanted " + branch + ", got " + onBranch );
|
119
|
+
}
|
120
|
+
if ( /Changes to be committed/i.test( stdout ) ) {
|
121
|
+
dieIfReal( "Please commit changed files before attemping to push a release." );
|
122
|
+
}
|
123
|
+
if ( /Changes not staged for commit/i.test( stdout ) ) {
|
124
|
+
dieIfReal( "Please stash files before attempting to push a release." );
|
125
|
+
}
|
126
|
+
next();
|
127
|
+
});
|
128
|
+
}
|
129
|
+
|
130
|
+
function tagReleaseVersion( next ) {
|
131
|
+
updatePackageVersion( releaseVersion );
|
132
|
+
git( [ "commit", "-a", "-m", "Tagging the " + releaseVersion + " release." ], function(){
|
133
|
+
git( [ "tag", releaseVersion ], next, debug);
|
134
|
+
}, debug);
|
135
|
+
}
|
136
|
+
|
137
|
+
function gruntBuild( next ) {
|
138
|
+
exec( gruntCmd, [], function( error, stdout ) {
|
139
|
+
if ( error ) {
|
140
|
+
die( error + stderr );
|
141
|
+
}
|
142
|
+
console.log( stdout );
|
143
|
+
next();
|
144
|
+
}, false );
|
145
|
+
}
|
146
|
+
|
147
|
+
function makeReleaseCopies( next ) {
|
148
|
+
Object.keys( releaseFiles ).forEach(function( key ) {
|
149
|
+
var text,
|
150
|
+
builtFile = releaseFiles[ key ],
|
151
|
+
unpathedFile = key.replace( /VER/g, releaseVersion ),
|
152
|
+
releaseFile = "dist/" + unpathedFile;
|
153
|
+
|
154
|
+
// Beta releases don't update the jquery-latest etc. copies
|
155
|
+
if ( !isBeta || key.indexOf( "VER" ) >= 0 ) {
|
156
|
+
|
157
|
+
if ( /\.map$/.test( releaseFile ) ) {
|
158
|
+
// Map files need to reference the new uncompressed name;
|
159
|
+
// assume that all files reside in the same directory.
|
160
|
+
// "file":"jquery.min.js","sources":["jquery.js"]
|
161
|
+
text = fs.readFileSync( builtFile, "utf8" )
|
162
|
+
.replace( /"file":"([^"]+)","sources":\["([^"]+)"\]/,
|
163
|
+
"\"file\":\"" + unpathedFile.replace( /\.min\.map/, ".min.js" ) +
|
164
|
+
"\",\"sources\":[\"" + unpathedFile.replace( /\.min\.map/, ".js" ) + "\"]" );
|
165
|
+
fs.writeFileSync( releaseFile, text );
|
166
|
+
} else if ( /\.min\.js$/.test( releaseFile ) ) {
|
167
|
+
// Minified files point back to the corresponding map;
|
168
|
+
// again assume one big happy directory.
|
169
|
+
// "//@ sourceMappingURL=jquery.min.map"
|
170
|
+
text = fs.readFileSync( builtFile, "utf8" )
|
171
|
+
.replace( /\/\/@ sourceMappingURL=\S+/,
|
172
|
+
"//@ sourceMappingURL=" + unpathedFile.replace( /\.js$/, ".map" ) );
|
173
|
+
fs.writeFileSync( releaseFile, text );
|
174
|
+
} else if ( builtFile !== releaseFile ) {
|
175
|
+
copy( builtFile, releaseFile );
|
176
|
+
}
|
177
|
+
|
178
|
+
jQueryFilesCDN.push( releaseFile );
|
179
|
+
}
|
180
|
+
});
|
181
|
+
next();
|
182
|
+
}
|
183
|
+
|
184
|
+
function setNextVersion( next ) {
|
185
|
+
updatePackageVersion( nextVersion );
|
186
|
+
git( [ "commit", "-a", "-m", "Updating the source version to " + nextVersion ], next, debug );
|
187
|
+
}
|
188
|
+
|
189
|
+
function copyTojQueryCDN( next ) {
|
190
|
+
var cmds = [];
|
191
|
+
|
192
|
+
jQueryFilesCDN.forEach(function( name ) {
|
193
|
+
cmds.push(function( nxt ){
|
194
|
+
exec( "scp", [ name, scpURL ], nxt, debug || skipRemote );
|
195
|
+
});
|
196
|
+
cmds.push(function( nxt ){
|
197
|
+
exec( "curl", [ cdnURL + name + "?reload" ], nxt, debug || skipRemote );
|
198
|
+
});
|
199
|
+
});
|
200
|
+
cmds.push( next );
|
201
|
+
|
202
|
+
steps.apply( this, cmds );
|
203
|
+
}
|
204
|
+
|
205
|
+
function buildGoogleCDN( next ) {
|
206
|
+
makeArchive( "googlecdn", googleFilesCDN, next );
|
207
|
+
}
|
208
|
+
|
209
|
+
function buildMicrosoftCDN( next ) {
|
210
|
+
makeArchive( "mscdn", msFilesCDN, next );
|
211
|
+
}
|
212
|
+
|
213
|
+
function pushToGithub( next ) {
|
214
|
+
git( [ "push", "--tags", repoURL, branch ], next, debug || skipRemote );
|
215
|
+
}
|
216
|
+
|
217
|
+
//==============================
|
218
|
+
|
219
|
+
function steps() {
|
220
|
+
var cur = 0,
|
221
|
+
steps = arguments;
|
222
|
+
(function next(){
|
223
|
+
process.nextTick(function(){
|
224
|
+
steps[ cur++ ]( next );
|
225
|
+
});
|
226
|
+
})();
|
227
|
+
}
|
228
|
+
|
229
|
+
function updatePackageVersion( ver ) {
|
230
|
+
console.log( "Updating package.json version to " + ver );
|
231
|
+
pkg.version = ver;
|
232
|
+
if ( !debug ) {
|
233
|
+
fs.writeFileSync( "package.json", JSON.stringify( pkg, null, "\t" ) + "\n" );
|
234
|
+
}
|
235
|
+
}
|
236
|
+
|
237
|
+
function makeArchive( cdn, files, fn ) {
|
238
|
+
if ( isBeta ) {
|
239
|
+
console.log( "Skipping archive creation for " + cdn + "; " + releaseVersion + " is beta" );
|
240
|
+
process.nextTick( fn );
|
241
|
+
return;
|
242
|
+
}
|
243
|
+
|
244
|
+
console.log( "Creating production archive for " + cdn );
|
245
|
+
|
246
|
+
var archive = archiver( "zip" ),
|
247
|
+
md5file = "dist/" + cdn + "-md5.txt",
|
248
|
+
output = fs.createWriteStream( "dist/" + cdn + "-jquery-" + releaseVersion + ".zip" );
|
249
|
+
|
250
|
+
archive.on( "error", function( err ) {
|
251
|
+
throw err;
|
252
|
+
});
|
253
|
+
|
254
|
+
output.on( "close", fn );
|
255
|
+
archive.pipe( output );
|
256
|
+
|
257
|
+
files = files.map(function( item ) {
|
258
|
+
return "dist/" + item.replace( /VER/g, releaseVersion );
|
259
|
+
});
|
260
|
+
|
261
|
+
exec( "md5sum", files, function( err, stdout, stderr ) {
|
262
|
+
fs.writeFileSync( md5file, stdout );
|
263
|
+
files.push( md5file );
|
264
|
+
|
265
|
+
files.forEach(function( file ) {
|
266
|
+
archive.append( fs.createReadStream( file ), { name: file } );
|
267
|
+
});
|
268
|
+
|
269
|
+
archive.finalize();
|
270
|
+
}, false );
|
271
|
+
}
|
272
|
+
|
273
|
+
function copy( oldFile, newFile, skip ) {
|
274
|
+
console.log( "Copying " + oldFile + " to " + newFile );
|
275
|
+
if ( !skip ) {
|
276
|
+
fs.writeFileSync( newFile, fs.readFileSync( oldFile, "utf8" ) );
|
277
|
+
}
|
278
|
+
}
|
279
|
+
|
280
|
+
function git( args, fn, skip ) {
|
281
|
+
exec( "git", args, fn, skip );
|
282
|
+
}
|
283
|
+
|
284
|
+
function exec( cmd, args, fn, skip ) {
|
285
|
+
if ( skip ) {
|
286
|
+
console.log( "# " + cmd + " " + args.join(" ") );
|
287
|
+
fn( "", "", "" );
|
288
|
+
} else {
|
289
|
+
console.log( cmd + " " + args.join(" ") );
|
290
|
+
child.execFile( cmd, args, { env: process.env },
|
291
|
+
function( err, stdout, stderr ) {
|
292
|
+
if ( err ) {
|
293
|
+
die( stderr || stdout || err );
|
294
|
+
}
|
295
|
+
fn.apply( this, arguments );
|
296
|
+
}
|
297
|
+
);
|
298
|
+
}
|
299
|
+
}
|
300
|
+
|
301
|
+
function dieIfReal( msg ) {
|
302
|
+
if ( debug ) {
|
303
|
+
console.log ( "DIE: " + msg );
|
304
|
+
} else {
|
305
|
+
die( msg );
|
306
|
+
}
|
307
|
+
}
|
308
|
+
|
309
|
+
function die( msg ) {
|
310
|
+
console.error( "ERROR: " + msg );
|
311
|
+
process.exit( 1 );
|
312
|
+
}
|
313
|
+
|
314
|
+
function exit() {
|
315
|
+
process.exit( 0 );
|
316
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
{
|
2
|
+
"name": "components/jquery",
|
3
|
+
"description": "jQuery JavaScript Library",
|
4
|
+
"type": "component",
|
5
|
+
"homepage": "http://jquery.com",
|
6
|
+
"license": "MIT",
|
7
|
+
"support": {
|
8
|
+
"irc": "irc://irc.freenode.org/jquery",
|
9
|
+
"issues": "http://bugs.jquery.com",
|
10
|
+
"forum": "http://forum.jquery.com",
|
11
|
+
"wiki": "http://docs.jquery.com/",
|
12
|
+
"source": "https://github.com/jquery/jquery"
|
13
|
+
},
|
14
|
+
"authors": [
|
15
|
+
{
|
16
|
+
"name": "John Resig",
|
17
|
+
"email": "jeresig@gmail.com"
|
18
|
+
}
|
19
|
+
],
|
20
|
+
"require": {
|
21
|
+
"robloach/component-installer": "*"
|
22
|
+
},
|
23
|
+
"extra": {
|
24
|
+
"component": {
|
25
|
+
"scripts": [
|
26
|
+
"jquery.js"
|
27
|
+
],
|
28
|
+
"files": [
|
29
|
+
"jquery.min.js",
|
30
|
+
"jquery-migrate.js",
|
31
|
+
"jquery-migrate.min.js"
|
32
|
+
]
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
@@ -0,0 +1,511 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery Migrate - v1.1.1 - 2013-02-16
|
3
|
+
* https://github.com/jquery/jquery-migrate
|
4
|
+
* Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors; Licensed MIT
|
5
|
+
*/
|
6
|
+
(function( jQuery, window, undefined ) {
|
7
|
+
// See http://bugs.jquery.com/ticket/13335
|
8
|
+
// "use strict";
|
9
|
+
|
10
|
+
|
11
|
+
var warnedAbout = {};
|
12
|
+
|
13
|
+
// List of warnings already given; public read only
|
14
|
+
jQuery.migrateWarnings = [];
|
15
|
+
|
16
|
+
// Set to true to prevent console output; migrateWarnings still maintained
|
17
|
+
// jQuery.migrateMute = false;
|
18
|
+
|
19
|
+
// Show a message on the console so devs know we're active
|
20
|
+
if ( !jQuery.migrateMute && window.console && console.log ) {
|
21
|
+
console.log("JQMIGRATE: Logging is active");
|
22
|
+
}
|
23
|
+
|
24
|
+
// Set to false to disable traces that appear with warnings
|
25
|
+
if ( jQuery.migrateTrace === undefined ) {
|
26
|
+
jQuery.migrateTrace = true;
|
27
|
+
}
|
28
|
+
|
29
|
+
// Forget any warnings we've already given; public
|
30
|
+
jQuery.migrateReset = function() {
|
31
|
+
warnedAbout = {};
|
32
|
+
jQuery.migrateWarnings.length = 0;
|
33
|
+
};
|
34
|
+
|
35
|
+
function migrateWarn( msg) {
|
36
|
+
if ( !warnedAbout[ msg ] ) {
|
37
|
+
warnedAbout[ msg ] = true;
|
38
|
+
jQuery.migrateWarnings.push( msg );
|
39
|
+
if ( window.console && console.warn && !jQuery.migrateMute ) {
|
40
|
+
console.warn( "JQMIGRATE: " + msg );
|
41
|
+
if ( jQuery.migrateTrace && console.trace ) {
|
42
|
+
console.trace();
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
function migrateWarnProp( obj, prop, value, msg ) {
|
49
|
+
if ( Object.defineProperty ) {
|
50
|
+
// On ES5 browsers (non-oldIE), warn if the code tries to get prop;
|
51
|
+
// allow property to be overwritten in case some other plugin wants it
|
52
|
+
try {
|
53
|
+
Object.defineProperty( obj, prop, {
|
54
|
+
configurable: true,
|
55
|
+
enumerable: true,
|
56
|
+
get: function() {
|
57
|
+
migrateWarn( msg );
|
58
|
+
return value;
|
59
|
+
},
|
60
|
+
set: function( newValue ) {
|
61
|
+
migrateWarn( msg );
|
62
|
+
value = newValue;
|
63
|
+
}
|
64
|
+
});
|
65
|
+
return;
|
66
|
+
} catch( err ) {
|
67
|
+
// IE8 is a dope about Object.defineProperty, can't warn there
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
// Non-ES5 (or broken) browser; just set the property
|
72
|
+
jQuery._definePropertyBroken = true;
|
73
|
+
obj[ prop ] = value;
|
74
|
+
}
|
75
|
+
|
76
|
+
if ( document.compatMode === "BackCompat" ) {
|
77
|
+
// jQuery has never supported or tested Quirks Mode
|
78
|
+
migrateWarn( "jQuery is not compatible with Quirks Mode" );
|
79
|
+
}
|
80
|
+
|
81
|
+
|
82
|
+
var attrFn = jQuery( "<input/>", { size: 1 } ).attr("size") && jQuery.attrFn,
|
83
|
+
oldAttr = jQuery.attr,
|
84
|
+
valueAttrGet = jQuery.attrHooks.value && jQuery.attrHooks.value.get ||
|
85
|
+
function() { return null; },
|
86
|
+
valueAttrSet = jQuery.attrHooks.value && jQuery.attrHooks.value.set ||
|
87
|
+
function() { return undefined; },
|
88
|
+
rnoType = /^(?:input|button)$/i,
|
89
|
+
rnoAttrNodeType = /^[238]$/,
|
90
|
+
rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
|
91
|
+
ruseDefault = /^(?:checked|selected)$/i;
|
92
|
+
|
93
|
+
// jQuery.attrFn
|
94
|
+
migrateWarnProp( jQuery, "attrFn", attrFn || {}, "jQuery.attrFn is deprecated" );
|
95
|
+
|
96
|
+
jQuery.attr = function( elem, name, value, pass ) {
|
97
|
+
var lowerName = name.toLowerCase(),
|
98
|
+
nType = elem && elem.nodeType;
|
99
|
+
|
100
|
+
if ( pass ) {
|
101
|
+
// Since pass is used internally, we only warn for new jQuery
|
102
|
+
// versions where there isn't a pass arg in the formal params
|
103
|
+
if ( oldAttr.length < 4 ) {
|
104
|
+
migrateWarn("jQuery.fn.attr( props, pass ) is deprecated");
|
105
|
+
}
|
106
|
+
if ( elem && !rnoAttrNodeType.test( nType ) &&
|
107
|
+
(attrFn ? name in attrFn : jQuery.isFunction(jQuery.fn[name])) ) {
|
108
|
+
return jQuery( elem )[ name ]( value );
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
// Warn if user tries to set `type`, since it breaks on IE 6/7/8; by checking
|
113
|
+
// for disconnected elements we don't warn on $( "<button>", { type: "button" } ).
|
114
|
+
if ( name === "type" && value !== undefined && rnoType.test( elem.nodeName ) && elem.parentNode ) {
|
115
|
+
migrateWarn("Can't change the 'type' of an input or button in IE 6/7/8");
|
116
|
+
}
|
117
|
+
|
118
|
+
// Restore boolHook for boolean property/attribute synchronization
|
119
|
+
if ( !jQuery.attrHooks[ lowerName ] && rboolean.test( lowerName ) ) {
|
120
|
+
jQuery.attrHooks[ lowerName ] = {
|
121
|
+
get: function( elem, name ) {
|
122
|
+
// Align boolean attributes with corresponding properties
|
123
|
+
// Fall back to attribute presence where some booleans are not supported
|
124
|
+
var attrNode,
|
125
|
+
property = jQuery.prop( elem, name );
|
126
|
+
return property === true || typeof property !== "boolean" &&
|
127
|
+
( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?
|
128
|
+
|
129
|
+
name.toLowerCase() :
|
130
|
+
undefined;
|
131
|
+
},
|
132
|
+
set: function( elem, value, name ) {
|
133
|
+
var propName;
|
134
|
+
if ( value === false ) {
|
135
|
+
// Remove boolean attributes when set to false
|
136
|
+
jQuery.removeAttr( elem, name );
|
137
|
+
} else {
|
138
|
+
// value is true since we know at this point it's type boolean and not false
|
139
|
+
// Set boolean attributes to the same name and set the DOM property
|
140
|
+
propName = jQuery.propFix[ name ] || name;
|
141
|
+
if ( propName in elem ) {
|
142
|
+
// Only set the IDL specifically if it already exists on the element
|
143
|
+
elem[ propName ] = true;
|
144
|
+
}
|
145
|
+
|
146
|
+
elem.setAttribute( name, name.toLowerCase() );
|
147
|
+
}
|
148
|
+
return name;
|
149
|
+
}
|
150
|
+
};
|
151
|
+
|
152
|
+
// Warn only for attributes that can remain distinct from their properties post-1.9
|
153
|
+
if ( ruseDefault.test( lowerName ) ) {
|
154
|
+
migrateWarn( "jQuery.fn.attr('" + lowerName + "') may use property instead of attribute" );
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
return oldAttr.call( jQuery, elem, name, value );
|
159
|
+
};
|
160
|
+
|
161
|
+
// attrHooks: value
|
162
|
+
jQuery.attrHooks.value = {
|
163
|
+
get: function( elem, name ) {
|
164
|
+
var nodeName = ( elem.nodeName || "" ).toLowerCase();
|
165
|
+
if ( nodeName === "button" ) {
|
166
|
+
return valueAttrGet.apply( this, arguments );
|
167
|
+
}
|
168
|
+
if ( nodeName !== "input" && nodeName !== "option" ) {
|
169
|
+
migrateWarn("jQuery.fn.attr('value') no longer gets properties");
|
170
|
+
}
|
171
|
+
return name in elem ?
|
172
|
+
elem.value :
|
173
|
+
null;
|
174
|
+
},
|
175
|
+
set: function( elem, value ) {
|
176
|
+
var nodeName = ( elem.nodeName || "" ).toLowerCase();
|
177
|
+
if ( nodeName === "button" ) {
|
178
|
+
return valueAttrSet.apply( this, arguments );
|
179
|
+
}
|
180
|
+
if ( nodeName !== "input" && nodeName !== "option" ) {
|
181
|
+
migrateWarn("jQuery.fn.attr('value', val) no longer sets properties");
|
182
|
+
}
|
183
|
+
// Does not return so that setAttribute is also used
|
184
|
+
elem.value = value;
|
185
|
+
}
|
186
|
+
};
|
187
|
+
|
188
|
+
|
189
|
+
var matched, browser,
|
190
|
+
oldInit = jQuery.fn.init,
|
191
|
+
oldParseJSON = jQuery.parseJSON,
|
192
|
+
// Note this does NOT include the #9521 XSS fix from 1.7!
|
193
|
+
rquickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*|#([\w\-]*))$/;
|
194
|
+
|
195
|
+
// $(html) "looks like html" rule change
|
196
|
+
jQuery.fn.init = function( selector, context, rootjQuery ) {
|
197
|
+
var match;
|
198
|
+
|
199
|
+
if ( selector && typeof selector === "string" && !jQuery.isPlainObject( context ) &&
|
200
|
+
(match = rquickExpr.exec( selector )) && match[1] ) {
|
201
|
+
// This is an HTML string according to the "old" rules; is it still?
|
202
|
+
if ( selector.charAt( 0 ) !== "<" ) {
|
203
|
+
migrateWarn("$(html) HTML strings must start with '<' character");
|
204
|
+
}
|
205
|
+
// Now process using loose rules; let pre-1.8 play too
|
206
|
+
if ( context && context.context ) {
|
207
|
+
// jQuery object as context; parseHTML expects a DOM object
|
208
|
+
context = context.context;
|
209
|
+
}
|
210
|
+
if ( jQuery.parseHTML ) {
|
211
|
+
return oldInit.call( this, jQuery.parseHTML( jQuery.trim(selector), context, true ),
|
212
|
+
context, rootjQuery );
|
213
|
+
}
|
214
|
+
}
|
215
|
+
return oldInit.apply( this, arguments );
|
216
|
+
};
|
217
|
+
jQuery.fn.init.prototype = jQuery.fn;
|
218
|
+
|
219
|
+
// Let $.parseJSON(falsy_value) return null
|
220
|
+
jQuery.parseJSON = function( json ) {
|
221
|
+
if ( !json && json !== null ) {
|
222
|
+
migrateWarn("jQuery.parseJSON requires a valid JSON string");
|
223
|
+
return null;
|
224
|
+
}
|
225
|
+
return oldParseJSON.apply( this, arguments );
|
226
|
+
};
|
227
|
+
|
228
|
+
jQuery.uaMatch = function( ua ) {
|
229
|
+
ua = ua.toLowerCase();
|
230
|
+
|
231
|
+
var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
|
232
|
+
/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
|
233
|
+
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
|
234
|
+
/(msie) ([\w.]+)/.exec( ua ) ||
|
235
|
+
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
|
236
|
+
[];
|
237
|
+
|
238
|
+
return {
|
239
|
+
browser: match[ 1 ] || "",
|
240
|
+
version: match[ 2 ] || "0"
|
241
|
+
};
|
242
|
+
};
|
243
|
+
|
244
|
+
// Don't clobber any existing jQuery.browser in case it's different
|
245
|
+
if ( !jQuery.browser ) {
|
246
|
+
matched = jQuery.uaMatch( navigator.userAgent );
|
247
|
+
browser = {};
|
248
|
+
|
249
|
+
if ( matched.browser ) {
|
250
|
+
browser[ matched.browser ] = true;
|
251
|
+
browser.version = matched.version;
|
252
|
+
}
|
253
|
+
|
254
|
+
// Chrome is Webkit, but Webkit is also Safari.
|
255
|
+
if ( browser.chrome ) {
|
256
|
+
browser.webkit = true;
|
257
|
+
} else if ( browser.webkit ) {
|
258
|
+
browser.safari = true;
|
259
|
+
}
|
260
|
+
|
261
|
+
jQuery.browser = browser;
|
262
|
+
}
|
263
|
+
|
264
|
+
// Warn if the code tries to get jQuery.browser
|
265
|
+
migrateWarnProp( jQuery, "browser", jQuery.browser, "jQuery.browser is deprecated" );
|
266
|
+
|
267
|
+
jQuery.sub = function() {
|
268
|
+
function jQuerySub( selector, context ) {
|
269
|
+
return new jQuerySub.fn.init( selector, context );
|
270
|
+
}
|
271
|
+
jQuery.extend( true, jQuerySub, this );
|
272
|
+
jQuerySub.superclass = this;
|
273
|
+
jQuerySub.fn = jQuerySub.prototype = this();
|
274
|
+
jQuerySub.fn.constructor = jQuerySub;
|
275
|
+
jQuerySub.sub = this.sub;
|
276
|
+
jQuerySub.fn.init = function init( selector, context ) {
|
277
|
+
if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) {
|
278
|
+
context = jQuerySub( context );
|
279
|
+
}
|
280
|
+
|
281
|
+
return jQuery.fn.init.call( this, selector, context, rootjQuerySub );
|
282
|
+
};
|
283
|
+
jQuerySub.fn.init.prototype = jQuerySub.fn;
|
284
|
+
var rootjQuerySub = jQuerySub(document);
|
285
|
+
migrateWarn( "jQuery.sub() is deprecated" );
|
286
|
+
return jQuerySub;
|
287
|
+
};
|
288
|
+
|
289
|
+
|
290
|
+
// Ensure that $.ajax gets the new parseJSON defined in core.js
|
291
|
+
jQuery.ajaxSetup({
|
292
|
+
converters: {
|
293
|
+
"text json": jQuery.parseJSON
|
294
|
+
}
|
295
|
+
});
|
296
|
+
|
297
|
+
|
298
|
+
var oldFnData = jQuery.fn.data;
|
299
|
+
|
300
|
+
jQuery.fn.data = function( name ) {
|
301
|
+
var ret, evt,
|
302
|
+
elem = this[0];
|
303
|
+
|
304
|
+
// Handles 1.7 which has this behavior and 1.8 which doesn't
|
305
|
+
if ( elem && name === "events" && arguments.length === 1 ) {
|
306
|
+
ret = jQuery.data( elem, name );
|
307
|
+
evt = jQuery._data( elem, name );
|
308
|
+
if ( ( ret === undefined || ret === evt ) && evt !== undefined ) {
|
309
|
+
migrateWarn("Use of jQuery.fn.data('events') is deprecated");
|
310
|
+
return evt;
|
311
|
+
}
|
312
|
+
}
|
313
|
+
return oldFnData.apply( this, arguments );
|
314
|
+
};
|
315
|
+
|
316
|
+
|
317
|
+
var rscriptType = /\/(java|ecma)script/i,
|
318
|
+
oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack;
|
319
|
+
|
320
|
+
jQuery.fn.andSelf = function() {
|
321
|
+
migrateWarn("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()");
|
322
|
+
return oldSelf.apply( this, arguments );
|
323
|
+
};
|
324
|
+
|
325
|
+
// Since jQuery.clean is used internally on older versions, we only shim if it's missing
|
326
|
+
if ( !jQuery.clean ) {
|
327
|
+
jQuery.clean = function( elems, context, fragment, scripts ) {
|
328
|
+
// Set context per 1.8 logic
|
329
|
+
context = context || document;
|
330
|
+
context = !context.nodeType && context[0] || context;
|
331
|
+
context = context.ownerDocument || context;
|
332
|
+
|
333
|
+
migrateWarn("jQuery.clean() is deprecated");
|
334
|
+
|
335
|
+
var i, elem, handleScript, jsTags,
|
336
|
+
ret = [];
|
337
|
+
|
338
|
+
jQuery.merge( ret, jQuery.buildFragment( elems, context ).childNodes );
|
339
|
+
|
340
|
+
// Complex logic lifted directly from jQuery 1.8
|
341
|
+
if ( fragment ) {
|
342
|
+
// Special handling of each script element
|
343
|
+
handleScript = function( elem ) {
|
344
|
+
// Check if we consider it executable
|
345
|
+
if ( !elem.type || rscriptType.test( elem.type ) ) {
|
346
|
+
// Detach the script and store it in the scripts array (if provided) or the fragment
|
347
|
+
// Return truthy to indicate that it has been handled
|
348
|
+
return scripts ?
|
349
|
+
scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) :
|
350
|
+
fragment.appendChild( elem );
|
351
|
+
}
|
352
|
+
};
|
353
|
+
|
354
|
+
for ( i = 0; (elem = ret[i]) != null; i++ ) {
|
355
|
+
// Check if we're done after handling an executable script
|
356
|
+
if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) {
|
357
|
+
// Append to fragment and handle embedded scripts
|
358
|
+
fragment.appendChild( elem );
|
359
|
+
if ( typeof elem.getElementsByTagName !== "undefined" ) {
|
360
|
+
// handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration
|
361
|
+
jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript );
|
362
|
+
|
363
|
+
// Splice the scripts into ret after their former ancestor and advance our index beyond them
|
364
|
+
ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );
|
365
|
+
i += jsTags.length;
|
366
|
+
}
|
367
|
+
}
|
368
|
+
}
|
369
|
+
}
|
370
|
+
|
371
|
+
return ret;
|
372
|
+
};
|
373
|
+
}
|
374
|
+
|
375
|
+
var eventAdd = jQuery.event.add,
|
376
|
+
eventRemove = jQuery.event.remove,
|
377
|
+
eventTrigger = jQuery.event.trigger,
|
378
|
+
oldToggle = jQuery.fn.toggle,
|
379
|
+
oldLive = jQuery.fn.live,
|
380
|
+
oldDie = jQuery.fn.die,
|
381
|
+
ajaxEvents = "ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess",
|
382
|
+
rajaxEvent = new RegExp( "\\b(?:" + ajaxEvents + ")\\b" ),
|
383
|
+
rhoverHack = /(?:^|\s)hover(\.\S+|)\b/,
|
384
|
+
hoverHack = function( events ) {
|
385
|
+
if ( typeof( events ) !== "string" || jQuery.event.special.hover ) {
|
386
|
+
return events;
|
387
|
+
}
|
388
|
+
if ( rhoverHack.test( events ) ) {
|
389
|
+
migrateWarn("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'");
|
390
|
+
}
|
391
|
+
return events && events.replace( rhoverHack, "mouseenter$1 mouseleave$1" );
|
392
|
+
};
|
393
|
+
|
394
|
+
// Event props removed in 1.9, put them back if needed; no practical way to warn them
|
395
|
+
if ( jQuery.event.props && jQuery.event.props[ 0 ] !== "attrChange" ) {
|
396
|
+
jQuery.event.props.unshift( "attrChange", "attrName", "relatedNode", "srcElement" );
|
397
|
+
}
|
398
|
+
|
399
|
+
// Undocumented jQuery.event.handle was "deprecated" in jQuery 1.7
|
400
|
+
if ( jQuery.event.dispatch ) {
|
401
|
+
migrateWarnProp( jQuery.event, "handle", jQuery.event.dispatch, "jQuery.event.handle is undocumented and deprecated" );
|
402
|
+
}
|
403
|
+
|
404
|
+
// Support for 'hover' pseudo-event and ajax event warnings
|
405
|
+
jQuery.event.add = function( elem, types, handler, data, selector ){
|
406
|
+
if ( elem !== document && rajaxEvent.test( types ) ) {
|
407
|
+
migrateWarn( "AJAX events should be attached to document: " + types );
|
408
|
+
}
|
409
|
+
eventAdd.call( this, elem, hoverHack( types || "" ), handler, data, selector );
|
410
|
+
};
|
411
|
+
jQuery.event.remove = function( elem, types, handler, selector, mappedTypes ){
|
412
|
+
eventRemove.call( this, elem, hoverHack( types ) || "", handler, selector, mappedTypes );
|
413
|
+
};
|
414
|
+
|
415
|
+
jQuery.fn.error = function() {
|
416
|
+
var args = Array.prototype.slice.call( arguments, 0);
|
417
|
+
migrateWarn("jQuery.fn.error() is deprecated");
|
418
|
+
args.splice( 0, 0, "error" );
|
419
|
+
if ( arguments.length ) {
|
420
|
+
return this.bind.apply( this, args );
|
421
|
+
}
|
422
|
+
// error event should not bubble to window, although it does pre-1.7
|
423
|
+
this.triggerHandler.apply( this, args );
|
424
|
+
return this;
|
425
|
+
};
|
426
|
+
|
427
|
+
jQuery.fn.toggle = function( fn, fn2 ) {
|
428
|
+
|
429
|
+
// Don't mess with animation or css toggles
|
430
|
+
if ( !jQuery.isFunction( fn ) || !jQuery.isFunction( fn2 ) ) {
|
431
|
+
return oldToggle.apply( this, arguments );
|
432
|
+
}
|
433
|
+
migrateWarn("jQuery.fn.toggle(handler, handler...) is deprecated");
|
434
|
+
|
435
|
+
// Save reference to arguments for access in closure
|
436
|
+
var args = arguments,
|
437
|
+
guid = fn.guid || jQuery.guid++,
|
438
|
+
i = 0,
|
439
|
+
toggler = function( event ) {
|
440
|
+
// Figure out which function to execute
|
441
|
+
var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i;
|
442
|
+
jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 );
|
443
|
+
|
444
|
+
// Make sure that clicks stop
|
445
|
+
event.preventDefault();
|
446
|
+
|
447
|
+
// and execute the function
|
448
|
+
return args[ lastToggle ].apply( this, arguments ) || false;
|
449
|
+
};
|
450
|
+
|
451
|
+
// link all the functions, so any of them can unbind this click handler
|
452
|
+
toggler.guid = guid;
|
453
|
+
while ( i < args.length ) {
|
454
|
+
args[ i++ ].guid = guid;
|
455
|
+
}
|
456
|
+
|
457
|
+
return this.click( toggler );
|
458
|
+
};
|
459
|
+
|
460
|
+
jQuery.fn.live = function( types, data, fn ) {
|
461
|
+
migrateWarn("jQuery.fn.live() is deprecated");
|
462
|
+
if ( oldLive ) {
|
463
|
+
return oldLive.apply( this, arguments );
|
464
|
+
}
|
465
|
+
jQuery( this.context ).on( types, this.selector, data, fn );
|
466
|
+
return this;
|
467
|
+
};
|
468
|
+
|
469
|
+
jQuery.fn.die = function( types, fn ) {
|
470
|
+
migrateWarn("jQuery.fn.die() is deprecated");
|
471
|
+
if ( oldDie ) {
|
472
|
+
return oldDie.apply( this, arguments );
|
473
|
+
}
|
474
|
+
jQuery( this.context ).off( types, this.selector || "**", fn );
|
475
|
+
return this;
|
476
|
+
};
|
477
|
+
|
478
|
+
// Turn global events into document-triggered events
|
479
|
+
jQuery.event.trigger = function( event, data, elem, onlyHandlers ){
|
480
|
+
if ( !elem && !rajaxEvent.test( event ) ) {
|
481
|
+
migrateWarn( "Global events are undocumented and deprecated" );
|
482
|
+
}
|
483
|
+
return eventTrigger.call( this, event, data, elem || document, onlyHandlers );
|
484
|
+
};
|
485
|
+
jQuery.each( ajaxEvents.split("|"),
|
486
|
+
function( _, name ) {
|
487
|
+
jQuery.event.special[ name ] = {
|
488
|
+
setup: function() {
|
489
|
+
var elem = this;
|
490
|
+
|
491
|
+
// The document needs no shimming; must be !== for oldIE
|
492
|
+
if ( elem !== document ) {
|
493
|
+
jQuery.event.add( document, name + "." + jQuery.guid, function() {
|
494
|
+
jQuery.event.trigger( name, null, elem, true );
|
495
|
+
});
|
496
|
+
jQuery._data( this, name, jQuery.guid++ );
|
497
|
+
}
|
498
|
+
return false;
|
499
|
+
},
|
500
|
+
teardown: function() {
|
501
|
+
if ( this !== document ) {
|
502
|
+
jQuery.event.remove( document, name + "." + jQuery._data( this, name ) );
|
503
|
+
}
|
504
|
+
return false;
|
505
|
+
}
|
506
|
+
};
|
507
|
+
}
|
508
|
+
);
|
509
|
+
|
510
|
+
|
511
|
+
})( jQuery, window );
|