media_cache/commit

Installed template

authorMichiel Hildebrand
Fri Apr 12 13:29:03 2013 +0200
committerMichiel Hildebrand
Fri Apr 12 13:29:03 2013 +0200
commit88a369ae89e6ffcdb9dbeafef3f928a67e35aaa6
tree0b6aa9d67df0d7fb548adff826faed23a37f06e7
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000..6bd63dd
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(media_cache, link).
diff --git a/config-available/media_cache.pl b/config-available/media_cache.pl
new file mode 100644
index 0000000..a72496a
--- /dev/null
+++ b/config-available/media_cache.pl
@@ -0,0 +1,5 @@
+:- module(conf_media_cache, []).
+
+/** <module> [Service to cache media resources. Also provides functionality to create thumbnails of images]
+*/
+
diff --git a/rdf/cpack/media_cache.ttl b/rdf/cpack/media_cache.ttl
new file mode 100644
index 0000000..99b2165
--- /dev/null
+++ b/rdf/cpack/media_cache.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/media_cache.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 "media_cache" ;
+	dcterms:title "[Service to cache media resources. Also provides functionality to create thumbnails of images]" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "Michiel Hildebrand" ;
+		       foaf:mbox <literal(f02be10c9354eb886121e2b9952f0b15c935cb90)> ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://eculture.cs.vu.nl//home/hildebra/git/ClioPatria/media_cache.git>
+	    ] ;
+	cpack:description
+
+"""Package description goes here.  You can use PlDoc markup.
+""" .
+
+