@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf:    <http://xmlns.com/foaf/0.1/> .
@prefix cpack:   <http://cliopatria.swi-prolog.org/schema/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 <http://semanticweb.cs.vu.nl/xmlrdf/> ;
	cpack:author [ a foaf:Person ;
		       foaf:name "Jan Wielemaker" ;
		       foaf:mbox "J.Wielemaker@cs.vu.nl" ;
		     ] ;
	cpack:primaryRepository
	    [ a cpack:GitRepository ;
	      cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/xmlrdf.git>
	    ] ;
	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.
""" .