Hello,

I have just released version 0.4 of EasyRdf - a PHP library that aims to make 
it easy for people non expert in RDF to start consuming and using it.

Basic example:
$foaf = new EasyRdf_Graph("http://www.aelius.com/njh/foaf.rdf";);
$me = $foaf->primaryTopic();
echo "My name is: ".$me->get('foaf:name')."\n";

Homepage:
http://www.aelius.com/njh/easyrdf/

API Documentation:
http://www.aelius.com/njh/easyrdf/docs/

More examples:
http://github.com/njh/easyrdf/tree/master/examples


New in this release:
* Moved source code to Github
* Added an EasyRdf_Literal class
* Added support for Datatypes and Languages
* Added built-in RDF/XML serialiser
* Added built-in Turtle serialiser
* Added a new EasyRdf_Format class to deal with mime types etc.
* Finished a major refactoring of the Parser/Serialiser registration
* Removed all parsing related code from EasyRdf_Graph
* Added a basic serialisation example
* Added additional common namespaces
* Test fixes


nick.


Reply via email to