source: trunk/src/unit_tests/reification_xtm2.0.xtm

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

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

  • Property svn:executable set to *
File size: 3.6 KB
Line 
1<?xml version="1.0"?>
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<tm:topicMap xmlns:tm="http://www.topicmaps.org/xtm/" version="2.0">
15  <tm:topic id="homer">
16    <tm:subjectIdentifier href="http://simpsons.tv/homer"/>
17    <tm:name reifier="http://simpsons.tv/homer-name">
18      <tm:value>Homer Simpson</tm:value>
19      <tm:variant reifier="http://simpsons.tv/homer-name-variant">
20        <tm:scope><tm:topicRef href="#fullName"/></tm:scope>
21        <tm:resourceData>Homer Jay Simpson</tm:resourceData>
22      </tm:variant>
23    </tm:name>
24    <tm:occurrence reifier="http://simpsons.tv/homer-occurrence">
25      <tm:type><tm:topicRef href="#profession"/></tm:type>
26      <tm:resourceData>Safety Inspector</tm:resourceData>
27    </tm:occurrence>
28  </tm:topic>
29
30  <tm:topic id="marge">
31    <tm:subjectIdentifier href="http://simpsons.tv/marge"/>
32    <tm:name>
33      <tm:value>Marge Simpson</tm:value>
34      <tm:variant>
35        <tm:scope><tm:topicRef href="#fullName"/></tm:scope>
36        <tm:resourceData>Marjorie Simpson</tm:resourceData>
37      </tm:variant>
38    </tm:name>
39    <tm:occurrence>
40      <tm:type><tm:topicRef href="#profession"/></tm:type>
41      <tm:resourceData>Housewife</tm:resourceData>
42    </tm:occurrence>
43  </tm:topic>
44
45  <tm:topic id="fullName">
46    <tm:subjectIdentifier href="http://simpsons.tv/fullName"/>
47  </tm:topic>
48
49  <tm:topic id="profession">
50    <tm:subjectIdentifier href="http://simpsons.tv/profession"/>
51  </tm:topic>
52
53  <tm:topic id="married">
54    <tm:subjectIdentifier href="http://simpsons.tv/married"/>
55  </tm:topic>
56
57  <tm:topic id="husband">
58    <tm:subjectIdentifier href="http://simpsons.tv/husband"/>
59  </tm:topic>
60
61  <tm:topic id="wife">
62    <tm:subjectIdentifier href="http://simpsons.tv/wife"/>
63  </tm:topic>
64
65  <tm:association reifier="http://simpsons.tv/married-association">
66    <tm:type><tm:topicRef href="#married"/></tm:type>
67    <tm:role reifier="http://simpsons.tv/married-husband-role">
68      <tm:type><tm:topicRef href="#husband"/></tm:type>
69      <tm:topicRef href="#homer"/>
70    </tm:role>
71    <tm:role>
72      <tm:type><tm:topicRef href="#wife"/></tm:type>
73      <tm:topicRef href="#marge"/>
74    </tm:role>
75  </tm:association>
76
77
78  <!-- === reifier-topics ================================================== -->
79  <tm:topic id="homer-name-reifier">
80    <tm:itemIdentity href="http://simpsons.tv/homer-name"/>
81  </tm:topic>
82
83  <tm:topic id="homer-name-variant-reifier">
84    <tm:itemIdentity href="http://simpsons.tv/homer-name-variant"/>
85  </tm:topic>
86
87  <tm:topic id="homer-occurrence-reifier">
88    <tm:itemIdentity href="http://simpsons.tv/homer-occurrence"/>
89  </tm:topic>
90
91  <tm:topic id="married-reifier">
92    <tm:itemIdentity href="http://simpsons.tv/married-association"/>
93  </tm:topic>
94
95  <tm:topic id="married-husband-reifier">
96    <tm:itemIdentity href="http://simpsons.tv/married-husband-role"/>
97  </tm:topic>
98</tm:topicMap>
Note: See TracBrowser for help on using the repository browser.