talia_core 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. data/VERSION.yml +4 -0
  2. data/config/database.yml +19 -0
  3. data/config/database.yml.example +35 -0
  4. data/config/rdfstore.yml +13 -0
  5. data/config/rdfstore.yml.example +13 -0
  6. data/config/rdfstore.yml.rdflite_example +16 -0
  7. data/config/rdfstore.yml.redland_example +46 -0
  8. data/config/talia_core.yml +14 -0
  9. data/config/talia_core.yml.example +42 -0
  10. data/generators/generator_helpers.rb +49 -0
  11. data/generators/talia_admin/USAGE +1 -0
  12. data/generators/talia_admin/talia_admin_generator.rb +19 -0
  13. data/generators/talia_admin/templates/controllers/admin/background_controller.rb +50 -0
  14. data/generators/talia_admin/templates/controllers/admin/custom_templates_controller.rb +25 -0
  15. data/generators/talia_admin/templates/controllers/admin/locales_controller.rb +15 -0
  16. data/generators/talia_admin/templates/controllers/admin/sources_controller.rb +71 -0
  17. data/generators/talia_admin/templates/controllers/admin/translations_controller.rb +61 -0
  18. data/generators/talia_admin/templates/controllers/admin/users_controller.rb +48 -0
  19. data/generators/talia_admin/templates/controllers/admin_controller.rb +7 -0
  20. data/generators/talia_admin/templates/helpers/admin/background_helper.rb +60 -0
  21. data/generators/talia_admin/templates/helpers/admin/custom_templates_helper.rb +5 -0
  22. data/generators/talia_admin/templates/helpers/admin/locales_helper.rb +2 -0
  23. data/generators/talia_admin/templates/helpers/admin/sources_helper.rb +65 -0
  24. data/generators/talia_admin/templates/helpers/admin/translations_helper.rb +51 -0
  25. data/generators/talia_admin/templates/helpers/admin/users_helper.rb +2 -0
  26. data/generators/talia_admin/templates/helpers/admin_helper.rb +11 -0
  27. data/generators/talia_admin/templates/public/images/backend/body_bg.gif +0 -0
  28. data/generators/talia_admin/templates/public/images/backend/footer_bg.gif +0 -0
  29. data/generators/talia_admin/templates/public/images/backend/header.jpg +0 -0
  30. data/generators/talia_admin/templates/public/images/backend/header_bg.gif +0 -0
  31. data/generators/talia_admin/templates/public/images/backend/menu.jpg +0 -0
  32. data/generators/talia_admin/templates/public/images/backend/menu_bg.gif +0 -0
  33. data/generators/talia_admin/templates/public/images/backend/opednid.gif +0 -0
  34. data/generators/talia_admin/templates/public/images/backend/page_bg.jpg +0 -0
  35. data/generators/talia_admin/templates/public/images/backend/triangolino.gif +0 -0
  36. data/generators/talia_admin/templates/public/images/backend/triangolino_full.gif +0 -0
  37. data/generators/talia_admin/templates/public/javascripts/backend.js +24 -0
  38. data/generators/talia_admin/templates/public/javascripts/lowpro.js +321 -0
  39. data/generators/talia_admin/templates/public/stylesheets/backend.css +466 -0
  40. data/generators/talia_admin/templates/test/fixtures/users.yml +32 -0
  41. data/generators/talia_admin/templates/test/functional/admin/custom_templates_controller_test.rb +8 -0
  42. data/generators/talia_admin/templates/test/functional/admin/locales_controller_test.rb +35 -0
  43. data/generators/talia_admin/templates/test/functional/admin/sources_controller_test.rb +109 -0
  44. data/generators/talia_admin/templates/test/functional/admin/translations_controller_test.rb +93 -0
  45. data/generators/talia_admin/templates/test/functional/admin/users_controller_test.rb +67 -0
  46. data/generators/talia_admin/templates/test/functional/admin_controller_test.rb +15 -0
  47. data/generators/talia_admin/templates/test/unit/user_test.rb +134 -0
  48. data/generators/talia_admin/templates/views/admin/background/_finished.html.erb +9 -0
  49. data/generators/talia_admin/templates/views/admin/background/_pending.html.erb +1 -0
  50. data/generators/talia_admin/templates/views/admin/background/_progress.html.erb +15 -0
  51. data/generators/talia_admin/templates/views/admin/background/_running.html.erb +11 -0
  52. data/generators/talia_admin/templates/views/admin/background/environment.html.erb +12 -0
  53. data/generators/talia_admin/templates/views/admin/background/show.html.erb +17 -0
  54. data/generators/talia_admin/templates/views/admin/background/stderr.html.erb +6 -0
  55. data/generators/talia_admin/templates/views/admin/background/stdin.html.erb +6 -0
  56. data/generators/talia_admin/templates/views/admin/background/stdout.html.erb +6 -0
  57. data/generators/talia_admin/templates/views/admin/custom_templates/_content_form_column.rhtml +2 -0
  58. data/generators/talia_admin/templates/views/admin/custom_templates/_template_type_form_column.rhtml +2 -0
  59. data/generators/talia_admin/templates/views/admin/index.html.erb +5 -0
  60. data/generators/talia_admin/templates/views/admin/locales/new.html.erb +9 -0
  61. data/generators/talia_admin/templates/views/admin/sources/_data.html.erb +6 -0
  62. data/generators/talia_admin/templates/views/admin/sources/_data_form.html.erb +15 -0
  63. data/generators/talia_admin/templates/views/admin/sources/_form.html.erb +7 -0
  64. data/generators/talia_admin/templates/views/admin/sources/_list.html.erb +3 -0
  65. data/generators/talia_admin/templates/views/admin/sources/_notice.html.erb +1 -0
  66. data/generators/talia_admin/templates/views/admin/sources/_predicate.html.erb +22 -0
  67. data/generators/talia_admin/templates/views/admin/sources/_predicates.html.erb +15 -0
  68. data/generators/talia_admin/templates/views/admin/sources/_sources.html.erb +17 -0
  69. data/generators/talia_admin/templates/views/admin/sources/_upload.html.erb +6 -0
  70. data/generators/talia_admin/templates/views/admin/sources/edit.html.erb +6 -0
  71. data/generators/talia_admin/templates/views/admin/sources/index.html.erb +5 -0
  72. data/generators/talia_admin/templates/views/admin/translations/_new_translation.html.erb +7 -0
  73. data/generators/talia_admin/templates/views/admin/translations/_translation.html.erb +10 -0
  74. data/generators/talia_admin/templates/views/admin/translations/edit.html.erb +16 -0
  75. data/generators/talia_admin/templates/views/admin/users/_form.html.erb +10 -0
  76. data/generators/talia_admin/templates/views/admin/users/_form_roles.html.erb +8 -0
  77. data/generators/talia_admin/templates/views/admin/users/edit.html.erb +12 -0
  78. data/generators/talia_admin/templates/views/admin/users/index.html.erb +22 -0
  79. data/generators/talia_admin/templates/views/admin/users/new.html.erb +5 -0
  80. data/generators/talia_admin/templates/views/admin/users/show.html.erb +6 -0
  81. data/generators/talia_admin/templates/views/layouts/admin.html.erb +56 -0
  82. data/generators/talia_base/USAGE +5 -0
  83. data/generators/talia_base/talia_base_generator.rb +62 -0
  84. data/generators/talia_base/templates/app/controllers/custom_templates_controller.rb +27 -0
  85. data/generators/talia_base/templates/app/controllers/ontologies_controller.rb +13 -0
  86. data/generators/talia_base/templates/app/controllers/sessions_controller.rb +90 -0
  87. data/generators/talia_base/templates/app/controllers/source_data/show.html.erb +2 -0
  88. data/generators/talia_base/templates/app/controllers/source_data_controller.rb +43 -0
  89. data/generators/talia_base/templates/app/controllers/sources_controller.rb +62 -0
  90. data/generators/talia_base/templates/app/controllers/types_controller.rb +23 -0
  91. data/generators/talia_base/templates/app/helpers/custom_templates_helper.rb +2 -0
  92. data/generators/talia_base/templates/app/helpers/ontologies_helper.rb +2 -0
  93. data/generators/talia_base/templates/app/helpers/sessions_helper.rb +2 -0
  94. data/generators/talia_base/templates/app/helpers/source_data/show.html.erb +2 -0
  95. data/generators/talia_base/templates/app/helpers/source_data_helper.rb +2 -0
  96. data/generators/talia_base/templates/app/helpers/sources_helper.rb +39 -0
  97. data/generators/talia_base/templates/app/helpers/types_helper.rb +2 -0
  98. data/generators/talia_base/templates/app/views/ontologies/index.builder +10 -0
  99. data/generators/talia_base/templates/app/views/ontologies/show.builder +7 -0
  100. data/generators/talia_base/templates/app/views/sessions/new.html.erb +33 -0
  101. data/generators/talia_base/templates/app/views/source_data/show.html.erb +2 -0
  102. data/generators/talia_base/templates/app/views/sources/_form.html.erb +15 -0
  103. data/generators/talia_base/templates/app/views/sources/edit.html.erb +9 -0
  104. data/generators/talia_base/templates/app/views/sources/index.html.erb +2 -0
  105. data/generators/talia_base/templates/app/views/sources/new.html.erb +8 -0
  106. data/generators/talia_base/templates/app/views/sources/show.html.erb +19 -0
  107. data/generators/talia_base/templates/app/views/types/index.html.erb +4 -0
  108. data/generators/talia_base/templates/app/views/types/show.html.erb +3 -0
  109. data/generators/talia_base/templates/config/routes.rb +83 -0
  110. data/generators/talia_base/templates/config/talia_initializer.rb +8 -0
  111. data/generators/talia_base/templates/migrations/bj_migration.rb +10 -0
  112. data/generators/talia_base/templates/migrations/constraint_migration.rb +24 -0
  113. data/generators/talia_base/templates/migrations/create_active_sources.rb +15 -0
  114. data/generators/talia_base/templates/migrations/create_custom_templates.rb +17 -0
  115. data/generators/talia_base/templates/migrations/create_data_records.rb +27 -0
  116. data/generators/talia_base/templates/migrations/create_open_id.rb +26 -0
  117. data/generators/talia_base/templates/migrations/create_progress_jobs.rb +18 -0
  118. data/generators/talia_base/templates/migrations/create_roles.rb +20 -0
  119. data/generators/talia_base/templates/migrations/create_semantic_properties.rb +14 -0
  120. data/generators/talia_base/templates/migrations/create_semantic_relations.rb +17 -0
  121. data/generators/talia_base/templates/migrations/create_sessions.rb +16 -0
  122. data/generators/talia_base/templates/migrations/create_users.rb +20 -0
  123. data/generators/talia_base/templates/migrations/create_workflows.rb +28 -0
  124. data/generators/talia_base/templates/migrations/populate_users.rb +11 -0
  125. data/generators/talia_base/templates/migrations/upgrade_relations.rb +12 -0
  126. data/generators/talia_base/templates/ontologies/hyper_ontology.owl +1462 -0
  127. data/generators/talia_base/templates/ontologies/hyper_ontology.pprj +9351 -0
  128. data/generators/talia_base/templates/ontologies/hyper_ontology.repository +6 -0
  129. data/generators/talia_base/templates/ontologies/scholar_0.1.owl +109 -0
  130. data/generators/talia_base/templates/script/configure_talia +292 -0
  131. data/generators/talia_base/templates/script/prepare_images +100 -0
  132. data/generators/talia_base/templates/talia.sh +51 -0
  133. data/generators/talia_base/templates/tasks/talia_core.rk +1 -0
  134. data/lib/loader_helper.rb +9 -0
  135. data/lib/talia_core.rb +0 -2
  136. data/lib/talia_dependencies.rb +5 -0
  137. data/lib/talia_util/rake_tasks.rb +223 -0
  138. data/tasks/talia_core_tasks.rake +2 -0
  139. metadata +138 -13
@@ -0,0 +1,1462 @@
1
+ <?xml version="1.0"?>
2
+
3
+
4
+ <!DOCTYPE rdf:RDF [
5
+ <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
6
+ <!ENTITY dc "http://purl.org/dc/elements/1.1/" >
7
+ <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
8
+ <!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" >
9
+ <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
10
+ <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
11
+ <!ENTITY protege "http://protege.stanford.edu/plugins/owl/protege#" >
12
+ <!ENTITY HyperOntology "http://trac.talia.discovery-project.eu/wiki/HyperOntology#" >
13
+ ]>
14
+
15
+
16
+ <rdf:RDF xmlns="http://trac.talia.discovery-project.eu/wiki/HyperOntology#"
17
+ xml:base="http://trac.talia.discovery-project.eu/wiki/HyperOntology"
18
+ xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#"
19
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
20
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
21
+ xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
22
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
23
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
24
+ xmlns:HyperOntology="http://trac.talia.discovery-project.eu/wiki/HyperOntology#"
25
+ xmlns:owl="http://www.w3.org/2002/07/owl#">
26
+ <owl:Ontology rdf:about="">
27
+ <owl:imports rdf:resource="http://purl.org/dc/elements/1.1/"/>
28
+ <owl:imports rdf:resource="http://purl.org/dc/terms/"/>
29
+ </owl:Ontology>
30
+
31
+
32
+
33
+ <!--
34
+ ///////////////////////////////////////////////////////////////////////////////////////
35
+ //
36
+ // Annotation properties
37
+ //
38
+ ///////////////////////////////////////////////////////////////////////////////////////
39
+ -->
40
+
41
+ <owl:AnnotationProperty rdf:about="#keyword"/>
42
+
43
+
44
+
45
+ <!--
46
+ ///////////////////////////////////////////////////////////////////////////////////////
47
+ //
48
+ // Object Properties
49
+ //
50
+ ///////////////////////////////////////////////////////////////////////////////////////
51
+ -->
52
+
53
+
54
+
55
+
56
+ <!-- http://purl.org/dc/elements/1.1/relation -->
57
+
58
+ <owl:ObjectProperty rdf:about="&dc;relation"/>
59
+
60
+
61
+
62
+ <!-- http://purl.org/dc/elements/1.1/subject -->
63
+
64
+ <owl:ObjectProperty rdf:about="&dc;subject"/>
65
+
66
+
67
+
68
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#author -->
69
+
70
+ <owl:ObjectProperty rdf:about="#author">
71
+ <rdfs:comment xml:lang="en"
72
+ >The author of a contribution</rdfs:comment>
73
+ <rdfs:range rdf:resource="#Author"/>
74
+ <rdfs:domain rdf:resource="#Contribution"/>
75
+ </owl:ObjectProperty>
76
+
77
+
78
+
79
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#author_position -->
80
+
81
+ <owl:ObjectProperty rdf:about="#author_position">
82
+ <rdfs:comment xml:lang="en"
83
+ >Position of the author</rdfs:comment>
84
+ <rdfs:domain rdf:resource="#Author"/>
85
+ </owl:ObjectProperty>
86
+
87
+
88
+
89
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#category -->
90
+
91
+ <owl:ObjectProperty rdf:about="#category">
92
+ <rdfs:comment xml:lang="en"
93
+ >Assigns a category to a source.</rdfs:comment>
94
+ <rdfs:range rdf:resource="#Category"/>
95
+ <rdfs:domain rdf:resource="#Source"/>
96
+ </owl:ObjectProperty>
97
+
98
+
99
+
100
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#cites -->
101
+
102
+ <owl:ObjectProperty rdf:about="#cites">
103
+ <rdfs:subPropertyOf rdf:resource="&dc;relation"/>
104
+ </owl:ObjectProperty>
105
+
106
+
107
+
108
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#content_type -->
109
+
110
+ <owl:ObjectProperty rdf:about="#content_type">
111
+ <rdfs:comment xml:lang="en"
112
+ >Describes the content of the contribution</rdfs:comment>
113
+ <rdfs:domain rdf:resource="#Contribution"/>
114
+ <rdfs:range rdf:resource="#ContributionContentType"/>
115
+ </owl:ObjectProperty>
116
+
117
+
118
+
119
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#downloadable -->
120
+
121
+ <owl:ObjectProperty rdf:about="#downloadable">
122
+ <rdfs:comment xml:lang="en"
123
+ >Indicates if the media file may be downloaded</rdfs:comment>
124
+ <rdfs:domain rdf:resource="#AvMedia"/>
125
+ <rdfs:range rdf:resource="&xsd;boolean"/>
126
+ </owl:ObjectProperty>
127
+
128
+
129
+
130
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#first_page -->
131
+
132
+ <owl:ObjectProperty rdf:about="#first_page">
133
+ <rdfs:comment xml:lang="en"
134
+ >The first page of a chapter or other element</rdfs:comment>
135
+ <rdfs:domain rdf:resource="#Chapter"/>
136
+ <rdfs:range rdf:resource="#Page"/>
137
+ </owl:ObjectProperty>
138
+
139
+
140
+
141
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#is_in_archive -->
142
+
143
+ <owl:ObjectProperty rdf:about="#is_in_archive">
144
+ <rdfs:comment xml:lang="en"
145
+ >the book is in this archive</rdfs:comment>
146
+ <rdfs:range rdf:resource="#Archive"/>
147
+ <rdfs:domain rdf:resource="#Book"/>
148
+ </owl:ObjectProperty>
149
+
150
+
151
+
152
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#keyword -->
153
+
154
+ <owl:ObjectProperty rdf:about="#keyword">
155
+ <rdfs:comment xml:lang="en"
156
+ >Keyword for grouping purposes.</rdfs:comment>
157
+ <rdfs:subPropertyOf rdf:resource="&dc;subject"/>
158
+ </owl:ObjectProperty>
159
+
160
+
161
+
162
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#language -->
163
+
164
+ <owl:ObjectProperty rdf:about="#language">
165
+ <rdfs:comment xml:lang="en"
166
+ >Language of the contribuation</rdfs:comment>
167
+ <owl:versionInfo xml:lang="en"
168
+ >TODO: Should use controlled vocabulary</owl:versionInfo>
169
+ <rdfs:domain rdf:resource="#Contribution"/>
170
+ </owl:ObjectProperty>
171
+
172
+
173
+
174
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#material -->
175
+
176
+ <owl:ObjectProperty rdf:about="#material">
177
+ <rdfs:comment xml:lang="en"
178
+ >Reference to a related material</rdfs:comment>
179
+ <rdfs:subPropertyOf rdf:resource="&dc;relation"/>
180
+ <rdfs:domain rdf:resource="#Contribution"/>
181
+ <rdfs:range rdf:resource="#Material"/>
182
+ </owl:ObjectProperty>
183
+
184
+
185
+
186
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#material_type -->
187
+
188
+ <owl:ObjectProperty rdf:about="#material_type">
189
+ <rdfs:comment xml:lang="en"
190
+ >Indicates the material type of the Material</rdfs:comment>
191
+ <rdfs:domain rdf:resource="#Material"/>
192
+ <rdfs:range rdf:resource="#StructureElement"/>
193
+ </owl:ObjectProperty>
194
+
195
+
196
+
197
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#note -->
198
+
199
+ <owl:ObjectProperty rdf:about="#note">
200
+ <rdfs:comment xml:lang="en"
201
+ >A note for this paragraph</rdfs:comment>
202
+ <rdfs:range rdf:resource="#Note"/>
203
+ <rdfs:domain rdf:resource="#Paragraph"/>
204
+ </owl:ObjectProperty>
205
+
206
+
207
+
208
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#page -->
209
+
210
+ <owl:ObjectProperty rdf:about="#page">
211
+ <rdfs:comment xml:lang="en"
212
+ >Page to which the Zone belongs</rdfs:comment>
213
+ <rdfs:domain rdf:resource="#Note"/>
214
+ <rdfs:range rdf:resource="#Page"/>
215
+ </owl:ObjectProperty>
216
+
217
+
218
+
219
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#part_of -->
220
+
221
+ <owl:ObjectProperty rdf:about="#part_of">
222
+ <rdfs:comment xml:lang="en"
223
+ >Indicates that one element is part of another</rdfs:comment>
224
+ <rdfs:domain rdf:resource="#Source"/>
225
+ <rdfs:range rdf:resource="#Source"/>
226
+ </owl:ObjectProperty>
227
+
228
+
229
+
230
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#path -->
231
+
232
+ <owl:ObjectProperty rdf:about="#path">
233
+ <rdfs:comment xml:lang="en"
234
+ >The path to which the step belongs</rdfs:comment>
235
+ <rdfs:range rdf:resource="#Path"/>
236
+ <rdfs:domain rdf:resource="#PathStep"/>
237
+ </owl:ObjectProperty>
238
+
239
+
240
+
241
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#path_source -->
242
+
243
+ <owl:ObjectProperty rdf:about="#path_source">
244
+ <rdfs:comment xml:lang="en"
245
+ >The Source related to this path step</rdfs:comment>
246
+ <rdfs:domain rdf:resource="#PathStep"/>
247
+ <rdfs:range rdf:resource="#Source"/>
248
+ </owl:ObjectProperty>
249
+
250
+
251
+
252
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#play_length -->
253
+
254
+ <owl:ObjectProperty rdf:about="#play_length">
255
+ <rdfs:comment xml:lang="en"
256
+ >The play length of this media file.</rdfs:comment>
257
+ <rdfs:domain rdf:resource="#AvMedia"/>
258
+ <rdfs:range rdf:resource="&xsd;time"/>
259
+ </owl:ObjectProperty>
260
+
261
+
262
+
263
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#refers -->
264
+
265
+ <owl:ObjectProperty rdf:about="#refers">
266
+ <rdfs:comment xml:lang="en"
267
+ >A reference to another source</rdfs:comment>
268
+ <rdfs:range rdf:resource="#Source"/>
269
+ <rdfs:domain rdf:resource="#Source"/>
270
+ </owl:ObjectProperty>
271
+
272
+
273
+
274
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#related_contribution -->
275
+
276
+ <owl:ObjectProperty rdf:about="#related_contribution">
277
+ <rdfs:comment xml:lang="en"
278
+ >Indicates that a source is closely related to a contribution</rdfs:comment>
279
+ <rdfs:subPropertyOf rdf:resource="#refers"/>
280
+ </owl:ObjectProperty>
281
+
282
+
283
+
284
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#series -->
285
+
286
+ <owl:ObjectProperty rdf:about="#series">
287
+ <rdfs:comment xml:lang="en"
288
+ >Relates a Source with the series in which it was published</rdfs:comment>
289
+ <rdfs:range rdf:resource="#Series"/>
290
+ <rdfs:domain rdf:resource="#Source"/>
291
+ </owl:ObjectProperty>
292
+
293
+
294
+
295
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#transcription_of -->
296
+
297
+ <owl:ObjectProperty rdf:about="#transcription_of">
298
+ <rdfs:subPropertyOf rdf:resource="&dc;relation"/>
299
+ </owl:ObjectProperty>
300
+
301
+
302
+
303
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#translation_of -->
304
+
305
+ <owl:ObjectProperty rdf:about="#translation_of">
306
+ <rdfs:subPropertyOf rdf:resource="&dc;relation"/>
307
+ </owl:ObjectProperty>
308
+
309
+
310
+
311
+ <!--
312
+ ///////////////////////////////////////////////////////////////////////////////////////
313
+ //
314
+ // Data properties
315
+ //
316
+ ///////////////////////////////////////////////////////////////////////////////////////
317
+ -->
318
+
319
+
320
+
321
+
322
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#address -->
323
+
324
+ <owl:DatatypeProperty rdf:about="#address">
325
+ <rdfs:comment xml:lang="en">Street Address</rdfs:comment>
326
+ <rdfs:domain rdf:resource="#Agent"/>
327
+ <rdfs:range rdf:resource="&xsd;string"/>
328
+ </owl:DatatypeProperty>
329
+
330
+
331
+
332
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#already_published -->
333
+
334
+ <owl:DatatypeProperty rdf:about="#already_published">
335
+ <rdfs:comment xml:lang="en"
336
+ >Indicates if the contribution had already been published before being published in the Hyper</rdfs:comment>
337
+ <rdfs:domain rdf:resource="#Contribution"/>
338
+ <rdfs:range rdf:resource="&xsd;boolean"/>
339
+ </owl:DatatypeProperty>
340
+
341
+
342
+
343
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#author_institution -->
344
+
345
+ <owl:DatatypeProperty rdf:about="#author_institution">
346
+ <rdfs:comment xml:lang="en"
347
+ >Institution the author belongs to</rdfs:comment>
348
+ <rdfs:domain rdf:resource="#Author"/>
349
+ <rdfs:range rdf:resource="&xsd;string"/>
350
+ </owl:DatatypeProperty>
351
+
352
+
353
+
354
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#author_name -->
355
+
356
+ <owl:DatatypeProperty rdf:about="#author_name">
357
+ <rdfs:comment xml:lang="en"
358
+ >First name of the Author</rdfs:comment>
359
+ <rdfs:domain rdf:resource="#Author"/>
360
+ <rdfs:range rdf:resource="&xsd;string"/>
361
+ </owl:DatatypeProperty>
362
+
363
+
364
+
365
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#author_status -->
366
+
367
+ <owl:DatatypeProperty rdf:about="#author_status">
368
+ <rdfs:comment rdf:datatype="&xsd;string">Author Status</rdfs:comment>
369
+ <rdfs:domain rdf:resource="#Author"/>
370
+ <rdfs:range rdf:resource="&xsd;string"/>
371
+ </owl:DatatypeProperty>
372
+
373
+
374
+
375
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#author_surname -->
376
+
377
+ <owl:DatatypeProperty rdf:about="#author_surname">
378
+ <rdfs:comment rdf:datatype="&xsd;string"
379
+ >Surname of the author</rdfs:comment>
380
+ <rdfs:domain rdf:resource="#Author"/>
381
+ <rdfs:range rdf:resource="&xsd;string"/>
382
+ </owl:DatatypeProperty>
383
+
384
+
385
+
386
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#chapter_name -->
387
+
388
+ <owl:DatatypeProperty rdf:about="#chapter_name">
389
+ <rdfs:comment rdf:datatype="&xsd;string"
390
+ >The &quot;name&quot; of a chapter (eg. II or 2)</rdfs:comment>
391
+ <rdfs:domain rdf:resource="#Chapter"/>
392
+ <rdfs:range rdf:resource="&xsd;string"/>
393
+ </owl:DatatypeProperty>
394
+
395
+
396
+
397
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#city -->
398
+
399
+ <owl:DatatypeProperty rdf:about="#city">
400
+ <rdfs:comment xml:lang="en">City</rdfs:comment>
401
+ <rdfs:domain rdf:resource="#Agent"/>
402
+ <rdfs:range rdf:resource="&xsd;string"/>
403
+ </owl:DatatypeProperty>
404
+
405
+
406
+
407
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#collection_information -->
408
+
409
+ <owl:DatatypeProperty rdf:about="#collection_information">
410
+ <rdfs:comment rdf:datatype="&xsd;string"
411
+ >Contains plaintext information about the collection of which the element is a part.</rdfs:comment>
412
+ <rdfs:domain rdf:resource="#ExternalObject"/>
413
+ <rdfs:range rdf:resource="&xsd;string"/>
414
+ </owl:DatatypeProperty>
415
+
416
+
417
+
418
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#collocation -->
419
+
420
+ <owl:DatatypeProperty rdf:about="#collocation">
421
+ <rdfs:comment xml:lang="en"
422
+ >Indicates where the (physical) object is found in the archive (e.g. CV-12, ...)</rdfs:comment>
423
+ <rdfs:domain rdf:resource="#Book"/>
424
+ <rdfs:range rdf:resource="&xsd;string"/>
425
+ </owl:DatatypeProperty>
426
+
427
+
428
+
429
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#coordinates -->
430
+
431
+ <owl:DatatypeProperty rdf:about="#coordinates">
432
+ <rdfs:comment rdf:datatype="&xsd;string"
433
+ >The coordinates of the vertex of the polygon which identifies this note in the page.</rdfs:comment>
434
+ <rdfs:domain rdf:resource="#Note"/>
435
+ <rdfs:range rdf:resource="&xsd;string"/>
436
+ </owl:DatatypeProperty>
437
+
438
+
439
+
440
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#country -->
441
+
442
+ <owl:DatatypeProperty rdf:about="#country">
443
+ <owl:versionInfo rdf:datatype="&xsd;string"
444
+ >TODO: Should use controlled vocabulary</owl:versionInfo>
445
+ <rdfs:comment xml:lang="en">Country</rdfs:comment>
446
+ <rdfs:domain rdf:resource="#Agent"/>
447
+ <rdfs:range rdf:resource="&xsd;string"/>
448
+ </owl:DatatypeProperty>
449
+
450
+
451
+
452
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#curator -->
453
+
454
+ <owl:DatatypeProperty rdf:about="#curator">
455
+ <owl:versionInfo rdf:datatype="&xsd;string"
456
+ >TODO: Should use controlled vocabulary</owl:versionInfo>
457
+ <rdfs:comment xml:lang="en"
458
+ >Person who published the Essay in the Hyper</rdfs:comment>
459
+ <rdfs:domain rdf:resource="#Essay"/>
460
+ <rdfs:range rdf:resource="&xsd;string"/>
461
+ </owl:DatatypeProperty>
462
+
463
+
464
+
465
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#curator_note -->
466
+
467
+ <owl:DatatypeProperty rdf:about="#curator_note">
468
+ <rdfs:comment rdf:datatype="&xsd;string"
469
+ >Note by the curator</rdfs:comment>
470
+ <rdfs:domain rdf:resource="#Essay"/>
471
+ <rdfs:range rdf:resource="&xsd;string"/>
472
+ </owl:DatatypeProperty>
473
+
474
+
475
+
476
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#date -->
477
+
478
+ <owl:DatatypeProperty rdf:about="#date">
479
+ <rdfs:comment xml:lang="en"
480
+ >Either the publishing date or a date where the material was created. Can be a date or range (e.g. 1984-11-23 or June 1976 - March 1977)</rdfs:comment>
481
+ <owl:versionInfo xml:lang="en"
482
+ >TODO: Should use controlled vocabulary</owl:versionInfo>
483
+ <rdfs:domain rdf:resource="#Book"/>
484
+ <rdfs:range rdf:resource="&xsd;string"/>
485
+ </owl:DatatypeProperty>
486
+
487
+
488
+
489
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#email -->
490
+
491
+ <owl:DatatypeProperty rdf:about="#email">
492
+ <rdfs:comment xml:lang="en">Email Address</rdfs:comment>
493
+ <rdfs:domain rdf:resource="#Agent"/>
494
+ <rdfs:range rdf:resource="&xsd;string"/>
495
+ </owl:DatatypeProperty>
496
+
497
+
498
+
499
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#fax -->
500
+
501
+ <owl:DatatypeProperty rdf:about="#fax">
502
+ <rdfs:comment xml:lang="en">Fax number</rdfs:comment>
503
+ <rdfs:domain rdf:resource="#Agent"/>
504
+ <rdfs:range rdf:resource="&xsd;string"/>
505
+ </owl:DatatypeProperty>
506
+
507
+
508
+
509
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#file_content_type -->
510
+
511
+ <owl:DatatypeProperty rdf:about="#file_content_type">
512
+ <rdfs:comment xml:lang="en"
513
+ >MIME type of the file&#39;s content</rdfs:comment>
514
+ <rdfs:domain rdf:resource="#Contribution"/>
515
+ <rdfs:range rdf:resource="&xsd;string"/>
516
+ </owl:DatatypeProperty>
517
+
518
+
519
+
520
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#file_dimension -->
521
+
522
+ <owl:DatatypeProperty rdf:about="#file_dimension">
523
+ <rdfs:comment xml:lang="en"
524
+ >Size of the Data file</rdfs:comment>
525
+ <rdfs:domain rdf:resource="#Contribution"/>
526
+ <rdfs:range rdf:resource="&xsd;int"/>
527
+ </owl:DatatypeProperty>
528
+
529
+
530
+
531
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#filename -->
532
+
533
+ <owl:DatatypeProperty rdf:about="#filename">
534
+ <rdfs:comment xml:lang="en"
535
+ >File containing the contribution</rdfs:comment>
536
+ <rdfs:domain rdf:resource="#Contribution"/>
537
+ <rdfs:range rdf:resource="&xsd;string"/>
538
+ </owl:DatatypeProperty>
539
+
540
+
541
+
542
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#from_date -->
543
+
544
+ <owl:DatatypeProperty rdf:about="#from_date">
545
+ <rdfs:comment xml:lang="en"
546
+ >Registration date</rdfs:comment>
547
+ <rdfs:domain rdf:resource="#Author"/>
548
+ <rdfs:range rdf:resource="&xsd;dateTime"/>
549
+ </owl:DatatypeProperty>
550
+
551
+
552
+
553
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#height -->
554
+
555
+ <owl:DatatypeProperty rdf:about="#height">
556
+ <rdfs:comment xml:lang="en"
557
+ >Height of the page in pixel or cm</rdfs:comment>
558
+ <rdfs:domain rdf:resource="#Page"/>
559
+ <rdfs:range rdf:resource="&xsd;float"/>
560
+ </owl:DatatypeProperty>
561
+
562
+
563
+
564
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#journal_information -->
565
+
566
+ <owl:DatatypeProperty rdf:about="#journal_information">
567
+ <rdfs:comment rdf:datatype="&xsd;string"
568
+ >Information about the journal of which the element is a part.</rdfs:comment>
569
+ <rdfs:domain rdf:resource="#ExternalObject"/>
570
+ <rdfs:range rdf:resource="&xsd;string"/>
571
+ </owl:DatatypeProperty>
572
+
573
+
574
+
575
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#name -->
576
+
577
+ <owl:DatatypeProperty rdf:about="#name">
578
+ <rdfs:comment rdf:datatype="&xsd;string"
579
+ >The name of the element</rdfs:comment>
580
+ <rdfs:domain rdf:resource="#Source"/>
581
+ <rdfs:range rdf:resource="&xsd;string"/>
582
+ </owl:DatatypeProperty>
583
+
584
+
585
+
586
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#pages_information -->
587
+
588
+ <owl:DatatypeProperty rdf:about="#pages_information">
589
+ <rdfs:comment xml:lang="en"
590
+ >Plaintext information about the pages in an object. (Usually the number of pages, or similiar information).</rdfs:comment>
591
+ <rdfs:domain rdf:resource="#ExternalObject"/>
592
+ <rdfs:range rdf:resource="&xsd;string"/>
593
+ </owl:DatatypeProperty>
594
+
595
+
596
+
597
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#phone -->
598
+
599
+ <owl:DatatypeProperty rdf:about="#phone">
600
+ <rdfs:comment xml:lang="en">Phone number</rdfs:comment>
601
+ <rdfs:domain rdf:resource="#Agent"/>
602
+ <rdfs:range rdf:resource="&xsd;string"/>
603
+ </owl:DatatypeProperty>
604
+
605
+
606
+
607
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#position -->
608
+
609
+ <owl:DatatypeProperty rdf:about="#position">
610
+ <rdfs:comment xml:lang="en"
611
+ >Position in a collection of elements</rdfs:comment>
612
+ <rdfs:domain rdf:resource="#Source"/>
613
+ <rdfs:range rdf:resource="&xsd;int"/>
614
+ </owl:DatatypeProperty>
615
+
616
+
617
+
618
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#position_name -->
619
+
620
+ <owl:DatatypeProperty rdf:about="#position_name">
621
+ <rdfs:comment xml:lang="en"
622
+ >A string describing the &quot;name&quot; of the current position.
623
+
624
+ For Essay Pages:
625
+
626
+ The page name in the original essay.
627
+
628
+ For material pages:
629
+
630
+ Subpart of this page siglum, which identified this page (eg: if this page has &#39;MA,1r&#39; as siglum - being the page 1r of the MA work - this field will contain &#39;1r&#39;) To be used when asking for a single page from within the book. (you may want to ask for the page 1r, this is where we know its &quot;name&quot;).</rdfs:comment>
631
+ <rdfs:domain rdf:resource="#Source"/>
632
+ <rdfs:range rdf:resource="&xsd;string"/>
633
+ </owl:DatatypeProperty>
634
+
635
+
636
+
637
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#publication_place -->
638
+
639
+ <owl:DatatypeProperty rdf:about="#publication_place">
640
+ <rdfs:comment rdf:datatype="&xsd;string"
641
+ >Place where the book was published</rdfs:comment>
642
+ <rdfs:domain rdf:resource="#Book"/>
643
+ <rdfs:range rdf:resource="&xsd;string"/>
644
+ </owl:DatatypeProperty>
645
+
646
+
647
+
648
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#publisher -->
649
+
650
+ <owl:DatatypeProperty rdf:about="#publisher">
651
+ <rdfs:comment xml:lang="en">Publisher</rdfs:comment>
652
+ <rdfs:domain rdf:resource="#Source"/>
653
+ <rdfs:range rdf:resource="&xsd;string"/>
654
+ </owl:DatatypeProperty>
655
+
656
+
657
+
658
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#publishing_date -->
659
+
660
+ <owl:DatatypeProperty rdf:about="#publishing_date">
661
+ <rdfs:comment xml:lang="en"
662
+ >The date on which the contribution was published in the Hyper</rdfs:comment>
663
+ <rdfs:domain rdf:resource="#Contribution"/>
664
+ <rdfs:range rdf:resource="&xsd;dateTime"/>
665
+ </owl:DatatypeProperty>
666
+
667
+
668
+
669
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#resolution -->
670
+
671
+ <owl:DatatypeProperty rdf:about="#resolution">
672
+ <rdfs:comment xml:lang="en"
673
+ >Resolution of the Facsimile</rdfs:comment>
674
+ <rdfs:domain rdf:resource="#Facsimile"/>
675
+ <rdfs:range rdf:resource="&xsd;int"/>
676
+ </owl:DatatypeProperty>
677
+
678
+
679
+
680
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#siglum -->
681
+
682
+ <owl:DatatypeProperty rdf:about="#siglum">
683
+ <rdfs:comment xml:lang="en"
684
+ >The Siglum of the Source</rdfs:comment>
685
+ <rdfs:domain rdf:resource="#Source"/>
686
+ <rdfs:range rdf:resource="&xsd;string"/>
687
+ </owl:DatatypeProperty>
688
+
689
+
690
+
691
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#state -->
692
+
693
+ <owl:DatatypeProperty rdf:about="#state">
694
+ <rdfs:comment rdf:datatype="&xsd;string">State</rdfs:comment>
695
+ <rdfs:domain rdf:resource="#Agent"/>
696
+ <rdfs:range rdf:resource="&xsd;string"/>
697
+ </owl:DatatypeProperty>
698
+
699
+
700
+
701
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#to_date -->
702
+
703
+ <owl:DatatypeProperty rdf:about="#to_date">
704
+ <rdfs:domain rdf:resource="#Author"/>
705
+ <rdfs:range rdf:resource="&xsd;dateTime"/>
706
+ </owl:DatatypeProperty>
707
+
708
+
709
+
710
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#webpage -->
711
+
712
+ <owl:DatatypeProperty rdf:about="#webpage">
713
+ <rdfs:comment xml:lang="en">Web address</rdfs:comment>
714
+ <rdfs:domain rdf:resource="#Agent"/>
715
+ <rdfs:range rdf:resource="&xsd;string"/>
716
+ </owl:DatatypeProperty>
717
+
718
+
719
+
720
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#width -->
721
+
722
+ <owl:DatatypeProperty rdf:about="#width">
723
+ <rdfs:comment xml:lang="en"
724
+ >Width of the page in pixel or cm</rdfs:comment>
725
+ <rdfs:domain rdf:resource="#Page"/>
726
+ <rdfs:range rdf:resource="&xsd;float"/>
727
+ </owl:DatatypeProperty>
728
+
729
+
730
+
731
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#zip -->
732
+
733
+ <owl:DatatypeProperty rdf:about="#zip">
734
+ <rdfs:comment xml:lang="en">Zip code</rdfs:comment>
735
+ <rdfs:domain rdf:resource="#Agent"/>
736
+ <rdfs:range rdf:resource="&xsd;string"/>
737
+ </owl:DatatypeProperty>
738
+
739
+
740
+
741
+ <!--
742
+ ///////////////////////////////////////////////////////////////////////////////////////
743
+ //
744
+ // Classes
745
+ //
746
+ ///////////////////////////////////////////////////////////////////////////////////////
747
+ -->
748
+
749
+
750
+
751
+
752
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Agent -->
753
+
754
+ <owl:Class rdf:about="#Agent">
755
+ <rdfs:subClassOf rdf:resource="#Source"/>
756
+ </owl:Class>
757
+
758
+
759
+
760
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Archive -->
761
+
762
+ <owl:Class rdf:about="#Archive">
763
+ <rdfs:subClassOf rdf:resource="#Agent"/>
764
+ </owl:Class>
765
+
766
+
767
+
768
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Author -->
769
+
770
+ <owl:Class rdf:about="#Author">
771
+ <rdfs:subClassOf rdf:resource="#Agent"/>
772
+ </owl:Class>
773
+
774
+
775
+
776
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#AuthorizedManuscript -->
777
+
778
+ <owl:Class rdf:about="#AuthorizedManuscript">
779
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
780
+ </owl:Class>
781
+
782
+
783
+
784
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#AvMedia -->
785
+
786
+ <owl:Class rdf:about="#AvMedia">
787
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
788
+ <rdfs:comment xml:lang="en"
789
+ >An audiovisual media file.</rdfs:comment>
790
+ </owl:Class>
791
+
792
+
793
+
794
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#BibliographicalCard -->
795
+
796
+ <owl:Class rdf:about="#BibliographicalCard">
797
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
798
+ </owl:Class>
799
+
800
+
801
+
802
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#BlackAndWhite -->
803
+
804
+ <owl:Class rdf:about="#BlackAndWhite">
805
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
806
+ </owl:Class>
807
+
808
+
809
+
810
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Book -->
811
+
812
+ <owl:Class rdf:about="#Book">
813
+ <rdfs:subClassOf rdf:resource="#StructureElement"/>
814
+ </owl:Class>
815
+
816
+
817
+
818
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Category -->
819
+
820
+ <owl:Class rdf:about="#Category">
821
+ <rdfs:subClassOf rdf:resource="#StructureElement"/>
822
+ <rdfs:comment xml:lang="en"
823
+ >A Category groups different Sources togehter by a user-defined criterium. Unlike keywords a Source should only have one category at a time.</rdfs:comment>
824
+ </owl:Class>
825
+
826
+
827
+
828
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Chapter -->
829
+
830
+ <owl:Class rdf:about="#Chapter">
831
+ <rdfs:subClassOf rdf:resource="#StructureElement"/>
832
+ </owl:Class>
833
+
834
+
835
+
836
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Chronologic -->
837
+
838
+ <owl:Class rdf:about="#Chronologic">
839
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
840
+ </owl:Class>
841
+
842
+
843
+
844
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Color -->
845
+
846
+ <owl:Class rdf:about="#Color">
847
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
848
+ </owl:Class>
849
+
850
+
851
+
852
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Comments -->
853
+
854
+ <owl:Class rdf:about="#Comments">
855
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
856
+ </owl:Class>
857
+
858
+
859
+
860
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#ConferencePaper -->
861
+
862
+ <owl:Class rdf:about="#ConferencePaper">
863
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
864
+ </owl:Class>
865
+
866
+
867
+
868
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Contribution -->
869
+
870
+ <owl:Class rdf:about="#Contribution">
871
+ <rdfs:subClassOf rdf:resource="#Source"/>
872
+ </owl:Class>
873
+
874
+
875
+
876
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#ContributionContentType -->
877
+
878
+ <owl:Class rdf:about="#ContributionContentType"/>
879
+
880
+
881
+
882
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Copybook -->
883
+
884
+ <owl:Class rdf:about="#Copybook">
885
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
886
+ </owl:Class>
887
+
888
+
889
+
890
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Correspondence -->
891
+
892
+ <owl:Class rdf:about="#Correspondence">
893
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
894
+ </owl:Class>
895
+
896
+
897
+
898
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#CriticalEdition -->
899
+
900
+ <owl:Class rdf:about="#CriticalEdition">
901
+ <rdfs:subClassOf rdf:resource="#MacroContribution"/>
902
+ </owl:Class>
903
+
904
+
905
+
906
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Diplomatic -->
907
+
908
+ <owl:Class rdf:about="#Diplomatic">
909
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
910
+ </owl:Class>
911
+
912
+
913
+
914
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#DocumentTransmission -->
915
+
916
+ <owl:Class rdf:about="#DocumentTransmission">
917
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
918
+ </owl:Class>
919
+
920
+
921
+
922
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Dossier -->
923
+
924
+ <owl:Class rdf:about="#Dossier">
925
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
926
+ </owl:Class>
927
+
928
+
929
+
930
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Draft -->
931
+
932
+ <owl:Class rdf:about="#Draft">
933
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
934
+ </owl:Class>
935
+
936
+
937
+
938
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Dynamic -->
939
+
940
+ <owl:Class rdf:about="#Dynamic">
941
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
942
+ </owl:Class>
943
+
944
+
945
+
946
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Editing -->
947
+
948
+ <owl:Class rdf:about="#Editing">
949
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
950
+ </owl:Class>
951
+
952
+
953
+
954
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Essay -->
955
+
956
+ <owl:Class rdf:about="#Essay">
957
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
958
+ </owl:Class>
959
+
960
+
961
+
962
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#EssayPage -->
963
+
964
+ <owl:Class rdf:about="#EssayPage">
965
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
966
+ </owl:Class>
967
+
968
+
969
+
970
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#ExternalObject -->
971
+
972
+ <owl:Class rdf:about="#ExternalObject">
973
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
974
+ </owl:Class>
975
+
976
+
977
+
978
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Facsim -->
979
+
980
+ <owl:Class rdf:about="#Facsim">
981
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
982
+ </owl:Class>
983
+
984
+
985
+
986
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Facsimile -->
987
+
988
+ <owl:Class rdf:about="#Facsimile">
989
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
990
+ </owl:Class>
991
+
992
+
993
+
994
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#FacsimileEdition -->
995
+
996
+ <owl:Class rdf:about="#FacsimileEdition">
997
+ <rdfs:subClassOf rdf:resource="#MacroContribution"/>
998
+ </owl:Class>
999
+
1000
+
1001
+
1002
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#GenericXML -->
1003
+
1004
+ <owl:Class rdf:about="#GenericXML">
1005
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1006
+ </owl:Class>
1007
+
1008
+
1009
+
1010
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Genetic -->
1011
+
1012
+ <owl:Class rdf:about="#Genetic">
1013
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1014
+ </owl:Class>
1015
+
1016
+
1017
+
1018
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#GreyScale -->
1019
+
1020
+ <owl:Class rdf:about="#GreyScale">
1021
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1022
+ </owl:Class>
1023
+
1024
+
1025
+
1026
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#HNML -->
1027
+
1028
+ <owl:Class rdf:about="#HNML">
1029
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1030
+ </owl:Class>
1031
+
1032
+
1033
+
1034
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#HTML -->
1035
+
1036
+ <owl:Class rdf:about="#HTML">
1037
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1038
+ </owl:Class>
1039
+
1040
+
1041
+
1042
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#HyperEdition -->
1043
+
1044
+ <owl:Class rdf:about="#HyperEdition">
1045
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
1046
+ </owl:Class>
1047
+
1048
+
1049
+
1050
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#ICN -->
1051
+
1052
+ <owl:Class rdf:about="#ICN">
1053
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
1054
+ </owl:Class>
1055
+
1056
+
1057
+
1058
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Iconography -->
1059
+
1060
+ <owl:Class rdf:about="#Iconography">
1061
+ <rdfs:subClassOf rdf:resource="#Material"/>
1062
+ </owl:Class>
1063
+
1064
+
1065
+
1066
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Interview -->
1067
+
1068
+ <owl:Class rdf:about="#Interview">
1069
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
1070
+ </owl:Class>
1071
+
1072
+
1073
+
1074
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Keyword -->
1075
+
1076
+ <owl:Class rdf:about="#Keyword">
1077
+ <rdfs:comment xml:lang="en"
1078
+ >A Keyword by which results are grouped. Any number of Keywords can be assigned to a single Source.</rdfs:comment>
1079
+ </owl:Class>
1080
+
1081
+
1082
+
1083
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Lecture -->
1084
+
1085
+ <owl:Class rdf:about="#Lecture">
1086
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
1087
+ </owl:Class>
1088
+
1089
+
1090
+
1091
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#LectureManuscript -->
1092
+
1093
+ <owl:Class rdf:about="#LectureManuscript">
1094
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
1095
+ </owl:Class>
1096
+
1097
+
1098
+
1099
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Linear -->
1100
+
1101
+ <owl:Class rdf:about="#Linear">
1102
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1103
+ </owl:Class>
1104
+
1105
+
1106
+
1107
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#MacroContribution -->
1108
+
1109
+ <owl:Class rdf:about="#MacroContribution">
1110
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
1111
+ </owl:Class>
1112
+
1113
+
1114
+
1115
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Manuscript -->
1116
+
1117
+ <owl:Class rdf:about="#Manuscript">
1118
+ <rdfs:subClassOf rdf:resource="#Material"/>
1119
+ </owl:Class>
1120
+
1121
+
1122
+
1123
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#ManuscriptForPrinting -->
1124
+
1125
+ <owl:Class rdf:about="#ManuscriptForPrinting">
1126
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
1127
+ </owl:Class>
1128
+
1129
+
1130
+
1131
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Material -->
1132
+
1133
+ <owl:Class rdf:about="#Material">
1134
+ <rdfs:subClassOf rdf:resource="#Source"/>
1135
+ </owl:Class>
1136
+
1137
+
1138
+
1139
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#MaterialDescription -->
1140
+
1141
+ <owl:Class rdf:about="#MaterialDescription">
1142
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
1143
+ </owl:Class>
1144
+
1145
+
1146
+
1147
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Media -->
1148
+
1149
+ <owl:Class rdf:about="#Media">
1150
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1151
+ </owl:Class>
1152
+
1153
+
1154
+
1155
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Mpeg4 -->
1156
+
1157
+ <owl:Class rdf:about="#Mpeg4">
1158
+ <rdfs:subClassOf rdf:resource="#Media"/>
1159
+ </owl:Class>
1160
+
1161
+
1162
+
1163
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#NotDistributed -->
1164
+
1165
+ <owl:Class rdf:about="#NotDistributed">
1166
+ <rdfs:subClassOf rdf:resource="#Work"/>
1167
+ </owl:Class>
1168
+
1169
+
1170
+
1171
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Note -->
1172
+
1173
+ <owl:Class rdf:about="#Note">
1174
+ <rdfs:subClassOf rdf:resource="#StructureElement"/>
1175
+ </owl:Class>
1176
+
1177
+
1178
+
1179
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Notebook -->
1180
+
1181
+ <owl:Class rdf:about="#Notebook">
1182
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
1183
+ </owl:Class>
1184
+
1185
+
1186
+
1187
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#PDF -->
1188
+
1189
+ <owl:Class rdf:about="#PDF">
1190
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1191
+ </owl:Class>
1192
+
1193
+
1194
+
1195
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Page -->
1196
+
1197
+ <owl:Class rdf:about="#Page">
1198
+ <rdfs:subClassOf rdf:resource="#StructureElement"/>
1199
+ </owl:Class>
1200
+
1201
+
1202
+
1203
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Paragraph -->
1204
+
1205
+ <owl:Class rdf:about="#Paragraph">
1206
+ <rdfs:subClassOf rdf:resource="#StructureElement"/>
1207
+ </owl:Class>
1208
+
1209
+
1210
+
1211
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#ParagraphInteractive -->
1212
+
1213
+ <owl:Class rdf:about="#ParagraphInteractive">
1214
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1215
+ </owl:Class>
1216
+
1217
+
1218
+
1219
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Path -->
1220
+
1221
+ <owl:Class rdf:about="#Path">
1222
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
1223
+ </owl:Class>
1224
+
1225
+
1226
+
1227
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#PathStep -->
1228
+
1229
+ <owl:Class rdf:about="#PathStep">
1230
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
1231
+ </owl:Class>
1232
+
1233
+
1234
+
1235
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#PlainText -->
1236
+
1237
+ <owl:Class rdf:about="#PlainText">
1238
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1239
+ </owl:Class>
1240
+
1241
+
1242
+
1243
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#PosthumousFragment -->
1244
+
1245
+ <owl:Class rdf:about="#PosthumousFragment">
1246
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
1247
+ </owl:Class>
1248
+
1249
+
1250
+
1251
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#PosthumousWriting -->
1252
+
1253
+ <owl:Class rdf:about="#PosthumousWriting">
1254
+ <rdfs:subClassOf rdf:resource="#Manuscript"/>
1255
+ </owl:Class>
1256
+
1257
+
1258
+
1259
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#PrintedAndDistributed -->
1260
+
1261
+ <owl:Class rdf:about="#PrintedAndDistributed">
1262
+ <rdfs:subClassOf rdf:resource="#Work"/>
1263
+ </owl:Class>
1264
+
1265
+
1266
+
1267
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#PrivatePublication -->
1268
+
1269
+ <owl:Class rdf:about="#PrivatePublication">
1270
+ <rdfs:subClassOf rdf:resource="#Work"/>
1271
+ </owl:Class>
1272
+
1273
+
1274
+
1275
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Review -->
1276
+
1277
+ <owl:Class rdf:about="#Review">
1278
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
1279
+ </owl:Class>
1280
+
1281
+
1282
+
1283
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#RowInteractive -->
1284
+
1285
+ <owl:Class rdf:about="#RowInteractive">
1286
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1287
+ </owl:Class>
1288
+
1289
+
1290
+
1291
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Series -->
1292
+
1293
+ <owl:Class rdf:about="#Series">
1294
+ <rdfs:subClassOf rdf:resource="#StructureElement"/>
1295
+ <rdfs:comment xml:lang="en"
1296
+ >Series a in which a Source was published.</rdfs:comment>
1297
+ </owl:Class>
1298
+
1299
+
1300
+
1301
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Source -->
1302
+
1303
+ <owl:Class rdf:about="#Source"/>
1304
+
1305
+
1306
+
1307
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#StructureElement -->
1308
+
1309
+ <owl:Class rdf:about="#StructureElement"/>
1310
+
1311
+
1312
+
1313
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#TEI -->
1314
+
1315
+ <owl:Class rdf:about="#TEI">
1316
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1317
+ </owl:Class>
1318
+
1319
+
1320
+
1321
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#TextReconstruction -->
1322
+
1323
+ <owl:Class rdf:about="#TextReconstruction">
1324
+ <rdfs:subClassOf rdf:resource="#HyperEdition"/>
1325
+ </owl:Class>
1326
+
1327
+
1328
+
1329
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Thematic -->
1330
+
1331
+ <owl:Class rdf:about="#Thematic">
1332
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1333
+ </owl:Class>
1334
+
1335
+
1336
+
1337
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Transcription -->
1338
+
1339
+ <owl:Class rdf:about="#Transcription">
1340
+ <rdfs:subClassOf rdf:resource="#HyperEdition"/>
1341
+ </owl:Class>
1342
+
1343
+
1344
+
1345
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Translation -->
1346
+
1347
+ <owl:Class rdf:about="#Translation">
1348
+ <rdfs:subClassOf rdf:resource="#Contribution"/>
1349
+ </owl:Class>
1350
+
1351
+
1352
+
1353
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Ultradiplomatic -->
1354
+
1355
+ <owl:Class rdf:about="#Ultradiplomatic">
1356
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1357
+ </owl:Class>
1358
+
1359
+
1360
+
1361
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Unprinted -->
1362
+
1363
+ <owl:Class rdf:about="#Unprinted">
1364
+ <rdfs:subClassOf rdf:resource="#Work"/>
1365
+ </owl:Class>
1366
+
1367
+
1368
+
1369
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#WindowsMediaFile -->
1370
+
1371
+ <owl:Class rdf:about="#WindowsMediaFile">
1372
+ <rdfs:subClassOf rdf:resource="#Media"/>
1373
+ </owl:Class>
1374
+
1375
+
1376
+
1377
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#WitTEI -->
1378
+
1379
+ <owl:Class rdf:about="#WitTEI">
1380
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1381
+ </owl:Class>
1382
+
1383
+
1384
+
1385
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#WordInteractive -->
1386
+
1387
+ <owl:Class rdf:about="#WordInteractive">
1388
+ <rdfs:subClassOf rdf:resource="#ContributionContentType"/>
1389
+ </owl:Class>
1390
+
1391
+
1392
+
1393
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#Work -->
1394
+
1395
+ <owl:Class rdf:about="#Work">
1396
+ <rdfs:subClassOf rdf:resource="#Material"/>
1397
+ </owl:Class>
1398
+
1399
+
1400
+
1401
+ <!-- http://www.w3.org/2001/XMLSchema#boolean -->
1402
+
1403
+ <owl:Class rdf:about="&xsd;boolean"/>
1404
+
1405
+
1406
+
1407
+ <!-- http://www.w3.org/2001/XMLSchema#time -->
1408
+
1409
+ <owl:Class rdf:about="&xsd;time"/>
1410
+
1411
+
1412
+
1413
+ <!--
1414
+ ///////////////////////////////////////////////////////////////////////////////////////
1415
+ //
1416
+ // Individuals
1417
+ //
1418
+ ///////////////////////////////////////////////////////////////////////////////////////
1419
+ -->
1420
+
1421
+
1422
+
1423
+
1424
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#description -->
1425
+
1426
+ <rdf:Description rdf:about="#description">
1427
+ <rdfs:comment xml:lang="en"
1428
+ >A descriptive placeholder for the UI, to be translated</rdfs:comment>
1429
+ </rdf:Description>
1430
+
1431
+
1432
+
1433
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#dimension_units -->
1434
+
1435
+ <rdf:Description rdf:about="#dimension_units">
1436
+ <rdfs:comment xml:lang="en"
1437
+ >Identifies the unit type used for the elements physical dimensions.</rdfs:comment>
1438
+ </rdf:Description>
1439
+
1440
+
1441
+
1442
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#last_page -->
1443
+
1444
+ <rdf:Description rdf:about="#last_page">
1445
+ <rdfs:comment xml:lang="en"
1446
+ >The last page of a logical element in a publication. May not always be used, even if first_page is present.</rdfs:comment>
1447
+ </rdf:Description>
1448
+
1449
+
1450
+
1451
+ <!-- http://trac.talia.discovery-project.eu/wiki/HyperOntology#local_id -->
1452
+
1453
+ <rdf:Description rdf:about="#local_id">
1454
+ <rdfs:comment xml:lang="en"
1455
+ >An unique identifier that is only valid in the local system</rdfs:comment>
1456
+ </rdf:Description>
1457
+ </rdf:RDF>
1458
+
1459
+
1460
+
1461
+ <!-- Generated by the OWL API (version 2.2.1.974) http://owlapi.sourceforge.net -->
1462
+