|
17 | 17 | rantiCache = /([?&])_=[^&]*/,
|
18 | 18 | rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
|
19 | 19 |
|
20 |
| - // #7653, #8125, #8152: local protocol detection |
| 20 | + // trac-7653, trac-8125, trac-8152: local protocol detection |
21 | 21 | rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
|
22 | 22 | rnoContent = /^(?:GET|HEAD)$/,
|
23 | 23 | rprotocol = /^\/\//,
|
|
40 | 40 | */
|
41 | 41 | transports = {},
|
42 | 42 |
|
43 |
| - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression |
| 43 | + // Avoid comment-prolog char sequence (trac-10098); must appease lint and evade compression |
44 | 44 | allTypes = "*/".concat( "*" ),
|
45 | 45 |
|
46 | 46 | // Anchor tag for parsing the document origin
|
@@ -111,7 +111,7 @@ function inspectPrefiltersOrTransports( structure, options, originalOptions, jqX
|
111 | 111 |
|
112 | 112 | // A special extend for ajax options
|
113 | 113 | // that takes "flat" options (not to be deep extended)
|
114 |
| -// Fixes #9887 |
| 114 | +// Fixes trac-9887 |
115 | 115 | function ajaxExtend( target, src ) {
|
116 | 116 | var key, deep,
|
117 | 117 | flatOptions = jQuery.ajaxSettings.flatOptions || {};
|
@@ -528,12 +528,12 @@ jQuery.extend( {
|
528 | 528 | deferred.promise( jqXHR );
|
529 | 529 |
|
530 | 530 | // Add protocol if not provided (prefilters might expect it)
|
531 |
| - // Handle falsy url in the settings object (#10093: consistency with old signature) |
| 531 | + // Handle falsy url in the settings object (trac-10093: consistency with old signature) |
532 | 532 | // We also use the url parameter if available
|
533 | 533 | s.url = ( ( url || s.url || location.href ) + "" )
|
534 | 534 | .replace( rprotocol, location.protocol + "//" );
|
535 | 535 |
|
536 |
| - // Alias method option to type as per ticket #12004 |
| 536 | + // Alias method option to type as per ticket trac-12004 |
537 | 537 | s.type = options.method || options.type || s.method || s.type;
|
538 | 538 |
|
539 | 539 | // Extract dataTypes list
|
@@ -605,7 +605,7 @@ jQuery.extend( {
|
605 | 605 | if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
|
606 | 606 | cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
|
607 | 607 |
|
608 |
| - // #9682: remove data so that it's not used in an eventual retry |
| 608 | + // trac-9682: remove data so that it's not used in an eventual retry |
609 | 609 | delete s.data;
|
610 | 610 | }
|
611 | 611 |
|
|
0 commit comments