NAME
XML::Parser::Style::RDF - Parse XML-serialized RDF doocuments
SYNPOSIS
use XML::Parser;
$parser = new XML::Parser(Style => 'RDF');
$parser->parsefile("jql.foaf");
ABSTRACT
Simple XML parser conforming to the W3 RDF/XML specification.
DESCRIPTIOn
Currently, the module simply reads the RDF/XML document and spits out ntriple statements. This is incomplete behavior.
TODO
Add proper rdf:parseType and rdf:li support.
Pass each triple to a callback to allow something useful to happen.
BUGS
This module is useless without a callback.
SEE ALSO
The specification: http://www.w3.org/TR/rdf-syntax-grammar/
AUTHOR
Ashley Winters <awinters@users.sourceforge.net>
COPYRIGHT AND LICENSE
Copyright 2003 by Ashley Winters
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.