annotation_service/commit

Installed template

authorJacco van Ossenbruggen
Fri Apr 6 16:47:20 2012 +0200
committerJacco van Ossenbruggen
Fri Apr 6 16:47:20 2012 +0200
commitf6bea2f66429946e8467155ad5dcbe650348ee9f
tree1e7fde1446b51d33ec518107e7a2c6dec715e97f
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..41624e7
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(annotation_service, link).
diff --git a/config-available/annotation_service.pl b/config-available/annotation_service.pl
new file mode 100644
index 0000000..6453c2f
--- /dev/null
+++ b/config-available/annotation_service.pl
@@ -0,0 +1,5 @@
+:- module(conf_annotation_service, []).
+
+/** <module> Configurable RDF annotation webservice
+*/
+
diff --git a/rdf/cpack/annotation_service.ttl b/rdf/cpack/annotation_service.ttl
new file mode 100644
index 0000000..1ec4cd6
--- /dev/null
+++ b/rdf/cpack/annotation_service.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/annotation_service.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 "annotation_service" ;
+	dcterms:title "Configurable RDF annotation webservice" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Jacco van Ossenbruggen" ;
+		       foaf:mbox <literal(Jacco.van.Ossenbruggen@cs.vu.nl)> ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <ecgit:lib/git/annotation_service.git>
+	    ] ;
+	cpack:description
+
+"""Package description goes here.  You can use PlDoc markup.
+""" .
+
+