yui3/commit

Installed template

authorMichiel Hildebrand
Fri Jan 21 17:28:27 2011 +0100
committerMichiel Hildebrand
Fri Jan 21 17:28:27 2011 +0100
commit286b220725fe6b46f574d6276bb8b7f39619d88a
treeebba3aaf03743fb381e3b406ea99fe6bc5be026e
parent
Diff style: patch stat
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
new file mode 100644
index 0000000000..211fc5e763
--- /dev/null
+++ b/config-available/DEFAULTS
@@ -0,0 +1 @@
+config(yui3, link).
diff --git a/config-available/yui3.pl b/config-available/yui3.pl
new file mode 100644
index 0000000000..9f1ccc4723
--- /dev/null
+++ b/config-available/yui3.pl
@@ -0,0 +1,5 @@
+:- module(conf_yui3, []).
+
+/** <module> YAHOO User Interface library version 3
+*/
+
diff --git a/rdf/cpack/yui3.ttl b/rdf/cpack/yui3.ttl
new file mode 100644
index 0000000000..844b204e64
--- /dev/null
+++ b/rdf/cpack/yui3.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/yui3.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 "yui3" ;
+	dcterms:title "YAHOO User Interface library version 3" ;
+	cpack:author [ a foaf:Person ;
+		       foaf:name "@FOAFNAME@" ;
+		       foaf:mbox "@FOAFMBOX@" ;
+		     ] ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <@FETCHREPOSITORY@>
+	    ] ;
+	cpack:description
+
+"""The package description goes here.  You can use PlDoc Wiki markup.
+""" .
+
+