abrupt 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/.rubocop.yml +16 -0
  4. data/.travis.yml +34 -0
  5. data/Gemfile +4 -0
  6. data/Guardfile +51 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +36 -0
  9. data/Rakefile +7 -0
  10. data/abrupt.gemspec +41 -0
  11. data/assets/rules/datatypes/cax-RequiredFormElement.ttl +34 -0
  12. data/assets/rules/datatypes/cax-readability.ttl +18 -0
  13. data/assets/rules/datatypes/cax-required.ttl +15 -0
  14. data/assets/rules/list/prp-hasState.ttl +10 -0
  15. data/assets/rules/production/non_required_form_element.ttl +24 -0
  16. data/assets/rules/production/state_has_no_html_element.ttl +21 -0
  17. data/assets/schema/schema.json +49 -0
  18. data/assets/schema/v1/complexity.json +142 -0
  19. data/assets/schema/v1/input.json +1136 -0
  20. data/assets/schema/v1/link.json +41 -0
  21. data/assets/schema/v1/picture.json +47 -0
  22. data/assets/schema/v1/readability.json +51 -0
  23. data/assets/schema/v1/subject.json +88 -0
  24. data/assets/voc/tbox.ttl +1632 -0
  25. data/bin/abrupt +63 -0
  26. data/doc/paper/listings/datatype_rule.ttl +0 -0
  27. data/doc/paper/listings/description_logic_infered.ttl +3 -0
  28. data/doc/paper/listings/description_logic_rule.ttl +15 -0
  29. data/doc/paper/listings/inconsistency_rule.ttl +0 -0
  30. data/doc/paper/listings/limitations.ttl +10 -0
  31. data/doc/paper/listings/production_rule.ttl +0 -0
  32. data/doc/paper/listings/propositional_logic_infered.ttl +6 -0
  33. data/doc/paper/listings/propositional_logic_rule.ttl +15 -0
  34. data/doc/paper/listings/unique_nested_uris.ttl +10 -0
  35. data/doc/paper/literature.bib +56 -0
  36. data/doc/paper/main.tex +322 -0
  37. data/doc/poster/Poster.key +0 -0
  38. data/doc/poster/Poster.pdf +0 -0
  39. data/doc/poster/poster.indd +0 -0
  40. data/doc/poster/resources/graph.graffle +0 -0
  41. data/doc/poster/resources/graph.png +0 -0
  42. data/doc/poster/resources/graph_crop.png +0 -0
  43. data/lib/abrupt.rb +90 -0
  44. data/lib/abrupt/converter.rb +130 -0
  45. data/lib/abrupt/crawler.rb +125 -0
  46. data/lib/abrupt/service/absolute_url.rb +32 -0
  47. data/lib/abrupt/service/base.rb +75 -0
  48. data/lib/abrupt/service/complexity.rb +27 -0
  49. data/lib/abrupt/service/input.rb +15 -0
  50. data/lib/abrupt/service/link.rb +15 -0
  51. data/lib/abrupt/service/picture.rb +19 -0
  52. data/lib/abrupt/service/readability.rb +26 -0
  53. data/lib/abrupt/service/subject.rb +19 -0
  54. data/lib/abrupt/transformation/base.rb +145 -0
  55. data/lib/abrupt/transformation/client/base.rb +8 -0
  56. data/lib/abrupt/transformation/client/page_view.rb +27 -0
  57. data/lib/abrupt/transformation/client/visit.rb +56 -0
  58. data/lib/abrupt/transformation/client/visitor.rb +19 -0
  59. data/lib/abrupt/transformation/website/base.rb +8 -0
  60. data/lib/abrupt/transformation/website/complexity.rb +20 -0
  61. data/lib/abrupt/transformation/website/input.rb +42 -0
  62. data/lib/abrupt/transformation/website/link.rb +27 -0
  63. data/lib/abrupt/transformation/website/picture.rb +26 -0
  64. data/lib/abrupt/transformation/website/readability.rb +15 -0
  65. data/lib/abrupt/transformation/website/subject.rb +22 -0
  66. data/lib/abrupt/version.rb +7 -0
  67. data/spec/cassettes/Abrupt_Crawler/outputs_correct_hash.yml +91250 -0
  68. data/spec/converter_spec.rb +34 -0
  69. data/spec/crawler_spec.rb +11 -0
  70. data/spec/factories/crawled_hashes.rb +468 -0
  71. data/spec/fixtures/rikscha-mainz.owl +17456 -0
  72. data/spec/fixtures/rikscha.ohneBilder.2013-04-30_2013-08-17.xml +51759 -0
  73. data/spec/fixtures/rikscha.ohneBilder.2013-04-30_2013-08-17_min.xml +81 -0
  74. data/spec/fixtures/rikscha_Result.xml +11594 -0
  75. data/spec/fixtures/rikscha_Result_min.xml +574 -0
  76. data/spec/spec_helper.rb +26 -0
  77. data/spec/transformation/base_spec.rb +18 -0
  78. data/spec/transformation/website/complexity_spec.rb +188 -0
  79. data/spec/transformation/website/input_spec.rb +181 -0
  80. data/spec/transformation/website/link_spec.rb +13 -0
  81. data/spec/transformation/website/picture_spec.rb +20 -0
  82. data/spec/transformation/website/readability_spec.rb +22 -0
  83. data/spec/transformation/website/subject_spec.rb +40 -0
  84. metadata +424 -0
