source: trunk/src/unit_tests/atom-conf.lisp

Last change on this file was 328, checked in by lgiessmann, 13 years ago

fixed ticket #75 --> changed license terms from LGPL to LLGPL in the trunk tree

  • Property svn:eol-style set to native
File size: 1.9 KB
Line 
1;;+-----------------------------------------------------------------------------
2;;+  Isidorus
3;;+  (c) 2008-2010 Marc Kuester, Christoph Ludwig, Lukas Georgieff
4;;+
5;;+  Isidorus is freely distributable under the LLGPL license.
6;;+  You can find a detailed description in trunk/docs/LLGPL-LICENSE.txt and
7;;+  trunk/docs/LGPL-LICENSE.txt.
8;;+-----------------------------------------------------------------------------
9
10(in-package :atom)
11(defsite psi.egovpt.org
12  ;;(base-url "http://london.ztt.fh-worms.de:8000") ;the base-url
13  ;;sbould be automatically generated from the hostname hunchentoot is
14  ;;running at
15  (author "Isidor")
16  (title "Topicmaps on psi.egovpt.org")
17  (relative-path "feeds")
18
19
20  (collection-feed 
21   (id "http://psi.egovpt.org/tm/egov-ontology")
22   (title "eGov Reference Ontology")
23   (relative-path "egov-ontology")
24   (author "Isidor")
25   (source-locator-prefix "http://psi.egovpt.org/tm/egov-ontology/")
26   
27   (snapshots-feed
28    (id "http://psi.egovpt.org/tm/egov-ontology/snapshots")
29    (title "Snapshots of the Ontology data")
30    (relative-path "snapshots"))
31   
32   (fragments-feed
33    (id "http://psi.egovpt.org/tm/egov-ontology/fragments")
34    (title "A list of all change fragments for the eGov ontology")
35    (relative-path "fragments")))
36     
37  (collection-feed 
38   (id "http://psi.egovpt.org/tm/worms")
39   (title "Data behind the portal of the city of Worms")
40   (relative-path "worms")
41   (author "Isidor")
42   (source-locator-prefix "http://psi.egovpt.org/tm/worms/")
43   (dependency "http://london.ztt.fh-worms.de:8000/feeds/egov-ontology")
44   
45   (snapshots-feed 
46    (id "http://psi.egovpt.org/tm/worms/snapshots")
47    (title "Snapshots of the Worms data")
48    (relative-path "snapshots"))
49   
50   (fragments-feed
51    (id "http://psi.egovpt.org/tm/worms/fragments")
52    (title "A list of all change fragments for the Worms data")
53    (relative-path "fragments")))
54 
55  )
56
57 
58
59 
60     
61   
Note: See TracBrowser for help on using the repository browser.