Ensures dataTypeExpressions are lowercased for prefilters and transports registrations.
[jquery.git] / src / ajax.js
index 592f297..363e9c8 100644 (file)
@@ -48,7 +48,7 @@ function addToPrefiltersOrTransports( structure ) {
                }
 
                if ( jQuery.isFunction( func ) ) {
-                       var dataTypes = dataTypeExpression.split( rspacesAjax ),
+                       var dataTypes = dataTypeExpression.toLowerCase().split( rspacesAjax ),
                                i = 0,
                                length = dataTypes.length,
                                dataType,
@@ -62,7 +62,7 @@ function addToPrefiltersOrTransports( structure ) {
                                // any existing element
                                placeBefore = /^\+/.test( dataType );
                                if ( placeBefore ) {
-                                       dataType = dataType.substr( 1 );
+                                       dataType = dataType.substr( 1 ) || "*";
                                }
                                list = structure[ dataType ] = structure[ dataType ] || [];
                                // then we add to the structure accordingly
@@ -88,7 +88,7 @@ function inspectPrefiltersOrTransports( structure, options, originalOptions, jXH
                selection;
 
        for(; i < length && ( executeOnly || !selection ); i++ ) {
-               selection = list[ i ]( options, originalOptions );
+               selection = list[ i ]( options, originalOptions, jXHR );
                // If we got redirected to another dataType
                // we try there if not done already
                if ( typeof selection === "string" ) {
@@ -472,7 +472,7 @@ jQuery.extend({
                                        } catch(e) {
                                                // We have a parsererror
                                                statusText = "parsererror";
-                                               error = "" + e;
+                                               error = e;
                                        }
                                }
                        } else {
@@ -662,7 +662,7 @@ jQuery.extend({
                                } catch (e) {
                                        // Propagate exception as error if not done
                                        if ( status < 2 ) {
-                                               done( -1, "" + e );
+                                               done( -1, e );
                                        // Simply rethrow otherwise
                                        } else {
                                                jQuery.error( e );
@@ -849,7 +849,7 @@ function ajaxConvert( s, response ) {
                conversion,
                // Conversion function
                conv,
-               // Conversion functions (when text is used in-between)
+               // Conversion functions (transitive conversion)
                conv1,
                conv2;