Skip to content

Commit

Permalink
Installed template
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Wielemaker authored and Jan Wielemaker committed Dec 10, 2010
0 parents commit 4b9bf07
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions config-available/DEFAULTS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
config(statistics, link).
5 changes: 5 additions & 0 deletions config-available/statistics.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
:- module(conf_statistics, []).

/** <module> Gather statistical information
*/

30 changes: 30 additions & 0 deletions rdf/cpack/statistics.ttl
Original file line number Diff line number Diff line change
@@ -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.
""" .


0 comments on commit 4b9bf07

Please sign in to comment.