iqvoc 4.12.0 → 4.12.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +5 -0
  3. data/Gemfile +13 -5
  4. data/Gemfile.lock +94 -77
  5. data/README.md +11 -2
  6. data/app/controllers/dashboard_controller.rb +5 -1
  7. data/app/controllers/user_sessions_controller.rb +1 -1
  8. data/app/helpers/dashboard_helper.rb +3 -3
  9. data/app/views/concepts/new.html.erb +2 -1
  10. data/app/views/concepts/sidebars/_singular.html.erb +11 -7
  11. data/app/views/dashboard/_table.html.erb +1 -1
  12. data/app/views/dashboard/glance.html.erb +1 -1
  13. data/app/views/search_results/_sidebar.html.erb +7 -2
  14. data/config/database.template.yml +3 -3
  15. data/config/database.yml +13 -18
  16. data/config/database.yml.mysql +7 -7
  17. data/config/database.yml.postgresql +6 -5
  18. data/config/initializers/mysql_column_limit.rb +14 -0
  19. data/config/locales/activerecord.de.yml +3 -0
  20. data/config/locales/activerecord.en.yml +3 -0
  21. data/db/migrate/20170626074649_add_note_annotations_index.rb +5 -1
  22. data/db/migrate/20180430163647_utf8mb4_conversion.rb +122 -0
  23. data/db/migrate/20180525135715_fix_note_annotations_index.rb +6 -0
  24. data/db/migrate/20190403133600_change_collation.rb +39 -0
  25. data/db/schema.rb +63 -64
  26. data/db/seeds.rb +4 -4
  27. data/iqvoc.gemspec +5 -5
  28. data/lib/iqvoc/version.rb +1 -1
  29. data/public/export/192518761412858257538294365837284445543.nt +28 -0
  30. data/public/export/222655544999381011796369687711131211507.nt +28 -0
  31. data/public/export/28094.nt +28 -0
  32. data/public/export/317743731342877661346578631544287380698.nt +28 -0
  33. data/public/export/59040722386799844495905115730928244680.nt +28 -0
  34. data/public/export/65316.nt +28 -0
  35. data/public/uploads/import/0090c45f8a575ba948e9e1f9346e8bd8.nt +259 -0
  36. data/public/uploads/import/10b55d476cc7905edd5bf2ea3339266f.nt +259 -0
  37. data/public/uploads/import/29f4bdb935b9ba14344c38808e2fc172.nt +259 -0
  38. data/public/uploads/import/5686fe12a4157c537fe4f83de393e436.nt +259 -0
  39. data/public/uploads/import/a46e5777d14959f0a264fc27170a9aca.nt +259 -0
  40. data/public/uploads/import/f47c4c34a7652d03188ef8815667a546.nt +259 -0
  41. data/public/uploads/tmp/1565090696-8977-0904/hobbies.nt +259 -0
  42. data/public/uploads/tmp/1565092660-26284-7315/hobbies.nt +259 -0
  43. data/public/uploads/tmp/1565092837-26720-3638/hobbies.nt +259 -0
  44. data/public/uploads/tmp/1565093111-27724-9556/hobbies.nt +259 -0
  45. data/public/uploads/tmp/1565093198-28993-6950/hobbies.nt +259 -0
  46. data/public/uploads/tmp/1565093353-29520-6028/hobbies.nt +259 -0
  47. data/test/integration/dashboard_test.rb +2 -2
  48. data/test/integration/user_management_test.rb +2 -2
  49. metadata +37 -16
@@ -11,36 +11,37 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20170626074649) do
14
+ ActiveRecord::Schema.define(version: 20190403133600) do
15
+
16
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
15
18
 
16
19
  create_table "collection_members", force: :cascade do |t|
17
- t.integer "collection_id", limit: 4
18
- t.integer "target_id", limit: 4
19
- t.string "type", limit: 255
20
+ t.integer "collection_id"
21
+ t.integer "target_id"
22
+ t.string "type"
20
23
  end
21
24
 
22
25
  add_index "collection_members", ["collection_id", "target_id", "type"], name: "ix_collections_fk_type", using: :btree
23
- add_index "collection_members", ["target_id"], name: "fk_rails_2a51b48094", using: :btree
24
26
 
25
27
  create_table "concept_relations", force: :cascade do |t|
26
- t.string "type", limit: 255
27
- t.integer "owner_id", limit: 4
28
- t.integer "target_id", limit: 4
28
+ t.string "type"
29
+ t.integer "owner_id"
30
+ t.integer "target_id"
29
31
  t.datetime "created_at"
30
32
  t.datetime "updated_at"
31
- t.integer "rank", limit: 4, default: 100
33
+ t.integer "rank", default: 100
32
34
  end
33
35
 
34
36
  add_index "concept_relations", ["owner_id", "target_id"], name: "ix_concept_relations_fk", using: :btree
35
- add_index "concept_relations", ["target_id"], name: "fk_rails_fd6c6e6fd7", using: :btree
36
37
 
37
38
  create_table "concepts", force: :cascade do |t|
38
- t.string "type", limit: 255
39
+ t.string "type"
39
40
  t.string "origin", limit: 4000
40
- t.integer "rev", limit: 4, default: 1
41
+ t.integer "rev", default: 1
41
42
  t.date "published_at"
42
- t.integer "published_version_id", limit: 4
43
- t.integer "locked_by", limit: 4
43
+ t.integer "published_version_id"
44
+ t.integer "locked_by"
44
45
  t.date "expired_at"
45
46
  t.date "follow_up"
46
47
  t.boolean "to_review"
@@ -50,31 +51,30 @@ ActiveRecord::Schema.define(version: 20170626074649) do
50
51
  t.boolean "top_term", default: false
51
52
  end
52
53
 
53
- add_index "concepts", ["locked_by"], name: "fk_rails_69655c7fd3", using: :btree
54
- add_index "concepts", ["origin"], name: "ix_concepts_on_origin", length: {"origin"=>255}, using: :btree
54
+ add_index "concepts", ["origin"], name: "ix_concepts_on_origin", using: :btree
55
55
  add_index "concepts", ["published_version_id"], name: "ix_concepts_publ_version_id", using: :btree
56
56
 
57
57
  create_table "configuration_settings", force: :cascade do |t|
58
- t.string "key", limit: 255
59
- t.string "value", limit: 255
58
+ t.string "key"
59
+ t.string "value"
60
60
  end
61
61
 
62
62
  create_table "delayed_jobs", force: :cascade do |t|
63
- t.integer "priority", limit: 4, default: 0, null: false
64
- t.integer "attempts", limit: 4, default: 0, null: false
65
- t.text "handler", limit: 65535, null: false
66
- t.text "last_error", limit: 65535
63
+ t.integer "priority", default: 0, null: false
64
+ t.integer "attempts", default: 0, null: false
65
+ t.text "handler", null: false
66
+ t.text "last_error"
67
67
  t.datetime "run_at"
68
68
  t.datetime "locked_at"
69
69
  t.datetime "failed_at"
70
- t.string "locked_by", limit: 255
71
- t.string "queue", limit: 255
70
+ t.string "locked_by"
71
+ t.string "queue"
72
72
  t.datetime "created_at"
73
73
  t.datetime "updated_at"
74
- t.string "error_message", limit: 255
75
- t.string "delayed_reference_type", limit: 255
76
- t.integer "delayed_reference_id", limit: 4
77
- t.string "delayed_global_reference_id", limit: 255
74
+ t.string "error_message"
75
+ t.string "delayed_reference_type"
76
+ t.integer "delayed_reference_id"
77
+ t.string "delayed_global_reference_id"
78
78
  end
79
79
 
80
80
  add_index "delayed_jobs", ["delayed_global_reference_id"], name: "delayed_jobs_delayed_global_reference_id", using: :btree
@@ -84,49 +84,48 @@ ActiveRecord::Schema.define(version: 20170626074649) do
84
84
  add_index "delayed_jobs", ["queue"], name: "delayed_jobs_queue", using: :btree
