1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-12 23:39:41 +00:00
TiddlyWiki5/editions/tw2/source/tiddlywiki/tests/js/xml.js
2012-11-16 21:20:27 +00:00

37 lines
922 B
JavaScript
Executable File

tests_xml = {
parse: function(text) {
var doc;
if(window.ActiveXObject) {
doc = new ActiveXObject("Microsoft.XMLDOM");
doc.async = "false";
doc.loadXML(text);
} else {
var parser = new DOMParser();
doc = parser.parseFromString(text,"text/xml");
}
if(!doc) {
return null;
}
doc.xpath = function(expression, type) {
var t;
if(type == "string") { t = XPathResult.STRING_TYPE; }
if(type == "number") { t = XPathResult.NUMBER_TYPE; }
if(type == "boolean") { t = XPathResult.BOOLEAN_TYPE; }
if(type == "singlenode") { t = XPathResult.SINGLENODE_TYPE; }
var res = this.evaluate(expression, this, null, t, null);
if(type == "string") { return res.stringValue; }
if(type == "number") { return res.numberValue; }
if(type == "boolean") { return res.booleanValue; }
if(type == "singleNode") { return this.singleNodeValue; }
return null;
};
return doc;
}
};