Reformats logic for early abort in beforeSend to limit block imbrication.
[jquery.git] / src / ajax.js
1 (function( jQuery ) {
2
3 var r20 = /%20/g,
4         rbracket = /\[\]$/,
5         rCRLF = /\r?\n/g,
6         rhash = /#.*$/,
7         rheaders = /^(.*?):\s*(.*?)\r?$/mg, // IE leaves an \r character at EOL
8         rinput = /^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,
9         // #7653, #8125, #8152: local protocol detection
10         rlocalProtocol = /(?:^file|^widget|\-extension):$/,
11         rnoContent = /^(?:GET|HEAD)$/,
12         rprotocol = /^\/\//,
13         rquery = /\?/,
14         rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
15         rselectTextarea = /^(?:select|textarea)/i,
16         rspacesAjax = /\s+/,
17         rts = /([?&])_=[^&]*/,
18         rurl = /^([\w\+\.\-]+:)\/\/([^\/?#:]*)(?::(\d+))?/,
19
20         // Keep a copy of the old load method
21         _load = jQuery.fn.load,
22
23         /* Prefilters
24          * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
25          * 2) These are called:
26          *    - BEFORE asking for a transport
27          *    - AFTER param serialization (s.data is a string if s.processData is true)
28          * 3) key is the dataType
29          * 4) the catchall symbol "*" can be used
30          * 5) execution will start with transport dataType and THEN continue down to "*" if needed
31          */
32         prefilters = {},
33
34         /* Transports bindings
35          * 1) key is the dataType
36          * 2) the catchall symbol "*" can be used
37          * 3) selection will start with transport dataType and THEN go to "*" if needed
38          */
39         transports = {},
40
41         // Document location
42         ajaxLocation,
43
44         // Document location segments
45         ajaxLocParts;
46
47 // #8138, IE may throw an exception when accessing
48 // a field from document.location if document.domain has been set
49 try {
50         ajaxLocation = document.location.href;
51 } catch( e ) {
52         // Use the href attribute of an A element
53         // since IE will modify it given document.location
54         ajaxLocation = document.createElement( "a" );
55         ajaxLocation.href = "";
56         ajaxLocation = ajaxLocation.href;
57 }
58
59 // Segment location into parts
60 ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() );
61
62 // Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
63 function addToPrefiltersOrTransports( structure ) {
64
65         // dataTypeExpression is optional and defaults to "*"
66         return function( dataTypeExpression, func ) {
67
68                 if ( typeof dataTypeExpression !== "string" ) {
69                         func = dataTypeExpression;
70                         dataTypeExpression = "*";
71                 }
72
73                 if ( jQuery.isFunction( func ) ) {
74                         var dataTypes = dataTypeExpression.toLowerCase().split( rspacesAjax ),
75                                 i = 0,
76                                 length = dataTypes.length,
77                                 dataType,
78                                 list,
79                                 placeBefore;
80
81                         // For each dataType in the dataTypeExpression
82                         for(; i < length; i++ ) {
83                                 dataType = dataTypes[ i ];
84                                 // We control if we're asked to add before
85                                 // any existing element
86                                 placeBefore = /^\+/.test( dataType );
87                                 if ( placeBefore ) {
88                                         dataType = dataType.substr( 1 ) || "*";
89                                 }
90                                 list = structure[ dataType ] = structure[ dataType ] || [];
91                                 // then we add to the structure accordingly
92                                 list[ placeBefore ? "unshift" : "push" ]( func );
93                         }
94                 }
95         };
96 }
97
98 //Base inspection function for prefilters and transports
99 function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR,
100                 dataType /* internal */, inspected /* internal */ ) {
101
102         dataType = dataType || options.dataTypes[ 0 ];
103         inspected = inspected || {};
104
105         inspected[ dataType ] = true;
106
107         var list = structure[ dataType ],
108                 i = 0,
109                 length = list ? list.length : 0,
110                 executeOnly = ( structure === prefilters ),
111                 selection;
112
113         for(; i < length && ( executeOnly || !selection ); i++ ) {
114                 selection = list[ i ]( options, originalOptions, jqXHR );
115                 // If we got redirected to another dataType
116                 // we try there if executing only and not done already
117                 if ( typeof selection === "string" ) {
118                         if ( !executeOnly || inspected[ selection ] ) {
119                                 selection = undefined;
120                         } else {
121                                 options.dataTypes.unshift( selection );
122                                 selection = inspectPrefiltersOrTransports(
123                                                 structure, options, originalOptions, jqXHR, selection, inspected );
124                         }
125                 }
126         }
127         // If we're only executing or nothing was selected
128         // we try the catchall dataType if not done already
129         if ( ( executeOnly || !selection ) && !inspected[ "*" ] ) {
130                 selection = inspectPrefiltersOrTransports(
131                                 structure, options, originalOptions, jqXHR, "*", inspected );
132         }
133         // unnecessary when only executing (prefilters)
134         // but it'll be ignored by the caller in that case
135         return selection;
136 }
137
138 jQuery.fn.extend({
139         load: function( url, params, callback ) {
140                 if ( typeof url !== "string" && _load ) {
141                         return _load.apply( this, arguments );
142
143                 // Don't do a request if no elements are being requested
144                 } else if ( !this.length ) {
145                         return this;
146                 }
147
148                 var off = url.indexOf( " " );
149                 if ( off >= 0 ) {
150                         var selector = url.slice( off, url.length );
151                         url = url.slice( 0, off );
152                 }
153
154                 // Default to a GET request
155                 var type = "GET";
156
157                 // If the second parameter was provided
158                 if ( params ) {
159                         // If it's a function
160                         if ( jQuery.isFunction( params ) ) {
161                                 // We assume that it's the callback
162                                 callback = params;
163                                 params = null;
164
165                         // Otherwise, build a param string
166                         } else if ( typeof params === "object" ) {
167                                 params = jQuery.param( params, jQuery.ajaxSettings.traditional );
168                                 type = "POST";
169                         }
170                 }
171
172                 var self = this;
173
174                 // Request the remote document
175                 jQuery.ajax({
176                         url: url,
177                         type: type,
178                         dataType: "html",
179                         data: params,
180                         // Complete callback (responseText is used internally)
181                         complete: function( jqXHR, status, responseText ) {
182                                 // Store the response as specified by the jqXHR object
183                                 responseText = jqXHR.responseText;
184                                 // If successful, inject the HTML into all the matched elements
185                                 if ( jqXHR.isResolved() ) {
186                                         // #4825: Get the actual response in case
187                                         // a dataFilter is present in ajaxSettings
188                                         jqXHR.done(function( r ) {
189                                                 responseText = r;
190                                         });
191                                         // See if a selector was specified
192                                         self.html( selector ?
193                                                 // Create a dummy div to hold the results
194                                                 jQuery("<div>")
195                                                         // inject the contents of the document in, removing the scripts
196                                                         // to avoid any 'Permission Denied' errors in IE
197                                                         .append(responseText.replace(rscript, ""))
198
199                                                         // Locate the specified elements
200                                                         .find(selector) :
201
202                                                 // If not, just inject the full result
203                                                 responseText );
204                                 }
205
206                                 if ( callback ) {
207                                         self.each( callback, [ responseText, status, jqXHR ] );
208                                 }
209                         }
210                 });
211
212                 return this;
213         },
214
215         serialize: function() {
216                 return jQuery.param( this.serializeArray() );
217         },
218
219         serializeArray: function() {
220                 return this.map(function(){
221                         return this.elements ? jQuery.makeArray( this.elements ) : this;
222                 })
223                 .filter(function(){
224                         return this.name && !this.disabled &&
225                                 ( this.checked || rselectTextarea.test( this.nodeName ) ||
226                                         rinput.test( this.type ) );
227                 })
228                 .map(function( i, elem ){
229                         var val = jQuery( this ).val();
230
231                         return val == null ?
232                                 null :
233                                 jQuery.isArray( val ) ?
234                                         jQuery.map( val, function( val, i ){
235                                                 return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
236                                         }) :
237                                         { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
238                 }).get();
239         }
240 });
241
242 // Attach a bunch of functions for handling common AJAX events
243 jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split( " " ), function( i, o ){
244         jQuery.fn[ o ] = function( f ){
245                 return this.bind( o, f );
246         };
247 } );
248
249 jQuery.each( [ "get", "post" ], function( i, method ) {
250         jQuery[ method ] = function( url, data, callback, type ) {
251                 // shift arguments if data argument was omitted
252                 if ( jQuery.isFunction( data ) ) {
253                         type = type || callback;
254                         callback = data;
255                         data = null;
256                 }
257
258                 return jQuery.ajax({
259                         type: method,
260                         url: url,
261                         data: data,
262                         success: callback,
263                         dataType: type
264                 });
265         };
266 } );
267
268 jQuery.extend({
269
270         getScript: function( url, callback ) {
271                 return jQuery.get( url, null, callback, "script" );
272         },
273
274         getJSON: function( url, data, callback ) {
275                 return jQuery.get( url, data, callback, "json" );
276         },
277
278         ajaxSetup: function( settings ) {
279                 jQuery.extend( true, jQuery.ajaxSettings, settings );
280                 if ( settings.context ) {
281                         jQuery.ajaxSettings.context = settings.context;
282                 }
283         },
284
285         ajaxSettings: {
286                 url: ajaxLocation,
287                 isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
288                 global: true,
289                 type: "GET",
290                 contentType: "application/x-www-form-urlencoded",
291                 processData: true,
292                 async: true,
293                 /*
294                 timeout: 0,
295                 data: null,
296                 dataType: null,
297                 username: null,
298                 password: null,
299                 cache: null,
300                 traditional: false,
301                 headers: {},
302                 crossDomain: null,
303                 */
304
305                 accepts: {
306                         xml: "application/xml, text/xml",
307                         html: "text/html",
308                         text: "text/plain",
309                         json: "application/json, text/javascript",
310                         "*": "*/*"
311                 },
312
313                 contents: {
314                         xml: /xml/,
315                         html: /html/,
316                         json: /json/
317                 },
318
319                 responseFields: {
320                         xml: "responseXML",
321                         text: "responseText"
322                 },
323
324                 // List of data converters
325                 // 1) key format is "source_type destination_type" (a single space in-between)
326                 // 2) the catchall symbol "*" can be used for source_type
327                 converters: {
328
329                         // Convert anything to text
330                         "* text": window.String,
331
332                         // Text to html (true = no transformation)
333                         "text html": true,
334
335                         // Evaluate text as a json expression
336                         "text json": jQuery.parseJSON,
337
338                         // Parse text as xml
339                         "text xml": jQuery.parseXML
340                 }
341         },
342
343         ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
344         ajaxTransport: addToPrefiltersOrTransports( transports ),
345
346         // Main method
347         ajax: function( url, options ) {
348
349                 // If url is an object, simulate pre-1.5 signature
350                 if ( typeof url === "object" ) {
351                         options = url;
352                         url = undefined;
353                 }
354
355                 // Force options to be an object
356                 options = options || {};
357
358                 var // Create the final options object
359                         s = jQuery.extend( true, {}, jQuery.ajaxSettings, options ),
360                         // Callbacks context
361                         // We force the original context if it exists
362                         // or take it from jQuery.ajaxSettings otherwise
363                         // (plain objects used as context get extended)
364                         callbackContext =
365                                 ( s.context = ( "context" in options ? options : jQuery.ajaxSettings ).context ) || s,
366                         // Context for global events
367                         // It's the callbackContext if one was provided in the options
368                         // and if it's a DOM node
369                         globalEventContext = callbackContext !== s && callbackContext.nodeType ?
370                                 jQuery( callbackContext ) : jQuery.event,
371                         // Deferreds
372                         deferred = jQuery.Deferred(),
373                         completeDeferred = jQuery._Deferred(),
374                         // Status-dependent callbacks
375                         statusCode = s.statusCode || {},
376                         // ifModified key
377                         ifModifiedKey,
378                         // Headers (they are sent all at once)
379                         requestHeaders = {},
380                         // Response headers
381                         responseHeadersString,
382                         responseHeaders,
383                         // transport
384                         transport,
385                         // timeout handle
386                         timeoutTimer,
387                         // Cross-domain detection vars
388                         parts,
389                         // The jqXHR state
390                         state = 0,
391                         // To know if global events are to be dispatched
392                         fireGlobals,
393                         // Loop variable
394                         i,
395                         // Fake xhr
396                         jqXHR = {
397
398                                 readyState: 0,
399
400                                 // Caches the header
401                                 setRequestHeader: function( name, value ) {
402                                         if ( state === 0 ) {
403                                                 requestHeaders[ name.toLowerCase() ] = value;
404                                         }
405                                         return this;
406                                 },
407
408                                 // Raw string
409                                 getAllResponseHeaders: function() {
410                                         return state === 2 ? responseHeadersString : null;
411                                 },
412
413                                 // Builds headers hashtable if needed
414                                 getResponseHeader: function( key ) {
415                                         var match;
416                                         if ( state === 2 ) {
417                                                 if ( !responseHeaders ) {
418                                                         responseHeaders = {};
419                                                         while( ( match = rheaders.exec( responseHeadersString ) ) ) {
420                                                                 responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
421                                                         }
422                                                 }
423                                                 match = responseHeaders[ key.toLowerCase() ];
424                                         }
425                                         return match || null;
426                                 },
427
428                                 // Cancel the request
429                                 abort: function( statusText ) {
430                                         statusText = statusText || "abort";
431                                         if ( transport ) {
432                                                 transport.abort( statusText );
433                                         }
434                                         done( 0, statusText );
435                                         return this;
436                                 }
437                         };
438
439                 // Callback for when everything is done
440                 // It is defined here because jslint complains if it is declared
441                 // at the end of the function (which would be more logical and readable)
442                 function done( status, statusText, responses, headers) {
443
444                         // Called once
445                         if ( state === 2 ) {
446                                 return;
447                         }
448
449                         // State is "done" now
450                         state = 2;
451
452                         // Clear timeout if it exists
453                         if ( timeoutTimer ) {
454                                 clearTimeout( timeoutTimer );
455                         }
456
457                         // Dereference transport for early garbage collection
458                         // (no matter how long the jqXHR object will be used)
459                         transport = undefined;
460
461                         // Cache response headers
462                         responseHeadersString = headers || "";
463
464                         // Set readyState
465                         jqXHR.readyState = status ? 4 : 0;
466
467                         var isSuccess,
468                                 success,
469                                 error,
470                                 response = responses ? ajaxHandleResponses( s, jqXHR, responses ) : undefined,
471                                 lastModified,
472                                 etag;
473
474                         // If successful, handle type chaining
475                         if ( status >= 200 && status < 300 || status === 304 ) {
476
477                                 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
478                                 if ( s.ifModified ) {
479
480                                         if ( ( lastModified = jqXHR.getResponseHeader( "Last-Modified" ) ) ) {
481                                                 jQuery.lastModified[ ifModifiedKey ] = lastModified;
482                                         }
483                                         if ( ( etag = jqXHR.getResponseHeader( "Etag" ) ) ) {
484                                                 jQuery.etag[ ifModifiedKey ] = etag;
485                                         }
486                                 }
487
488                                 // If not modified
489                                 if ( status === 304 ) {
490
491                                         statusText = "notmodified";
492                                         isSuccess = true;
493
494                                 // If we have data
495                                 } else {
496
497                                         try {
498                                                 success = ajaxConvert( s, response );
499                                                 statusText = "success";
500                                                 isSuccess = true;
501                                         } catch(e) {
502                                                 // We have a parsererror
503                                                 statusText = "parsererror";
504                                                 error = e;
505                                         }
506                                 }
507                         } else {
508                                 // We extract error from statusText
509                                 // then normalize statusText and status for non-aborts
510                                 error = statusText;
511                                 if( status ) {
512                                         statusText = "error";
513                                         if ( status < 0 ) {
514                                                 status = 0;
515                                         }
516                                 }
517                         }
518
519                         // Set data for the fake xhr object
520                         jqXHR.status = status;
521                         jqXHR.statusText = statusText;
522
523                         // Success/Error
524                         if ( isSuccess ) {
525                                 deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
526                         } else {
527                                 deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
528                         }
529
530                         // Status-dependent callbacks
531                         jqXHR.statusCode( statusCode );
532                         statusCode = undefined;
533
534                         if ( fireGlobals ) {
535                                 globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ),
536                                                 [ jqXHR, s, isSuccess ? success : error ] );
537                         }
538
539                         // Complete
540                         completeDeferred.resolveWith( callbackContext, [ jqXHR, statusText ] );
541
542                         if ( fireGlobals ) {
543                                 globalEventContext.trigger( "ajaxComplete", [ jqXHR, s] );
544                                 // Handle the global AJAX counter
545                                 if ( !( --jQuery.active ) ) {
546                                         jQuery.event.trigger( "ajaxStop" );
547                                 }
548                         }
549                 }
550
551                 // Attach deferreds
552                 deferred.promise( jqXHR );
553                 jqXHR.success = jqXHR.done;
554                 jqXHR.error = jqXHR.fail;
555                 jqXHR.complete = completeDeferred.done;
556
557                 // Status-dependent callbacks
558                 jqXHR.statusCode = function( map ) {
559                         if ( map ) {
560                                 var tmp;
561                                 if ( state < 2 ) {
562                                         for( tmp in map ) {
563                                                 statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ];
564                                         }
565                                 } else {
566                                         tmp = map[ jqXHR.status ];
567                                         jqXHR.then( tmp, tmp );
568                                 }
569                         }
570                         return this;
571                 };
572
573                 // Remove hash character (#7531: and string promotion)
574                 // Add protocol if not provided (#5866: IE7 issue with protocol-less urls)
575                 // We also use the url parameter if available
576                 s.url = ( "" + ( url || s.url ) ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
577
578                 // Extract dataTypes list
579                 s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( rspacesAjax );
580
581                 // Determine if a cross-domain request is in order
582                 if ( !s.crossDomain ) {
583                         parts = rurl.exec( s.url.toLowerCase() );
584                         s.crossDomain = !!( parts &&
585                                 ( parts[ 1 ] != ajaxLocParts[ 1 ] || parts[ 2 ] != ajaxLocParts[ 2 ] ||
586                                         ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) !=
587                                                 ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) )
588                         );
589                 }
590
591                 // Convert data if not already a string
592                 if ( s.data && s.processData && typeof s.data !== "string" ) {
593                         s.data = jQuery.param( s.data, s.traditional );
594                 }
595
596                 // Apply prefilters
597                 inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
598
599                 // If request was aborted inside a prefiler, stop there
600                 if ( state === 2 ) {
601                         return false;
602                 }
603
604                 // We can fire global events as of now if asked to
605                 fireGlobals = s.global;
606
607                 // Uppercase the type
608                 s.type = s.type.toUpperCase();
609
610                 // Determine if request has content
611                 s.hasContent = !rnoContent.test( s.type );
612
613                 // Watch for a new set of requests
614                 if ( fireGlobals && jQuery.active++ === 0 ) {
615                         jQuery.event.trigger( "ajaxStart" );
616                 }
617
618                 // More options handling for requests with no content
619                 if ( !s.hasContent ) {
620
621                         // If data is available, append data to url
622                         if ( s.data ) {
623                                 s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data;
624                         }
625
626                         // Get ifModifiedKey before adding the anti-cache parameter
627                         ifModifiedKey = s.url;
628
629                         // Add anti-cache in url if needed
630                         if ( s.cache === false ) {
631
632                                 var ts = jQuery.now(),
633                                         // try replacing _= if it is there
634                                         ret = s.url.replace( rts, "$1_=" + ts );
635
636                                 // if nothing was replaced, add timestamp to the end
637                                 s.url = ret + ( (ret === s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "" );
638                         }
639                 }
640
641                 // Set the correct header, if data is being sent
642                 if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
643                         requestHeaders[ "content-type" ] = s.contentType;
644                 }
645
646                 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
647                 if ( s.ifModified ) {
648                         ifModifiedKey = ifModifiedKey || s.url;
649                         if ( jQuery.lastModified[ ifModifiedKey ] ) {
650                                 requestHeaders[ "if-modified-since" ] = jQuery.lastModified[ ifModifiedKey ];
651                         }
652                         if ( jQuery.etag[ ifModifiedKey ] ) {
653                                 requestHeaders[ "if-none-match" ] = jQuery.etag[ ifModifiedKey ];
654                         }
655                 }
656
657                 // Set the Accepts header for the server, depending on the dataType
658                 requestHeaders.accept = s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
659                         s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", */*; q=0.01" : "" ) :
660                         s.accepts[ "*" ];
661
662                 // Check for headers option
663                 for ( i in s.headers ) {
664                         requestHeaders[ i.toLowerCase() ] = s.headers[ i ];
665                 }
666
667                 // Allow custom headers/mimetypes and early abort
668                 if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
669                                 // Abort if not done already
670                                 jqXHR.abort();
671                                 return false;
672
673                 }
674
675                 // Install callbacks on deferreds
676                 for ( i in { success: 1, error: 1, complete: 1 } ) {
677                         jqXHR[ i ]( s[ i ] );
678                 }
679
680                 // Get transport
681                 transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
682
683                 // If no transport, we auto-abort
684                 if ( !transport ) {
685                         done( -1, "No Transport" );
686                 } else {
687                         // Set state as sending
688                         state = jqXHR.readyState = 1;
689                         // Send global event
690                         if ( fireGlobals ) {
691                                 globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
692                         }
693                         // Timeout
694                         if ( s.async && s.timeout > 0 ) {
695                                 timeoutTimer = setTimeout( function(){
696                                         jqXHR.abort( "timeout" );
697                                 }, s.timeout );
698                         }
699
700                         try {
701                                 transport.send( requestHeaders, done );
702                         } catch (e) {
703                                 // Propagate exception as error if not done
704                                 if ( status < 2 ) {
705                                         done( -1, e );
706                                 // Simply rethrow otherwise
707                                 } else {
708                                         jQuery.error( e );
709                                 }
710                         }
711                 }
712
713                 return jqXHR;
714         },
715
716         // Serialize an array of form elements or a set of
717         // key/values into a query string
718         param: function( a, traditional ) {
719                 var s = [],
720                         add = function( key, value ) {
721                                 // If value is a function, invoke it and return its value
722                                 value = jQuery.isFunction( value ) ? value() : value;
723                                 s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
724                         };
725
726                 // Set traditional to true for jQuery <= 1.3.2 behavior.
727                 if ( traditional === undefined ) {
728                         traditional = jQuery.ajaxSettings.traditional;
729                 }
730
731                 // If an array was passed in, assume that it is an array of form elements.
732                 if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
733                         // Serialize the form elements
734                         jQuery.each( a, function() {
735                                 add( this.name, this.value );
736                         } );
737
738                 } else {
739                         // If traditional, encode the "old" way (the way 1.3.2 or older
740                         // did it), otherwise encode params recursively.
741                         for ( var prefix in a ) {
742                                 buildParams( prefix, a[ prefix ], traditional, add );
743                         }
744                 }
745
746                 // Return the resulting serialization
747                 return s.join( "&" ).replace( r20, "+" );
748         }
749 });
750
751 function buildParams( prefix, obj, traditional, add ) {
752         if ( jQuery.isArray( obj ) && obj.length ) {
753                 // Serialize array item.
754                 jQuery.each( obj, function( i, v ) {
755                         if ( traditional || rbracket.test( prefix ) ) {
756                                 // Treat each array item as a scalar.
757                                 add( prefix, v );
758
759                         } else {
760                                 // If array item is non-scalar (array or object), encode its
761                                 // numeric index to resolve deserialization ambiguity issues.
762                                 // Note that rack (as of 1.0.0) can't currently deserialize
763                                 // nested arrays properly, and attempting to do so may cause
764                                 // a server error. Possible fixes are to modify rack's
765                                 // deserialization algorithm or to provide an option or flag
766                                 // to force array serialization to be shallow.
767                                 buildParams( prefix + "[" + ( typeof v === "object" || jQuery.isArray(v) ? i : "" ) + "]", v, traditional, add );
768                         }
769                 });
770
771         } else if ( !traditional && obj != null && typeof obj === "object" ) {
772                 // If we see an array here, it is empty and should be treated as an empty
773                 // object
774                 if ( jQuery.isArray( obj ) || jQuery.isEmptyObject( obj ) ) {
775                         add( prefix, "" );
776
777                 // Serialize object item.
778                 } else {
779                         for ( var name in obj ) {
780                                 buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
781                         }
782                 }
783
784         } else {
785                 // Serialize scalar item.
786                 add( prefix, obj );
787         }
788 }
789
790 // This is still on the jQuery object... for now
791 // Want to move this to jQuery.ajax some day
792 jQuery.extend({
793
794         // Counter for holding the number of active queries
795         active: 0,
796
797         // Last-Modified header cache for next request
798         lastModified: {},
799         etag: {}
800
801 });
802
803 /* Handles responses to an ajax request:
804  * - sets all responseXXX fields accordingly
805  * - finds the right dataType (mediates between content-type and expected dataType)
806  * - returns the corresponding response
807  */
808 function ajaxHandleResponses( s, jqXHR, responses ) {
809
810         var contents = s.contents,
811                 dataTypes = s.dataTypes,
812                 responseFields = s.responseFields,
813                 ct,
814                 type,
815                 finalDataType,
816                 firstDataType;
817
818         // Fill responseXXX fields
819         for( type in responseFields ) {
820                 if ( type in responses ) {
821                         jqXHR[ responseFields[type] ] = responses[ type ];
822                 }
823         }
824
825         // Remove auto dataType and get content-type in the process
826         while( dataTypes[ 0 ] === "*" ) {
827                 dataTypes.shift();
828                 if ( ct === undefined ) {
829                         ct = jqXHR.getResponseHeader( "content-type" );
830                 }
831         }
832
833         // Check if we're dealing with a known content-type
834         if ( ct ) {
835                 for ( type in contents ) {
836                         if ( contents[ type ] && contents[ type ].test( ct ) ) {
837                                 dataTypes.unshift( type );
838                                 break;
839                         }
840                 }
841         }
842
843         // Check to see if we have a response for the expected dataType
844         if ( dataTypes[ 0 ] in responses ) {
845                 finalDataType = dataTypes[ 0 ];
846         } else {
847                 // Try convertible dataTypes
848                 for ( type in responses ) {
849                         if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
850                                 finalDataType = type;
851                                 break;
852                         }
853                         if ( !firstDataType ) {
854                                 firstDataType = type;
855                         }
856                 }
857                 // Or just use first one
858                 finalDataType = finalDataType || firstDataType;
859         }
860
861         // If we found a dataType
862         // We add the dataType to the list if needed
863         // and return the corresponding response
864         if ( finalDataType ) {
865                 if ( finalDataType !== dataTypes[ 0 ] ) {
866                         dataTypes.unshift( finalDataType );
867                 }
868                 return responses[ finalDataType ];
869         }
870 }
871
872 // Chain conversions given the request and the original response
873 function ajaxConvert( s, response ) {
874
875         // Apply the dataFilter if provided
876         if ( s.dataFilter ) {
877                 response = s.dataFilter( response, s.dataType );
878         }
879
880         var dataTypes = s.dataTypes,
881                 converters = {},
882                 i,
883                 key,
884                 length = dataTypes.length,
885                 tmp,
886                 // Current and previous dataTypes
887                 current = dataTypes[ 0 ],
888                 prev,
889                 // Conversion expression
890                 conversion,
891                 // Conversion function
892                 conv,
893                 // Conversion functions (transitive conversion)
894                 conv1,
895                 conv2;
896
897         // For each dataType in the chain
898         for( i = 1; i < length; i++ ) {
899
900                 // Create converters map
901                 // with lowercased keys
902                 if ( i === 1 ) {
903                         for( key in s.converters ) {
904                                 if( typeof key === "string" ) {
905                                         converters[ key.toLowerCase() ] = s.converters[ key ];
906                                 }
907                         }
908                 }
909
910                 // Get the dataTypes
911                 prev = current;
912                 current = dataTypes[ i ];
913
914                 // If current is auto dataType, update it to prev
915                 if( current === "*" ) {
916                         current = prev;
917                 // If no auto and dataTypes are actually different
918                 } else if ( prev !== "*" && prev !== current ) {
919
920                         // Get the converter
921                         conversion = prev + " " + current;
922                         conv = converters[ conversion ] || converters[ "* " + current ];
923
924                         // If there is no direct converter, search transitively
925                         if ( !conv ) {
926                                 conv2 = undefined;
927                                 for( conv1 in converters ) {
928                                         tmp = conv1.split( " " );
929                                         if ( tmp[ 0 ] === prev || tmp[ 0 ] === "*" ) {
930                                                 conv2 = converters[ tmp[1] + " " + current ];
931                                                 if ( conv2 ) {
932                                                         conv1 = converters[ conv1 ];
933                                                         if ( conv1 === true ) {
934                                                                 conv = conv2;
935                                                         } else if ( conv2 === true ) {
936                                                                 conv = conv1;
937                                                         }
938                                                         break;
939                                                 }
940                                         }
941                                 }
942                         }
943                         // If we found no converter, dispatch an error
944                         if ( !( conv || conv2 ) ) {
945                                 jQuery.error( "No conversion from " + conversion.replace(" "," to ") );
946                         }
947                         // If found converter is not an equivalence
948                         if ( conv !== true ) {
949                                 // Convert with 1 or 2 converters accordingly
950                                 response = conv ? conv( response ) : conv2( conv1(response) );
951                         }
952                 }
953         }
954         return response;
955 }
956
957 })( jQuery );