Skip to content
Snippets Groups Projects
Commit c5abb58b authored by mcmlxxix's avatar mcmlxxix
Browse files

added JS object to XML object conversion function (TODO: make arrays work.... anyone?)

parent fb1ea1cc
No related branches found
No related tags found
No related merge requests found
......@@ -234,3 +234,44 @@ function testSocket(socket)
return false;
}
}
function toXML(obj)
{
var xml = new XMLList('<xml/>');
for (var i in obj) {
switch (typeof obj[i])
{
case "object":
var child=toXML(obj[i]);
xml.appendChild(<{i}>{child.children()}</{i}>);
break;
case "array": //TODO: figure this shit out
/*
for(var x=0;x<obj[i].length;x++) {
switch(typeof obj[i][x]) {
case "object":
case "array":
var child=toXML(obj[i][x]);
xml.appendChild(<{i}>{child.children()}</{i}>);
break;
default:
xml.appendChild(<{i}>{obj[i][x]}</{i}>);break;
break;
}
}
*/
break;
default:
xml.appendChild(<{i}>{obj[i]}</{i}>);break;
}
}
return xml;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment