Adds jQuery collection to objects that will be used as global events context if provi...
[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 or a jQuery collection
369                         globalEventContext = callbackContext !== s &&
370                                 ( callbackContext.nodeType || callbackContext instanceof jQuery ) ?
371                                                 jQuery( callbackContext ) : jQuery.event,
372                         // Deferreds
373                         deferred = jQuery.Deferred(),
374                         completeDeferred = jQuery._Deferred(),
375                         // Status-dependent callbacks
376                         statusCode = s.statusCode || {},
377                         // ifModified key
378                         ifModifiedKey,
379                         // Headers (they are sent all at once)
380                         requestHeaders = {},
381                         // Response headers
382                         responseHeadersString,
383                         responseHeaders,
384                         // transport
385                         transport,
386                         // timeout handle
387                         timeoutTimer,
388                         // Cross-domain detection vars
389                         parts,
390                         // The jqXHR state
391                         state = 0,
392                         // To know if global events are to be dispatched
393                         fireGlobals,
394                         // Loop variable
395                         i,
396                         // Fake xhr
397                         jqXHR = {
398
399                                 readyState: 0,
400
401                                 // Caches the header
402                                 setRequestHeader: function( name, value ) {
403                                         if ( state === 0 ) {
404                                                 requestHeaders[ name.toLowerCase() ] = value;
405                                         }
406                                         return this;
407                                 },
408
409                                 // Raw string
410                                 getAllResponseHeaders: function() {
411                                         return state === 2 ? responseHeadersString : null;
412                                 },
413
414                                 // Builds headers hashtable if needed
415                                 getResponseHeader: function( key ) {
416                                         var match;
417                                         if ( state === 2 ) {
418                                                 if ( !responseHeaders ) {
419                                                         responseHeaders = {};
420                                                         while( ( match = rheaders.exec( responseHeadersString ) ) ) {
421                                                                 responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
422                                                         }
423                                                 }
424                                                 match = responseHeaders[ key.toLowerCase() ];
425                                         }
426                                         return match || null;
427                                 },
428
429                                 // Cancel the request
430                                 abort: function( statusText ) {
431                                         statusText = statusText || "abort";
432                                         if ( transport ) {
433                                                 transport.abort( statusText );
434                                         }
435                                         done( 0, statusText );
436                                         return this;
437                                 }
438                         };
439
440                 // Callback for when everything is done
441                 // It is defined here because jslint complains if it is declared
442                 // at the end of the function (which would be more logical and readable)
443                 function done( status, statusText, responses, headers) {
444
445                         // Called once
446                         if ( state === 2 ) {
447                                 return;
448                         }
449
450                         // State is "done" now
451                         state = 2;
452
453                         // Clear timeout if it exists
454                         if ( timeoutTimer ) {
455                                 clearTimeout( timeoutTimer );
456                         }
457
458                         // Dereference transport for early garbage collection
459                         // (no matter how long the jqXHR object will be used)
460                         transport = undefined;
461
462                         // Cache response headers
463                         responseHeadersString = headers || "";
464
465                         // Set readyState
466                         jqXHR.readyState = status ? 4 : 0;
467
468                         var isSuccess,
469                                 success,
470                                 error,
471                                 response = responses ? ajaxHandleResponses( s, jqXHR, responses ) : undefined,
472                                 lastModified,
473                                 etag;
474
475                         // If successful, handle type chaining
476                         if ( status >= 200 && status < 300 || status === 304 ) {
477
478                                 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
479                                 if ( s.ifModified ) {
480
481                                         if ( ( lastModified = jqXHR.getResponseHeader( "Last-Modified" ) ) ) {
482                                                 jQuery.lastModified[ ifModifiedKey ] = lastModified;
483                                         }
484                                         if ( ( etag = jqXHR.getResponseHeader( "Etag" ) ) ) {
485                                                 jQuery.etag[ ifModifiedKey ] = etag;
486                                         }
487                                 }
488
489                                 // If not modified
490                                 if ( status === 304 ) {
491
492                                         statusText = "notmodified";
493                                         isSuccess = true;
494
495                                 // If we have data
496                                 } else {
497
498                                         try {
499                                                 success = ajaxConvert( s, response );
500                                                 statusText = "success";
501                                                 isSuccess = true;
502                                         } catch(e) {
503                                                 // We have a parsererror
504                                                 statusText = "parsererror";
505                                                 error = e;
506                                         }
507                                 }
508                         } else {
509                                 // We extract error from statusText
510                                 // then normalize statusText and status for non-aborts
511                                 error = statusText;
512                                 if( status ) {
513                                         statusText = "error";
514                                         if ( status < 0 ) {
515                                                 status = 0;
516                                         }
517                                 }
518                         }
519
520                         // Set data for the fake xhr object
521                         jqXHR.status = status;
522                         jqXHR.statusText = statusText;
523
524                         // Success/Error
525                         if ( isSuccess ) {
526                                 deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
527                         } else {
528                                 deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
529                         }
530
531                         // Status-dependent callbacks
532                         jqXHR.statusCode( statusCode );
533                         statusCode = undefined;
534
535                         if ( fireGlobals ) {
536                                 globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ),
537                                                 [ jqXHR, s, isSuccess ? success : error ] );
538                         }
539
540                         // Complete
541                         completeDeferred.resolveWith( callbackContext, [ jqXHR, statusText ] );
542
543                         if ( fireGlobals ) {
544                                 globalEventContext.trigger( "ajaxComplete", [ jqXHR, s] );
545                                 // Handle the global AJAX counter
546                                 if ( !( --jQuery.active ) ) {
547                                         jQuery.event.trigger( "ajaxStop" );
548                                 }
549                         }
550                 }
551
552                 // Attach deferreds
553                 deferred.promise( jqXHR );
554                 jqXHR.success = jqXHR.done;
555                 jqXHR.error = jqXHR.fail;
556                 jqXHR.complete = completeDeferred.done;
557
558                 // Status-dependent callbacks
559                 jqXHR.statusCode = function( map ) {
560                         if ( map ) {
561                                 var tmp;
562                                 if ( state < 2 ) {
563                                         for( tmp in map ) {
564                                                 statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ];
565                                         }
566                                 } else {
567                                         tmp = map[ jqXHR.status ];
568                                         jqXHR.then( tmp, tmp );
569                                 }
570                         }
571                         return this;
572                 };
573
574                 // Remove hash character (#7531: and string promotion)
575                 // Add protocol if not provided (#5866: IE7 issue with protocol-less urls)
576                 // We also use the url parameter if available
577                 s.url = ( "" + ( url || s.url ) ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
578
579                 // Extract dataTypes list
580                 s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( rspacesAjax );
581
582                 // Determine if a cross-domain request is in order
583                 if ( !s.crossDomain ) {
584                         parts = rurl.exec( s.url.toLowerCase() );
585                         s.crossDomain = !!( parts &&
586                                 ( parts[ 1 ] != ajaxLocParts[ 1 ] || parts[ 2 ] != ajaxLocParts[ 2 ] ||
587                                         ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) !=
588                                                 ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) )
589                         );
590                 }
591
592                 // Convert data if not already a string
593                 if ( s.data && s.processData && typeof s.data !== "string" ) {
594                         s.data = jQuery.param( s.data, s.traditional );
595                 }
596
597                 // Apply prefilters
598                 inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
599
600                 // If request was aborted inside a prefiler, stop there
601                 if ( state === 2 ) {
602                         return false;
603                 }
604
605                 // We can fire global events as of now if asked to
606                 fireGlobals = s.global;
607
608                 // Uppercase the type
609                 s.type = s.type.toUpperCase();
610
611                 // Determine if request has content
612                 s.hasContent = !rnoContent.test( s.type );
613
614                 // Watch for a new set of requests
615                 if ( fireGlobals && jQuery.active++ === 0 ) {
616                         jQuery.event.trigger( "ajaxStart" );
617                 }
618
619                 // More options handling for requests with no content
620                 if ( !s.hasContent ) {
621
622                         // If data is available, append data to url
623                         if ( s.data ) {
624                                 s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data;
625                         }
626
627                         // Get ifModifiedKey before adding the anti-cache parameter
628                         ifModifiedKey = s.url;
629
630                         // Add anti-cache in url if needed
631                         if ( s.cache === false ) {
632
633                                 var ts = jQuery.now(),
634                                         // try replacing _= if it is there
635                                         ret = s.url.replace( rts, "$1_=" + ts );
636
637                                 // if nothing was replaced, add timestamp to the end
638                                 s.url = ret + ( (ret === s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "" );
639                         }
640                 }
641
642                 // Set the correct header, if data is being sent
643                 if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
644                         requestHeaders[ "content-type" ] = s.contentType;
645                 }
646
647                 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
648                 if ( s.ifModified ) {
649                         ifModifiedKey = ifModifiedKey || s.url;
650                         if ( jQuery.lastModified[ ifModifiedKey ] ) {
651                                 requestHeaders[ "if-modified-since" ] = jQuery.lastModified[ ifModifiedKey ];
652                         }
653                         if ( jQuery.etag[ ifModifiedKey ] ) {
654                                 requestHeaders[ "if-none-match" ] = jQuery.etag[ ifModifiedKey ];
655                         }
656                 }
657
658                 // Set the Accepts header for the server, depending on the dataType
659                 requestHeaders.accept = s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
660                         s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", */*; q=0.01" : "" ) :
661                         s.accepts[ "*" ];
662
663                 // Check for headers option
664                 for ( i in s.headers ) {
665                         requestHeaders[ i.toLowerCase() ] = s.headers[ i ];
666                 }
667
668                 // Allow custom headers/mimetypes and early abort
669                 if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
670                                 // Abort if not done already
671                                 jqXHR.abort();
672                                 return false;
673
674                 }
675
676                 // Install callbacks on deferreds
677                 for ( i in { success: 1, error: 1, complete: 1 } ) {
678                         jqXHR[ i ]( s[ i ] );
679                 }
680
681                 // Get transport
682                 transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
683
684                 // If no transport, we auto-abort
685                 if ( !transport ) {
686                         done( -1, "No Transport" );
687                 } else {
688                         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                                 state = 1;
702                                 transport.send( requestHeaders, done );
703                         } catch (e) {
704                                 // Propagate exception as error if not done
705                                 if ( status < 2 ) {
706                                         done( -1, e );
707                                 // Simply rethrow otherwise
708                                 } else {
709                                         jQuery.error( e );
710                                 }
711                         }
712                 }
713
714                 return jqXHR;
715         },
716
717         // Serialize an array of form elements or a set of
718         // key/values into a query string
719         param: function( a, traditional ) {
720                 var s = [],
721                         add = function( key, value ) {
722                                 // If value is a function, invoke it and return its value
723                                 value = jQuery.isFunction( value ) ? value() : value;
724                                 s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
725                         };
726
727                 // Set traditional to true for jQuery <= 1.3.2 behavior.
728                 if ( traditional === undefined ) {
729                         traditional = jQuery.ajaxSettings.traditional;
730                 }
731
732                 // If an array was passed in, assume that it is an array of form elements.
733                 if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
734                         // Serialize the form elements
735                         jQuery.each( a, function() {
736                                 add( this.name, this.value );
737                         } );
738
739                 } else {
740                         // If traditional, encode the "old" way (the way 1.3.2 or older
741                         // did it), otherwise encode params recursively.
742                         for ( var prefix in a ) {
743                                 buildParams( prefix, a[ prefix ], traditional, add );
744                         }
745                 }
746
747                 // Return the resulting serialization
748                 return s.join( "&" ).replace( r20, "+" );
749         }
750 });
751
752 function buildParams( prefix, obj, traditional, add ) {
753         if ( jQuery.isArray( obj ) && obj.length ) {
754                 // Serialize array item.
755                 jQuery.each( obj, function( i, v ) {
756                         if ( traditional || rbracket.test( prefix ) ) {
757                                 // Treat each array item as a scalar.
758                                 add( prefix, v );
759
760                         } else {
761                                 // If array item is non-scalar (array or object), encode its
762                                 // numeric index to resolve deserialization ambiguity issues.
763                                 // Note that rack (as of 1.0.0) can't currently deserialize
764                                 // nested arrays properly, and attempting to do so may cause
765                                 // a server error. Possible fixes are to modify rack's
766                                 // deserialization algorithm or to provide an option or flag
767                                 // to force array serialization to be shallow.
768                                 buildParams( prefix + "[" + ( typeof v === "object" || jQuery.isArray(v) ? i : "" ) + "]", v, traditional, add );
769                         }
770                 });
771
772         } else if ( !traditional && obj != null && typeof obj === "object" ) {
773                 // If we see an array here, it is empty and should be treated as an empty
774                 // object
775                 if ( jQuery.isArray( obj ) || jQuery.isEmptyObject( obj ) ) {
776                         add( prefix, "" );
777
778                 // Serialize object item.
779                 } else {
780                         for ( var name in obj ) {
781                                 buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
782                         }
783                 }
784
785         } else {
786                 // Serialize scalar item.
787                 add( prefix, obj );
788         }
789 }
790
791 // This is still on the jQuery object... for now
792 // Want to move this to jQuery.ajax some day
793 jQuery.extend({
794
795         // Counter for holding the number of active queries
796         active: 0,
797
798         // Last-Modified header cache for next request
799         lastModified: {},
800         etag: {}
801
802 });
803
804 /* Handles responses to an ajax request:
805  * - sets all responseXXX fields accordingly
806  * - finds the right dataType (mediates between content-type and expected dataType)
807  * - returns the corresponding response
808  */
809 function ajaxHandleResponses( s, jqXHR, responses ) {
810
811         var contents = s.contents,
812                 dataTypes = s.dataTypes,
813                 responseFields = s.responseFields,
814                 ct,
815                 type,
816                 finalDataType,
817                 firstDataType;
818
819         // Fill responseXXX fields
820         for( type in responseFields ) {
821                 if ( type in responses ) {
822                         jqXHR[ responseFields[type] ] = responses[ type ];
823                 }
824         }
825
826         // Remove auto dataType and get content-type in the process
827         while( dataTypes[ 0 ] === "*" ) {
828                 dataTypes.shift();
829                 if ( ct === undefined ) {
830                         ct = jqXHR.getResponseHeader( "content-type" );
831                 }
832         }
833
834         // Check if we're dealing with a known content-type
835         if ( ct ) {
836                 for ( type in contents ) {
837                         if ( contents[ type ] && contents[ type ].test( ct ) ) {
838                                 dataTypes.unshift( type );
839                                 break;
840                         }
841                 }
842         }
843
844         // Check to see if we have a response for the expected dataType
845         if ( dataTypes[ 0 ] in responses ) {
846                 finalDataType = dataTypes[ 0 ];
847         } else {
848                 // Try convertible dataTypes
849                 for ( type in responses ) {
850                         if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
851                                 finalDataType = type;
852                                 break;
853                         }
854                         if ( !firstDataType ) {
855                                 firstDataType = type;
856                         }
857                 }
858                 // Or just use first one
859                 finalDataType = finalDataType || firstDataType;
860         }
861
862         // If we found a dataType
863         // We add the dataType to the list if needed
864         // and return the corresponding response
865         if ( finalDataType ) {
866                 if ( finalDataType !== dataTypes[ 0 ] ) {
867                         dataTypes.unshift( finalDataType );
868                 }
869                 return responses[ finalDataType ];
870         }
871 }
872
873 // Chain conversions given the request and the original response
874 function ajaxConvert( s, response ) {
875
876         // Apply the dataFilter if provided
877         if ( s.dataFilter ) {
878                 response = s.dataFilter( response, s.dataType );
879         }
880
881         var dataTypes = s.dataTypes,
882                 converters = {},
883                 i,
884                 key,
885                 length = dataTypes.length,
886                 tmp,
887                 // Current and previous dataTypes
888                 current = dataTypes[ 0 ],
889                 prev,
890                 // Conversion expression
891                 conversion,
892                 // Conversion function
893                 conv,
894                 // Conversion functions (transitive conversion)
895                 conv1,
896                 conv2;
897
898         // For each dataType in the chain
899         for( i = 1; i < length; i++ ) {
900
901                 // Create converters map
902                 // with lowercased keys
903                 if ( i === 1 ) {
904                         for( key in s.converters ) {
905                                 if( typeof key === "string" ) {
906                                         converters[ key.toLowerCase() ] = s.converters[ key ];
907                                 }
908                         }
909                 }
910
911                 // Get the dataTypes
912                 prev = current;
913                 current = dataTypes[ i ];
914
915                 // If current is auto dataType, update it to prev
916                 if( current === "*" ) {
917                         current = prev;
918                 // If no auto and dataTypes are actually different
919                 } else if ( prev !== "*" && prev !== current ) {
920
921                         // Get the converter
922                         conversion = prev + " " + current;
923                         conv = converters[ conversion ] || converters[ "* " + current ];
924
925                         // If there is no direct converter, search transitively
926                         if ( !conv ) {
927                                 conv2 = undefined;
928                                 for( conv1 in converters ) {
929                                         tmp = conv1.split( " " );
930                                         if ( tmp[ 0 ] === prev || tmp[ 0 ] === "*" ) {
931                                                 conv2 = converters[ tmp[1] + " " + current ];
932                                                 if ( conv2 ) {
933                                                         conv1 = converters[ conv1 ];
934                                                         if ( conv1 === true ) {
935                                                                 conv = conv2;
936                                                         } else if ( conv2 === true ) {
937                                                                 conv = conv1;
938                                                         }
939                                                         break;
940                                                 }
941                                         }
942                                 }
943                         }
944                         // If we found no converter, dispatch an error
945                         if ( !( conv || conv2 ) ) {
946                                 jQuery.error( "No conversion from " + conversion.replace(" "," to ") );
947                         }
948                         // If found converter is not an equivalence
949                         if ( conv !== true ) {
950                                 // Convert with 1 or 2 converters accordingly
951                                 response = conv ? conv( response ) : conv2( conv1(response) );
952                         }
953                 }
954         }
955         return response;
956 }
957
958 })( jQuery );