@@ -0,0 +1,41 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "required": false,
5
+ "properties": {
6
+ "link": {
7
+ "description": "",
8
+ "type": "object",
9
+ "required": false,
10
+ "properties": {
11
+ "a": {
12
+ "description": "",
13
+ "type": "array",
14
+ "items": {
15
+ "type": "object",
16
+ "properties": {
17
+ "href": {
18
+ "type": "string"
19
+ },
20
+ "plaintext": {
21
+ "type": "string"
22
+ }
23
+ }
24
+ }
25
+ },
26
+ "form": {
27
+ "description": "",
28
+ "type": "array",
29
+ "items": {
30
+ "type": "object",
31
+ "properties": {
32
+ "formAction": {
33
+ "type": "string"
34
+ }
35
+ }
36
+ }
37
+ }
38
+ }
39
+ }
40
+ }
41
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "type": "object",
3
+ "$schema": "http://json-schema.org/draft-04/schema",
4
+ "required": false,
5
+ "properties": {
6
+ "picture": {
7
+ "type": "object",
8
+ "properties": {
9
+ "duration": {
10
+ "type": "number",
11
+ "required": false
12
+ },
13
+ "images": {
14
+ "type": "array",
15
+ "required": false,
16
+ "items": {
17
+ "type": "object",
18
+ "required": false,
19
+ "properties": {
20
+ "duration": {
21
+ "type": "number",
22
+ "required": false
23
+ },
24
+ "filename": {
25
+ "type": "string",
26
+ "required": false
27
+ },
28
+ "geometry": {
29
+ "type": "string",
30
+ "required": false
31
+ },
32
+ "mimetype": {
33
+ "type": "string",
34
+ "required": false
35
+ },
36
+ "type": {
37
+ "type": "string",
38
+ "required": false
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
44
+ }
45
+ }
46
+ }
47
+
@@ -0,0 +1,51 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "required": false,
5
+ "properties": {
6
+ "readability": {
7
+ "description": "",
8
+ "type": "object",
9
+ "required": ["readability", "syllables", "words", "numberOfLinks", "bigwords", "sentences", "language"],
10
+ "properties": {
11
+ "readability": {
12
+ "description": "float",
13
+ "type": "number",
14
+ "minimum": 4,
15
+ "maximum": 15,
16
+ "required": true
17
+ },
18
+ "syllables": {
19
+ "description": "",
20
+ "type": "integer",
21
+ "required": true
22
+ },
23
+ "words": {
24
+ "description": "",
25
+ "type": "integer",
26
+ "required": true
27
+ },
28
+ "numberOfLinks": {
29
+ "description": "",
30
+ "type": "integer",
31
+ "required": true
32
+ },
33
+ "bigwords": {
34
+ "description": "",
35
+ "type": "integer",
36
+ "required": true
37
+ },
38
+ "sentences": {
39
+ "description": "",
40
+ "type": "integer",
41
+ "required": true
42
+ },
43
+ "language": {
44
+ "description": "",
45
+ "type": "string",
46
+ "required": true
47
+ }
48
+ }
49
+ }
50
+ }
51
+ }
@@ -0,0 +1,88 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "required": false,
5
+ "properties": {
6
+ "subject": {
7
+ "type": "object",
8
+ "required": false,
9
+ "properties": {
10
+ "classLimit": {
11
+ "type": "integer",
12
+ "required": false
13
+ },
14
+ "depth": {
15
+ "type": "integer",
16
+ "required": false
17
+ },
18
+ "language": {
19
+ "type": "string",
20
+ "required": false
21
+ },
22
+ "subjects": {
23
+ "type": "object",
24
+ "required": false,
25
+ "properties": {
26
+ "Abkürzung": {
27
+ "type": "string",
28
+ "required": false
29
+ },
30
+ "Begriffsklärung": {
31
+ "type": "string",
32
+ "required": false
33
+ },
34
+ "Einzelwort": {
35
+ "type": "string",
36
+ "required": false
37
+ },
38
+ "Kofferwort": {
39
+ "type": "string",
40
+ "required": false
41
+ },
42
+ "Liste__Abkürzungen_": {
43
+ "type": "string",
44
+ "required": false
45
+ },
46
+ "Liste__Sprache_": {
47
+ "type": "string",
48
+ "required": false
49
+ },
50
+ "Liste": {
51
+ "type": "string",
52
+ "required": false
53
+ },
54
+ "Portal_Abkürzungen": {
55
+ "type": "string",
56
+ "required": false
57
+ },
58
+ "Portal_Kommunikation_als_Thema": {
59
+ "type": "string",
60
+ "required": false
61
+ },
62
+ "Räumliche_Systematik": {
63
+ "type": "string",
64
+ "required": false
65
+ },
66
+ "Zeitliche_Systematik": {
67
+ "type": "string",
68
+ "required": false
69
+ }
70
+ }
71
+ },
72
+ "wordlimit": {
73
+ "type": "string",
74
+ "required": false
75
+ },
76
+ "words": {
77
+ "type": "array",
78
+ "required": false,
79
+ "items": {
80
+ "type": "string",
81
+ "required": false
82
+ }
83
+ }
84
+ }
85
+ }
86
+ }
87
+ }
88
+
@@ -0,0 +1,1632 @@
1
+ @prefix : <http://wba.cs.hs-rm.de/AbRUPt/> .
2
+ @prefix owl: <http://www.w3.org/2002/07/owl#> .
3
+ @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
4
+ @prefix xml: <http://www.w3.org/XML/1998/namespace> .
5
+ @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
6
+ @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7
+ @base <http://wba.cs.hs-rm.de/AbRUPt/> .
8
+
9
+ <http://wba.cs.hs-rm.de/AbRUPt/> rdf:type owl:Ontology .
10
+
11
+
12
+ #################################################################
13
+ #
14
+ # Object Properties
15
+ #
16
+ #################################################################
17
+
18
+
19
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasBaseColor
20
+
21
+ :hasBaseColor rdf:type owl:IrreflexiveProperty ,
22
+ owl:ObjectProperty ;
23
+
24
+ rdfs:range :BaseColor ;
25
+
26
+ rdfs:domain :Page .
27
+
28
+
29
+
30
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasBlur
31
+
32
+ :hasBlur rdf:type owl:ObjectProperty ;
33
+
34
+ rdfs:range :Blur ;
35
+
36
+ rdfs:domain :Visit ;
37
+
38
+ rdfs:subPropertyOf :hasPageView .
39
+
40
+
41
+
42
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasButton
43
+
44
+ :hasButton rdf:type owl:ObjectProperty ;
45
+
46
+ rdfs:range :Button ;
47
+
48
+ rdfs:subPropertyOf :hasFormElement .
49
+
50
+
51
+
52
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasCheckbox
53
+
54
+ :hasCheckbox rdf:type owl:ObjectProperty ;
55
+
56
+ rdfs:range :Checkbox ;
57
+
58
+ rdfs:subPropertyOf :hasFormElement .
59
+
60
+
61
+
62
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasColor
63
+
64
+ :hasColor rdf:type owl:ObjectProperty ;
65
+
66
+ rdfs:range :Color ;
67
+
68
+ rdfs:subPropertyOf :hasFormElement .
69
+
70
+
71
+
72
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasContent
73
+
74
+ :hasContent rdf:type owl:ObjectProperty ;
75
+
76
+ rdfs:range :Content ;
77
+
78
+ rdfs:domain :Visit ;
79
+
80
+ rdfs:subPropertyOf :hasPageView .
81
+
82
+
83
+
84
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasDate
85
+
86
+ :hasDate rdf:type owl:ObjectProperty ;
87
+
88
+ rdfs:range :Date ;
89
+
90
+ rdfs:subPropertyOf :hasFormElement .
91
+
92
+
93
+
94
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasDatetime
95
+
96
+ :hasDatetime rdf:type owl:ObjectProperty ;
97
+
98
+ rdfs:range :Datetime ;
99
+
100
+ rdfs:subPropertyOf :hasFormElement .
101
+
102
+
103
+
104
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasDatetime-local
105
+
106
+ :hasDatetime-local rdf:type owl:ObjectProperty ;
107
+
108
+ rdfs:range :Datetime-local ;
109
+
110
+ rdfs:subPropertyOf :hasFormElement .
111
+
112
+
113
+
114
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasEmail
115
+
116
+ :hasEmail rdf:type owl:ObjectProperty ;
117
+
118
+ rdfs:range :Email ;
119
+
120
+ rdfs:subPropertyOf :hasFormElement .
121
+
122
+
123
+
124
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasFile
125
+
126
+ :hasFile rdf:type owl:ObjectProperty ;
127
+
128
+ rdfs:range :File ;
129
+
130
+ rdfs:subPropertyOf :hasFormElement .
131
+
132
+
133
+
134
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasFocus
135
+
136
+ :hasFocus rdf:type owl:ObjectProperty ;
137
+
138
+ rdfs:range :Focus ;
139
+
140
+ rdfs:domain :Visit ;
141
+
142
+ rdfs:subPropertyOf :hasPageView .
143
+
144
+
145
+
146
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasForm
147
+
148
+ :hasForm rdf:type owl:InverseFunctionalProperty ,
149
+ owl:IrreflexiveProperty ,
150
+ owl:ObjectProperty ;
151
+
152
+ rdfs:range :Form ;
153
+
154
+ rdfs:domain :Page ;
155
+
156
+ rdfs:subPropertyOf :hasHtmlElement .
157
+
158
+
159
+
160
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasFormElement
161
+
162
+ :hasFormElement rdf:type owl:InverseFunctionalProperty ,
163
+ owl:IrreflexiveProperty ,
164
+ owl:ObjectProperty ;
165
+
166
+ rdfs:domain :Form ;
167
+
168
+ rdfs:range :FormElement ;
169
+
170
+ rdfs:subPropertyOf :hasHtmlElement .
171
+
172
+
173
+
174
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasHidden
175
+
176
+ :hasHidden rdf:type owl:ObjectProperty ;
177
+
178
+ rdfs:range :Hidden ;
179
+
180
+ rdfs:subPropertyOf :hasFormElement .
181
+
182
+
183
+
184
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasHtmlElement
185
+
186
+ :hasHtmlElement rdf:type owl:ObjectProperty ;
187
+
188
+ rdfs:range :HtmlElement ;
189
+
190
+ rdfs:domain :Page .
191
+
192
+
193
+
194
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasImage
195
+
196
+ :hasImage rdf:type owl:ObjectProperty ;
197
+
198
+ rdfs:range :Image ;
199
+
200
+ rdfs:subPropertyOf :hasFormElement .
201
+
202
+
203
+
204
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasLink
205
+
206
+ :hasLink rdf:type owl:IrreflexiveProperty ,
207
+ owl:ObjectProperty ;
208
+
209
+ rdfs:range :Link ;
210
+
211
+ rdfs:domain :Page ;
212
+
213
+ rdfs:subPropertyOf :hasHtmlElement .
214
+
215
+
216
+
217
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasMonth
218
+
219
+ :hasMonth rdf:type owl:ObjectProperty ;
220
+
221
+ rdfs:range :Month ;
222
+
223
+ rdfs:subPropertyOf :hasFormElement .
224
+
225
+
226
+
227
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasNumber
228
+
229
+ :hasNumber rdf:type owl:ObjectProperty ;
230
+
231
+ rdfs:range :Number ;
232
+
233
+ rdfs:subPropertyOf :hasFormElement .
234
+
235
+
236
+
237
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasOption
238
+
239
+ :hasOption rdf:type owl:ObjectProperty ;
240
+
241
+ rdfs:range :Option ;
242
+
243
+ rdfs:subPropertyOf :hasFormElement .
244
+
245
+
246
+
247
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasPage
248
+
249
+ :hasPage rdf:type owl:InverseFunctionalProperty ,
250
+ owl:IrreflexiveProperty ,
251
+ owl:ObjectProperty ;
252
+
253
+ rdfs:range :Page ;
254
+
255
+ rdfs:domain :Website .
256
+
257
+
258
+
259
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasPageView
260
+
261
+ :hasPageView rdf:type owl:IrreflexiveProperty ,
262
+ owl:ObjectProperty ;
263
+
264
+ rdfs:range :PageView ;
265
+
266
+ rdfs:domain :Visit .
267
+
268
+
269
+
270
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasPageVisit
271
+
272
+ :hasPageVisit rdf:type owl:ObjectProperty ;
273
+
274
+ rdfs:domain :Page ;
275
+
276
+ rdfs:range :Visit .
277
+
278
+
279
+
280
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasPassword
281
+
282
+ :hasPassword rdf:type owl:ObjectProperty ;
283
+
284
+ rdfs:range :Password ;
285
+
286
+ rdfs:subPropertyOf :hasFormElement .
287
+
288
+
289
+
290
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasPicture
291
+
292
+ :hasPicture rdf:type owl:IrreflexiveProperty ,
293
+ owl:ObjectProperty ;
294
+
295
+ rdfs:domain :Page ;
296
+
297
+ rdfs:range :Picture ;
298
+
299
+ rdfs:subPropertyOf :hasHtmlElement .
300
+
301
+
302
+
303
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasRadio
304
+
305
+ :hasRadio rdf:type owl:ObjectProperty ;
306
+
307
+ rdfs:range :Radio ;
308
+
309
+ rdfs:subPropertyOf :hasFormElement .
310
+
311
+
312
+
313
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasRange
314
+
315
+ :hasRange rdf:type owl:ObjectProperty ;
316
+
317
+ rdfs:range :Range ;
318
+
319
+ rdfs:subPropertyOf :hasFormElement .
320
+
321
+
322
+
323
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasReset
324
+
325
+ :hasReset rdf:type owl:ObjectProperty ;
326
+
327
+ rdfs:range :Reset ;
328
+
329
+ rdfs:subPropertyOf :hasFormElement .
330
+
331
+
332
+
333
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasScroll
334
+
335
+ :hasScroll rdf:type owl:ObjectProperty ;
336
+
337
+ rdfs:range :Scroll ;
338
+
339
+ rdfs:domain :Visit ;
340
+
341
+ rdfs:subPropertyOf :hasPageView .
342
+
343
+
344
+
345
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasSearch
346
+
347
+ :hasSearch rdf:type owl:ObjectProperty ;
348
+
349
+ rdfs:range :Search ;
350
+
351
+ rdfs:subPropertyOf :hasFormElement .
352
+
353
+
354
+
355
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasSelect
356
+
357
+ :hasSelect rdf:type owl:ObjectProperty ;
358
+
359
+ rdfs:range :Select ;
360
+
361
+ rdfs:subPropertyOf :hasFormElement .
362
+
363
+
364
+
365
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasState
366
+
367
+ :hasState rdf:type owl:IrreflexiveProperty ,
368
+ owl:ObjectProperty ;
369
+
370
+ rdfs:domain :Page ;
371
+
372
+ rdfs:range :State .
373
+
374
+
375
+
376
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasSubject
377
+
378
+ :hasSubject rdf:type owl:IrreflexiveProperty ,
379
+ owl:ObjectProperty ;
380
+
381
+ rdfs:domain :Page ;
382
+
383
+ rdfs:range :Subject .
384
+
385
+
386
+
387
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasSubmit
388
+
389
+ :hasSubmit rdf:type owl:ObjectProperty ;
390
+
391
+ rdfs:range :Submit ;
392
+
393
+ rdfs:subPropertyOf :hasFormElement .
394
+
395
+
396
+
397
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasTel
398
+
399
+ :hasTel rdf:type owl:ObjectProperty ;
400
+
401
+ rdfs:range :Tel ;
402
+
403
+ rdfs:subPropertyOf :hasFormElement .
404
+
405
+
406
+
407
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasText
408
+
409
+ :hasText rdf:type owl:ObjectProperty ;
410
+
411
+ rdfs:range :Text ;
412
+
413
+ rdfs:subPropertyOf :hasFormElement .
414
+
415
+
416
+
417
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasTextarea
418
+
419
+ :hasTextarea rdf:type owl:ObjectProperty ;
420
+
421
+ rdfs:range :Textarea ;
422
+
423
+ rdfs:subPropertyOf :hasFormElement .
424
+
425
+
426
+
427
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasTime
428
+
429
+ :hasTime rdf:type owl:ObjectProperty ;
430
+
431
+ rdfs:range :Time ;
432
+
433
+ rdfs:subPropertyOf :hasFormElement .
434
+
435
+
436
+
437
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasUrl
438
+
439
+ :hasUrl rdf:type owl:ObjectProperty ;
440
+
441
+ rdfs:range :Url ;
442
+
443
+ rdfs:subPropertyOf :hasFormElement .
444
+
445
+
446
+
447
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasVisit
448
+
449
+ :hasVisit rdf:type owl:IrreflexiveProperty ,
450
+ owl:ObjectProperty ;
451
+
452
+ rdfs:range :Visit ;
453
+
454
+ rdfs:domain :Visitor .
455
+
456
+
457
+
458
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasVisitor
459
+
460
+ :hasVisitor rdf:type owl:IrreflexiveProperty ,
461
+ owl:ObjectProperty ;
462
+
463
+ rdfs:range :Visitor ;
464
+
465
+ rdfs:domain :Website .
466
+
467
+
468
+
469
+ ### http://wba.cs.hs-rm.de/AbRUPt/hasWeek
470
+
471
+ :hasWeek rdf:type owl:ObjectProperty ;
472
+
473
+ rdfs:range :Week ;
474
+
475
+ rdfs:subPropertyOf :hasFormElement .
476
+
477
+
478
+
479
+
480
+
481
+ #################################################################
482
+ #
483
+ # Data properties
484
+ #
485
+ #################################################################
486
+
487
+
488
+ ### http://wba.cs.hs-rm.de/AbRUPt/bigwords
489
+
490
+ :bigwords rdf:type owl:DatatypeProperty ;
491
+
492
+ rdfs:domain :Page ;
493
+
494
+ rdfs:range xsd:integer .
495
+
496
+
497
+
498
+ ### http://wba.cs.hs-rm.de/AbRUPt/blue
499
+
500
+ :blue rdf:type owl:DatatypeProperty ;
501
+
502
+ rdfs:domain :BaseColor ;
503
+
504
+ rdfs:range xsd:decimal .
505
+
506
+
507
+
508
+ ### http://wba.cs.hs-rm.de/AbRUPt/class
509
+
510
+ :class rdf:type owl:DatatypeProperty ;
511
+
512
+ rdfs:domain :HtmlElement ;
513
+
514
+ rdfs:range xsd:string .
515
+
516
+
517
+
518
+ ### http://wba.cs.hs-rm.de/AbRUPt/classLimit
519
+
520
+ :classLimit rdf:type owl:DatatypeProperty ;
521
+
522
+ rdfs:domain :Subject ;
523
+
524
+ rdfs:range xsd:integer .
525
+
526
+
527
+
528
+ ### http://wba.cs.hs-rm.de/AbRUPt/client
529
+
530
+ :client rdf:type owl:DatatypeProperty ;
531
+
532
+ rdfs:domain :Visitor ;
533
+
534
+ rdfs:range xsd:string .
535
+
536
+
537
+
538
+ ### http://wba.cs.hs-rm.de/AbRUPt/colorfulness
539
+
540
+ :colorfulness rdf:type owl:DatatypeProperty ;
541
+
542
+ rdfs:domain :Page ;
543
+
544
+ rdfs:range xsd:decimal .
545
+
546
+
547
+
548
+ ### http://wba.cs.hs-rm.de/AbRUPt/cols
549
+
550
+ :cols rdf:type owl:DatatypeProperty ;
551
+
552
+ rdfs:domain :Textarea ;
553
+
554
+ rdfs:range xsd:nonNegativeInteger .
555
+
556
+
557
+
558
+ ### http://wba.cs.hs-rm.de/AbRUPt/contrast
559
+
560
+ :contrast rdf:type owl:DatatypeProperty ;
561
+
562
+ rdfs:domain :Page ;
563
+
564
+ rdfs:range xsd:string .
565
+
566
+
567
+
568
+ ### http://wba.cs.hs-rm.de/AbRUPt/datetime
569
+
570
+ :datetime rdf:type owl:DatatypeProperty ;
571
+
572
+ rdfs:domain :PageView ;
573
+
574
+ rdfs:range xsd:dateTime .
575
+
576
+
577
+
578
+ ### http://wba.cs.hs-rm.de/AbRUPt/depth
579
+
580
+ :depth rdf:type owl:DatatypeProperty ;
581
+
582
+ rdfs:domain :Subject ;
583
+
584
+ rdfs:range xsd:integer .
585
+
586
+
587
+
588
+ ### http://wba.cs.hs-rm.de/AbRUPt/differenceMatrix
589
+
590
+ :differenceMatrix rdf:type owl:DatatypeProperty .
591
+
592
+
593
+
594
+ ### http://wba.cs.hs-rm.de/AbRUPt/duration
595
+
596
+ :duration rdf:type owl:DatatypeProperty ;
597
+
598
+ rdfs:domain :Picture ;
599
+
600
+ rdfs:range xsd:decimal .
601
+
602
+
603
+
604
+ ### http://wba.cs.hs-rm.de/AbRUPt/entertime
605
+
606
+ :entertime rdf:type owl:DatatypeProperty ;
607
+
608
+ rdfs:domain :Visit ;
609
+
610
+ rdfs:range xsd:dateTime .
611
+
612
+
613
+
614
+ ### http://wba.cs.hs-rm.de/AbRUPt/errorcode
615
+
616
+ :errorcode rdf:type owl:DatatypeProperty ;
617
+
618
+ rdfs:domain :Visit ;
619
+
620
+ rdfs:range xsd:int .
621
+
622
+
623
+
624
+ ### http://wba.cs.hs-rm.de/AbRUPt/filename
625
+
626
+ :filename rdf:type owl:DatatypeProperty ;
627
+
628
+ rdfs:domain :Picture ;
629
+
630
+ rdfs:range xsd:string .
631
+
632
+
633
+
634
+ ### http://wba.cs.hs-rm.de/AbRUPt/frequency
635
+
636
+ :frequency rdf:type owl:DatatypeProperty ;
637
+
638
+ rdfs:range xsd:integer .
639
+
640
+
641
+
642
+ ### http://wba.cs.hs-rm.de/AbRUPt/geometry
643
+
644
+ :geometry rdf:type owl:DatatypeProperty ;
645
+
646
+ rdfs:domain :Picture ;
647
+
648
+ rdfs:range xsd:string .
649
+
650
+
651
+
652
+ ### http://wba.cs.hs-rm.de/AbRUPt/green
653
+
654
+ :green rdf:type owl:DatatypeProperty ;
655
+
656
+ rdfs:domain :BaseColor ;
657
+
658
+ rdfs:range xsd:decimal .
659
+
660
+
661
+
662
+ ### http://wba.cs.hs-rm.de/AbRUPt/horizontalBalance
663
+
664
+ :horizontalBalance rdf:type owl:DatatypeProperty ;
665
+
666
+ rdfs:domain :Page ;
667
+
668
+ rdfs:range xsd:decimal .
669
+
670
+
671
+
672
+ ### http://wba.cs.hs-rm.de/AbRUPt/horizontalSymmetry
673
+
674
+ :horizontalSymmetry rdf:type owl:DatatypeProperty ;
675
+
676
+ rdfs:domain :Page ;
677
+
678
+ rdfs:range xsd:decimal .
679
+
680
+
681
+
682
+ ### http://wba.cs.hs-rm.de/AbRUPt/host
683
+
684
+ :host rdf:type owl:DatatypeProperty ;
685
+
686
+ rdfs:domain :Visitor ;
687
+
688
+ rdfs:range xsd:string .
689
+
690
+
691
+
692
+ ### http://wba.cs.hs-rm.de/AbRUPt/hostName
693
+
694
+ :hostName rdf:type owl:DatatypeProperty ;
695
+
696
+ rdfs:domain :Website ;
697
+
698
+ rdfs:range xsd:string .
699
+
700
+
701
+
702
+ ### http://wba.cs.hs-rm.de/AbRUPt/href
703
+
704
+ :href rdf:type owl:DatatypeProperty ;
705
+
706
+ rdfs:domain :Link ;
707
+
708
+ rdfs:range xsd:string .
709
+
710
+
711
+
712
+ ### http://wba.cs.hs-rm.de/AbRUPt/httpcommand
713
+
714
+ :httpcommand rdf:type owl:DatatypeProperty ;
715
+
716
+ rdfs:domain :Visit ;
717
+
718
+ rdfs:range xsd:string .
719
+
720
+
721
+
722
+ ### http://wba.cs.hs-rm.de/AbRUPt/httpversion
723
+
724
+ :httpversion rdf:type owl:DatatypeProperty ;
725
+
726
+ rdfs:domain :Visit ;
727
+
728
+ rdfs:range xsd:string .
729
+
730
+
731
+
732
+ ### http://wba.cs.hs-rm.de/AbRUPt/hue
733
+
734
+ :hue rdf:type owl:DatatypeProperty ;
735
+
736
+ rdfs:domain :Page ;
737
+
738
+ rdfs:range xsd:decimal .
739
+
740
+
741
+
742
+ ### http://wba.cs.hs-rm.de/AbRUPt/id
743
+
744
+ :id rdf:type owl:DatatypeProperty ;
745
+
746
+ rdfs:domain :HtmlElement ;
747
+
748
+ rdfs:range xsd:string .
749
+
750
+
751
+
752
+ ### http://wba.cs.hs-rm.de/AbRUPt/imageType
753
+
754
+ :imageType rdf:type owl:DatatypeProperty ;
755
+
756
+ rdfs:domain :Picture ;
757
+
758
+ rdfs:range xsd:string .
759
+
760
+
761
+
762
+ ### http://wba.cs.hs-rm.de/AbRUPt/imgAreaInPixelSquared
763
+
764
+ :imgAreaInPixelSquared rdf:type owl:DatatypeProperty ;
765
+
766
+ rdfs:domain :Page ;
767
+
768
+ rdfs:range xsd:decimal .
769
+
770
+
771
+
772
+ ### http://wba.cs.hs-rm.de/AbRUPt/imgDocumentTagPercentage
773
+
774
+ :imgDocumentTagPercentage rdf:type owl:DatatypeProperty ;
775
+
776
+ rdfs:domain :Page ;
777
+
778
+ rdfs:range xsd:decimal .
779
+
780
+
781
+
782
+ ### http://wba.cs.hs-rm.de/AbRUPt/imgDocumentTagRatio
783
+
784
+ :imgDocumentTagRatio rdf:type owl:DatatypeProperty ;
785
+
786
+ rdfs:domain :Page ;
787
+
788
+ rdfs:range xsd:decimal .
789
+
790
+
791
+
792
+ ### http://wba.cs.hs-rm.de/AbRUPt/inputname
793
+
794
+ :inputname rdf:type owl:DatatypeProperty ;
795
+
796
+ rdfs:domain :Content ;
797
+
798
+ rdfs:range xsd:string .
799
+
800
+
801
+
802
+ ### http://wba.cs.hs-rm.de/AbRUPt/ip
803
+
804
+ :ip rdf:type owl:DatatypeProperty ;
805
+
806
+ rdfs:domain :Visitor ;
807
+
808
+ rdfs:range xsd:string .
809
+
810
+
811
+
812
+ ### http://wba.cs.hs-rm.de/AbRUPt/leavetime
813
+
814
+ :leavetime rdf:type owl:DatatypeProperty .
815
+
816
+
817
+
818
+ ### http://wba.cs.hs-rm.de/AbRUPt/matrix
819
+
820
+ :matrix rdf:type owl:DatatypeProperty ;
821
+
822
+ rdfs:domain :Page ;
823
+
824
+ rdfs:range xsd:decimal .
825
+
826
+
827
+
828
+ ### http://wba.cs.hs-rm.de/AbRUPt/maxlength
829
+
830
+ :maxlength rdf:type owl:DatatypeProperty ;
831
+
832
+ rdfs:domain :FormElement ;
833
+
834
+ rdfs:range xsd:nonNegativeInteger .
835
+
836
+
837
+
838
+ ### http://wba.cs.hs-rm.de/AbRUPt/mimeType
839
+
840
+ :mimeType rdf:type owl:DatatypeProperty ;
841
+
842
+ rdfs:domain :Picture ;
843
+
844
+ rdfs:range xsd:string .
845
+
846
+
847
+
848
+ ### http://wba.cs.hs-rm.de/AbRUPt/mimetype
849
+
850
+ :mimetype rdf:type owl:DatatypeProperty ;
851
+
852
+ rdfs:domain :Picture ;
853
+
854
+ rdfs:range xsd:string .
855
+
856
+
857
+
858
+ ### http://wba.cs.hs-rm.de/AbRUPt/name
859
+
860
+ :name rdf:type owl:DatatypeProperty ;
861
+
862
+ rdfs:domain :FormElement ;
863
+
864
+ rdfs:range xsd:string .
865
+
866
+
867
+
868
+ ### http://wba.cs.hs-rm.de/AbRUPt/nontextArea
869
+
870
+ :nontextArea rdf:type owl:DatatypeProperty ;
871
+
872
+ rdfs:domain :Page ;
873
+
874
+ rdfs:range xsd:decimal .
875
+
876
+
877
+
878
+ ### http://wba.cs.hs-rm.de/AbRUPt/numberOfImageAreas
879
+
880
+ :numberOfImageAreas rdf:type owl:DatatypeProperty ;
881
+
882
+ rdfs:domain :Page ;
883
+
884
+ rdfs:range xsd:decimal .
885
+
886
+
887
+
888
+ ### http://wba.cs.hs-rm.de/AbRUPt/numberOfLeaves
889
+
890
+ :numberOfLeaves rdf:type owl:DatatypeProperty ;
891
+
892
+ rdfs:domain :Page ;
893
+
894
+ rdfs:range xsd:integer .
895
+
896
+
897
+
898
+ ### http://wba.cs.hs-rm.de/AbRUPt/numberOfLinks
899
+
900
+ :numberOfLinks rdf:type owl:DatatypeProperty ;
901
+
902
+ rdfs:domain :Page ;
903
+
904
+ rdfs:range xsd:int .
905
+
906
+
907
+
908
+ ### http://wba.cs.hs-rm.de/AbRUPt/numberOfTextGroups
909
+
910
+ :numberOfTextGroups rdf:type owl:DatatypeProperty ;
911
+
912
+ rdfs:domain :Page ;
913
+
914
+ rdfs:range xsd:decimal .
915
+
916
+
917
+
918
+ ### http://wba.cs.hs-rm.de/AbRUPt/onclick
919
+
920
+ :onclick rdf:type owl:DatatypeProperty ;
921
+
922
+ rdfs:domain :HtmlElement ;
923
+
924
+ rdfs:range xsd:string .
925
+
926
+
927
+
928
+ ### http://wba.cs.hs-rm.de/AbRUPt/pageHeightInPixel
929
+
930
+ :pageHeightInPixel rdf:type owl:DatatypeProperty ;
931
+
932
+ rdfs:domain :Page ;
933
+
934
+ rdfs:range xsd:decimal .
935
+
936
+
937
+
938
+ ### http://wba.cs.hs-rm.de/AbRUPt/pageLanguage
939
+
940
+ :pageLanguage rdf:type owl:DatatypeProperty ;
941
+
942
+ rdfs:domain :Page ;
943
+
944
+ rdfs:range xsd:string .
945
+
946
+
947
+
948
+ ### http://wba.cs.hs-rm.de/AbRUPt/pageName
949
+
950
+ :pageName rdf:type owl:DatatypeProperty ;
951
+
952
+ rdfs:domain :Page ;
953
+
954
+ rdfs:range xsd:string .
955
+
956
+
957
+
958
+ ### http://wba.cs.hs-rm.de/AbRUPt/pageSizeInPixelSquared
959
+
960
+ :pageSizeInPixelSquared rdf:type owl:DatatypeProperty ;
961
+
962
+ rdfs:domain :Page ;
963
+
964
+ rdfs:range xsd:decimal .
965
+
966
+
967
+
968
+ ### http://wba.cs.hs-rm.de/AbRUPt/pageWidthInPixel
969
+
970
+ :pageWidthInPixel rdf:type owl:DatatypeProperty ;
971
+
972
+ rdfs:domain :Page ;
973
+
974
+ rdfs:range xsd:decimal .
975
+
976
+
977
+
978
+ ### http://wba.cs.hs-rm.de/AbRUPt/palette
979
+
980
+ :palette rdf:type owl:DatatypeProperty ;
981
+
982
+ rdfs:domain :Page ;
983
+
984
+ rdfs:range xsd:decimal .
985
+
986
+
987
+
988
+ ### http://wba.cs.hs-rm.de/AbRUPt/phpsessionid
989
+
990
+ :phpsessionid rdf:type owl:DatatypeProperty ;
991
+
992
+ rdfs:domain :Visit ;
993
+
994
+ rdfs:range xsd:string .
995
+
996
+
997
+
998
+ ### http://wba.cs.hs-rm.de/AbRUPt/pictureFileName
999
+
1000
+ :pictureFileName rdf:type owl:DatatypeProperty ;
1001
+
1002
+ rdfs:domain :Picture ;
1003
+
1004
+ rdfs:range xsd:string .
1005
+
1006
+
1007
+
1008
+ ### http://wba.cs.hs-rm.de/AbRUPt/placeholder
1009
+
1010
+ :placeholder rdf:type owl:DatatypeProperty ;
1011
+
1012
+ rdfs:domain :FormElement ;
1013
+
1014
+ rdfs:range xsd:string .
1015
+
1016
+
1017
+
1018
+ ### http://wba.cs.hs-rm.de/AbRUPt/plaintext
1019
+
1020
+ :plaintext rdf:type owl:DatatypeProperty ;
1021
+
1022
+ rdfs:domain :Link ;
1023
+
1024
+ rdfs:range xsd:string .
1025
+
1026
+
1027
+
1028
+ ### http://wba.cs.hs-rm.de/AbRUPt/priority
1029
+
1030
+ :priority rdf:type owl:DatatypeProperty ;
1031
+
1032
+ rdfs:domain :Problem ;
1033
+
1034
+ rdfs:range xsd:nonNegativeInteger .
1035
+
1036
+
1037
+
1038
+ ### http://wba.cs.hs-rm.de/AbRUPt/ratios
1039
+
1040
+ :ratios rdf:type owl:DatatypeProperty ;
1041
+
1042
+ rdfs:domain :Page ;
1043
+
1044
+ rdfs:range xsd:string .
1045
+
1046
+
1047
+
1048
+ ### http://wba.cs.hs-rm.de/AbRUPt/readability
1049
+
1050
+ :readability rdf:type owl:DatatypeProperty ;
1051
+
1052
+ rdfs:domain :Page ;
1053
+
1054
+ rdfs:range xsd:decimal .
1055
+
1056
+
1057
+
1058
+ ### http://wba.cs.hs-rm.de/AbRUPt/readabilityLanguage
1059
+
1060
+ :readabilityLanguage rdf:type owl:DatatypeProperty ;
1061
+
1062
+ rdfs:domain :Page ;
1063
+
1064
+ rdfs:range xsd:string .
1065
+
1066
+
1067
+
1068
+ ### http://wba.cs.hs-rm.de/AbRUPt/red
1069
+
1070
+ :red rdf:type owl:DatatypeProperty ;
1071
+
1072
+ rdfs:domain :BaseColor ;
1073
+
1074
+ rdfs:range xsd:decimal .
1075
+
1076
+
1077
+
1078
+ ### http://wba.cs.hs-rm.de/AbRUPt/referrer
1079
+
1080
+ :referrer rdf:type owl:DatatypeProperty ;
1081
+
1082
+ rdfs:domain :Visit ;
1083
+
1084
+ rdfs:range xsd:string .
1085
+
1086
+
1087
+
1088
+ ### http://wba.cs.hs-rm.de/AbRUPt/required
1089
+
1090
+ :required rdf:type owl:DatatypeProperty ;
1091
+
1092
+ rdfs:domain :FormElement ;
1093
+
1094
+ rdfs:range xsd:boolean .
1095
+
1096
+
1097
+
1098
+ ### http://wba.cs.hs-rm.de/AbRUPt/rows
1099
+
1100
+ :rows rdf:type owl:DatatypeProperty ;
1101
+
1102
+ rdfs:domain :Textarea ;
1103
+
1104
+ rdfs:range xsd:nonNegativeInteger .
1105
+
1106
+
1107
+
1108
+ ### http://wba.cs.hs-rm.de/AbRUPt/sentences
1109
+
1110
+ :sentences rdf:type owl:DatatypeProperty ;
1111
+
1112
+ rdfs:domain :Page ;
1113
+
1114
+ rdfs:range xsd:integer .
1115
+
1116
+
1117
+
1118
+ ### http://wba.cs.hs-rm.de/AbRUPt/size
1119
+
1120
+ :size rdf:type owl:DatatypeProperty ;
1121
+
1122
+ rdfs:domain :Input ;
1123
+
1124
+ rdfs:range xsd:nonNegativeInteger .
1125
+
1126
+
1127
+
1128
+ ### http://wba.cs.hs-rm.de/AbRUPt/state
1129
+
1130
+ :state rdf:type owl:DatatypeProperty ;
1131
+
1132
+ rdfs:domain :Page ;
1133
+
1134
+ rdfs:range xsd:string .
1135
+
1136
+
1137
+
1138
+ ### http://wba.cs.hs-rm.de/AbRUPt/subjectLanguage
1139
+
1140
+ :subjectLanguage rdf:type owl:DatatypeProperty ;
1141
+
1142
+ rdfs:domain :Subject ;
1143
+
1144
+ rdfs:range xsd:string .
1145
+
1146
+
1147
+
1148
+ ### http://wba.cs.hs-rm.de/AbRUPt/syllables
1149
+
1150
+ :syllables rdf:type owl:DatatypeProperty ;
1151
+
1152
+ rdfs:domain :Page ;
1153
+
1154
+ rdfs:range xsd:integer .
1155
+
1156
+
1157
+
1158
+ ### http://wba.cs.hs-rm.de/AbRUPt/textArea
1159
+
1160
+ :textArea rdf:type owl:DatatypeProperty ;
1161
+
1162
+ rdfs:domain :Page ;
1163
+
1164
+ rdfs:range xsd:decimal .
1165
+
1166
+
1167
+
1168
+ ### http://wba.cs.hs-rm.de/AbRUPt/textReadingTime
1169
+
1170
+ :textReadingTime rdf:type owl:DatatypeProperty ;
1171
+
1172
+ rdfs:domain :Page ;
1173
+
1174
+ rdfs:range xsd:decimal .
1175
+
1176
+
1177
+
1178
+ ### http://wba.cs.hs-rm.de/AbRUPt/type
1179
+
1180
+ :type rdf:type owl:DatatypeProperty ;
1181
+
1182
+ rdfs:domain :Input ;
1183
+
1184
+ rdfs:range xsd:string .
1185
+
1186
+
1187
+
1188
+ ### http://wba.cs.hs-rm.de/AbRUPt/uri
1189
+
1190
+ :uri rdf:type owl:DatatypeProperty ;
1191
+
1192
+ rdfs:domain :Visit ;
1193
+
1194
+ rdfs:range xsd:string .
1195
+
1196
+
1197
+
1198
+ ### http://wba.cs.hs-rm.de/AbRUPt/username
1199
+
1200
+ :username rdf:type owl:DatatypeProperty ;
1201
+
1202
+ rdfs:domain :Visitor ;
1203
+
1204
+ rdfs:range xsd:string .
1205
+
1206
+
1207
+
1208
+ ### http://wba.cs.hs-rm.de/AbRUPt/value
1209
+
1210
+ :value rdf:type owl:DatatypeProperty ;
1211
+
1212
+ rdfs:domain :FormElement .
1213
+
1214
+
1215
+
1216
+ ### http://wba.cs.hs-rm.de/AbRUPt/vicramComplexity
1217
+
1218
+ :vicramComplexity rdf:type owl:DatatypeProperty ;
1219
+
1220
+ rdfs:domain :State ;
1221
+
1222
+ rdfs:range xsd:decimal .
1223
+
1224
+
1225
+
1226
+ ### http://wba.cs.hs-rm.de/AbRUPt/visualComplexity
1227
+
1228
+ :visualComplexity rdf:type owl:DatatypeProperty ;
1229
+
1230
+ rdfs:domain :Page ;
1231
+
1232
+ rdfs:range xsd:decimal .
1233
+
1234
+
1235
+
1236
+ ### http://wba.cs.hs-rm.de/AbRUPt/vizweb
1237
+
1238
+ :vizweb rdf:type owl:DatatypeProperty ;
1239
+
1240
+ rdfs:domain :Page ;
1241
+
1242
+ rdfs:range xsd:string .
1243
+
1244
+
1245
+
1246
+ ### http://wba.cs.hs-rm.de/AbRUPt/websiteName
1247
+
1248
+ :websiteName rdf:type owl:DatatypeProperty ;
1249
+
1250
+ rdfs:domain :Website ;
1251
+
1252
+ rdfs:range xsd:string .
1253
+
1254
+
1255
+
1256
+ ### http://wba.cs.hs-rm.de/AbRUPt/wordLimit
1257
+
1258
+ :wordLimit rdf:type owl:DatatypeProperty ;
1259
+
1260
+ rdfs:domain :Subject ;
1261
+
1262
+ rdfs:range xsd:integer .
1263
+
1264
+
1265
+
1266
+ ### http://wba.cs.hs-rm.de/AbRUPt/words
1267
+
1268
+ :words rdf:type owl:DatatypeProperty ;
1269
+
1270
+ rdfs:domain :Page ;
1271
+
1272
+ rdfs:range xsd:integer .
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+ #################################################################
1279
+ #
1280
+ # Classes
1281
+ #
1282
+ #################################################################
1283
+
1284
+
1285
+ ### http://wba.cs.hs-rm.de/AbRUPt/BaseColor
1286
+
1287
+ :BaseColor rdf:type owl:Class .
1288
+
1289
+
1290
+
1291
+ ### http://wba.cs.hs-rm.de/AbRUPt/Blur
1292
+
1293
+ :Blur rdf:type owl:Class ;
1294
+
1295
+ rdfs:subClassOf :PageView .
1296
+
1297
+
1298
+
1299
+ ### http://wba.cs.hs-rm.de/AbRUPt/Button
1300
+
1301
+ :Button rdf:type owl:Class ;
1302
+
1303
+ rdfs:subClassOf :Input .
1304
+
1305
+
1306
+
1307
+ ### http://wba.cs.hs-rm.de/AbRUPt/Checkbox
1308
+
1309
+ :Checkbox rdf:type owl:Class ;
1310
+
1311
+ rdfs:subClassOf :Input .
1312
+
1313
+
1314
+
1315
+ ### http://wba.cs.hs-rm.de/AbRUPt/Color
1316
+
1317
+ :Color rdf:type owl:Class ;
1318
+
1319
+ rdfs:subClassOf :Input .
1320
+
1321
+
1322
+
1323
+ ### http://wba.cs.hs-rm.de/AbRUPt/Content
1324
+
1325
+ :Content rdf:type owl:Class ;
1326
+
1327
+ rdfs:subClassOf :PageView .
1328
+
1329
+
1330
+
1331
+ ### http://wba.cs.hs-rm.de/AbRUPt/Date
1332
+
1333
+ :Date rdf:type owl:Class ;
1334
+
1335
+ rdfs:subClassOf :Input .
1336
+
1337
+
1338
+
1339
+ ### http://wba.cs.hs-rm.de/AbRUPt/Datetime
1340
+
1341
+ :Datetime rdf:type owl:Class ;
1342
+
1343
+ rdfs:subClassOf :Input .
1344
+
1345
+
1346
+
1347
+ ### http://wba.cs.hs-rm.de/AbRUPt/Datetime-local
1348
+
1349
+ :Datetime-local rdf:type owl:Class ;
1350
+
1351
+ rdfs:subClassOf :Input .
1352
+
1353
+
1354
+
1355
+ ### http://wba.cs.hs-rm.de/AbRUPt/Email
1356
+
1357
+ :Email rdf:type owl:Class ;
1358
+
1359
+ rdfs:subClassOf :Input .
1360
+
1361
+
1362
+
1363
+ ### http://wba.cs.hs-rm.de/AbRUPt/File
1364
+
1365
+ :File rdf:type owl:Class ;
1366
+
1367
+ rdfs:subClassOf :Input .
1368
+
1369
+
1370
+
1371
+ ### http://wba.cs.hs-rm.de/AbRUPt/Focus
1372
+
1373
+ :Focus rdf:type owl:Class ;
1374
+
1375
+ rdfs:subClassOf :PageView .
1376
+
1377
+
1378
+
1379
+ ### http://wba.cs.hs-rm.de/AbRUPt/Form
1380
+
1381
+ :Form rdf:type owl:Class ;
1382
+
1383
+ rdfs:subClassOf :HtmlElement .
1384
+
1385
+
1386
+
1387
+ ### http://wba.cs.hs-rm.de/AbRUPt/FormElement
1388
+
1389
+ :FormElement rdf:type owl:Class ;
1390
+
1391
+ rdfs:subClassOf :HtmlElement .
1392
+
1393
+
1394
+
1395
+ ### http://wba.cs.hs-rm.de/AbRUPt/Hidden
1396
+
1397
+ :Hidden rdf:type owl:Class ;
1398
+
1399
+ rdfs:subClassOf :Input .
1400
+
1401
+
1402
+
1403
+ ### http://wba.cs.hs-rm.de/AbRUPt/HtmlElement
1404
+
1405
+ :HtmlElement rdf:type owl:Class .
1406
+
1407
+
1408
+
1409
+ ### http://wba.cs.hs-rm.de/AbRUPt/Image
1410
+
1411
+ :Image rdf:type owl:Class ;
1412
+
1413
+ rdfs:subClassOf :Input .
1414
+
1415
+
1416
+
1417
+ ### http://wba.cs.hs-rm.de/AbRUPt/Input
1418
+
1419
+ :Input rdf:type owl:Class ;
1420
+
1421
+ rdfs:subClassOf :FormElement .
1422
+
1423
+
1424
+
1425
+ ### http://wba.cs.hs-rm.de/AbRUPt/Link
1426
+
1427
+ :Link rdf:type owl:Class ;
1428
+
1429
+ rdfs:subClassOf :HtmlElement .
1430
+
1431
+
1432
+
1433
+ ### http://wba.cs.hs-rm.de/AbRUPt/Month
1434
+
1435
+ :Month rdf:type owl:Class ;
1436
+
1437
+ rdfs:subClassOf :Input .
1438
+
1439
+
1440
+
1441
+ ### http://wba.cs.hs-rm.de/AbRUPt/Number
1442
+
1443
+ :Number rdf:type owl:Class ;
1444
+
1445
+ rdfs:subClassOf :Input .
1446
+
1447
+
1448
+
1449
+ ### http://wba.cs.hs-rm.de/AbRUPt/Option
1450
+
1451
+ :Option rdf:type owl:Class ;
1452
+
1453
+ rdfs:subClassOf :FormElement .
1454
+
1455
+
1456
+
1457
+ ### http://wba.cs.hs-rm.de/AbRUPt/Page
1458
+
1459
+ :Page rdf:type owl:Class .
1460
+
1461
+
1462
+
1463
+ ### http://wba.cs.hs-rm.de/AbRUPt/PageView
1464
+
1465
+ :PageView rdf:type owl:Class .
1466
+
1467
+
1468
+
1469
+ ### http://wba.cs.hs-rm.de/AbRUPt/Password
1470
+
1471
+ :Password rdf:type owl:Class ;
1472
+
1473
+ rdfs:subClassOf :Input .
1474
+
1475
+
1476
+
1477
+ ### http://wba.cs.hs-rm.de/AbRUPt/Picture
1478
+
1479
+ :Picture rdf:type owl:Class ;
1480
+
1481
+ rdfs:subClassOf :HtmlElement .
1482
+
1483
+
1484
+
1485
+ ### http://wba.cs.hs-rm.de/AbRUPt/Problem
1486
+
1487
+ :Problem rdf:type owl:Class .
1488
+
1489
+
1490
+
1491
+ ### http://wba.cs.hs-rm.de/AbRUPt/Radio
1492
+
1493
+ :Radio rdf:type owl:Class ;
1494
+
1495
+ rdfs:subClassOf :Input .
1496
+
1497
+
1498
+
1499
+ ### http://wba.cs.hs-rm.de/AbRUPt/Range
1500
+
1501
+ :Range rdf:type owl:Class ;
1502
+
1503
+ rdfs:subClassOf :Input .
1504
+
1505
+
1506
+
1507
+ ### http://wba.cs.hs-rm.de/AbRUPt/Reset
1508
+
1509
+ :Reset rdf:type owl:Class ;
1510
+
1511
+ rdfs:subClassOf :Input .
1512
+
1513
+
1514
+
1515
+ ### http://wba.cs.hs-rm.de/AbRUPt/Scroll
1516
+
1517
+ :Scroll rdf:type owl:Class ;
1518
+
1519
+ rdfs:subClassOf :PageView .
1520
+
1521
+
1522
+
1523
+ ### http://wba.cs.hs-rm.de/AbRUPt/Search
1524
+
1525
+ :Search rdf:type owl:Class ;
1526
+
1527
+ rdfs:subClassOf :Input .
1528
+
1529
+
1530
+
1531
+ ### http://wba.cs.hs-rm.de/AbRUPt/Select
1532
+
1533
+ :Select rdf:type owl:Class ;
1534
+
1535
+ rdfs:subClassOf :FormElement .
1536
+
1537
+
1538
+
1539
+ ### http://wba.cs.hs-rm.de/AbRUPt/State
1540
+
1541
+ :State rdf:type owl:Class ;
1542
+
1543
+ rdfs:subClassOf :Page .
1544
+
1545
+
1546
+
1547
+ ### http://wba.cs.hs-rm.de/AbRUPt/Subject
1548
+
1549
+ :Subject rdf:type owl:Class .
1550
+
1551
+
1552
+
1553
+ ### http://wba.cs.hs-rm.de/AbRUPt/Submit
1554
+
1555
+ :Submit rdf:type owl:Class ;
1556
+
1557
+ rdfs:subClassOf :Input .
1558
+
1559
+
1560
+
1561
+ ### http://wba.cs.hs-rm.de/AbRUPt/Tel
1562
+
1563
+ :Tel rdf:type owl:Class ;
1564
+
1565
+ rdfs:subClassOf :Input .
1566
+
1567
+
1568
+
1569
+ ### http://wba.cs.hs-rm.de/AbRUPt/Text
1570
+
1571
+ :Text rdf:type owl:Class ;
1572
+
1573
+ rdfs:subClassOf :Input .
1574
+
1575
+
1576
+
1577
+ ### http://wba.cs.hs-rm.de/AbRUPt/Textarea
1578
+
1579
+ :Textarea rdf:type owl:Class ;
1580
+
1581
+ rdfs:subClassOf :FormElement .
1582
+
1583
+
1584
+
1585
+ ### http://wba.cs.hs-rm.de/AbRUPt/Time
1586
+
1587
+ :Time rdf:type owl:Class ;
1588
+
1589
+ rdfs:subClassOf :Input .
1590
+
1591
+
1592
+
1593
+ ### http://wba.cs.hs-rm.de/AbRUPt/Url
1594
+
1595
+ :Url rdf:type owl:Class ;
1596
+
1597
+ rdfs:subClassOf :Input .
1598
+
1599
+
1600
+
1601
+ ### http://wba.cs.hs-rm.de/AbRUPt/Visit
1602
+
1603
+ :Visit rdf:type owl:Class .
1604
+
1605
+
1606
+
1607
+ ### http://wba.cs.hs-rm.de/AbRUPt/Visitor
1608
+
1609
+ :Visitor rdf:type owl:Class .
1610
+
1611
+
1612
+
1613
+ ### http://wba.cs.hs-rm.de/AbRUPt/Website
1614
+
1615
+ :Website rdf:type owl:Class ;
1616
+
1617
+ owl:hasKey ( :hostName
1618
+ ) .
1619
+
1620
+
1621
+
1622
+ ### http://wba.cs.hs-rm.de/AbRUPt/Week
1623
+
1624
+ :Week rdf:type owl:Class ;
1625
+
1626
+ rdfs:subClassOf :Input .
1627
+
1628
+
1629
+
1630
+
1631
+ ### Generated by the OWL API (version 3.5.0) http://owlapi.sourceforge.net
1632
+