85
85
 
86
86
  create_table "exports", force: :cascade do |t|
87
- t.integer "user_id", limit: 4
88
- t.text "output", limit: 4294967295
89
- t.boolean "success", default: false
90
- t.integer "file_type", limit: 4
91
- t.string "token", limit: 255
87
+ t.integer "user_id"
88
+ t.text "output"
89
+ t.boolean "success", default: false
90
+ t.integer "file_type"
91
+ t.string "token"
92
92
  t.datetime "created_at"
93
93
  t.datetime "updated_at"
94
94
  t.datetime "finished_at"
95
- t.string "default_namespace", limit: 255
95
+ t.string "default_namespace"
96
96
  end
97
97
 
98
98
  add_index "exports", ["user_id"], name: "index_exports_on_user_id", using: :btree
99
99
 
100
100
  create_table "imports", force: :cascade do |t|
101
- t.integer "user_id", limit: 4
102
- t.text "output", limit: 4294967295
103
- t.boolean "success", default: false
101
+ t.integer "user_id"
102
+ t.text "output"
103
+ t.boolean "success", default: false
104
104
  t.datetime "created_at"
105
105
  t.datetime "updated_at"
106
106
  t.datetime "finished_at"
107
- t.string "import_file", limit: 255
107
+ t.string "import_file"
108
108
  t.boolean "publish"
109
- t.string "default_namespace", limit: 255
109
+ t.string "default_namespace"
110
110
  end
111
111
 
112
112
  add_index "imports", ["user_id"], name: "index_imports_on_user_id", using: :btree
113
113
 
114
114
  create_table "labelings", force: :cascade do |t|
115
- t.string "type", limit: 255
116
- t.integer "owner_id", limit: 4
117
- t.integer "target_id", limit: 4
115
+ t.string "type"
116
+ t.integer "owner_id"
117
+ t.integer "target_id"
118
118
  t.datetime "created_at"
119
119
  t.datetime "updated_at"
120
120
  end
121
121
 
122
122
  add_index "labelings", ["owner_id", "target_id", "type"], name: "ix_labelings_fk_type", using: :btree
123
- add_index "labelings", ["target_id"], name: "fk_rails_5897707e64", using: :btree
124
123
  add_index "labelings", ["type"], name: "ix_labelings_on_type", using: :btree
125
124
 
126
125
  create_table "labels", force: :cascade do |t|
127
- t.string "type", limit: 255
126
+ t.string "type"
128
127
  t.string "origin", limit: 4000
129
- t.string "language", limit: 255
128
+ t.string "language"
130
129
  t.string "value", limit: 1024
131
130
  t.datetime "created_at"
132
131
  t.datetime "updated_at"
@@ -134,12 +133,12 @@ ActiveRecord::Schema.define(version: 20170626074649) do
134
133
  end
135
134
 
136
135
  add_index "labels", ["language"], name: "ix_labels_on_language", using: :btree
137
- add_index "labels", ["origin"], name: "ix_labels_on_origin", length: {"origin"=>255}, using: :btree
136
+ add_index "labels", ["origin"], name: "ix_labels_on_origin", using: :btree
138
137
 
139
138
  create_table "matches", force: :cascade do |t|
140
- t.integer "concept_id", limit: 4
141
- t.string "type", limit: 255
142
- t.string "value", limit: 255
139
+ t.integer "concept_id"
140
+ t.string "type"
141
+ t.string "value"
143
142
  t.datetime "created_at"
144
143
  t.datetime "updated_at"
145
144
  end
@@ -148,7 +147,7 @@ ActiveRecord::Schema.define(version: 20170626074649) do
148
147
  add_index "matches", ["type"], name: "ix_matches_on_type", using: :btree
149
148
 
150
149
  create_table "notations", force: :cascade do |t|
151
- t.integer "concept_id", limit: 4
150
+ t.integer "concept_id"
152
151
  t.string "value", limit: 4000
153
152
  t.string "data_type", limit: 4000
154
153
  end
