|
22 | 22 | rantiCache = /([?&])_=[^&]*/, |
23 | 23 | rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, |
24 | 24 |
|
25 | | - // #7653, #8125, #8152: local protocol detection |
| 25 | + // trac-7653, trac-8125, trac-8152: local protocol detection |
26 | 26 | rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, |
27 | 27 | rnoContent = /^(?:GET|HEAD)$/, |
28 | 28 | rprotocol = /^\/\//, |
|
45 | 45 | */ |
46 | 46 | transports = {}, |
47 | 47 |
|
48 | | - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression |
| 48 | + // Avoid comment-prolog char sequence (trac-10098); must appease lint and evade compression |
49 | 49 | allTypes = "*/".concat( "*" ), |
50 | 50 |
|
51 | 51 | // Anchor tag for parsing the document origin |
@@ -116,7 +116,7 @@ function inspectPrefiltersOrTransports( structure, options, originalOptions, jqX |
116 | 116 |
|
117 | 117 | // A special extend for ajax options |
118 | 118 | // that takes "flat" options (not to be deep extended) |
119 | | -// Fixes #9887 |
| 119 | +// Fixes trac-9887 |
120 | 120 | function ajaxExtend( target, src ) { |
121 | 121 | var key, deep, |
122 | 122 | flatOptions = jQuery.ajaxSettings.flatOptions || {}; |
@@ -527,12 +527,12 @@ jQuery.extend( { |
527 | 527 | deferred.promise( jqXHR ); |
528 | 528 |
|
529 | 529 | // Add protocol if not provided (prefilters might expect it) |
530 | | - // Handle falsy url in the settings object (#10093: consistency with old signature) |
| 530 | + // Handle falsy url in the settings object (trac-10093: consistency with old signature) |
531 | 531 | // We also use the url parameter if available |
532 | 532 | s.url = ( ( url || s.url || location.href ) + "" ) |
533 | 533 | .replace( rprotocol, location.protocol + "//" ); |
534 | 534 |
|
535 | | - // Alias method option to type as per ticket #12004 |
| 535 | + // Alias method option to type as per ticket trac-12004 |
536 | 536 | s.type = options.method || options.type || s.method || s.type; |
537 | 537 |
|
538 | 538 | // Extract dataTypes list |
@@ -575,7 +575,7 @@ jQuery.extend( { |
575 | 575 | } |
576 | 576 |
|
577 | 577 | // We can fire global events as of now if asked to |
578 | | - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) |
| 578 | + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (trac-15118) |
579 | 579 | fireGlobals = jQuery.event && s.global; |
580 | 580 |
|
581 | 581 | // Watch for a new set of requests |
@@ -604,7 +604,7 @@ jQuery.extend( { |
604 | 604 | if ( s.data && ( s.processData || typeof s.data === "string" ) ) { |
605 | 605 | cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; |
606 | 606 |
|
607 | | - // #9682: remove data so that it's not used in an eventual retry |
| 607 | + // trac-9682: remove data so that it's not used in an eventual retry |
608 | 608 | delete s.data; |
609 | 609 | } |
610 | 610 |
|
|
0 commit comments