@prefix rdf: . @prefix rdfs: . @prefix dcterms: . @prefix foaf: . @prefix cpack: . # This file is a Turtle-format RDF file that describes the package. It # *must* be located in rdf/cpack/xmlrdf.ttl # # Author is a FOAF Person. If you have a FOAF profile, you can link to # this. Otherwise you can specify the information inline as done below. # See http://xmlns.com/foaf/spec/ for defines fields. <> a cpack:Library ; cpack:packageName "xmlrdf" ; dcterms:title "XML to RDF conversion" ; cpack:home ; cpack:author [ a foaf:Person ; foaf:name "Jan Wielemaker" ; foaf:mbox "J.Wielemaker@cs.vu.nl" ; ] ; cpack:primaryRepository [ a cpack:GitRepository ; cpack:gitURL ] ; cpack:description """The XML to RDF convertor allows for importing XML as RDF using two steps: 1. A generic translation from XML to RDF. This generally needs no configuration but it allows for a few parameters: - Define the primary record element - Define the target namespace - Define elements that must be kept as XMLLiteral 2. Preform a rewrite on the generated graph using a Prolog based rewrite language. """ .