waisda/commit

Installed template

authorMichiel Hildebrand
Fri Mar 4 15:39:20 2011 +0100
committerMichiel Hildebrand
Fri Mar 4 15:39:20 2011 +0100
commit8e0bf2f059d8cb67c8b08c091d128cccfe98bebc
tree4d0ffd9cd89f55734bdd7050d0c70478de0c2e36
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..4b08bcc
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(waisda, link).
diff --git a/config-available/waisda.pl b/config-available/waisda.pl
new file mode 100644
index 0000000..de0d4c5
--- /dev/null
+++ b/config-available/waisda.pl
@@ -0,0 +1,5 @@
+:- module(conf_waisda, []).
+
+/** <module> Management of user-generated metadata collected in Waisda video labeling game
+*/
+
diff --git a/rdf/cpack/waisda.ttl b/rdf/cpack/waisda.ttl
new file mode 100644
index 0000000..752e3a1
--- /dev/null
+++ b/rdf/cpack/waisda.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/waisda.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 "waisda" ;
+	dcterms:title "Management of user-generated metadata collected in Waisda video labeling game" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "@FOAFNAME@" ;
+		       foaf:mbox "@FOAFMBOX@" ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://semanticweb.cs.vu.nl/home/hildebra/git/ClioPatria/waisda.git>
+	    ] ;
+	cpack:description
+
+"""The package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+