middleman-sprockets 3.1.2 → 3.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile +6 -1
- data/Gemfile-3.0 +2 -0
- data/features/asset_hash.feature +1 -1
- data/features/bower.feature +12 -0
- data/features/long_filenames.feature +17 -0
- data/features/sprockets.feature +15 -1
- data/fixtures/bower-app/bower.json +7 -0
- data/fixtures/bower-app/components/jquery/.gitignore +1 -0
- data/fixtures/bower-app/components/jquery/README.md +11 -0
- data/fixtures/bower-app/components/jquery/bower.json +19 -0
- data/fixtures/bower-app/components/jquery/component.json +15 -0
- data/fixtures/bower-app/components/jquery/composer.json +35 -0
- data/fixtures/bower-app/components/jquery/jquery-migrate.js +511 -0
- data/fixtures/bower-app/components/jquery/jquery-migrate.min.js +3 -0
- data/fixtures/bower-app/components/jquery/jquery.js +8842 -0
- data/fixtures/bower-app/components/jquery/jquery.min.js +6 -0
- data/fixtures/bower-app/components/jquery/package.json +7 -0
- data/fixtures/bower-app/config.rb +1 -0
- data/fixtures/bower-app/source/javascripts/get_jquery.js +1 -0
- data/fixtures/long-filenames-app/config.rb +0 -0
- data/fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-000000.svg +3 -0
- data/fixtures/long-filenames-app/source/images/00000000-0000-0000-0000-0000001.svg +3 -0
- data/fixtures/sprockets-app-debug-assets/source/index.html.erb +6 -0
- data/lib/middleman-sprockets/extension.rb +28 -10
- data/lib/middleman-sprockets/version.rb +1 -1
- metadata +38 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22a7558fe43af9f7b1da64e136c4e63f8eb0549b
|
4
|
+
data.tar.gz: 73eb77c9e9aa5a2a35b0cebaf0f99f70ee1b1a88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 498a939675d06c4d03d0efc07156dd16f093a7584d5ecb676702727a816d24811c7a981922c554beadf2d5cd659380be44e6b6a084ce7a9aa20ec1b3f2ed988b
|
7
|
+
data.tar.gz: 332722b8eb4b809452ad54626b662b6da8d4e06a2c1dffffd2ab31d6d99379844e78b4881e6ea53c37ecab5eb282e42116c832d3c958872fd7dd57b0a9ac70be
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
@@ -31,4 +31,9 @@ gem "eco", "~> 1.0.0"
|
|
31
31
|
gem "erubis", "~> 2.7.0"
|
32
32
|
|
33
33
|
# Code Quality
|
34
|
-
gem "cane", :platforms => [:mri_19, :mri_20], :require => false
|
34
|
+
gem "cane", :platforms => [:mri_19, :mri_20], :require => false
|
35
|
+
|
36
|
+
# Cross-templating language block fix for Ruby 1.8
|
37
|
+
platforms :mri_18 do
|
38
|
+
gem "ruby18_source_location"
|
39
|
+
end
|
data/Gemfile-3.0
CHANGED
data/features/asset_hash.feature
CHANGED
@@ -76,7 +76,7 @@ Feature: Assets get a file hash appended to their URL and references to them are
|
|
76
76
|
font-size: 14px
|
77
77
|
"""
|
78
78
|
When I go to "/partials/"
|
79
|
-
Then I should see 'href="../stylesheets/uses_partials-
|
79
|
+
Then I should see 'href="../stylesheets/uses_partials-a48be509.css'
|
80
80
|
And wait a second
|
81
81
|
And the file "source/stylesheets/_partial.sass" has the contents
|
82
82
|
"""
|
@@ -0,0 +1,12 @@
|
|
1
|
+
Feature: Bower
|
2
|
+
Scenario: Sprockets can pull jQuery from bower
|
3
|
+
Given the Server is running at "bower-app"
|
4
|
+
When I go to "/javascripts/get_jquery.js"
|
5
|
+
Then I should see "window.jQuery ="
|
6
|
+
|
7
|
+
Scenario: Sprockets can build jQuery from bower
|
8
|
+
Given a successfully built app at "bower-app"
|
9
|
+
When I cd to "build"
|
10
|
+
Then the following files should exist:
|
11
|
+
| javascripts/get_jquery.js |
|
12
|
+
And the file "javascripts/get_jquery.js" should contain "window.jQuery ="
|
@@ -0,0 +1,17 @@
|
|
1
|
+
Feature: Long Filenames
|
2
|
+
|
3
|
+
Scenario: Checking built folder for content
|
4
|
+
Given a successfully built app at "long-filenames-app"
|
5
|
+
When I cd to "build"
|
6
|
+
Then the following files should exist:
|
7
|
+
| images/00000000-0000-0000-0000-000000.svg |
|
8
|
+
| images/00000000-0000-0000-0000-0000001.svg |
|
9
|
+
And the file "images/00000000-0000-0000-0000-000000.svg" should contain "<svg xmlns"
|
10
|
+
And the file "images/00000000-0000-0000-0000-0000001.svg" should contain "<svg xmlns"
|
11
|
+
|
12
|
+
Scenario: Rendering html
|
13
|
+
Given the Server is running at "long-filenames-app"
|
14
|
+
When I go to "/images/00000000-0000-0000-0000-000000.svg"
|
15
|
+
Then I should see "<svg xmlns"
|
16
|
+
When I go to "/images/00000000-0000-0000-0000-0000001.svg"
|
17
|
+
Then I should see "<svg xmlns"
|
data/features/sprockets.feature
CHANGED
@@ -44,6 +44,13 @@ Feature: Sprockets
|
|
44
44
|
Then I should see 'src="/javascripts/dependency1.js?body=1"'
|
45
45
|
Then I should see 'src="/javascripts/main.js?body=1"'
|
46
46
|
|
47
|
+
Scenario: External script tags should not be changed
|
48
|
+
Given the Server is running at "sprockets-app-debug-assets"
|
49
|
+
When I go to "/index.html"
|
50
|
+
Then I should see 'src="//domain.com/script.js"'
|
51
|
+
Then I should see 'src="http://domain.com/script.js"'
|
52
|
+
Then I should see 'src="https://domain.com/script.js"'
|
53
|
+
|
47
54
|
Scenario: Sprockets CSS should only contain body when requested
|
48
55
|
Given the Server is running at "sprockets-app-debug-assets"
|
49
56
|
When I go to "/stylesheets/app.css?body=1"
|
@@ -54,7 +61,14 @@ Feature: Sprockets
|
|
54
61
|
When I go to "/index.html"
|
55
62
|
Then I should see 'href="/stylesheets/app.css?body=1"'
|
56
63
|
Then I should see 'href="/stylesheets/dependency1.css?body=1"'
|
57
|
-
Then I should see 'href="/stylesheets/dependency2.css?body=1"'
|
64
|
+
Then I should see 'href="/stylesheets/dependency2.css?body=1"'
|
65
|
+
|
66
|
+
Scenario: External stylesheet tags should not be changed
|
67
|
+
Given the Server is running at "sprockets-app-debug-assets"
|
68
|
+
When I go to "/index.html"
|
69
|
+
Then I should see 'href="//domain.com/styles.css"'
|
70
|
+
Then I should see 'href="http://domain.com/styles.css"'
|
71
|
+
Then I should see 'href="https://domain.com/styles.css"'
|
58
72
|
|
59
73
|
Scenario: Multiple engine files should build correctly
|
60
74
|
Given a successfully built app at "sprockets-app2"
|
@@ -0,0 +1 @@
|
|
1
|
+
build
|
@@ -0,0 +1,11 @@
|
|
1
|
+
jQuery Component
|
2
|
+
================
|
3
|
+
|
4
|
+
Shim repository for the [jQuery](http://jquery.com).
|
5
|
+
|
6
|
+
Package Managers
|
7
|
+
----------------
|
8
|
+
|
9
|
+
* [Bower](http://twitter.github.com/bower/): `jquery`
|
10
|
+
* [Component](https://github.com/component/component): `components/jquery`
|
11
|
+
* [Composer](http://packagist.org/packages/components/jquery): `components/jquery`
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"name": "jquery",
|
3
|
+
"version": "2.0.2",
|
4
|
+
"description": "jQuery component",
|
5
|
+
"keywords": [
|
6
|
+
"jquery",
|
7
|
+
"component"
|
8
|
+
],
|
9
|
+
"main": "jquery.js",
|
10
|
+
"license": "MIT",
|
11
|
+
"gitHead": "b237de4f9b286b792bb6649088654e732f4e2928",
|
12
|
+
"readme": "jQuery Component\n================\n\nShim repository for the [jQuery](http://jquery.com).\n\nPackage Managers\n----------------\n\n* [Bower](http://twitter.github.com/bower/): `jquery`\n* [Component](https://github.com/component/component): `components/jquery`\n* [Composer](http://packagist.org/packages/components/jquery): `components/jquery`\n",
|
13
|
+
"readmeFilename": "README.md",
|
14
|
+
"_id": "jquery@2.0.2",
|
15
|
+
"repository": {
|
16
|
+
"type": "git",
|
17
|
+
"url": "git://github.com/components/jquery.git"
|
18
|
+
}
|
19
|
+
}
|
@@ -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 );
|