File | Date | Author | Commit |
---|---|---|---|
cmake | 2015-02-10 | Vítor Santos Costa | [2e4e20] cmake support for stand-alone compile |
.gitignore | 2013-11-21 | David Vaz | [099c16] Initial Release |
CMakeLists.txt | 2015-06-19 | Vítor Santos Costa | [8dbcba] cmake & files |
LICENSE | 2013-11-21 | David Vaz | [086858] Initial commit |
Makefile.in | 2014-10-25 | Vítor Santos Costa | [14b042] improve autoconf |
README.md | 2014-09-15 | Vítor Santos Costa | [1ebbe2] doxygen support |
configure.in | 2015-01-06 | Vitor Santos Costa | [36f99e] warnings |
example.rdf | 2014-09-15 | Vítor Santos Costa | [1ebbe2] doxygen support |
raptor.yap | 2014-12-14 | Vítor Santos Costa | [c488f2] initial support for cmake |
raptor_config.h.cmake | 2014-12-15 | Vitor Santos Costa | [277439] cmake config |
raptor_config.h.in | 2014-01-30 | Vitor Santos Costa | [99e740] support for raptor2 in fedora (raptor1 exists) |
raptor_yap.c | 2015-06-19 | Vítor Santos Costa | [8dbcba] cmake & files |
rdf.yap | 2014-01-30 | Vitor Santos Costa | [99e740] support for raptor2 in fedora (raptor1 exists) |
@defgroup YAPRaptor An RDF Reader for YAP.
@ingroup YAPPackages
This provides YAP a rdf reader using
raptor. The library is available for
Windows, Linux/Unix and MacOS machines.
~~~~{.prolog}
?- use_module(rdf).
?- rdf_load('example.rdf',user,example).
../example.rdf : 3 triples
?- example(Subject,Predicate,Object).
Object = 'http://www.example.org/tv_show',
Predicate = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type',
Subject = 'http://www.example.org/law_and_order_ci' ?
~~~~{.prolog}