source: Dev/branches/rest-dojo-ui/jQueryUI/server/rdfapi/vocabulary/FOAF.php @ 312

Last change on this file since 312 was 312, checked in by jkraaijeveld, 13 years ago
File size: 4.0 KB
Line 
1<?php
2/**
3*   Friend of a Friend (FOAF) Vocabulary (Resource)
4*
5*   @version $Id: FOAF.php 431 2007-05-01 15:49:19Z cweiske $
6*   @author Tobias Gauß (tobias.gauss@web.de)
7*   @package vocabulary
8*
9*   Wrapper, defining resources for all terms of the
10*   Friend of a Friend project (FOAF).
11*   For details about FOAF see: http://xmlns.com/foaf/0.1/.
12*   Using the wrapper allows you to define all aspects of
13*   the vocabulary in one spot, simplifing implementation and
14*   maintainence.
15*/
16
17
18
19// FOAF concepts
20$FOAF_Agent = new Resource(FOAF_NS . 'Agent');
21$FOAF_Document = new Resource(FOAF_NS . 'Document');
22$FOAF_Group = new Resource(FOAF_NS . 'Group');
23$FOAF_Image = new Resource(FOAF_NS . 'Image');
24$FOAF_OnlineAccount = new Resource(FOAF_NS . 'OnlineAccount');
25$FOAF_OnlineChatAccount = new Resource(FOAF_NS . 'OnlineChatAccount');
26$FOAF_OnlineEcommerceAccount = new Resource(FOAF_NS . 'OnlineEcommerceAccount');
27$FOAF_OnlineGamingAccount = new Resource(FOAF_NS . 'OnlineGamingAccount');
28$FOAF_Organization = new Resource(FOAF_NS . 'Organization');
29$FOAF_Person = new Resource(FOAF_NS . 'Person');
30$FOAF_PersonalProfileDocument = new Resource(FOAF_NS . 'PersonalProfileDocument');
31$FOAF_Project = new Resource(FOAF_NS . 'Project');
32$FOAF_accountName = new Resource(FOAF_NS . 'accountName');
33$FOAF_accountServiceHomepage = new Resource(FOAF_NS . 'accountServiceHomepage');
34$FOAF_aimChatID = new Resource(FOAF_NS . 'aimChatID');
35$FOAF_based_near = new Resource(FOAF_NS . 'based_near');
36$FOAF_currentProject = new Resource(FOAF_NS . 'currentProject');
37$FOAF_depiction = new Resource(FOAF_NS . 'depiction');
38$FOAF_depicts = new Resource(FOAF_NS . 'depicts');
39$FOAF_dnaChecksum = new Resource(FOAF_NS . 'dnaChecksum');
40$FOAF_family_name = new Resource(FOAF_NS . 'family_name');
41$FOAF_firstName = new Resource(FOAF_NS . 'firstName');
42$FOAF_fundedBy = new Resource(FOAF_NS . 'fundedBy');
43$FAOF_geekcode = new Resource(FOAF_NS . 'geekcode');
44$FOAF_gender = new Resource(FOAF_NS . 'gender');
45$FOAF_givenname = new Resource(FOAF_NS . 'givenname');
46$FOAF_holdsAccount = new Resource(FOAF_NS . 'holdsAccount');
47$FOAF_homepage = new Resource(FOAF_NS . 'homepage');
48$FOAF_icqChatID = new Resource(FOAF_NS . 'icqChatID');
49$FOAF_img = new Resource(FOAF_NS . 'img');
50$FOAF_interest = new Resource(FOAF_NS . 'interest');
51$FOAF_jabberID = new Resource(FOAF_NS . 'jabberID');
52$FOAF_knows = new Resource(FOAF_NS . 'knows');
53$FOAF_logo = new Resource(FOAF_NS . 'logo');
54$FOAF_made = new Resource(FOAF_NS . 'made');
55$FOAF_maker = new Resource(FOAF_NS . 'maker');
56$FOAF_mbox = new Resource(FOAF_NS . 'mbox');
57$FOAF_mbox_sha1sum = new Resource(FOAF_NS . 'mbox_sha1sum');
58$FOAF_member = new Resource(FOAF_NS . 'member');
59$FOAF_membershipClass =new Resource(FOAF_NS . 'membershipClass');
60$FOAF_msnChatID = new Resource(FOAF_NS . 'msnChatID');
61$FOAF_myersBriggs = new Resource(FOAF_NS . 'myersBriggs');
62$FOAF_name = new Resource(FOAF_NS . 'name');
63$FOAF_nick = new Resource(FOAF_NS . 'nick');
64$FOAF_page = new Resource(FOAF_NS . 'page');
65$FOAF_pastProject = new Resource(FOAF_NS . 'pastProject');
66$FOAF_phone = new Resource(FOAF_NS . 'phone');
67$FOAF_plan = new Resource(FOAF_NS . 'plan');
68$FOAF_primaryTopic = new Resource(FOAF_NS . 'primaryTopic');
69$FOAF_publications = new Resource(FOAF_NS . 'publications');
70$FOAF_schoolHomepage = new Resource (FOAF_NS . 'schoolHomepage');
71$FOAF_sha1 = new Resource (FOAF_NS . 'sha1');
72$FOAF_surname = new Resource (FOAF_NS . 'surname');
73$FOAF_theme = new Resource(FOAF_NS . 'theme');
74$FOAF_thumbnail = new Resource(FOAF_NS . 'thumbnail');
75$FOAF_tipjar = new Resource(FOAF_NS . 'tipjar');
76$FOAF_title = new Resource(FOAF_NS . 'title');
77$FOAF_topic = new Resource(FOAF_NS . 'topic');
78$FOAF_topic_interest = new Resource(FOAF_NS . 'topic_interest');
79$FOAF_weblog = new Resource(FOAF_NS . 'weblog');
80$FOAF_workInfoHomepage = new Resource(FOAF_NS . 'workInfoHomepage');
81$FOAF_workplaceHomepage = new Resource(FOAF_NS . 'workplaceHomepage');
82$FOAF_yahooChatID = new Resource(FOAF_NS . 'yahooChatID');
83
84
85
86
87?>
Note: See TracBrowser for help on using the repository browser.