iqvoc 4.1.0 → 4.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile +3 -3
- data/Gemfile.lock +7 -5
- data/LICENSE +1 -1
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/app/controllers/application_controller.rb +1 -1
- data/app/controllers/collections_controller.rb +1 -1
- data/app/controllers/concepts/alphabetical_controller.rb +1 -1
- data/app/controllers/concepts/expired_controller.rb +1 -1
- data/app/controllers/concepts/hierarchical_controller.rb +3 -14
- data/app/controllers/concepts/scheme_controller.rb +1 -1
- data/app/controllers/concepts/untranslated_controller.rb +1 -1
- data/app/controllers/concepts/versions_controller.rb +1 -1
- data/app/controllers/concepts_controller.rb +1 -1
- data/app/controllers/dashboard_controller.rb +1 -1
- data/app/controllers/frontpage_controller.rb +1 -1
- data/app/controllers/hierarchy_controller.rb +3 -3
- data/app/controllers/import_controller.rb +1 -1
- data/app/controllers/instance_configuration_controller.rb +1 -1
- data/app/controllers/pages_controller.rb +1 -1
- data/app/controllers/rdf_controller.rb +1 -1
- data/app/controllers/search_results_controller.rb +1 -1
- data/app/controllers/triplestore_sync_controller.rb +1 -1
- data/app/controllers/user_sessions_controller.rb +1 -1
- data/app/controllers/users_controller.rb +1 -1
- data/app/helpers/application_helper.rb +1 -1
- data/app/helpers/concepts_helper.rb +2 -3
- data/app/helpers/dashboard_helper.rb +1 -1
- data/app/helpers/rdf_helper.rb +3 -3
- data/app/helpers/search_results_helper.rb +1 -1
- data/app/models/collection/base.rb +1 -1
- data/app/models/collection/member/base.rb +1 -1
- data/app/models/collection/skos/unordered.rb +1 -1
- data/app/models/collection/unordered.rb +1 -1
- data/app/models/concept/base.rb +1 -1
- data/app/models/concept/relation/base.rb +1 -1
- data/app/models/concept/relation/reverse_relation_extension.rb +1 -1
- data/app/models/concept/relation/skos/base.rb +8 -5
- data/app/models/concept/relation/skos/broader/base.rb +1 -1
- data/app/models/concept/relation/skos/broader/mono.rb +1 -1
- data/app/models/concept/relation/skos/broader/poly.rb +1 -1
- data/app/models/concept/relation/skos/narrower/base.rb +1 -1
- data/app/models/concept/relation/skos/related.rb +1 -1
- data/app/models/concept/skos/base.rb +1 -1
- data/app/models/concept/skos/scheme.rb +1 -1
- data/app/models/configuration_setting.rb +1 -1
- data/app/models/label/base.rb +1 -1
- data/app/models/label/skos/base.rb +1 -1
- data/app/models/labeling/base.rb +1 -1
- data/app/models/labeling/skos/alt_label.rb +1 -1
- data/app/models/labeling/skos/base.rb +1 -1
- data/app/models/labeling/skos/hidden_label.rb +1 -1
- data/app/models/labeling/skos/pref_label.rb +1 -1
- data/app/models/match/base.rb +1 -1
- data/app/models/match/skos/base.rb +1 -1
- data/app/models/match/skos/broad_match.rb +1 -1
- data/app/models/match/skos/close_match.rb +1 -1
- data/app/models/match/skos/exact_match.rb +1 -1
- data/app/models/match/skos/mapping_relation.rb +1 -1
- data/app/models/match/skos/narrow_match.rb +1 -1
- data/app/models/match/skos/related_match.rb +1 -1
- data/app/models/notation/base.rb +1 -1
- data/app/models/note/annotated/base.rb +1 -1
- data/app/models/note/base.rb +1 -1
- data/app/models/note/rdfs/see_also.rb +20 -0
- data/app/models/note/skos/base.rb +14 -13
- data/app/models/note/skos/change_note.rb +1 -1
- data/app/models/note/skos/definition.rb +1 -1
- data/app/models/note/skos/editorial_note.rb +1 -1
- data/app/models/note/skos/example.rb +1 -1
- data/app/models/note/skos/history_note.rb +1 -1
- data/app/models/note/skos/scope_note.rb +1 -1
- data/app/models/search_extension.rb +1 -1
- data/app/models/user.rb +1 -1
- data/app/models/user_session.rb +1 -1
- data/app/views/concepts/hierarchical/_treeview.html.erb +8 -10
- data/app/views/concepts/hierarchical/index.json.jbuilder +15 -0
- data/app/views/concepts/index.iqrdf +1 -1
- data/config/application.rb +1 -1
- data/config/boot.rb +1 -1
- data/config/environment.rb +1 -1
- data/config/environments/development.rb +1 -1
- data/config/environments/heroku.rb +1 -1
- data/config/environments/production.rb +1 -1
- data/config/environments/test.rb +1 -1
- data/config/initializers/action_view.rb +1 -1
- data/config/initializers/active_record.rb +1 -1
- data/config/initializers/backtrace_silencers.rb +1 -1
- data/config/initializers/heroku.rb +1 -1
- data/config/initializers/inflections.rb +1 -1
- data/config/initializers/iqvoc.rb +1 -1
- data/config/initializers/jdbc.rb +1 -1
- data/config/initializers/mime_types.rb +1 -1
- data/config/initializers/secret_token.rb.template +1 -1
- data/config/initializers/secret_token_configurator.rb +1 -1
- data/config/initializers/session_store.rb +1 -1
- data/config/locales/activerecord.de.yml +1 -1
- data/config/locales/activerecord.en.yml +1 -1
- data/config/locales/activerecord.pt.yml +1 -1
- data/config/locales/authlogic.de.yml +1 -1
- data/config/locales/authlogic.en.yml +1 -1
- data/config/locales/authlogic.pt.yml +1 -1
- data/config/locales/de.yml +12 -12
- data/config/locales/defaults.de.yml +1 -1
- data/config/locales/en.yml +11 -11
- data/config/locales/pt.yml +1 -1
- data/config/routes.rb +2 -2
- data/config/warble.rb +1 -1
- data/db/migrate/20100927101502_create_schema.rb +1 -1
- data/db/migrate/20101125141218_add_collection_tables.rb +1 -1
- data/db/migrate/20101129161528_add_type_to_collections.rb +1 -1
- data/db/migrate/20101202094602_add_origin_to_collections.rb +1 -1
- data/db/migrate/20101202135420_rename_collection_contents_to_collection_members.rb +1 -1
- data/db/migrate/20101208103531_add_type_to_collection_contents.rb +1 -1
- data/db/migrate/20101210153916_add_indexes_to_collections.rb +1 -1
- data/db/migrate/20110204121244_create_collection_labels.rb +1 -1
- data/db/migrate/20110208084250_change_origin_lengths.rb +1 -1
- data/db/migrate/20110328124300_discard_collection_specifics.rb +1 -1
- data/db/migrate/20130418093837_add_language_to_note_annotations.rb +5 -0
- data/db/schema.rb +2 -1
- data/db/seeds.rb +1 -1
- data/iqvoc.gemspec +1 -0
- data/lib/iqvoc.rb +1 -1
- data/lib/iqvoc/configuration/core.rb +2 -2
- data/lib/iqvoc/deep_cloning.rb +1 -1
- data/lib/iqvoc/inline_data_helper.rb +1 -1
- data/lib/iqvoc/instance_configuration.rb +7 -6
- data/lib/iqvoc/origin.rb +1 -1
- data/lib/iqvoc/rdfapi.rb +3 -1
- data/lib/iqvoc/version.rb +2 -2
- data/lib/iqvoc/versioning.rb +1 -1
- data/lib/string.rb +1 -1
- data/test/factories.rb +1 -1
- data/test/functional/hierarchy_test.rb +1 -2
- data/test/functional/rdf_test.rb +98 -0
- data/test/integration/alphabetical_test.rb +1 -1
- data/test/integration/authentication_test.rb +1 -1
- data/test/integration/browse_concepts_and_labels_test.rb +1 -1
- data/test/integration/client_augmentation_test.rb +1 -1
- data/test/integration/client_edit_concept_test.rb +1 -1
- data/test/integration/collection_circularity_test.rb +1 -1
- data/test/integration/concept_scheme_test.rb +1 -1
- data/test/integration/concept_test.rb +1 -1
- data/test/integration/edit_concepts_test.rb +1 -1
- data/test/integration/instance_configuration_test.rb +1 -1
- data/test/integration/note_annotations_test.rb +27 -1
- data/test/integration/search_test.rb +1 -1
- data/test/integration/tree_test.rb +1 -1
- data/test/integration/untranslated_test.rb +1 -1
- data/test/integration_test_helper.rb +1 -1
- data/test/performance/browsing_test.rb +1 -1
- data/test/test_helper.rb +6 -12
- data/test/unit/concept_scheme_test.rb +1 -1
- data/test/unit/concept_test.rb +1 -1
- data/test/unit/hygiene_test.rb +2 -2
- data/test/unit/inline_data_test.rb +1 -1
- data/test/unit/instance_configuration_test.rb +1 -1
- data/test/unit/note_test.rb +1 -1
- data/test/unit/origin_test.rb +1 -1
- data/test/unit/rdf_sync_test.rb +1 -1
- data/test/unit/skos_import_test.rb +1 -1
- metadata +21 -2
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
|
3
|
-
# Copyright 2011 innoQ Deutschland GmbH
|
3
|
+
# Copyright 2011-2013 innoQ Deutschland GmbH
|
4
4
|
#
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
6
|
# you may not use this file except in compliance with the License.
|
@@ -82,4 +82,30 @@ class NoteAnnotationsTest < ActionDispatch::IntegrationTest
|
|
82
82
|
"</skos:changeNote>\n")
|
83
83
|
end
|
84
84
|
|
85
|
+
test "rdf for localized note annotations" do
|
86
|
+
rdfapi = Iqvoc::RDFAPI
|
87
|
+
|
88
|
+
concept = rdfapi.devour *%w(foobar a skos:Concept)
|
89
|
+
concept.publish
|
90
|
+
concept.save
|
91
|
+
|
92
|
+
rdfapi.devour concept, 'skos:prefLabel', '"foo"@en'
|
93
|
+
|
94
|
+
note = Note::RDFS::SeeAlso.create :owner => concept, :value => 'foo', :language => 'en'
|
95
|
+
note.annotations.create :namespace => 'dct', :predicate => 'title', :value => 'Foo Bar', :language => 'en'
|
96
|
+
note.annotations.create :namespace => 'foaf', :predicate => 'page', :value => 'http://google.de/'
|
97
|
+
|
98
|
+
visit "/#{concept.origin}.ttl"
|
99
|
+
|
100
|
+
ttl = <<RDF
|
101
|
+
rdfs:seeAlso [
|
102
|
+
rdfs:comment "foo"@en;
|
103
|
+
dct:title "Foo Bar"@en;
|
104
|
+
foaf:page <http://google.de/>
|
105
|
+
].
|
106
|
+
RDF
|
107
|
+
|
108
|
+
assert page.body.include?(ttl)
|
109
|
+
end
|
110
|
+
|
85
111
|
end
|
data/test/test_helper.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
|
3
|
-
# Copyright 2011 innoQ Deutschland GmbH
|
3
|
+
# Copyright 2011-2013 innoQ Deutschland GmbH
|
4
4
|
#
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
6
|
# you may not use this file except in compliance with the License.
|
@@ -15,15 +15,9 @@
|
|
15
15
|
# limitations under the License.
|
16
16
|
|
17
17
|
require 'rubygems'
|
18
|
-
require 'spork'
|
19
18
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
WebMock.allow_net_connect! # required for integration tests
|
26
|
-
end
|
27
|
-
|
28
|
-
Spork.each_run do
|
29
|
-
end
|
19
|
+
ENV["RAILS_ENV"] = "test"
|
20
|
+
require File.expand_path('../../config/environment', __FILE__)
|
21
|
+
require 'rails/test_help'
|
22
|
+
require 'webmock'
|
23
|
+
WebMock.allow_net_connect! # required for integration tests
|
data/test/unit/concept_test.rb
CHANGED
data/test/unit/hygiene_test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
|
3
|
-
# Copyright 2011 innoQ Deutschland GmbH
|
3
|
+
# Copyright 2011-2013 innoQ Deutschland GmbH
|
4
4
|
#
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
6
|
# you may not use this file except in compliance with the License.
|
@@ -26,7 +26,7 @@ class HygieneTest < ActiveSupport::TestCase
|
|
26
26
|
assert_no_occurrence "#{space}#{tab}\|#{tab}#{space}", "mixed whitespace", true
|
27
27
|
end
|
28
28
|
|
29
|
-
def assert_no_occurrence(pattern, error_message, extended=false)
|
29
|
+
def assert_no_occurrence(pattern, error_message, extended = false)
|
30
30
|
extra_options = extended ? "E" : ""
|
31
31
|
lines = `git grep -In#{extra_options} '#{pattern}' | grep -v '^vendor/'`
|
32
32
|
assert_not_equal 0, $?.to_i, "#{error_message}:\n#{lines}"
|
data/test/unit/note_test.rb
CHANGED
data/test/unit/origin_test.rb
CHANGED
data/test/unit/rdf_sync_test.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iqvoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.
|
4
|
+
version: 4.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Glaser
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-05-02 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -166,6 +166,20 @@ dependencies:
|
|
166
166
|
- - '>='
|
167
167
|
- !ruby/object:Gem::Version
|
168
168
|
version: '0'
|
169
|
+
- !ruby/object:Gem::Dependency
|
170
|
+
name: jbuilder
|
171
|
+
requirement: !ruby/object:Gem::Requirement
|
172
|
+
requirements:
|
173
|
+
- - '>='
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: '0'
|
176
|
+
type: :runtime
|
177
|
+
prerelease: false
|
178
|
+
version_requirements: !ruby/object:Gem::Requirement
|
179
|
+
requirements:
|
180
|
+
- - '>='
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: '0'
|
169
183
|
description: iQvoc - a SKOS(-XL) vocabulary management system built on the Semantic
|
170
184
|
Web
|
171
185
|
email:
|
@@ -277,6 +291,7 @@ files:
|
|
277
291
|
- app/models/notation/base.rb
|
278
292
|
- app/models/note/annotated/base.rb
|
279
293
|
- app/models/note/base.rb
|
294
|
+
- app/models/note/rdfs/see_also.rb
|
280
295
|
- app/models/note/skos/base.rb
|
281
296
|
- app/models/note/skos/change_note.rb
|
282
297
|
- app/models/note/skos/definition.rb
|
@@ -304,6 +319,7 @@ files:
|
|
304
319
|
- app/views/concepts/expired/index.html.erb
|
305
320
|
- app/views/concepts/hierarchical/_treeview.html.erb
|
306
321
|
- app/views/concepts/hierarchical/index.html.erb
|
322
|
+
- app/views/concepts/hierarchical/index.json.jbuilder
|
307
323
|
- app/views/concepts/index.iqrdf
|
308
324
|
- app/views/concepts/new.html.erb
|
309
325
|
- app/views/concepts/notifications/_referenced_concepts.html.erb
|
@@ -442,6 +458,7 @@ files:
|
|
442
458
|
- db/migrate/20130227145825_fix_collection_type.rb
|
443
459
|
- db/migrate/20130315093255_add_notations.rb
|
444
460
|
- db/migrate/20130315141952_add_indexes_to_notations.rb
|
461
|
+
- db/migrate/20130418093837_add_language_to_note_annotations.rb
|
445
462
|
- db/schema.rb
|
446
463
|
- db/seeds.rb
|
447
464
|
- public/404.html
|
@@ -484,6 +501,7 @@ files:
|
|
484
501
|
- lib/templates/erb/scaffold/_form.html.erb
|
485
502
|
- test/factories.rb
|
486
503
|
- test/functional/hierarchy_test.rb
|
504
|
+
- test/functional/rdf_test.rb
|
487
505
|
- test/integration/alphabetical_test.rb
|
488
506
|
- test/integration/authentication_test.rb
|
489
507
|
- test/integration/browse_concepts_and_labels_test.rb
|
@@ -583,6 +601,7 @@ summary: iQvoc
|
|
583
601
|
test_files:
|
584
602
|
- test/factories.rb
|
585
603
|
- test/functional/hierarchy_test.rb
|
604
|
+
- test/functional/rdf_test.rb
|
586
605
|
- test/integration/alphabetical_test.rb
|
587
606
|
- test/integration/authentication_test.rb
|
588
607
|
- test/integration/browse_concepts_and_labels_test.rb
|