@@ -156,13 +155,13 @@ ActiveRecord::Schema.define(version: 20170626074649) do
156
155
  add_index "notations", ["concept_id"], name: "index_notations_on_concept_id", using: :btree
157
156
 
158
157
  create_table "note_annotations", force: :cascade do |t|
159
- t.integer "note_id", limit: 4
158
+ t.integer "note_id"
160
159
  t.string "predicate", limit: 50
161
160
  t.string "value", limit: 1024
162
161
  t.datetime "created_at"
163
162
  t.datetime "updated_at"
164
163
  t.string "namespace", limit: 50
165
- t.string "language", limit: 255
164
+ t.string "language"
166
165
  end
167
166
 
168
167
  add_index "note_annotations", ["note_id"], name: "ix_note_annotations_fk", using: :btree
@@ -174,8 +173,8 @@ ActiveRecord::Schema.define(version: 20170626074649) do
174
173
  t.string "type", limit: 50
175
174
  t.datetime "created_at"
176
175
  t.datetime "updated_at"
177
- t.integer "owner_id", limit: 4
178
- t.string "owner_type", limit: 255, null: false
176
+ t.integer "owner_id"
177
+ t.string "owner_type", null: false
179
178
  end
180
179
 
181
180
  add_index "notes", ["language"], name: "ix_notes_on_language", using: :btree
@@ -183,19 +182,19 @@ ActiveRecord::Schema.define(version: 20170626074649) do
183
182
  add_index "notes", ["type"], name: "ix_notes_on_type", using: :btree
184
183
 
185
184
  create_table "users", force: :cascade do |t|
186
- t.string "forename", limit: 255
187
- t.string "surname", limit: 255
188
- t.string "email", limit: 255
189
- t.string "crypted_password", limit: 255
185
+ t.string "forename"
186
+ t.string "surname"
187
+ t.string "email"
188
+ t.string "crypted_password"
190
189
  t.boolean "active"
191
190
  t.datetime "created_at"
192
191
  t.datetime "updated_at"
193
- t.string "password_salt", limit: 255
194
- t.string "persistence_token", limit: 255
195
- t.string "perishable_token", limit: 255
196
- t.string "role", limit: 255
197
- t.string "telephone_number", limit: 255
198
- t.string "type", limit: 255, default: "User"
192
+ t.string "password_salt"
193
+ t.string "persistence_token"
194
+ t.string "perishable_token"
195
+ t.string "role"
196
+ t.string "telephone_number"
197
+ t.string "type", default: "User"
199
198
  end
200
199
 
201
200
  add_foreign_key "collection_members", "concepts", column: "collection_id", on_update: :cascade
@@ -19,8 +19,8 @@ if User.where(email: 'admin@iqvoc').none?
19
19
  user.forename = 'Admin'
20
20
  user.surname = 'Istrator'
21
21
  user.email = 'admin@iqvoc'
22
- user.password = 'admin'
23
- user.password_confirmation = 'admin'
22
+ user.password = 'admin123'
23
+ user.password_confirmation = 'admin123'
24
24
  user.active = true
25
25
  user.role = 'administrator'
26
26
  end
@@ -31,8 +31,8 @@ if User.where(email: 'demo@iqvoc').none?
31
31
  user.forename = 'Demo'
32
32
  user.surname = 'User'
33
33
  user.email = 'demo@iqvoc'
34
- user.password = 'cooluri'
35
- user.password_confirmation = 'cooluri'
34
+ user.password = 'cooluri123'
35
+ user.password_confirmation = 'cooluri123'
36
36
  user.active = true
37
37
  user.role = 'reader'
38
38
  end
@@ -13,22 +13,22 @@ Gem::Specification.new do |s|
13
13
  s.description = 'iQvoc - a SKOS(-XL) vocabulary management system built on the Semantic Web'
14
14
  s.license = 'Apache License 2.0'
15
15
 
16
- s.add_dependency('rails', '>= 4.2.8', '< 5.0')
16
+ s.add_dependency('rails', '>= 4.2.11', '< 5.0')
17
17
  s.add_dependency 'bundler'
