Index | OAT homepage | OpenLink Software

rdf.js

rdf.js

RDF/XML parser. (see alsoN3/Turtle parser)

Functions

OAT.RDF.toTriples(xmlDoc, url)

Parses an RDF/XML document, xmlDoc into an array of triples which is then returned. Input should be in xmlDocument format, e.g., created with OAT.Xml.createXmlDoc() or as a result of AJAX call of type XML. Urlis to use for prefix and is optional.

Constants

OAT.RDFData.DISABLE_HTML

ToBeDone

OAT.RDFData.DEREFERENCE

ToBeDone

OAT.RDFData.BOOKMARK

ToBeDone

OAT.RDFData.FILTER

ToBeDone

Example


var callback = function(xmlDoc) {
        var triples = OAT.RDF.toTriples(xmlDoc);
        alert("There are " + triples.length + " triples.");
}
OAT.AJAX2.GET("myData.rdf", false, callback,{type:OAT.AJAX.TYPE_XML});


Copyright (C) 2005-2009 OpenLink Software