How does one change the RDF namespaces from the publishing settings page?
I've been experimenting with the sparql_views module to pull RDF and I've somehow managed to mess up the namespaces, resulting in RDF namespace conflicts. How can I delete the incorrect mappings from the RDF publishing settings page?
Read moreDisplay dataset results as nodes
Is it possible to pull in a dataset such as "http://beta.kasabi.com/dataset/foodista/" and display them as nodes?
So far I have pull in a list of recipes with the sparql_views and views module. I would like to be able to full there full content on a node page. Is this even possible ? I have seen no examples of this being done.
Read moreImporting lots of nodes from DBpedia -OR- Import under request
Hi mates!
After importing people from Pittsburgh to my Drupal site (thanks linclark), I'm currently trying to do the following in order to develop a project. I need my site to show info about any book my users may ask for.
First tried to import only resource name, abstract, label and author:
SELECT * WHERE {
?book rdf:type dbpedia-owl:Book;
dbpedia-owl:abstract ?abstract;
dbpedia-owl:author ?author;
rdfs:label ?book_name.
FILTER (lang(?abstract) = "en")
}
ORDER BY ?book_name