2010-09-08 19:54:33 +02:00
|
|
|
(function( jQuery ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
var r20 = /%20/g,
|
2010-09-22 15:16:28 +02:00
|
|
|
rbracket = /\[\]$/,
|
2010-12-25 18:54:37 +01:00
|
|
|
rhash = /#.*$/,
|
|
|
|
rheaders = /^(.*?):\s*(.*?)\r?$/mg, // IE leaves an \r character at EOL
|
|
|
|
rinput = /^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,
|
|
|
|
rnoContent = /^(?:GET|HEAD)$/,
|
2009-07-19 21:44:15 +02:00
|
|
|
rquery = /\?/,
|
2010-12-25 18:54:37 +01:00
|
|
|
rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
|
|
|
|
rselectTextarea = /^(?:select|textarea)/i,
|
|
|
|
rts = /([?&])_=[^&]*/,
|
2011-01-09 06:01:00 +01:00
|
|
|
rurl = /^(\w+:)?\/\/([^\/?#:]+)(?::(\d+))?/,
|
2011-01-09 23:22:11 +01:00
|
|
|
rCRLF = /\r?\n/g,
|
2009-07-19 21:44:15 +02:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Slice function
|
|
|
|
sliceFunc = Array.prototype.slice,
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-02-11 07:23:13 +01:00
|
|
|
// Keep a copy of the old load method
|
|
|
|
_load = jQuery.fn.load;
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2010-02-11 07:23:13 +01:00
|
|
|
jQuery.fn.extend({
|
2007-09-04 04:55:38 +02:00
|
|
|
load: function( url, params, callback ) {
|
2010-02-27 15:02:13 +01:00
|
|
|
if ( typeof url !== "string" && _load ) {
|
|
|
|
return _load.apply( this, arguments );
|
2009-11-11 20:55:32 +01:00
|
|
|
|
|
|
|
// Don't do a request if no elements are being requested
|
|
|
|
} else if ( !this.length ) {
|
|
|
|
return this;
|
2009-07-19 21:37:11 +02:00
|
|
|
}
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-08-25 05:33:08 +02:00
|
|
|
var off = url.indexOf(" ");
|
2007-08-25 05:55:12 +02:00
|
|
|
if ( off >= 0 ) {
|
|
|
|
var selector = url.slice(off, url.length);
|
|
|
|
url = url.slice(0, off);
|
|
|
|
}
|
2007-08-25 05:33:08 +02:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
// Default to a GET request
|
|
|
|
var type = "GET";
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
// If the second parameter was provided
|
2009-07-19 21:37:11 +02:00
|
|
|
if ( params ) {
|
2006-09-30 16:32:49 +02:00
|
|
|
// If it's a function
|
2007-01-16 12:38:33 +01:00
|
|
|
if ( jQuery.isFunction( params ) ) {
|
2006-09-30 16:32:49 +02:00
|
|
|
// We assume that it's the callback
|
|
|
|
callback = params;
|
|
|
|
params = null;
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
// Otherwise, build a param string
|
2009-07-19 21:37:11 +02:00
|
|
|
} else if ( typeof params === "object" ) {
|
2009-12-22 14:09:56 +01:00
|
|
|
params = jQuery.param( params, jQuery.ajaxSettings.traditional );
|
2006-09-30 16:32:49 +02:00
|
|
|
type = "POST";
|
|
|
|
}
|
2009-07-19 21:37:11 +02:00
|
|
|
}
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-01-25 03:58:32 +01:00
|
|
|
var self = this;
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
// Request the remote document
|
2006-11-03 12:30:57 +01:00
|
|
|
jQuery.ajax({
|
|
|
|
url: url,
|
|
|
|
type: type,
|
2007-12-14 18:06:41 +01:00
|
|
|
dataType: "html",
|
2006-11-03 12:30:57 +01:00
|
|
|
data: params,
|
2011-01-11 20:02:33 +01:00
|
|
|
// Complete callback (responseText is used internally)
|
|
|
|
complete: function( jXHR, status, responseText ) {
|
|
|
|
// Store the response as specified by the jXHR object
|
|
|
|
responseText = jXHR.responseText;
|
2007-07-20 23:59:52 +02:00
|
|
|
// If successful, inject the HTML into all the matched elements
|
2011-01-11 20:02:33 +01:00
|
|
|
if ( jXHR.isResolved() ) {
|
|
|
|
// #4825: Get the actual response in case
|
|
|
|
// a dataFilter is present in ajaxSettings
|
|
|
|
jXHR.done(function( r ) {
|
|
|
|
responseText = r;
|
|
|
|
});
|
2007-08-25 05:33:08 +02:00
|
|
|
// See if a selector was specified
|
2010-01-25 03:58:32 +01:00
|
|
|
self.html( selector ?
|
2007-08-25 05:33:08 +02:00
|
|
|
// Create a dummy div to hold the results
|
2010-09-22 15:16:28 +02:00
|
|
|
jQuery("<div>")
|
2007-08-25 05:33:08 +02:00
|
|
|
// inject the contents of the document in, removing the scripts
|
|
|
|
// to avoid any 'Permission Denied' errors in IE
|
2011-01-11 20:02:33 +01:00
|
|
|
.append(responseText.replace(rscript, ""))
|
2007-08-25 05:33:08 +02:00
|
|
|
|
|
|
|
// Locate the specified elements
|
|
|
|
.find(selector) :
|
|
|
|
|
|
|
|
// If not, just inject the full result
|
2011-01-11 20:02:33 +01:00
|
|
|
responseText );
|
2009-07-19 21:37:11 +02:00
|
|
|
}
|
2007-07-20 23:59:52 +02:00
|
|
|
|
2009-07-19 21:37:11 +02:00
|
|
|
if ( callback ) {
|
2011-01-11 20:02:33 +01:00
|
|
|
self.each( callback, [responseText, status, jXHR] );
|
2009-07-19 21:37:11 +02:00
|
|
|
}
|
2006-11-03 12:30:57 +01:00
|
|
|
}
|
|
|
|
});
|
2009-07-19 21:37:11 +02:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
return this;
|
|
|
|
},
|
2006-05-16 18:18:52 +02:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
serialize: function() {
|
2007-09-05 19:06:05 +02:00
|
|
|
return jQuery.param(this.serializeArray());
|
|
|
|
},
|
2010-03-02 16:44:48 +01:00
|
|
|
|
2007-09-09 20:29:15 +02:00
|
|
|
serializeArray: function() {
|
2010-12-09 19:34:28 +01:00
|
|
|
return this.map(function(){
|
2008-08-13 03:44:36 +02:00
|
|
|
return this.elements ? jQuery.makeArray(this.elements) : this;
|
2007-09-05 19:06:05 +02:00
|
|
|
})
|
2010-12-09 19:34:28 +01:00
|
|
|
.filter(function(){
|
2008-05-13 03:45:58 +02:00
|
|
|
return this.name && !this.disabled &&
|
2009-07-19 21:44:15 +02:00
|
|
|
(this.checked || rselectTextarea.test(this.nodeName) ||
|
|
|
|
rinput.test(this.type));
|
2007-09-05 19:06:05 +02:00
|
|
|
})
|
2010-12-09 19:34:28 +01:00
|
|
|
.map(function(i, elem){
|
2007-09-09 20:29:15 +02:00
|
|
|
var val = jQuery(this).val();
|
2009-07-19 21:37:11 +02:00
|
|
|
|
|
|
|
return val == null ?
|
|
|
|
null :
|
2008-10-29 03:01:22 +01:00
|
|
|
jQuery.isArray(val) ?
|
2010-12-09 19:34:28 +01:00
|
|
|
jQuery.map( val, function(val, i){
|
2011-01-09 23:22:11 +01:00
|
|
|
return { name: elem.name, value: val.replace(rCRLF, "\r\n") };
|
2007-09-05 19:06:05 +02:00
|
|
|
}) :
|
2011-01-09 23:22:11 +01:00
|
|
|
{ name: elem.name, value: val.replace(rCRLF, "\r\n") };
|
2007-09-09 20:29:15 +02:00
|
|
|
}).get();
|
|
|
|
}
|
2006-09-30 16:32:49 +02:00
|
|
|
});
|
2006-09-08 12:18:46 +02:00
|
|
|
|
2006-06-19 03:29:54 +02:00
|
|
|
// Attach a bunch of functions for handling common AJAX events
|
2010-12-09 19:34:28 +01:00
|
|
|
jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), function(i,o){
|
|
|
|
jQuery.fn[o] = function(f){
|
2007-01-06 06:31:47 +01:00
|
|
|
return this.bind(o, f);
|
2006-08-17 06:18:32 +02:00
|
|
|
};
|
2007-01-06 06:31:47 +01:00
|
|
|
});
|
$.fn.formValues;
Gets form values and creates a key=>value array of the found values.
What's new?
- Only does this for ENABLED elements.
- Keeps the same order of the form.
- Optionally adds the button which is clicked (marks that name with an 'x' in the list)
example: $('#frmLogin').formValues('oButton');
$.fn.update (PREVIOUSLY: $.update, so beware!!!!)
Calls sURL with sAction (method) and sends the aValues. Puts the results from that call in the jQuery object and calls fCallback if provided.
What's new?
- Renamed $.update to $.fn.update, since it is more obvious to call $('someJQueryObject').update(...) then $.update($('someJQueryObject'), ...). It's also more jQuery-ish
- Added the method you want to use, since i used post before, now you can select between either GET or POST.
example: $('someJQueryObject').update('sURL', 'sAction', 'aValues', 'fCallback');
$.fn.serialize
Calls the form's action with the correct method and the serialized values. Optionally adds the button which is clicked if you provide it. When there are results, the fCallback function is called.
What's new?
- The entire function
example: $('someForm').serialize('sButton', 'fCallback');
2006-05-31 13:14:21 +02:00
|
|
|
|
2010-12-26 23:49:01 +01:00
|
|
|
jQuery.each( [ "get", "post" ], function( i, method ) {
|
|
|
|
jQuery[ method ] = function( url, data, callback, type ) {
|
2009-09-15 17:28:28 +02:00
|
|
|
// shift arguments if data argument was omited
|
2007-01-14 07:22:20 +01:00
|
|
|
if ( jQuery.isFunction( data ) ) {
|
2009-09-15 18:45:37 +02:00
|
|
|
type = type || callback;
|
2006-07-10 05:20:56 +02:00
|
|
|
callback = data;
|
|
|
|
data = null;
|
|
|
|
}
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2006-12-15 10:13:24 +01:00
|
|
|
return jQuery.ajax({
|
2010-12-26 19:51:29 +01:00
|
|
|
type: method,
|
2006-11-03 12:30:57 +01:00
|
|
|
url: url,
|
2006-11-11 12:34:51 +01:00
|
|
|
data: data,
|
|
|
|
success: callback,
|
2007-09-04 04:55:38 +02:00
|
|
|
dataType: type
|
2006-11-03 12:30:57 +01:00
|
|
|
});
|
2010-12-26 19:51:29 +01:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery.extend({
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
getScript: function( url, callback ) {
|
2006-12-15 10:13:24 +01:00
|
|
|
return jQuery.get(url, null, callback, "script");
|
2006-09-08 12:18:46 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-08 12:18:46 +02:00
|
|
|
getJSON: function( url, data, callback ) {
|
2006-12-15 10:13:24 +01:00
|
|
|
return jQuery.get(url, data, callback, "json");
|
2006-07-10 05:20:56 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-01-06 07:18:02 +01:00
|
|
|
ajaxSetup: function( settings ) {
|
2011-01-12 18:53:00 +01:00
|
|
|
jQuery.extend( true, jQuery.ajaxSettings, settings );
|
2011-01-20 04:12:15 +01:00
|
|
|
if ( settings.context ) {
|
|
|
|
jQuery.ajaxSettings.context = settings.context;
|
|
|
|
}
|
2006-08-17 06:18:32 +02:00
|
|
|
},
|
|
|
|
|
2006-12-22 14:56:36 +01:00
|
|
|
ajaxSettings: {
|
2008-05-14 21:50:24 +02:00
|
|
|
url: location.href,
|
2006-12-22 14:56:36 +01:00
|
|
|
global: true,
|
|
|
|
type: "GET",
|
|
|
|
contentType: "application/x-www-form-urlencoded",
|
|
|
|
processData: true,
|
2007-01-14 23:51:55 +01:00
|
|
|
async: true,
|
2009-01-04 22:15:02 +01:00
|
|
|
/*
|
|
|
|
timeout: 0,
|
2008-01-07 02:03:31 +01:00
|
|
|
data: null,
|
2010-12-09 19:34:28 +01:00
|
|
|
dataType: null,
|
2008-01-07 02:03:31 +01:00
|
|
|
username: null,
|
2008-01-14 19:19:28 +01:00
|
|
|
password: null,
|
2010-12-09 19:34:28 +01:00
|
|
|
cache: null,
|
2009-12-22 14:09:56 +01:00
|
|
|
traditional: false,
|
2011-01-16 03:05:03 +01:00
|
|
|
headers: {},
|
|
|
|
crossDomain: null,
|
2009-01-04 22:15:02 +01:00
|
|
|
*/
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2008-01-14 19:19:28 +01:00
|
|
|
accepts: {
|
|
|
|
xml: "application/xml, text/xml",
|
|
|
|
html: "text/html",
|
|
|
|
text: "text/plain",
|
2010-12-09 19:34:28 +01:00
|
|
|
json: "application/json, text/javascript",
|
|
|
|
"*": "*/*"
|
|
|
|
},
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-12-28 02:30:51 +01:00
|
|
|
contents: {
|
2010-12-09 19:34:28 +01:00
|
|
|
xml: /xml/,
|
|
|
|
html: /html/,
|
|
|
|
json: /json/
|
|
|
|
},
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-12-09 19:34:28 +01:00
|
|
|
// Prefilters
|
|
|
|
// 1) They are useful to introduce custom dataTypes (see transport/jsonp for an example)
|
|
|
|
// 2) These are called:
|
|
|
|
// * BEFORE asking for a transport
|
|
|
|
// * AFTER param serialization (s.data is a string if s.processData is true)
|
2010-12-21 13:06:41 +01:00
|
|
|
// 3) key is the dataType
|
|
|
|
// 4) the catchall symbol "*" can be used
|
|
|
|
// 5) execution will start with transport dataType and THEN continue down to "*" if needed
|
|
|
|
prefilters: {},
|
2010-12-21 16:58:52 +01:00
|
|
|
|
2010-12-09 19:34:28 +01:00
|
|
|
// Transports bindings
|
|
|
|
// 1) key is the dataType
|
|
|
|
// 2) the catchall symbol "*" can be used
|
|
|
|
// 3) selection will start with transport dataType and THEN go to "*" if needed
|
2010-12-21 13:06:41 +01:00
|
|
|
transports: {},
|
2010-12-21 16:58:52 +01:00
|
|
|
|
2010-12-09 19:34:28 +01:00
|
|
|
// List of data converters
|
2010-12-24 18:02:45 +01:00
|
|
|
// 1) key format is "source_type destination_type" (a single space in-between)
|
2010-12-09 19:34:28 +01:00
|
|
|
// 2) the catchall symbol "*" can be used for source_type
|
2010-12-28 02:30:51 +01:00
|
|
|
converters: {
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-12-09 19:34:28 +01:00
|
|
|
// Convert anything to text
|
2010-12-24 18:02:45 +01:00
|
|
|
"* text": window.String,
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-12-25 15:38:33 +01:00
|
|
|
// Text to html (true = no transformation)
|
|
|
|
"text html": true,
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-12-09 19:34:28 +01:00
|
|
|
// Evaluate text as a json expression
|
2010-12-24 18:02:45 +01:00
|
|
|
"text json": jQuery.parseJSON,
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-12-09 19:34:28 +01:00
|
|
|
// Parse text as xml
|
2010-12-24 18:02:45 +01:00
|
|
|
"text xml": jQuery.parseXML
|
2011-01-19 18:16:29 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Utility function that handles dataType when response is received
|
|
|
|
// (for those transports that can give text or xml responses)
|
2011-01-20 17:38:21 +01:00
|
|
|
determineResponse: function( responses , ct ) {
|
2011-01-19 18:16:29 +01:00
|
|
|
|
|
|
|
var s = this,
|
|
|
|
contents = s.contents,
|
|
|
|
type,
|
|
|
|
regexp,
|
|
|
|
dataTypes = s.dataTypes,
|
|
|
|
transportDataType = dataTypes[0],
|
|
|
|
response;
|
|
|
|
|
|
|
|
// Auto (xml, json, script or text determined given headers)
|
2011-01-20 17:38:21 +01:00
|
|
|
if ( ct && transportDataType === "*" ) {
|
2011-01-19 18:16:29 +01:00
|
|
|
|
|
|
|
for ( type in contents ) {
|
|
|
|
if ( ( regexp = contents[ type ] ) && regexp.test( ct ) ) {
|
|
|
|
transportDataType = dataTypes[0] = type;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-20 17:38:21 +01:00
|
|
|
// Get response
|
|
|
|
for( type in responses ) {
|
|
|
|
if ( type === transportDataType ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-01-19 18:16:29 +01:00
|
|
|
|
2011-01-20 17:38:21 +01:00
|
|
|
// Get final response
|
|
|
|
response = responses[ type ];
|
2011-01-19 18:16:29 +01:00
|
|
|
|
2011-01-20 17:38:21 +01:00
|
|
|
// If it's not the right dataType, handle the dataTypeList
|
|
|
|
if ( transportDataType !== type ) {
|
|
|
|
if ( transportDataType === "*" ) {
|
|
|
|
dataTypes.shift();
|
2011-01-19 18:16:29 +01:00
|
|
|
}
|
2011-01-20 17:38:21 +01:00
|
|
|
dataTypes.unshift( type );
|
2011-01-19 18:16:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return response;
|
2006-12-21 14:35:32 +01:00
|
|
|
}
|
2011-01-19 18:16:29 +01:00
|
|
|
|
2010-12-09 19:34:28 +01:00
|
|
|
},
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
ajaxPrefilter: function( a , b ) {
|
|
|
|
ajaxPrefilterOrTransport( "prefilters" , a , b );
|
|
|
|
},
|
|
|
|
|
|
|
|
ajaxTransport: function( a , b ) {
|
|
|
|
return ajaxPrefilterOrTransport( "transports" , a , b );
|
|
|
|
},
|
|
|
|
|
2010-12-09 19:34:28 +01:00
|
|
|
// Main method
|
2011-01-19 17:06:33 +01:00
|
|
|
ajax: function( url , options ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-20 16:22:36 +01:00
|
|
|
// If options is not an object,
|
|
|
|
// we simulate pre-1.5 signature
|
|
|
|
if ( typeof( options ) !== "object" ) {
|
2010-12-25 18:54:37 +01:00
|
|
|
options = url;
|
2011-01-20 16:22:36 +01:00
|
|
|
url = undefined;
|
2009-07-19 21:37:11 +02:00
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Force options to be an object
|
|
|
|
options = options || {};
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-19 17:06:33 +01:00
|
|
|
var // Create the final options object
|
|
|
|
s = jQuery.extend( true , {} , jQuery.ajaxSettings , options ),
|
|
|
|
// jQuery lists
|
2010-12-25 18:54:37 +01:00
|
|
|
jQuery_lastModified = jQuery.lastModified,
|
|
|
|
jQuery_etag = jQuery.etag,
|
|
|
|
// Callbacks contexts
|
2011-01-20 04:12:15 +01:00
|
|
|
// We force the original context if it exists
|
|
|
|
// or take it from jQuery.ajaxSettings otherwise
|
|
|
|
// (plain objects used as context get extended)
|
|
|
|
callbackContext =
|
|
|
|
( s.context = ( "context" in options ? options : jQuery.ajaxSettings ).context ) || s,
|
2011-01-19 17:06:33 +01:00
|
|
|
globalEventContext = callbackContext === s ? jQuery.event : jQuery( callbackContext ),
|
2010-12-25 18:54:37 +01:00
|
|
|
// Deferreds
|
|
|
|
deferred = jQuery.Deferred(),
|
|
|
|
completeDeferred = jQuery._Deferred(),
|
2011-01-13 17:01:25 +01:00
|
|
|
// Status-dependent callbacks
|
|
|
|
statusCode = s.statusCode || {},
|
2010-12-25 18:54:37 +01:00
|
|
|
// Headers (they are sent all at once)
|
|
|
|
requestHeaders = {},
|
|
|
|
// Response headers
|
|
|
|
responseHeadersString,
|
|
|
|
responseHeaders,
|
|
|
|
// transport
|
|
|
|
transport,
|
|
|
|
// timeout handle
|
|
|
|
timeoutTimer,
|
2011-01-13 00:41:10 +01:00
|
|
|
// Cross-domain detection vars
|
|
|
|
loc = document.location,
|
2011-01-19 18:35:40 +01:00
|
|
|
protocol = loc.protocol || "http:",
|
2011-01-13 00:41:10 +01:00
|
|
|
parts,
|
2010-12-25 18:54:37 +01:00
|
|
|
// The jXHR state
|
|
|
|
state = 0,
|
|
|
|
// Loop variable
|
|
|
|
i,
|
|
|
|
// Fake xhr
|
|
|
|
jXHR = {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
readyState: 0,
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Caches the header
|
|
|
|
setRequestHeader: function(name,value) {
|
|
|
|
if ( state === 0 ) {
|
|
|
|
requestHeaders[ name.toLowerCase() ] = value;
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
},
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Raw string
|
|
|
|
getAllResponseHeaders: function() {
|
|
|
|
return state === 2 ? responseHeadersString : null;
|
|
|
|
},
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Builds headers hashtable if needed
|
2011-01-19 17:21:51 +01:00
|
|
|
getResponseHeader: function( key ) {
|
|
|
|
|
|
|
|
var match;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
if ( state === 2 ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-19 17:21:51 +01:00
|
|
|
if ( !responseHeaders ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
responseHeaders = {};
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-19 17:21:51 +01:00
|
|
|
while( ( match = rheaders.exec( responseHeadersString ) ) ) {
|
|
|
|
responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-16 02:57:39 +01:00
|
|
|
match = responseHeaders[ key.toLowerCase() ];
|
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
2011-01-16 02:57:39 +01:00
|
|
|
|
2011-01-19 17:21:51 +01:00
|
|
|
return match || null;
|
2010-12-25 18:54:37 +01:00
|
|
|
},
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Cancel the request
|
|
|
|
abort: function( statusText ) {
|
2011-01-16 02:57:39 +01:00
|
|
|
if ( transport ) {
|
2010-12-25 18:54:37 +01:00
|
|
|
transport.abort( statusText || "abort" );
|
|
|
|
}
|
2011-01-16 02:57:39 +01:00
|
|
|
done( 0 , statusText );
|
2010-12-25 18:54:37 +01:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
};
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Callback for when everything is done
|
|
|
|
// It is defined here because jslint complains if it is declared
|
|
|
|
// at the end of the function (which would be more logical and readable)
|
|
|
|
function done( status , statusText , response , headers) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Called once
|
|
|
|
if ( state === 2 ) {
|
|
|
|
return;
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// State is "done" now
|
|
|
|
state = 2;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// Dereference transport for early garbage collection
|
|
|
|
// (no matter how long the jXHR transport will be used
|
2011-01-19 17:24:56 +01:00
|
|
|
transport = undefined;
|
2011-01-16 02:57:39 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Set readyState
|
|
|
|
jXHR.readyState = status ? 4 : 0;
|
|
|
|
|
|
|
|
// Cache response headers
|
|
|
|
responseHeadersString = headers || "";
|
|
|
|
|
|
|
|
// Clear timeout if it exists
|
|
|
|
if ( timeoutTimer ) {
|
|
|
|
clearTimeout(timeoutTimer);
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
var // Reference url
|
|
|
|
url = s.url,
|
|
|
|
// and ifModified status
|
|
|
|
ifModified = s.ifModified,
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Is it a success?
|
|
|
|
isSuccess = 0,
|
|
|
|
// Stored success
|
|
|
|
success,
|
|
|
|
// Stored error
|
2011-01-19 17:51:33 +01:00
|
|
|
error,
|
|
|
|
|
2011-01-20 15:39:30 +01:00
|
|
|
// To keep track of statusCode based callbacks
|
|
|
|
oldStatusCode;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// If successful, handle type chaining
|
2011-01-13 01:43:42 +01:00
|
|
|
if ( status >= 200 && status < 300 || status === 304 ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
|
|
|
|
if ( s.ifModified ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
var lastModified = jXHR.getResponseHeader("Last-Modified"),
|
|
|
|
etag = jXHR.getResponseHeader("Etag");
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
if (lastModified) {
|
|
|
|
jQuery_lastModified[ s.url ] = lastModified;
|
|
|
|
}
|
|
|
|
if (etag) {
|
|
|
|
jQuery_etag[ s.url ] = etag;
|
|
|
|
}
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:43:42 +01:00
|
|
|
// If not modified
|
|
|
|
if ( status === 304 ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:43:42 +01:00
|
|
|
// Set the statusText accordingly
|
|
|
|
statusText = "notmodified";
|
|
|
|
// Mark as a success
|
2010-12-25 18:54:37 +01:00
|
|
|
isSuccess = 1;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:43:42 +01:00
|
|
|
// If we have data
|
2010-12-25 18:54:37 +01:00
|
|
|
} else {
|
2011-01-13 01:43:42 +01:00
|
|
|
|
|
|
|
// Set the statusText accordingly
|
|
|
|
statusText = "success";
|
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Chain data conversions and determine the final value
|
|
|
|
// (if an exception is thrown in the process, it'll be notified as an error)
|
|
|
|
try {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
var i,
|
2011-01-13 01:18:46 +01:00
|
|
|
// Current dataType
|
2010-12-25 18:54:37 +01:00
|
|
|
current,
|
2011-01-13 01:18:46 +01:00
|
|
|
// Previous dataType
|
2010-12-25 18:54:37 +01:00
|
|
|
prev,
|
2011-01-19 17:51:33 +01:00
|
|
|
// Conversion expression
|
|
|
|
conversion,
|
2011-01-13 01:18:46 +01:00
|
|
|
// Conversion function
|
2010-12-29 18:44:45 +01:00
|
|
|
conv,
|
2011-01-13 01:18:46 +01:00
|
|
|
// Conversion functions (when text is used in-between)
|
2010-12-25 18:54:37 +01:00
|
|
|
conv1,
|
|
|
|
conv2,
|
2011-01-13 01:18:46 +01:00
|
|
|
// Local references to dataTypes & converters
|
2010-12-25 18:54:37 +01:00
|
|
|
dataTypes = s.dataTypes,
|
2010-12-28 02:30:51 +01:00
|
|
|
converters = s.converters,
|
2011-01-13 01:18:46 +01:00
|
|
|
// DataType to responseXXX field mapping
|
2010-12-25 18:54:37 +01:00
|
|
|
responses = {
|
|
|
|
"xml": "XML",
|
|
|
|
"text": "Text"
|
|
|
|
};
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:18:46 +01:00
|
|
|
// For each dataType in the chain
|
2010-12-25 18:54:37 +01:00
|
|
|
for( i = 0 ; i < dataTypes.length ; i++ ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
current = dataTypes[ i ];
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:18:46 +01:00
|
|
|
// If a responseXXX field for this dataType exists
|
|
|
|
// and if it hasn't been set yet
|
2010-12-25 18:54:37 +01:00
|
|
|
if ( responses[ current ] ) {
|
2011-01-13 01:18:46 +01:00
|
|
|
// Set it
|
2010-12-25 18:54:37 +01:00
|
|
|
jXHR[ "response" + responses[ current ] ] = response;
|
2011-01-13 01:18:46 +01:00
|
|
|
// Mark it as set
|
2010-12-25 18:54:37 +01:00
|
|
|
responses[ current ] = 0;
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:18:46 +01:00
|
|
|
// If this is not the first element
|
2010-12-25 18:54:37 +01:00
|
|
|
if ( i ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:18:46 +01:00
|
|
|
// Get the dataType to convert from
|
2010-12-25 23:00:25 +01:00
|
|
|
prev = dataTypes[ i - 1 ];
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:18:46 +01:00
|
|
|
// If no catch-all and dataTypes are actually different
|
2010-12-25 18:54:37 +01:00
|
|
|
if ( prev !== "*" && current !== "*" && prev !== current ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:18:46 +01:00
|
|
|
// Get the converter
|
2011-01-19 17:51:33 +01:00
|
|
|
conversion = prev + " " + current;
|
|
|
|
conv = converters[ conversion ] || converters[ "* " + current ];
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-29 18:44:45 +01:00
|
|
|
conv1 = conv2 = 0;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:18:46 +01:00
|
|
|
// If there is no direct converter and none of the dataTypes is text
|
2010-12-29 18:44:45 +01:00
|
|
|
if ( ! conv && prev !== "text" && current !== "text" ) {
|
2011-01-13 01:18:46 +01:00
|
|
|
// Try with text in-between
|
2010-12-29 18:44:45 +01:00
|
|
|
conv1 = converters[ prev + " text" ] || converters[ "* text" ];
|
|
|
|
conv2 = converters[ "text " + current ];
|
2011-01-13 01:18:46 +01:00
|
|
|
// Revert back to a single converter
|
|
|
|
// if one of the converter is an equivalence
|
2010-12-29 18:44:45 +01:00
|
|
|
if ( conv1 === true ) {
|
|
|
|
conv = conv2;
|
|
|
|
} else if ( conv2 === true ) {
|
|
|
|
conv = conv1;
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-13 01:18:46 +01:00
|
|
|
// If we found no converter, dispatch an error
|
2010-12-29 18:44:45 +01:00
|
|
|
if ( ! ( conv || conv1 && conv2 ) ) {
|
|
|
|
throw conversion;
|
|
|
|
}
|
2011-01-13 01:18:46 +01:00
|
|
|
// If found converter is not an equivalence
|
2010-12-29 18:44:45 +01:00
|
|
|
if ( conv !== true ) {
|
2011-01-13 01:18:46 +01:00
|
|
|
// Convert with 1 or 2 converters accordingly
|
2010-12-29 18:44:45 +01:00
|
|
|
response = conv ? conv( response ) : conv2( conv1( response ) );
|
|
|
|
}
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
2011-01-13 01:18:46 +01:00
|
|
|
// If it is the first element of the chain
|
|
|
|
// and we have a dataFilter
|
2010-12-25 18:54:37 +01:00
|
|
|
} else if ( s.dataFilter ) {
|
2011-01-13 01:18:46 +01:00
|
|
|
// Apply the dataFilter
|
2011-01-13 00:49:58 +01:00
|
|
|
response = s.dataFilter( response , current );
|
2011-01-13 01:18:46 +01:00
|
|
|
// Get dataTypes again in case the filter changed them
|
2010-12-25 18:54:37 +01:00
|
|
|
dataTypes = s.dataTypes;
|
|
|
|
}
|
|
|
|
}
|
2011-01-13 01:18:46 +01:00
|
|
|
// End of loop
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// We have a real success
|
|
|
|
success = response;
|
|
|
|
isSuccess = 1;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:43:42 +01:00
|
|
|
// If an exception was thrown
|
2010-12-25 18:54:37 +01:00
|
|
|
} catch(e) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:43:42 +01:00
|
|
|
// We have a parsererror
|
2010-12-25 18:54:37 +01:00
|
|
|
statusText = "parsererror";
|
|
|
|
error = "" + e;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:43:42 +01:00
|
|
|
// if not success, mark it as an error
|
|
|
|
} else {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 01:43:42 +01:00
|
|
|
error = statusText = statusText || "error";
|
2011-01-09 04:53:29 +01:00
|
|
|
|
|
|
|
// Set responseText if needed
|
|
|
|
if ( response ) {
|
|
|
|
jXHR.responseText = response;
|
|
|
|
}
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Set data for the fake xhr object
|
|
|
|
jXHR.status = status;
|
|
|
|
jXHR.statusText = statusText;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Success/Error
|
|
|
|
if ( isSuccess ) {
|
|
|
|
deferred.fire( callbackContext , [ success , statusText , jXHR ] );
|
|
|
|
} else {
|
|
|
|
deferred.fireReject( callbackContext , [ jXHR , statusText , error ] );
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-13 17:01:25 +01:00
|
|
|
// Status-dependent callbacks
|
2011-01-20 15:39:30 +01:00
|
|
|
oldStatusCode = statusCode;
|
|
|
|
statusCode = undefined;
|
2011-01-19 17:51:33 +01:00
|
|
|
jXHR.statusCode( oldStatusCode );
|
2011-01-13 17:01:25 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
if ( s.global ) {
|
|
|
|
globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ) ,
|
|
|
|
[ jXHR , s , isSuccess ? success : error ] );
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Complete
|
|
|
|
completeDeferred.fire( callbackContext, [ jXHR , statusText ] );
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
if ( s.global ) {
|
|
|
|
globalEventContext.trigger( "ajaxComplete" , [ jXHR , s] );
|
|
|
|
// Handle the global AJAX counter
|
|
|
|
if ( ! --jQuery.active ) {
|
|
|
|
jQuery.event.trigger( "ajaxStop" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-28 04:13:44 +01:00
|
|
|
// Attach deferreds
|
|
|
|
deferred.promise( jXHR );
|
2011-01-06 01:26:06 +01:00
|
|
|
jXHR.success = jXHR.done;
|
2010-12-28 04:13:44 +01:00
|
|
|
jXHR.error = jXHR.fail;
|
2011-01-06 01:26:06 +01:00
|
|
|
jXHR.complete = completeDeferred.done;
|
2010-12-25 18:54:37 +01:00
|
|
|
|
2011-01-13 17:01:25 +01:00
|
|
|
// Status-dependent callbacks
|
|
|
|
jXHR.statusCode = function( map ) {
|
|
|
|
if ( map ) {
|
2011-01-19 17:51:33 +01:00
|
|
|
var tmp;
|
|
|
|
if ( statusCode ) {
|
2011-01-13 17:01:25 +01:00
|
|
|
for( tmp in map ) {
|
|
|
|
statusCode[ tmp ] = [ statusCode[ tmp ] , map[ tmp ] ];
|
|
|
|
}
|
2011-01-19 17:51:33 +01:00
|
|
|
} else {
|
|
|
|
tmp = map[ jXHR.status ];
|
|
|
|
jXHR.done( tmp ).fail( tmp );
|
2011-01-13 17:01:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Remove hash character (#7531: and string promotion)
|
2011-01-20 16:22:36 +01:00
|
|
|
// We also use the url parameter if available
|
|
|
|
s.url = ( "" + ( url || s.url ) ).replace( rhash , "" );
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Extract dataTypes list
|
|
|
|
s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( /\s+/ );
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Determine if a cross-domain request is in order
|
2011-01-09 16:50:13 +01:00
|
|
|
if ( ! s.crossDomain ) {
|
2011-01-13 00:41:10 +01:00
|
|
|
parts = rurl.exec( s.url.toLowerCase() );
|
2011-01-09 16:50:13 +01:00
|
|
|
s.crossDomain = !!(
|
|
|
|
parts &&
|
2011-01-19 18:35:40 +01:00
|
|
|
( parts[ 1 ] && parts[ 1 ] != protocol ||
|
2011-01-09 16:50:13 +01:00
|
|
|
parts[ 2 ] != loc.hostname ||
|
2011-01-19 18:36:42 +01:00
|
|
|
( parts[ 3 ] || ( ( parts[ 1 ] || protocol ) === "http:" ? 80 : 443 ) ) !=
|
|
|
|
( loc.port || ( protocol === "http:" ? 80 : 443 ) ) )
|
2011-01-09 16:50:13 +01:00
|
|
|
);
|
|
|
|
}
|
2010-12-25 18:54:37 +01:00
|
|
|
|
|
|
|
// Convert data if not already a string
|
2011-01-16 05:24:14 +01:00
|
|
|
if ( s.data && s.processData && typeof s.data !== "string" ) {
|
2010-12-25 18:54:37 +01:00
|
|
|
s.data = jQuery.param( s.data , s.traditional );
|
|
|
|
}
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// Apply prefilters
|
|
|
|
jQuery.ajaxPrefilter( s , options );
|
2011-01-09 16:32:51 +01:00
|
|
|
|
2011-01-16 05:24:14 +01:00
|
|
|
// Uppercase the type
|
|
|
|
s.type = s.type.toUpperCase();
|
|
|
|
|
|
|
|
// Determine if request has content
|
|
|
|
s.hasContent = ! rnoContent.test( s.type );
|
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Watch for a new set of requests
|
|
|
|
if ( s.global && jQuery.active++ === 0 ) {
|
|
|
|
jQuery.event.trigger( "ajaxStart" );
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// More options handling for requests with no content
|
|
|
|
if ( ! s.hasContent ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// If data is available, append data to url
|
|
|
|
if ( s.data ) {
|
|
|
|
s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data;
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// Add anti-cache in url if needed
|
|
|
|
if ( s.cache === false ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
var ts = jQuery.now(),
|
|
|
|
// try replacing _= if it is there
|
|
|
|
ret = s.url.replace( rts , "$1_=" + ts );
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// if nothing was replaced, add timestamp to the end
|
|
|
|
s.url = ret + ( (ret == s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "");
|
|
|
|
}
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// Set the correct header, if data is being sent
|
|
|
|
if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
|
|
|
|
requestHeaders[ "content-type" ] = s.contentType;
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
|
|
|
|
if ( s.ifModified ) {
|
|
|
|
if ( jQuery_lastModified[ s.url ] ) {
|
|
|
|
requestHeaders[ "if-modified-since" ] = jQuery_lastModified[ s.url ];
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
2011-01-16 02:57:39 +01:00
|
|
|
if ( jQuery_etag[ s.url ] ) {
|
|
|
|
requestHeaders[ "if-none-match" ] = jQuery_etag[ s.url ];
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
2011-01-16 02:57:39 +01:00
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// Set the Accepts header for the server, depending on the dataType
|
|
|
|
requestHeaders.accept = s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
|
|
|
|
s.accepts[ s.dataTypes[ 0 ] ] + ( s.dataTypes[ 0 ] !== "*" ? ", */*; q=0.01" : "" ) :
|
|
|
|
s.accepts[ "*" ];
|
|
|
|
|
|
|
|
// Check for headers option
|
|
|
|
for ( i in s.headers ) {
|
|
|
|
requestHeaders[ i.toLowerCase() ] = s.headers[ i ];
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// Allow custom headers/mimetypes and early abort
|
|
|
|
if ( s.beforeSend && ( s.beforeSend.call( callbackContext , jXHR , s ) === false || state === 2 ) ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// Abort if not done already
|
|
|
|
done( 0 , "abort" );
|
|
|
|
|
|
|
|
// Return false
|
|
|
|
jXHR = false;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Install callbacks on deferreds
|
|
|
|
for ( i in { success:1, error:1, complete:1 } ) {
|
|
|
|
jXHR[ i ]( s[ i ] );
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// Get transport
|
2011-01-19 18:16:29 +01:00
|
|
|
transport = jQuery.ajaxTransport( s , options );
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-16 02:57:39 +01:00
|
|
|
// If no transport, we auto-abort
|
|
|
|
if ( ! transport ) {
|
|
|
|
|
|
|
|
done( 0 , "notransport" );
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
} else {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Set state as sending
|
2011-01-16 02:57:39 +01:00
|
|
|
state = jXHR.readyState = 1;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Send global event
|
|
|
|
if ( s.global ) {
|
|
|
|
globalEventContext.trigger( "ajaxSend" , [ jXHR , s ] );
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Timeout
|
|
|
|
if ( s.async && s.timeout > 0 ) {
|
|
|
|
timeoutTimer = setTimeout(function(){
|
|
|
|
jXHR.abort( "timeout" );
|
|
|
|
}, s.timeout);
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Try to send
|
|
|
|
try {
|
|
|
|
transport.send(requestHeaders, done);
|
|
|
|
} catch (e) {
|
|
|
|
// Propagate exception as error if not done
|
|
|
|
if ( status === 1 ) {
|
|
|
|
|
|
|
|
done(0, "error", "" + e);
|
|
|
|
jXHR = false;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
// Simply rethrow otherwise
|
|
|
|
} else {
|
|
|
|
jQuery.error(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2010-12-25 18:54:37 +01:00
|
|
|
return jXHR;
|
2010-03-02 03:24:49 +01:00
|
|
|
},
|
2007-09-04 01:45:14 +02:00
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
// Serialize an array of form elements or a set of
|
|
|
|
// key/values into a query string
|
|
|
|
param: function( a, traditional ) {
|
2010-11-09 17:09:07 +01:00
|
|
|
var s = [],
|
|
|
|
add = function( key, value ) {
|
|
|
|
// If value is a function, invoke it and return its value
|
|
|
|
value = jQuery.isFunction(value) ? value() : value;
|
|
|
|
s[ s.length ] = encodeURIComponent(key) + "=" + encodeURIComponent(value);
|
|
|
|
};
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
// Set traditional to true for jQuery <= 1.3.2 behavior.
|
|
|
|
if ( traditional === undefined ) {
|
|
|
|
traditional = jQuery.ajaxSettings.traditional;
|
|
|
|
}
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
// If an array was passed in, assume that it is an array of form elements.
|
|
|
|
if ( jQuery.isArray(a) || a.jquery ) {
|
|
|
|
// Serialize the form elements
|
|
|
|
jQuery.each( a, function() {
|
|
|
|
add( this.name, this.value );
|
|
|
|
});
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
} else {
|
|
|
|
// If traditional, encode the "old" way (the way 1.3.2 or older
|
|
|
|
// did it), otherwise encode params recursively.
|
|
|
|
for ( var prefix in a ) {
|
|
|
|
buildParams( prefix, a[prefix], traditional, add );
|
2009-07-19 21:37:11 +02:00
|
|
|
}
|
2007-09-04 01:45:14 +02:00
|
|
|
}
|
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
// Return the resulting serialization
|
|
|
|
return s.join("&").replace(r20, "+");
|
|
|
|
}
|
|
|
|
});
|
2007-09-04 01:45:14 +02:00
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
function buildParams( prefix, obj, traditional, add ) {
|
2010-09-24 22:57:25 +02:00
|
|
|
if ( jQuery.isArray(obj) && obj.length ) {
|
2010-03-02 03:24:49 +01:00
|
|
|
// Serialize array item.
|
|
|
|
jQuery.each( obj, function( i, v ) {
|
2010-09-22 15:16:28 +02:00
|
|
|
if ( traditional || rbracket.test( prefix ) ) {
|
2010-03-02 03:24:49 +01:00
|
|
|
// Treat each array item as a scalar.
|
|
|
|
add( prefix, v );
|
2007-09-04 01:45:14 +02:00
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
} else {
|
|
|
|
// If array item is non-scalar (array or object), encode its
|
|
|
|
// numeric index to resolve deserialization ambiguity issues.
|
|
|
|
// Note that rack (as of 1.0.0) can't currently deserialize
|
|
|
|
// nested arrays properly, and attempting to do so may cause
|
|
|
|
// a server error. Possible fixes are to modify rack's
|
|
|
|
// deserialization algorithm or to provide an option or flag
|
|
|
|
// to force array serialization to be shallow.
|
|
|
|
buildParams( prefix + "[" + ( typeof v === "object" || jQuery.isArray(v) ? i : "" ) + "]", v, traditional, add );
|
2009-07-19 21:37:11 +02:00
|
|
|
}
|
2010-03-02 03:24:49 +01:00
|
|
|
});
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
} else if ( !traditional && obj != null && typeof obj === "object" ) {
|
2010-12-23 01:54:22 +01:00
|
|
|
// If we see an array here, it is empty and should be treated as an empty
|
|
|
|
// object
|
|
|
|
if ( jQuery.isArray( obj ) || jQuery.isEmptyObject( obj ) ) {
|
2010-09-24 22:57:25 +02:00
|
|
|
add( prefix, "" );
|
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
// Serialize object item.
|
2010-09-24 22:57:25 +02:00
|
|
|
} else {
|
|
|
|
jQuery.each( obj, function( k, v ) {
|
|
|
|
buildParams( prefix + "[" + k + "]", v, traditional, add );
|
|
|
|
});
|
|
|
|
}
|
2010-12-30 07:34:48 +01:00
|
|
|
|
2010-03-02 03:24:49 +01:00
|
|
|
} else {
|
|
|
|
// Serialize scalar item.
|
|
|
|
add( prefix, obj );
|
|
|
|
}
|
|
|
|
}
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2010-10-12 00:29:52 +02:00
|
|
|
// This is still on the jQuery object... for now
|
|
|
|
// Want to move this to jQuery.ajax some day
|
|
|
|
jQuery.extend({
|
2010-03-02 03:24:49 +01:00
|
|
|
|
|
|
|
// Counter for holding the number of active queries
|
|
|
|
active: 0,
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2010-03-02 16:44:48 +01:00
|
|
|
// Last-Modified header cache for next request
|
|
|
|
lastModified: {},
|
2010-12-09 19:34:28 +01:00
|
|
|
etag: {}
|
2010-03-02 03:24:49 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
});
|
2010-03-02 16:44:48 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
// Base function for both ajaxPrefilter and ajaxTransport
|
|
|
|
function ajaxPrefilterOrTransport( arg0 , arg1 , arg2 ) {
|
2010-12-25 18:54:37 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
var type = jQuery.type( arg1 ),
|
|
|
|
structure = jQuery.ajaxSettings[ arg0 ],
|
2010-12-25 18:54:37 +01:00
|
|
|
i,
|
2011-01-20 04:12:15 +01:00
|
|
|
length;
|
|
|
|
|
|
|
|
// We have an options map so we have to inspect the structure
|
|
|
|
if ( type === "object" ) {
|
|
|
|
|
|
|
|
var options = arg1,
|
|
|
|
originalOptions = arg2,
|
|
|
|
// When dealing with prefilters, we execute only
|
|
|
|
// (no selection so we never stop when a function
|
|
|
|
// returns a non-falsy, non-string value)
|
|
|
|
executeOnly = ( arg0 === "prefilters" ),
|
|
|
|
inspect = function( dataType, tested ) {
|
|
|
|
|
|
|
|
if ( ! tested[ dataType ] ) {
|
|
|
|
|
|
|
|
tested[ dataType ] = true;
|
|
|
|
|
|
|
|
var list = structure[ dataType ],
|
|
|
|
selected;
|
|
|
|
|
|
|
|
for( i = 0, length = list ? list.length : 0 ; ( executeOnly || ! selected ) && i < length ; i++ ) {
|
|
|
|
selected = list[ i ]( options , originalOptions );
|
|
|
|
// If we got redirected to a different dataType,
|
|
|
|
// we add it and switch to the corresponding list
|
|
|
|
if ( typeof( selected ) === "string" && selected !== dataType ) {
|
|
|
|
options.dataTypes.unshift( selected );
|
|
|
|
selected = inspect( selected , tested );
|
|
|
|
// We always break in order not to continue
|
|
|
|
// to iterate in previous list
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If we're only executing or nothing was selected
|
|
|
|
// we try the catchall dataType
|
|
|
|
if ( executeOnly || ! selected ) {
|
|
|
|
selected = inspect( "*" , tested );
|
|
|
|
}
|
|
|
|
// This will be ignored by ajaxPrefilter
|
|
|
|
// so it's safe to return no matter what
|
|
|
|
return selected;
|
|
|
|
}
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
};
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
// Start inspection with current transport dataType
|
|
|
|
return inspect( options.dataTypes[ 0 ] , {} );
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
} else {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
// We're requested to add to the structure
|
|
|
|
// Signature is ( dataTypeExpression , function )
|
|
|
|
// with dataTypeExpression being optional and
|
|
|
|
// defaulting to catchAll (*)
|
|
|
|
type = type === "function";
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
if ( type ) {
|
|
|
|
arg2 = arg1;
|
|
|
|
arg1 = undefined;
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
2011-01-20 04:12:15 +01:00
|
|
|
arg1 = arg1 || "*";
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
// We control that the second argument is really a function
|
|
|
|
if ( type || jQuery.isFunction( arg2 ) ) {
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
var dataTypes = arg1.split( /\s+/ ),
|
|
|
|
functor = arg2,
|
|
|
|
dataType,
|
|
|
|
list,
|
|
|
|
placeBefore;
|
2011-01-05 22:41:23 +01:00
|
|
|
|
2011-01-20 04:12:15 +01:00
|
|
|
// For each dataType in the dataTypeExpression
|
|
|
|
for( i = 0 , length = dataTypes.length ; i < length ; i++ ) {
|
2010-12-25 18:54:37 +01:00
|
|
|
dataType = dataTypes[ i ];
|
2011-01-20 04:12:15 +01:00
|
|
|
// We control if we're asked to add before
|
|
|
|
// any existing element
|
|
|
|
placeBefore = /^\+/.test( dataType );
|
|
|
|
if ( placeBefore ) {
|
|
|
|
dataType = dataType.substr( 1 );
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
2011-01-20 04:12:15 +01:00
|
|
|
list = structure[ dataType ] = structure[ dataType ] || [];
|
|
|
|
// then we add to the structure accordingly
|
|
|
|
list[ placeBefore ? "unshift" : "push" ]( functor );
|
2010-12-25 18:54:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-10 03:16:50 +01:00
|
|
|
})( jQuery );
|