handlers.js
1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
define([
'../json',
'../_base/kernel',
'../_base/array',
'../has',
'../has!dom?../selector/_loader' // only included for has() qsa tests
], function(JSON, kernel, array, has){
has.add('activex', typeof ActiveXObject !== 'undefined');
has.add('dom-parser', function(global){
return 'DOMParser' in global;
});
var handleXML;
if(has('activex')){
// GUIDs obtained from http://msdn.microsoft.com/en-us/library/ms757837(VS.85).aspx
var dp = [
'Msxml2.DOMDocument.6.0',
'Msxml2.DOMDocument.4.0',
'MSXML2.DOMDocument.3.0',
'MSXML.DOMDocument' // 2.0
];
handleXML = function(response){
var result = response.data;
if(result && has('dom-qsa2.1') && !result.querySelectorAll && has('dom-parser')){
// http://bugs.dojotoolkit.org/ticket/15631
// IE9 supports a CSS3 querySelectorAll implementation, but the DOM implementation
// returned by IE9 xhr.responseXML does not. Manually create the XML DOM to gain
// the fuller-featured implementation and avoid bugs caused by the inconsistency
result = new DOMParser().parseFromString(response.text, 'application/xml');
}
if(!result || !result.documentElement){
var text = response.text;
array.some(dp, function(p){
try{
var dom = new ActiveXObject(p);
dom.async = false;
dom.loadXML(text);
result = dom;
}catch(e){ return false; }
return true;
});
}
return result;
};
}
var handlers = {
'javascript': function(response){
return kernel.eval(response.text || '');
},
'json': function(response){
return JSON.parse(response.text || null);
},
'xml': handleXML
};
function handle(response){
var handler = handlers[response.options.handleAs];
response.data = handler ? handler(response) : (response.data || response.text);
return response;
}
handle.register = function(name, handler){
handlers[name] = handler;
};
return handle;
});