webaccess/commit

Installed template

authorJan Wielemaker
Thu Nov 25 11:17:04 2010 +0100
committerJan Wielemaker
Thu Nov 25 11:17:04 2010 +0100
commit52a8a9f2e4d774e36d4ef857d588ef1d899e4eaf
tree19dbaa47bdff81982e871fab4baded97f43c70a5
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..705b7ca
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(webaccess, link).
diff --git a/config-available/webaccess.pl b/config-available/webaccess.pl
new file mode 100644
index 0000000..45f816e
--- /dev/null
+++ b/config-available/webaccess.pl
@@ -0,0 +1,5 @@
+:- module(conf_webaccess, []).
+
+/** <module> Access external web-resources
+*/
+
diff --git a/rdf/cpack/webaccess.ttl b/rdf/cpack/webaccess.ttl
new file mode 100644
index 0000000..03dcafa
--- /dev/null
+++ b/rdf/cpack/webaccess.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/webaccess.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 "webaccess" ;
+	dcterms:title "Access external web-resources" ;
+	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/webaccess.git>
+	    ] ;
+	cpack:description
+
+"""The package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+