18
18
  s.add_dependency 'kaminari', '~> 0.16.3'
19
19
  s.add_dependency 'kaminari-bootstrap', '~> 3.0.1'
20
- s.add_dependency 'authlogic', '~> 3.4.2'
21
- s.add_dependency 'cancancan'
20
+ s.add_dependency 'authlogic', '~> 3.8.0'
21
+ s.add_dependency 'cancancan', '~> 2.3.0'
22
22
  s.add_dependency 'iq_rdf', '>= 0.1.16'
23
23
  s.add_dependency 'json'
24
24
  s.add_dependency 'rails_autolink'
25
25
  s.add_dependency 'faraday', '0.9.0'
26
26
  s.add_dependency 'faraday_middleware'
27
27
  s.add_dependency 'sass-rails', '~> 5.0.0'
28
- s.add_dependency 'bootstrap-sass', '~> 3.3.1.0'
28
+ s.add_dependency 'bootstrap-sass', '~> 3.4.1'
29
29
  s.add_dependency 'bootstrap_form', '~> 2.2.0'
30
30
  s.add_dependency 'iq_triplestorage'
31
- s.add_dependency 'nokogiri', '~> 1.7.2'
31
+ s.add_dependency 'nokogiri', '~> 1.8.2'
32
32
  s.add_dependency 'linkeddata', '~> 1.1.2'
33
33
  s.add_dependency 'font-awesome-rails', '~> 4.2.0'
34
34
  s.add_dependency 'uglifier', '>= 1.3.0'
@@ -15,5 +15,5 @@
15
15
  # limitations under the License.
16
16
 
17
17
  module Iqvoc
18
- VERSION = "4.12.0"
18
+ VERSION = "4.12.1"
19
19
  end
@@ -0,0 +1,28 @@
1
+ <http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
2
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
3
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
4
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
5
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
6
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
7
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
8
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
9
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
10
+ <http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
11
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
12
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
13
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
14
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
15
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
16
+ <http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
17
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
18
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
19
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
20
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
21
+ <http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
22
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
23
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
24
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
25
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
26
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
27
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
28
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
@@ -0,0 +1,28 @@
1
+ <http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
2
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
3
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
4
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
5
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
6
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
7
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
8
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
9
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
10
+ <http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
11
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
12
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
13
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
14
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
15
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
16
+ <http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
17
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
18
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
19
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
20
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
21
+ <http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
22
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
23
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
24
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
25
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
26
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
27
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
28
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
@@ -0,0 +1,28 @@
1
+ <http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
2
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
3
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
4
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
5
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
6
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
7
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
8
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
9
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
10
+ <http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
11
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
12
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
13
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
14
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
15
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
16
+ <http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
17
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
18
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
19
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
20
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
21
+ <http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
22
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
23
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
24
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
25
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
26
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
27
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
28
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
@@ -0,0 +1,28 @@
1
+ <http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
2
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
3
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
4
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
5
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
6
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
7
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
8
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
9
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
10
+ <http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
11
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
12
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
13
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
14
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
15
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
16
+ <http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
17
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
18
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
19
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
20
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
21
+ <http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
22
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
23
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
24
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
25
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
26
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
27
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
28
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
@@ -0,0 +1,28 @@
1
+ <http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
2
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
3
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
4
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
5
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
6
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
7
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
8
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
9
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
10
+ <http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
11
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
12
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
13
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
14
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
15
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
16
+ <http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
17
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
18
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
19
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
20
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
21
+ <http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
22
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
23
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
24
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
25
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
26
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
27
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
28
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
@@ -0,0 +1,28 @@
1
+ <http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
2
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
3
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
4
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
5
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
6
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
7
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
8
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
9
+ <http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
10
+ <http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
11
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
12
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
13
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
14
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
15
+ <http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
16
+ <http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
17
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
18
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
19
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
20
+ <http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
21
+ <http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
22
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
23
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
24
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
25
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
26
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
27
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
28
+ <http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .