1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <!-- ======================================================================= --> |
---|
3 | <!-- Isidorus --> |
---|
4 | <!-- (c) 2008-2010 Marc Kuester, Christoph Ludwig, Lukas Georgieff --> |
---|
5 | <!-- --> |
---|
6 | <!-- Isidorus is freely distributable under the LLGPL license. --> |
---|
7 | <!-- This ajax module uses the frameworks PrototypeJs and Scriptaculous, --> |
---|
8 | <!-- both are distributed under the MIT license. --> |
---|
9 | <!-- You can find a detailed description in trunk/docs/LLGPL-LICENSE.txt, --> |
---|
10 | <!-- trunk/docs/LGPL-LICENSE.txt and in --> |
---|
11 | <!-- trunk/src/ajax/javascripts/external/MIT-LICENSE.txt. --> |
---|
12 | <!-- ======================================================================= --> |
---|
13 | |
---|
14 | <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
---|
15 | xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" |
---|
16 | xmlns:poems="http://some.where/" |
---|
17 | xmlns:arcs="http://some.where/relationship/" |
---|
18 | xmlns:types="http://some.where/types/" |
---|
19 | xml:base="http://some.where/"> |
---|
20 | <!-- === Goethe ========================================================== --> |
---|
21 | <rdf:Description rdf:about="author/Goethe"> |
---|
22 | <rdf:type rdf:resource="types/Author"/> |
---|
23 | <arcs:firstName>Johann Wolfgang</arcs:firstName> |
---|
24 | <arcs:lastName rdf:parseType="Literal">von Goethe</arcs:lastName> |
---|
25 | |
---|
26 | <!-- === born event ==================================================== --> |
---|
27 | <arcs:born> |
---|
28 | <types:Event> |
---|
29 | <arcs:date rdf:datatype="http://www.w3.org/2001/XMLSchema#date">28.08.1749</arcs:date> |
---|
30 | <arcs:place> |
---|
31 | <rdf:Description rdf:about="/metropolis/FrankfurtMain"> |
---|
32 | <rdf:type> |
---|
33 | <rdf:Description rdf:about="/types/Metropolis"> |
---|
34 | <rdfs:subClassOf rdf:resource="/types/Region"/> |
---|
35 | </rdf:Description> |
---|
36 | </rdf:type> |
---|
37 | <arcs:fullName>Frankfurt am Main</arcs:fullName> |
---|
38 | <arcs:population rdf:datatype="http://www.w3.org/2001/XMLSchema#unsignedLong">659000</arcs:population> |
---|
39 | <arcs:locatedIn> |
---|
40 | <rdf:Description rdf:about="http://some.where/country/Germany"> |
---|
41 | <rdf:type> |
---|
42 | <rdf:Description rdf:about="http://some.where/types/Country"></rdf:Description> |
---|
43 | </rdf:type> |
---|
44 | <arcs:nativeName xml:lang="de">Deutschland</arcs:nativeName> |
---|
45 | <arcs:population rdf:datatype="http://www.w3.org/2001/XMLSchema#unsignedLong">82099232</arcs:population> |
---|
46 | <arcs:officialese rdf:resource="language/German"/> |
---|
47 | <arcs:capital> |
---|
48 | <rdf:Description rdf:about="http://some.where/metropolis/Berlin"> |
---|
49 | <rdf:type> |
---|
50 | <rdf:Description rdf:about="http://some.where/types/Metropolis"/> |
---|
51 | </rdf:type> |
---|
52 | <arcs:locatedIn rdf:resource="/country/Germany"/> |
---|
53 | <arcs:population rdf:datatype="http://www.w3.org/2001/XMLSchema#unsignedLong">3431473</arcs:population> |
---|
54 | </rdf:Description> |
---|
55 | </arcs:capital> |
---|
56 | </rdf:Description> |
---|
57 | </arcs:locatedIn> |
---|
58 | </rdf:Description> |
---|
59 | </arcs:place> |
---|
60 | </types:Event> |
---|
61 | </arcs:born> |
---|
62 | |
---|
63 | <!-- === died event ==================================================== --> |
---|
64 | <arcs:died> |
---|
65 | <rdf:Description xml:base="http://some.where/types/"> |
---|
66 | <rdf:type rdf:resource="Event"/> |
---|
67 | <arcs:date rdf:datatype="#date" xml:base="http://www.w3.org/2001/XMLSchema">22.03.1832</arcs:date> |
---|
68 | <arcs:place xml:base=""> |
---|
69 | <types:City rdf:about="http://some.where/city/Weimar" arcs:fullName="Weimar"> |
---|
70 | <rdfs:subClassOf rdf:resource="http://some.where/types/Region"/> |
---|
71 | <arcs:population rdf:datatype="http://www.w3.org/2001/XMLSchema#unsignedLong">64720</arcs:population> |
---|
72 | <arcs:locatedIn rdf:resource="http://some.where/country/Germany"/> |
---|
73 | </types:City> |
---|
74 | </arcs:place> |
---|
75 | </rdf:Description> |
---|
76 | </arcs:died> |
---|
77 | |
---|
78 | <!-- === wrote bag ===================================================== --> |
---|
79 | <arcs:wrote> |
---|
80 | <rdf:Bag rdf:nodeID="goethe_literature"> |
---|
81 | <rdf:li> |
---|
82 | <types:Poem rdf:about="http://some.where/poem/Der_Zauberlehrling"> |
---|
83 | <arcs:title rdf:parseType="Literal" xml:lang="de">Der Zauberlehrling</arcs:title> |
---|
84 | <arcs:dateRange rdf:parseType="Resource" xml:base="http://www.w3.org/2001/XMLSchema"> <!-- rdf:parseType="resource" == bland_node --> |
---|
85 | <arcs:start rdf:datatype="#date">01.01.1797</arcs:start> |
---|
86 | <arcs:end rdf:datatype="#date">31.12.1797</arcs:end> |
---|
87 | </arcs:dateRange> |
---|
88 | <arcs:content xml:lang="de"><![CDATA[Hat der alte Hexenmeister ...]]></arcs:content> |
---|
89 | </types:Poem> |
---|
90 | </rdf:li> |
---|
91 | </rdf:Bag> |
---|
92 | </arcs:wrote> |
---|
93 | </rdf:Description> |
---|
94 | |
---|
95 | <!-- referenced ressources by goethe --> |
---|
96 | <rdf:Description rdf:nodeID="goethe_literature"> |
---|
97 | <rdf:li> |
---|
98 | <types:Ballad rdf:about="http://some.where/ballad/Der_Erlkoenig" arcs:title="Der Erlkönig" xml:lang="de"> |
---|
99 | <arcs:dateRange rdf:parseType="Resource" xml:base="http://www.w3.org/2001/XMLSchema"> |
---|
100 | <arcs:start rdf:datatype="#date">01.01.1782</arcs:start> |
---|
101 | <arcs:end rdf:datatype="#date">31.12.1782</arcs:end> |
---|
102 | </arcs:dateRange> |
---|
103 | <arcs:content rdf:datatype="http://www.w3.org/2001/XMLSchema#string" xml:lang="de">Wer reitet so spÀt durch Nacht und Wind? ...</arcs:content> |
---|
104 | </types:Ballad> |
---|
105 | </rdf:li> |
---|
106 | <rdf:li> |
---|
107 | <rdf:Description rdf:about="http://some.where/poem/Prometheus" arcs:title="Prometheus"> |
---|
108 | <rdf:type rdf:resource="/types/Poem"/> |
---|
109 | <arcs:dateRange> |
---|
110 | <rdf:Description xml:base="http://does.not.exist"> |
---|
111 | <arcs:start rdf:datatype="http://www.w3.org/2001/XMLSchema#date">01.01.1772</arcs:start> |
---|
112 | <arcs:end rdf:datatype="http://www.w3.org/2001/XMLSchema#date">31.12.1774</arcs:end> |
---|
113 | </rdf:Description> |
---|
114 | </arcs:dateRange> |
---|
115 | <arcs:content rdf:parseType="Literal" xml:lang="de"><![CDATA[ Bedecke deinen Himmel, Zeus, ... ]]></arcs:content> |
---|
116 | </rdf:Description> |
---|
117 | </rdf:li> |
---|
118 | </rdf:Description> |
---|
119 | |
---|
120 | <rdf:Description rdf:about="http://some.where/language/German"> |
---|
121 | <rdf:type rdf:resource="types/Language"/> |
---|
122 | </rdf:Description> |
---|
123 | </rdf:RDF> |
---|