source: Dev/branches/rest-dojo-ui/server/rdfapi/vocabulary/RSS.php @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

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.