statistics/commit

Installed template

authorJan Wielemaker
Fri Dec 10 14:08:40 2010 +0100
committerJan Wielemaker
Fri Dec 10 14:08:40 2010 +0100
commit4b9bf0739b3ad5fa9a7f5da1f0a9bd9cc3fa8ebe
tree22e94ef972e31af067a2ff72e59aad9b71e36ff1
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..cc086a7
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(statistics, link).
diff --git a/config-available/statistics.pl b/config-available/statistics.pl
new file mode 100644
index 0000000..cd7d604
--- /dev/null
+++ b/config-available/statistics.pl
@@ -0,0 +1,5 @@
+:- module(conf_statistics, []).
+
+/** <module> Gather statistical information
+*/
+
diff --git a/rdf/cpack/statistics.ttl b/rdf/cpack/statistics.ttl
new file mode 100644
index 0000000..6e6c9b1
--- /dev/null
+++ b/rdf/cpack/statistics.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/statistics.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 "statistics" ;
+	dcterms:title "Gather statistical information" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Jan Wielemaker" ;
+		       foaf:mbox "@FOAFMBOX@" ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/statistics.git>
+	    ] ;
+	cpack:description
+
+"""The package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+