image_annotation/commit

Installed template

authorMichiel Hildebrand
Mon Feb 13 19:19:57 2012 +0100
committerMichiel Hildebrand
Mon Feb 13 19:19:57 2012 +0100
commit4a5518f716b0aa9746eade34587d1cb1824d12f4
tree15cba8238b38893f810bb83d75825308a41b4a12
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..351e8c2
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(image_annotation, link).
diff --git a/config-available/image_annotation.pl b/config-available/image_annotation.pl
new file mode 100644
index 0000000..e9d64b3
--- /dev/null
+++ b/config-available/image_annotation.pl
@@ -0,0 +1,5 @@
+:- module(conf_image_annotation, []).
+
+/** <module> Image annotation with configurable search fields
+*/
+
diff --git a/rdf/cpack/image_annotation.ttl b/rdf/cpack/image_annotation.ttl
new file mode 100644
index 0000000..8707554
--- /dev/null
+++ b/rdf/cpack/image_annotation.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/image_annotation.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 "image_annotation" ;
+	dcterms:title "Image annotation with configurable search fields" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "@FOAFNAME@" ;
+		       foaf:mbox <@FOAFMBOX@> ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <vu:git/ClioPatria/image_annotation.git>
+	    ] ;
+	cpack:description
+
+"""Package description goes here.  You can use PlDoc markup.
+""" .
+
+