Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parsing RDF in Smalltalk

Is there any example, in any Smalltalk flavour, showing how to parse a RDF file? The only package I've seen is Rikaiko with a RDFXMLReader class, but there are no references and it seems very undocummented.

like image 751
Juan Aguerre Avatar asked May 27 '12 07:05

Juan Aguerre


1 Answers

I also was looking for something like this a while ago. Rikaiko was about it but I hadn't yet had time to really have a look at it. These are some of the answers I got related to Pharo and Moose.

http://lists.gforge.inria.fr/pipermail/pharo-project/2012-February/059235.html As at 2012-02-07

I am not aware of RDF support in Pharo. But, it would be definitely be cool to have one, in particular in the context of Moose. If Rakaiko has it, I would be interested. Let us know what you find.

Regarding XML, the more mature solution is XMLSupport. PetitXml is nice because it is based on PetitParser which is the central parsing engine in Moose, so in the long run I would prefer to use this one. But, the collateral libraries like XPath, or the support for objects factories are not yet available for it. -- Tudor Girba

like image 138
Ben Coman Avatar answered Sep 17 '22 15:09

Ben Coman