cloud/commit

Installed template

authorJan Wielemaker
Fri May 20 15:12:39 2011 +0200
committerJan Wielemaker
Fri May 20 15:12:39 2011 +0200
commit4ef743ac6045f4b96890b79381113451b9501ec7
treeef3fa3fa25cac82d3e2906cb9ea9b5b41337c93c
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..030959b
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(cloud, link).
diff --git a/config-available/cloud.pl b/config-available/cloud.pl
new file mode 100644
index 0000000..f446c16
--- /dev/null
+++ b/config-available/cloud.pl
@@ -0,0 +1,5 @@
+:- module(conf_cloud, []).
+
+/** <module> Visualize loaded datacloud
+*/
+
diff --git a/rdf/cpack/cloud.ttl b/rdf/cpack/cloud.ttl
new file mode 100644
index 0000000..aa720e7
--- /dev/null
+++ b/rdf/cpack/cloud.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/cloud.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 "cloud" ;
+	dcterms:title "Visualize loaded datacloud" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Jan Wielemaker" ;
+		       foaf:mbox <mailto:J.Wielemaker@cs.vu.nl> ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/cloud.git>
+	    ] ;
+	cpack:description
+
+"""Package description goes here.  You can use PlDoc markup.
+""" .
+
+