source: Dev/trunk/rdfapi/vocabulary/RSS.php @ 12

Last change on this file since 12 was 12, checked in by basvannuland, 14 years ago

Added RAP RDF API
Added RDF reader writer for save and load survey

File size: 943 bytes
Line 
1<?php
2/**
3*   RSS Vocabulary
4*
5*   @version $Id: RSS.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
10*   RSS.
11*   For details about RSS see: http://purl.org/rss/1.0/.
12*   Using the wrapper allows you to define all aspects of
13*   the vocabulary in one spot, simplifing implementation and
14*   maintainence.
15*/
16// RSS concepts
17$RSS_channel = new Resource(RSS_NS . 'channel');
18$RSS_image = new Resource(RSS_NS . 'image');
19$RSS_item = new Resource(RSS_NS . 'item');
20$RSS_textinput = new Resource(RSS_NS . 'textinput');
21
22$RSS_items = new Resource(RSS_NS . 'items');
23$RSS_title = new Resource(RSS_NS . 'title');
24$RSS_link = new Resource(RSS_NS . 'link');
25$RSS_url = new Resource(RSS_NS . 'url');
26$RSS_description = new Resource(RSS_NS . 'description');
27$RSS_name = new Resource(RSS_NS . 'name');
28
29
30
31
32
33
34?>
Note: See TracBrowser for help on using the repository browser.