xmlrdf/commit

Installed template

authorJan Wielemaker
Mon Nov 29 11:54:26 2010 +0100
committerJan Wielemaker
Mon Nov 29 11:54:26 2010 +0100
commit1cb1db337eb3f0f288c379592b98ece661311482
tree4d228f2fb8fa00f5577e973d953a4ba680c76f75
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..312fa67
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(xmlrdf, link).
diff --git a/config-available/xmlrdf.pl b/config-available/xmlrdf.pl
new file mode 100644
index 0000000..96b829c
--- /dev/null
+++ b/config-available/xmlrdf.pl
@@ -0,0 +1,5 @@
+:- module(conf_xmlrdf, []).
+
+/** <module> XML to RDF conversion
+*/
+
diff --git a/rdf/cpack/xmlrdf.ttl b/rdf/cpack/xmlrdf.ttl
new file mode 100644
index 0000000..a640ba5
--- /dev/null
+++ b/rdf/cpack/xmlrdf.ttl
@@ -0,0 +1,30 @@
+@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:Package ;
+	cpack:packageName "xmlrdf" ;
+	dcterms:title "XML to RDF conversion" ;
+	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 package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+