autocompletion/commit

Installed template

authorJacco van Ossenbruggen
Fri Apr 6 16:46:44 2012 +0200
committerJacco van Ossenbruggen
Fri Apr 6 16:46:44 2012 +0200
commit507cb74f620cb0844e38c969b47f0b491dd61cfe
tree876448430365c66c97ecc11cc7cc25ef36b39765
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..cc2f9cc
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(autocompletion, link).
diff --git a/config-available/autocompletion.pl b/config-available/autocompletion.pl
new file mode 100644
index 0000000..bd79e85
--- /dev/null
+++ b/config-available/autocompletion.pl
@@ -0,0 +1,5 @@
+:- module(conf_autocompletion, []).
+
+/** <module> Configurable autocompletion webservice
+*/
+
diff --git a/rdf/cpack/autocompletion.ttl b/rdf/cpack/autocompletion.ttl
new file mode 100644
index 0000000..c858604
--- /dev/null
+++ b/rdf/cpack/autocompletion.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/autocompletion.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 "autocompletion" ;
+	dcterms:title "Configurable autocompletion webservice" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Jacco van Ossenbruggen" ;
+		       foaf:mbox <literal(Jacco.van.Ossenbruggen@cs.vu.nl)> ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <ecgit:lib/git/autocompletion.git>
+	    ] ;
+	cpack:description
+
+"""Package description goes here.  You can use PlDoc markup.
+""" .
+
+