EDM/commit

Installed template

authorJan Wielemaker
Fri Nov 12 13:54:27 2010 +0100
committerJan Wielemaker
Fri Nov 12 13:54:27 2010 +0100
commit292bb4e929675f214c3798d53e5a613b58420a86
treee1afb745ab61e9b6d61ea7122aac269b36ca56e7
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..542723e
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config('EDM', link).
diff --git a/config-available/EDM.pl b/config-available/EDM.pl
new file mode 100644
index 0000000..70a7560
--- /dev/null
+++ b/config-available/EDM.pl
@@ -0,0 +1,5 @@
+:- module(conf_EDM, []).
+
+/** <module> View Europeana Data Model
+*/
+
diff --git a/rdf/cpack/EDM.ttl b/rdf/cpack/EDM.ttl
new file mode 100644
index 0000000..501890e
--- /dev/null
+++ b/rdf/cpack/EDM.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://www.swi-prolog.org/cliopatria/cpack#> .
+
+# This file is a Turtle-format RDF file that describes the package.  It
+# *must* be located in rdf/cpack/EDM.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 "EDM" ;
+	dcterms:title "View Europeana Data Model" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Jan Wielemaker" ;
+		       foaf:mbox "J.Wielemaker@cs.vu.nl ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/EDM.git>
+	    ] ;
+	cpack:description
+
+"""The package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+