foaf_user/commit

Renamed the package

authorJan Wielemaker
Mon Nov 8 16:43:54 2010 +0100
committerJan Wielemaker
Mon Nov 8 16:43:54 2010 +0100
commit7d20ec6f27d3da550d87d1c9c10c93d3af5cef64
treee343bfa9e28a665e3d30a5e95c73ffc83a2f3a95
parent71af76ffd876d2f54d498278f2790ff43ceded7e
Diff style: patch stat
diff --git a/applications/user_account.pl b/applications/foaf_user_profile.pl
similarity index 99%
rename from applications/user_account.pl
rename to applications/foaf_user_profile.pl
index c72f6d9..d3ea667 100644
--- a/applications/user_account.pl
+++ b/applications/foaf_user_profile.pl
@@ -28,7 +28,7 @@
     the GNU General Public License.
 */
 
-:- module(foaf_profile, []).
+:- module(foaf_user_profile, []).
 :- use_bundle(html_page).
 :- use_module(user(user_db)).
 :- use_module(library(semweb/rdf_db)).
diff --git a/config-available/DEFAULTS b/config-available/DEFAULTS
index c97fbcb..609b3c6 100644
--- a/config-available/DEFAULTS
+++ b/config-available/DEFAULTS
@@ -1 +1 @@
-config(account, link).
+config(foaf_user, link).
diff --git a/config-available/account.pl b/config-available/foaf_user.pl
similarity index 84%
rename from config-available/account.pl
rename to config-available/foaf_user.pl
index 628bf70..57bf508 100644
--- a/config-available/account.pl
+++ b/config-available/foaf_user.pl
@@ -1,5 +1,5 @@
 :- module(conf_account, []).
-:- use_module(account(applications/user_account)).
+:- use_module(account(applications/foaf_user_profile)).
 :- use_module(user(user_db)).
 :- use_module(cliopatria(hooks)).
 
diff --git a/rdf/cpack/foaf_user.ttl b/rdf/cpack/foaf_user.ttl
new file mode 100644
index 0000000..1f51844
--- /dev/null
+++ b/rdf/cpack/foaf_user.ttl
@@ -0,0 +1,17 @@
+@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix cpack:   <http://www.swi-prolog.org/cliopatria/cpack#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+
+<> a cpack:Application ;
+	cpack:name "user_foaf" ;
+	dcterms:title "FOAF profiles for accounts" ;
+	cpack:description """Manage and view local accounts as FOAF profiles""" ;
+	cpack:author <http://www.swi-prolog.org/cliopatria/user/jan> ;
+	cpack:primaryRepository
+	    [ a cpack:GitRepository ;
+	      cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/foaf_user.git>
+	    ] .
+
+
+