waisda/commit

Installed template

authorMichiel Hildebrand
Mon Mar 7 11:02:03 2011 +0100
committerMichiel Hildebrand
Mon Mar 7 11:02:03 2011 +0100
commitafde7c29ff27ebfdf75ef2540e33b028a2c2e5d1
tree597b22e6e1bb09ae5aa717dfe0d479b9dc3eaabc
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..78fce04
--- /dev/null
+++ b/config-available/waisda.pl
@@ -0,0 +1,5 @@
+:- module(conf_waisda, []).
+
+/** <module> Management of user-generated metadata for Waisda video labeling game
+*/
+
diff --git a/rdf/cpack/waisda.ttl b/rdf/cpack/waisda.ttl
new file mode 100644
index 0000000..3496585
--- /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 for 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.
+""" .
+
+