iqvoc 4.3.3 → 4.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Gemfile +20 -21
- data/Gemfile.lock +212 -171
- data/LICENSE +1 -1
- data/README.md +12 -4
- data/app/assets/javascripts/framework.js +3 -3
- data/app/assets/javascripts/iqvoc/concept_mapper.js +6 -4
- data/app/assets/javascripts/iqvoc/entityselect.js.erb +19 -6
- data/app/assets/javascripts/iqvoc/federated_concept_mapper.js +4 -2
- data/app/assets/javascripts/iqvoc/onebox.js.erb +8 -9
- data/app/assets/stylesheets/framework.css.scss +1 -2
- data/app/assets/stylesheets/iqvoc/components/_components.css.scss +17 -7
- data/app/concerns/first_level_object_validations.rb +22 -0
- data/app/concerns/versioning.rb +187 -0
- data/app/controllers/collections/versions_controller.rb +144 -0
- data/app/controllers/collections_controller.rb +46 -29
- data/app/controllers/concepts/alphabetical_controller.rb +9 -6
- data/app/controllers/concepts/expired_controller.rb +1 -1
- data/app/controllers/concepts/hierarchical_controller.rb +15 -17
- data/app/controllers/concepts/scheme_controller.rb +8 -4
- data/app/controllers/concepts/untranslated_controller.rb +2 -4
- data/app/controllers/concepts/versions_controller.rb +24 -25
- data/app/controllers/concepts_controller.rb +40 -37
- data/app/controllers/concerns/dataset_initialization.rb +1 -2
- data/app/controllers/dashboard_controller.rb +6 -9
- data/app/controllers/exports_controller.rb +65 -0
- data/app/controllers/frontpage_controller.rb +0 -2
- data/app/controllers/hierarchy_controller.rb +24 -25
- data/app/controllers/imports_controller.rb +18 -9
- data/app/controllers/instance_configuration_controller.rb +19 -16
- data/app/controllers/rdf_controller.rb +8 -9
- data/app/controllers/remote_labels_controller.rb +2 -3
- data/app/controllers/search_results_controller.rb +33 -37
- data/app/controllers/triplestore_sync_controller.rb +12 -13
- data/app/controllers/user_sessions_controller.rb +10 -7
- data/app/controllers/users_controller.rb +20 -7
- data/app/exceptions/invalid_string_literal_error.rb +7 -0
- data/app/helpers/application_helper.rb +16 -24
- data/app/helpers/concepts_helper.rb +14 -20
- data/app/helpers/dashboard_helper.rb +11 -13
- data/app/helpers/form_helper.rb +3 -6
- data/app/helpers/link_helper.rb +3 -3
- data/app/helpers/navigation_helper.rb +15 -15
- data/app/helpers/rdf_helper.rb +29 -3
- data/app/helpers/rdf_namespaces_helper.rb +11 -0
- data/app/helpers/search_results_helper.rb +1 -3
- data/app/helpers/widget_helper.rb +0 -2
- data/app/jobs/export_job.rb +19 -0
- data/app/jobs/import_job.rb +2 -2
- data/app/models/collection/base.rb +25 -41
- data/app/models/collection/member/base.rb +4 -6
- data/app/models/collection/member/skos/base.rb +3 -4
- data/app/models/collection/skos/base.rb +4 -6
- data/app/models/collection/unordered.rb +1 -4
- data/app/models/concept/base.rb +53 -77
- data/app/models/concept/relation/base.rb +8 -10
- data/app/models/concept/relation/reverse_relation_extension.rb +4 -6
- data/app/models/concept/relation/skos/base.rb +5 -7
- data/app/models/concept/relation/skos/broader/base.rb +1 -3
- data/app/models/concept/relation/skos/broader/mono.rb +1 -3
- data/app/models/concept/relation/skos/broader/poly.rb +1 -3
- data/app/models/concept/relation/skos/narrower/base.rb +2 -4
- data/app/models/concept/relation/skos/related.rb +0 -2
- data/app/models/concept/skos/base.rb +4 -5
- data/app/models/concept/skos/scheme.rb +8 -8
- data/app/models/concept/validations.rb +25 -40
- data/app/models/configuration_setting.rb +1 -3
- data/app/models/dataset/adaptors/iqvoc/alphabetical_search_adaptor.rb +3 -3
- data/app/models/dataset/adaptors/iqvoc/http_adaptor.rb +2 -2
- data/app/models/dataset/adaptors/iqvoc/search_adaptor.rb +8 -8
- data/app/models/dataset/iqvoc_dataset.rb +2 -2
- data/app/models/export.rb +32 -0
- data/app/models/import.rb +2 -0
- data/app/models/label/base.rb +12 -18
- data/app/models/label/skos/base.rb +2 -2
- data/app/models/labeling/base.rb +7 -9
- data/app/models/labeling/skos/alt_label.rb +0 -2
- data/app/models/labeling/skos/base.rb +10 -19
- data/app/models/labeling/skos/hidden_label.rb +1 -3
- data/app/models/labeling/skos/pref_label.rb +0 -2
- data/app/models/match/base.rb +5 -7
- data/app/models/match/skos/base.rb +1 -3
- data/app/models/match/skos/broad_match.rb +0 -2
- data/app/models/match/skos/close_match.rb +0 -2
- data/app/models/match/skos/exact_match.rb +0 -2
- data/app/models/match/skos/mapping_relation.rb +0 -2
- data/app/models/match/skos/narrow_match.rb +0 -2
- data/app/models/match/skos/related_match.rb +0 -2
- data/app/models/notation/base.rb +6 -8
- data/app/models/note/annotated/base.rb +2 -4
- data/app/models/note/base.rb +15 -16
- data/app/models/note/skos/base.rb +7 -9
- data/app/models/note/skos/change_note.rb +2 -4
- data/app/models/note/skos/definition.rb +1 -3
- data/app/models/note/skos/editorial_note.rb +0 -2
- data/app/models/note/skos/example.rb +0 -2
- data/app/models/note/skos/history_note.rb +0 -2
- data/app/models/note/skos/scope_note.rb +0 -2
- data/app/models/search_extension.rb +3 -6
- data/app/models/user.rb +7 -8
- data/app/models/user_session.rb +0 -2
- data/app/presenters/alphabetical_search_result.rb +2 -2
- data/app/presenters/search_result_remote.rb +1 -1
- data/app/uploaders/base.rb +21 -0
- data/app/uploaders/rdf_uploader.rb +7 -0
- data/app/views/collections/_data.html.erb +40 -0
- data/app/views/collections/_form.html.erb +5 -4
- data/app/views/collections/_sidebar.html.erb +1 -0
- data/app/views/collections/show.iqrdf +4 -20
- data/app/views/collections/show_published.html.erb +16 -0
- data/app/views/collections/show_unpublished.html.erb +41 -0
- data/app/views/concepts/_form.html.erb +13 -8
- data/app/views/concepts/alphabetical/index.html.erb +2 -2
- data/app/views/concepts/expired/index.html.erb +1 -1
- data/app/views/concepts/scheme/_sidebar.html.erb +1 -0
- data/app/views/concepts/scheme/edit.html.erb +6 -4
- data/app/views/concepts/scheme/show.html.erb +1 -1
- data/app/views/concepts/scheme/show.iqrdf +3 -2
- data/app/views/concepts/show.iqrdf +3 -2
- data/app/views/concepts/show_published.html.erb +2 -2
- data/app/views/concepts/show_unpublished.html.erb +7 -7
- data/app/views/concepts/sidebars/_singular.html.erb +1 -0
- data/app/views/dashboard/_sidebar.html.erb +2 -5
- data/app/views/exports/index.html.erb +39 -0
- data/app/views/exports/show.html.erb +7 -0
- data/app/views/frontpage/index.html.erb +10 -7
- data/app/views/hierarchy/show.iqrdf +3 -2
- data/app/views/imports/index.html.erb +23 -30
- data/app/views/instance_configuration/index.html.erb +9 -8
- data/app/views/layouts/_controls.html.erb +1 -1
- data/app/views/layouts/_navigation.html.erb +13 -24
- data/app/views/layouts/application.html.erb +3 -2
- data/app/views/partials/collection/_edit_link_base.html.erb +4 -0
- data/app/views/partials/collection/_new_link_base.html.erb +3 -0
- data/app/views/partials/concept/_new_link_base.html.erb +1 -1
- data/app/views/partials/concept/relation/_edit_base.html.erb +1 -1
- data/app/views/partials/concept/relation/_edit_ranked.html.erb +1 -1
- data/app/views/partials/concept/relation/_ranked.html.erb +1 -1
- data/app/views/partials/labeling/skos/_edit_base.html.erb +5 -8
- data/app/views/partials/match/_edit_base.html.erb +8 -3
- data/app/views/partials/notation/_edit_base.html.erb +5 -5
- data/app/views/partials/note/_edit_base.html.erb +6 -7
- data/app/views/partials/note/skos/_edit_change_note.html.erb +10 -13
- data/app/views/rdf/dataset.iqrdf +3 -2
- data/app/views/search_results/_form.html.erb +9 -9
- data/app/views/search_results/_sidebar.html.erb +1 -0
- data/app/views/search_results/index.html.erb +1 -1
- data/app/views/search_results/index.iqrdf +3 -2
- data/app/views/search_results/sections/_collection.html.erb +6 -3
- data/app/views/search_results/sections/_datasets.html.erb +17 -14
- data/app/views/search_results/sections/_klass.html.erb +10 -7
- data/app/views/search_results/sections/_languages.html.erb +17 -14
- data/app/views/search_results/sections/_mode.html.erb +11 -8
- data/app/views/search_results/sections/_terms.html.erb +10 -7
- data/app/views/search_results/sections/_type.html.erb +23 -5
- data/app/views/triplestore_sync/index.html.erb +3 -2
- data/app/views/user_sessions/_form.html.erb +5 -5
- data/app/views/users/_form.html.erb +13 -10
- data/app/views/users/index.html.erb +27 -24
- data/config/application.rb +2 -29
- data/config/boot.rb +1 -1
- data/config/database.yml.mysql +3 -3
- data/config/engine.rb +7 -8
- data/config/environments/heroku.rb +0 -10
- data/config/initializers/apipie.rb +5 -5
- data/config/initializers/assets.rb +3 -0
- data/config/initializers/cookies_serializer.rb +3 -0
- data/config/initializers/filter_parameter_logging.rb +4 -0
- data/config/initializers/iqvoc.rb +4 -2
- data/config/initializers/mime_types.rb +3 -2
- data/config/initializers/{secret_token.rb.template → secret_token.rb} +1 -1
- data/config/initializers/session_store.rb +1 -1
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/activerecord.de.yml +13 -0
- data/config/locales/activerecord.en.yml +11 -0
- data/config/locales/de.yml +17 -5
- data/config/locales/en.yml +17 -6
- data/config/routes.rb +51 -38
- data/config/secrets.yml +11 -0
- data/db/migrate/20100927101502_create_schema.rb +122 -122
- data/db/migrate/20101125141218_add_collection_tables.rb +2 -2
- data/db/migrate/20101210153916_add_indexes_to_collections.rb +2 -2
- data/db/migrate/20110204121244_create_collection_labels.rb +2 -2
- data/db/migrate/20110208084250_change_origin_lengths.rb +4 -4
- data/db/migrate/20110408120357_remove_classifications_and_classifiers.rb +15 -20
- data/db/migrate/20110408120740_remove_xl_specfic_stuff.rb +25 -28
- data/db/migrate/20110420133640_change_value_in_notes.rb +1 -1
- data/db/migrate/20110427120534_add_published_at_to_labels.rb +2 -2
- data/db/migrate/20110512132624_extend_notes_value_field_length.rb +1 -1
- data/db/migrate/20110525103100_separate_note_annotation_predicates.rb +5 -5
- data/db/migrate/20120119000000_create_configuration_settings.rb +1 -3
- data/db/migrate/20120201120736_add_top_term_to_concepts.rb +1 -3
- data/db/migrate/20120326102037_add_rank_to_concept_relations.rb +1 -1
- data/db/migrate/20130315093255_add_notations.rb +3 -3
- data/db/migrate/20130508103137_adjust_note_languages_setting.rb +5 -7
- data/db/migrate/20131220134356_create_delayed_jobs.rb +5 -5
- data/db/migrate/20131220144601_create_imports.rb +1 -1
- data/db/migrate/20140423095147_create_exports.rb +13 -0
- data/db/migrate/20140425130615_add_fk_indexes_to_exports_and_imports.rb +6 -0
- data/db/migrate/20140505144919_add_import_file_to_imports.rb +5 -0
- data/db/migrate/20140506073428_add_missing_imports_attributes.rb +6 -0
- data/db/migrate/20140506133619_add_namespace_to_exports.rb +5 -0
- data/db/schema.rb +57 -84
- data/db/seeds.rb +4 -4
- data/iqvoc.gemspec +21 -20
- data/lib/engine_tasks/db.rake +4 -3
- data/lib/generators/app/template.rb +19 -20
- data/lib/iqvoc.rb +0 -1
- data/lib/iqvoc/ability.rb +10 -13
- data/lib/iqvoc/configuration/collection.rb +2 -1
- data/lib/iqvoc/configuration/concept.rb +7 -8
- data/lib/iqvoc/configuration/core.rb +82 -82
- data/lib/iqvoc/configuration/label.rb +0 -1
- data/lib/iqvoc/configuration/sync.rb +4 -5
- data/lib/iqvoc/controller_extensions.rb +14 -15
- data/lib/iqvoc/deep_cloning.rb +8 -10
- data/lib/iqvoc/environments/development.rb +9 -9
- data/lib/iqvoc/environments/production.rb +4 -11
- data/lib/iqvoc/environments/test.rb +2 -8
- data/lib/iqvoc/inline_data_helper.rb +3 -5
- data/lib/iqvoc/instance_configuration.rb +5 -8
- data/lib/iqvoc/maker.rb +28 -30
- data/lib/iqvoc/navigation.rb +2 -2
- data/lib/iqvoc/origin.rb +6 -42
- data/lib/iqvoc/rankable.rb +0 -1
- data/lib/iqvoc/rdf_sync.rb +19 -21
- data/lib/iqvoc/rdfapi.rb +2 -2
- data/lib/iqvoc/skos_exporter.rb +153 -0
- data/lib/iqvoc/skos_importer.rb +125 -56
- data/lib/iqvoc/version.rb +1 -1
- data/lib/multi_logger.rb +0 -1
- data/lib/string.rb +1 -3
- data/lib/tasks/exporter.rake +22 -0
- data/lib/tasks/importer.rake +2 -1
- data/lib/tasks/reset.rake +14 -0
- data/public/export/{104047454295817920610168807659129435311.nt → 10110.nt} +0 -0
- data/public/export/{10726.nt → 10528.nt} +0 -0
- data/public/export/{10751365034669120987598940220863369604.nt → 11105.nt} +0 -0
- data/public/export/{111691466774189666307584118743393932328.nt → 11353.nt} +0 -0
- data/public/export/{12325399400132639231204595208154762660.nt → 11790.nt} +0 -0
- data/public/export/12931.nt +1 -0
- data/public/export/{151644452539207638297695765208032122293.nt → 1385.nt} +0 -0
- data/public/export/{15263706163704853684442315777380853572.nt → 15083.nt} +0 -0
- data/public/export/{15327.nt → 16538.nt} +0 -0
- data/public/export/{15666.nt → 1879.nt} +0 -0
- data/public/export/{173626129450223321263719262149444213847.nt → 19502.nt} +0 -0
- data/public/export/{18948.nt → 19834.nt} +0 -0
- data/public/export/{199578749544886032300136278910417855540.nt → 21183.nt} +0 -0
- data/public/export/{213890660005255527251394676521741138403.nt → 21512.nt} +0 -0
- data/public/export/{213987519797093111958174693910375706600.nt → 22034.nt} +0 -0
- data/public/export/{214800276811658695171005552465925318151.nt → 2434.nt} +0 -0
- data/public/export/{21930.nt → 24841.nt} +0 -0
- data/public/export/{220598335291843294191166072463233833628.nt → 26109.nt} +0 -0
- data/public/export/{242910803893093872189091525372405462985.nt → 27784.nt} +0 -0
- data/public/export/{24509.nt → 28422.nt} +0 -0
- data/public/export/{249458227092013520089223290936103182178.nt → 28627.nt} +0 -0
- data/public/export/{25981.nt → 29185.nt} +0 -0
- data/public/export/{271163890329327117562409702966294853312.nt → 30124.nt} +0 -0
- data/public/export/305768326302831570152374795088739069204.nt +447 -0
- data/public/export/3118.nt +1 -0
- data/public/export/{27484.nt → 31250.nt} +0 -0
- data/public/export/{287251617830426667971006908766107175810.nt → 31272.nt} +0 -0
- data/public/export/{28754.nt → 31875.nt} +0 -0
- data/public/export/{29022.nt → 32197.nt} +0 -0
- data/public/export/{293720064238755056739270868818770835353.nt → 32223.nt} +0 -0
- data/public/export/{29976.nt → 32324.nt} +0 -0
- data/public/export/{30643.nt → 33084.nt} +0 -0
- data/public/export/{309135899928267675232062298368405782595.nt → 33257.nt} +0 -0
- data/public/export/{317588775827727829310573625081613440402.nt → 33545.nt} +0 -0
- data/public/export/{3199.nt → 34179.nt} +0 -0
- data/public/export/34582.nt +1 -0
- data/public/export/{32054.nt → 35271.nt} +0 -0
- data/public/export/35426.nt +36 -0
- data/public/export/{327890543532187929176278243423558506722.nt → 36234.nt} +0 -0
- data/public/export/{33055.nt → 36363.nt} +0 -0
- data/public/export/{337748600310244218106909976567220577473.nt → 36559.nt} +0 -0
- data/public/export/{3383.nt → 37333.nt} +0 -0
- data/public/export/{33936.nt → 38332.nt} +0 -0
- data/public/export/{33993.nt → 38461.nt} +0 -0
- data/public/export/{34906.nt → 38721.nt} +0 -0
- data/public/export/{35365.nt → 39469.nt} +0 -0
- data/public/export/{37098.nt → 40637.nt} +0 -0
- data/public/export/{37534146541112437090211766955764945845.nt → 40746.nt} +0 -0
- data/public/export/{39353594202090916952403280275602550330.nt → 4297.nt} +0 -0
- data/public/export/{41272.nt → 43236.nt} +0 -0
- data/public/export/{42271.nt → 43644.nt} +0 -0
- data/public/export/{44392.nt → 45021.nt} +0 -0
- data/public/export/45120.nt +1 -0
- data/public/export/{45675.nt → 45552.nt} +0 -0
- data/public/export/{47529.nt → 46172.nt} +0 -0
- data/public/export/{48309.nt → 46739.nt} +0 -0
- data/public/export/{4956.nt → 4929.nt} +0 -0
- data/public/export/{49623.nt → 50335.nt} +0 -0
- data/public/export/{50516.nt → 51428.nt} +0 -0
- data/public/export/{50650725356216411444149011685563244498.nt → 51494.nt} +0 -0
- data/public/export/51877.nt +1 -0
- data/public/export/{54880.nt → 5359.nt} +0 -0
- data/public/export/{55142.nt → 53989.nt} +0 -0
- data/public/export/{55398.nt → 54563.nt} +0 -0
- data/public/export/{55625.nt → 54634.nt} +0 -0
- data/public/export/{5754.nt → 54759.nt} +0 -0
- data/public/export/{57727.nt → 54895.nt} +0 -0
- data/public/export/{58069939020968861674794480549301466954.nt → 55279.nt} +0 -0
- data/public/export/{5890.nt → 5567.nt} +0 -0
- data/public/export/{61404.nt → 57502.nt} +0 -0
- data/public/export/{62809.nt → 58015.nt} +0 -0
- data/public/export/{65156.nt → 58964.nt} +0 -0
- data/public/export/{6520.nt → 60674.nt} +0 -0
- data/public/export/{801.nt → 61265.nt} +0 -0
- data/public/export/{863.nt → 61895.nt} +0 -0
- data/public/export/{9372.nt → 62372.nt} +0 -0
- data/public/export/62469.nt +28 -0
- data/public/export/62880.nt +28 -0
- data/public/export/63673.nt +28 -0
- data/public/export/64151.nt +28 -0
- data/public/export/64891.nt +28 -0
- data/public/export/7089.nt +28 -0
- data/public/export/7365.nt +28 -0
- data/public/export/7473.nt +28 -0
- data/public/export/7939.nt +28 -0
- data/public/export/8509.nt +28 -0
- data/public/export/9370.nt +28 -0
- data/public/export/9600.nt +28 -0
- data/public/uploads/import/{038dd516e01fe211375441c3af8d90e8.nt → 01cb889ac483ce809435db5e37d01010.nt} +0 -0
- data/public/uploads/import/{07e71ca0235e798be39acd246114d962.nt → 05c5e3cc92a18a3ce176065485caafeb.nt} +0 -0
- data/public/uploads/import/0a539be7eb44e0aa1f4eebe485e67d32.nt +260 -0
- data/public/uploads/import/0ceccdec88406d5de2f9c91d6c32bd63.nt +260 -0
- data/public/uploads/import/{0a4c173bc9db7a5cd469c9454fdfa749.nt → 0d199979d7a157c89b517b0121f220de.nt} +0 -0
- data/public/uploads/import/0d1cb3a3c90c406735065c39ccf36882.nt +260 -0
- data/public/uploads/import/{0e8336cb2ef2c8b67767dfe8879d9cfb.nt → 1146b2566f01d412f53aefb921b8abf6.nt} +0 -0
- data/public/uploads/import/{0f4eb8cd6390b1c5c5354a22e533ee0e.nt → 12f08c2e20a05620666d39cabb148b90.nt} +0 -0
- data/public/uploads/import/{105400714d68d2207209e23826345e76.nt → 136c72e86af49d44b885c609a97050e5.nt} +0 -0
- data/public/uploads/import/{1130cde10b15a3f5fc203d47f6989aea.nt → 1406b0ff2e1b68d38bdafe54a54e7981.nt} +0 -0
- data/public/uploads/import/{1147ab054ce55abf0a5bf93b99220231.nt → 142764b92a63f20feb0e6d1398517394.nt} +0 -0
- data/public/uploads/import/{14b64b1f2252aba1e89d83f770d14e29.nt → 1618cd8f36abb0d25d5cee9eef4162dd.nt} +0 -0
- data/public/uploads/import/{1c6f11c300224248bf919885f8545daf.nt → 1838327ebac2c062a9036e0187d8c607.nt} +0 -0
- data/public/uploads/import/{21d34b65ef0a8156111e845992fd004f.nt → 1be9a54bb74a467fbd6321190e10a23b.nt} +0 -0
- data/public/uploads/import/{2783fade523132942999836a74228d64.nt → 1eb3eabccf76ddb2a6bba92eac8b84b9.nt} +0 -0
- data/public/uploads/import/{2bc90e07e5c42e5f26a1607756cc0ab3.nt → 1f147a50c4203690ea4b1ac66f748537.nt} +0 -0
- data/public/uploads/import/{2e4073a94eeae98095de9f43b5e5774a.nt → 22be1db3763deeafb6e9bdc8af7de52f.nt} +0 -0
- data/public/uploads/import/{32548678e7d47b3e256590d6eef6fb03.nt → 24ed4b1b10f4c9facb797d8055f3cc59.nt} +0 -0
- data/public/uploads/import/{330e08c32fde94fb80f656346d1f8383.nt → 25634d3f1c727c79e47104d45a169d22.nt} +0 -0
- data/public/uploads/import/{337790be2663214e66066b1215fdd137.nt → 25eb335ad83136428eedfd427409f5bb.nt} +0 -0
- data/public/uploads/import/{34b77ff970ca71511fb4b224b7dadd1c.nt → 283e799cc2342cf33550a1668e760021.nt} +0 -0
- data/public/uploads/import/{38de0d3c9cba92e8a3c312e7e95e7ec1.nt → 28848fff43a56cba0924478a015e4c8e.nt} +0 -0
- data/public/uploads/import/28a2a5974b1eed79e85d92046fe58d22.nt +260 -0
- data/public/uploads/import/296bea9c560bb915222cb892124c9bab.nt +260 -0
- data/public/uploads/import/2ac22cf493b3991b6524e7bf7c9c9483.nt +260 -0
- data/public/uploads/import/{3981aa91cf22e26fbf6b1312b2bcdcc8.nt → 2b0de64784aa4f574c74bd7a5ca67e81.nt} +0 -0
- data/public/uploads/import/{3d01f84539a62ebe6f76124e8cdbbb23.nt → 2be31e7e2493319f9cb7e210eabb84b6.nt} +0 -0
- data/public/uploads/import/2f7a5213d7e134237b69cbdc9c8e0985.nt +260 -0
- data/public/uploads/import/{3d05bb72c3751da3830cf53e966283d4.nt → 3025f07688ed08e81c430eed8e5e2b2c.nt} +0 -0
- data/public/uploads/import/{3e1d2f770bfe3c79a367780731536a3a.nt → 3062df55d07d30a0db0b00fc59a066ef.nt} +0 -0
- data/public/uploads/import/{3e41bd1875dc23401278c73bd12be881.nt → 35901d7daa6f90eb09b508eab2f19f97.nt} +0 -0
- data/public/uploads/import/35943ba240eb26dc43092746316a666a.nt +260 -0
- data/public/uploads/import/{3f3e3dbb09c3df6bfaed261311de3e7d.nt → 3a39842a235c47d341390bb5ff76b013.nt} +0 -0
- data/public/uploads/import/{4297d9970e47be5ced4991a083032eb9.nt → 4217de34967f03696a2d1c4ec832b395.nt} +0 -0
- data/public/uploads/import/{5925186958bd537ad5e79e76e3a1f714.nt → 432a521429991340c75d39069672f200.nt} +0 -0
- data/public/uploads/import/4410370b7349278a941ec73edc506afb.nt +260 -0
- data/public/uploads/import/{596c40774bb5979c8de5ce6daa58de35.nt → 44f43bafabc21e6a080bb820b86c8efa.nt} +0 -0
- data/public/uploads/import/{5dc5dcd978db1c59ec074e9137f0109c.nt → 4910bf38577bcef7ca835225a22d04cf.nt} +0 -0
- data/public/uploads/import/{5e46663e7e2eb92e5e8846d7c0f8e713.nt → 4a1092bfdd2c3e6cd684d00f2ebb48a0.nt} +0 -0
- data/public/uploads/import/{70022a2a7e808000dc3d55529d203480.nt → 4a924fe4d94485b794a0ac4ae2dbe7b2.nt} +0 -0
- data/public/uploads/import/4ab869eeeec7deaf5840548196350ffe.nt +260 -0
- data/public/uploads/import/{70b32583acaca5843ac7dbdc2a89de99.nt → 4d8c90b9e5b7a06e40dc9b426f19d762.nt} +0 -0
- data/public/uploads/import/4f884498309031e9a3b75c5d7c59b353.nt +260 -0
- data/public/uploads/import/{77ea050ae3a00aedd2a6e4158454a54d.nt → 503e198ce4ec0e311db1d06fc2b6962a.nt} +0 -0
- data/public/uploads/import/{7cc9feb5e9180d29865b9d4e81694921.nt → 51fcfdd1ba9e57f7afd8bfb3135b18be.nt} +0 -0
- data/public/uploads/import/{8030e54313e2c7231c4c30cd4145d576.nt → 525b24358e3b1a5afd18bbbe930bcb35.nt} +0 -0
- data/public/uploads/import/{8a380e32de64ffe7fce5da5068fe174f.nt → 542a2a3b0a62b9599922a67a5085c625.nt} +0 -0
- data/public/uploads/import/{8bb6484a9eb0c3266274c08ad8500669.nt → 5572705385339b834e975f5d7f26f89a.nt} +0 -0
- data/public/uploads/import/{8e0bf83a2ca503753efaa29bff6f84f6.nt → 56aafaf5adcdd148722aeaf0b37a2ba3.nt} +0 -0
- data/public/uploads/import/{90711ea002f6b7b4e5476e414e185603.nt → 59b6122c9a524891ae8dadf34e04f925.nt} +0 -0
- data/public/uploads/import/{918a5fc2c8fcdbaddc2a02588d599dcf.nt → 5d4578b7bb3e3f2067f354be5b68d08f.nt} +0 -0
- data/public/uploads/import/{923f9ebccb7b0e9e9fafddc60750b989.nt → 645eb1a598ae7003b45b29176587088b.nt} +0 -0
- data/public/uploads/import/{933e4e2baee4d91b8f7681fa4d2ad9fa.nt → 64cea1620f460841301aa57d23e6223c.nt} +0 -0
- data/public/uploads/import/{93f642eacd966c98645345d2ccdf578d.nt → 6bee752d1b71422389551999e1c29af9.nt} +0 -0
- data/public/uploads/import/{9a3d0f8d1872d4ba5dd281194ddea4a2.nt → 6c03e1aa271ca4613340130d16722850.nt} +0 -0
- data/public/uploads/import/{9a3f1c9de8e734b7e1d969d07ea57a83.nt → 6d829ce927bca0d0291d3ca94c87d47d.nt} +0 -0
- data/public/uploads/import/{9f91263fee5275ecbf303c7da0a9e84d.nt → 7019eec0ddbd6deccfa69f564e03007d.nt} +0 -0
- data/public/uploads/import/{9f9d6b4293be8def1b406156a3e2bcd9.nt → 70dcaf9bcb39a21172db26e20ef3abb1.nt} +0 -0
- data/public/uploads/import/{a230b36c3666a6b16fec6283e99b221f.nt → 7c7f872865d77373f4e5d12d3b46c6d1.nt} +0 -0
- data/public/uploads/import/7d630e4ae70fcdef7a26a5f54be1c87d.nt +260 -0
- data/public/uploads/import/{a51b35089dc096f0f1f5d5250edb8d5c.nt → 7e2154e0fb9ecfa38d7d1791ba1f91e2.nt} +0 -0
- data/public/uploads/import/{a5265a00946627588ecdac317c061c6c.nt → 7f5864cd2bb3608a478b6cacf213b6ef.nt} +0 -0
- data/public/uploads/import/{a712bf10adc7546d5c567194d7a13603.nt → 7fd575d1e51e867294cc3c55dd7b86d3.nt} +0 -0
- data/public/uploads/import/{a7e315db905ac7808126b600dd1f6203.nt → 81e614eb844d0a6e07724df0e0a391af.nt} +0 -0
- data/public/uploads/import/{a95b7d93b7483116ff13c894a46b5c1c.nt → 8635fc73b0ad52e5531f6542cf73aab0.nt} +0 -0
- data/public/uploads/import/{b5e47ea582afb81341f7b7084cc17a06.nt → 87e8ab3b30135925cd296a4f105fdf28.nt} +0 -0
- data/public/uploads/import/{b826bcfad8f18294a425d65482c46033.nt → 88f3ede5c716bcdc9ac4b16361f6014c.nt} +0 -0
- data/public/uploads/import/{bcf18c9e4dbe72745f4ec2878a4b1690.nt → 8a09903d5ce62375eb315fb5a28cfb1e.nt} +0 -0
- data/public/uploads/import/8dd67edd0888cc10c181b0cb13f114a5.nt +260 -0
- data/public/uploads/import/{c32855cb4b3e8616db2ef3f5f9cb5ca7.nt → 945e467cd3b86903a712322622403350.nt} +0 -0
- data/public/uploads/import/{c438f3150fb39b93ee01a6f8bc5bb7b9.nt → 947fc847742818ad2f8946150fa68280.nt} +0 -0
- data/public/uploads/import/{c7b54e24ea6bde65f8430d1d747a6dda.nt → 9668f439f7429886747a4981c53d2f7b.nt} +0 -0
- data/public/uploads/import/97bf213b1827e1b3fe4a93f660cd297b.nt +260 -0
- data/public/uploads/import/9cc1c8c8530900bb42723b35a85c997a.nt +260 -0
- data/public/uploads/import/{c8ee5bc696312468c4354bad6c583321.nt → a34ebe5f52348d8e0690efbbd7dbb29b.nt} +0 -0
- data/public/uploads/import/{cfc73574fe398be7ce684fbc17aa1bb7.nt → a6362a3aa7b0154ee5881aa4e97e4fc1.nt} +0 -0
- data/public/uploads/import/{d038a0416528900076cdb4a28211a84c.nt → acfb67a494ba87573b3cdd7997c7aba2.nt} +0 -0
- data/public/uploads/import/{d2366992f6e9e4377d02fc691fc2d3d3.nt → ae888974bc1697ae1949a95dbcaa104b.nt} +0 -0
- data/public/uploads/import/{d250e9b7a2819d62a43d5270031eaa6d.nt → b238195b0159fd1aca793e33ea179b1d.nt} +0 -0
- data/public/uploads/import/{dc14a0fa30c105a5770da2c960daaf29.nt → b36159aad53d09f5e6ca12e0dcea000c.nt} +0 -0
- data/public/uploads/import/{e9289f6f920cf44d0e81599410b39090.nt → b42cf56722b79ef7e6730d19130d9dfd.nt} +0 -0
- data/public/uploads/import/b54ffcb43a4c939b339fca358223177d.nt +260 -0
- data/public/uploads/import/{ed1c212d4f320e414caacda7a7988f83.nt → bc140bce0ab1818edd55350b793eb36c.nt} +0 -0
- data/public/uploads/import/{ed460af60bf4d0884d37a86bb02411e7.nt → bdfe458413c233f7c2e96041b8c2aa9d.nt} +0 -0
- data/public/uploads/import/{f0cde297ac63a3654a1d5e5535a6f685.nt → bf0168c5d5f472442707ff76115480b0.nt} +0 -0
- data/public/uploads/import/{f17024adf37be768041307528e848bd6.nt → c0479e6569a5cbd8fc74702c165f71b5.nt} +0 -0
- data/public/uploads/import/{f2f6025f6de90ee4609c2928a817c51d.nt → c2c0372e27f625ca1ce1aa527059d6d2.nt} +0 -0
- data/public/uploads/import/{f427507b1c208ddf69204ea5414e5d18.nt → c43fbad62457debced3e2b5f175b633a.nt} +0 -0
- data/public/uploads/import/{ffce91887b3ac5b7319a80926ff310ef.nt → c4d8f635e4bb5601713bbf9bc456c797.nt} +0 -0
- data/public/uploads/{tmp/1417625624-7926-3861/hobbies.nt → import/c61960b982b3a8308e41de6cf094255d.nt} +0 -0
- data/public/uploads/{tmp/1417625658-7975-5171/hobbies.nt → import/c63faf859a988775b27acb8e8712f13b.nt} +0 -0
- data/public/uploads/{tmp/1418649743-7886-1510/hobbies.nt → import/cb1b6b27edfcc404ca469fa3ec6b0664.nt} +0 -0
- data/public/uploads/{tmp/1418653029-9019-1572/hobbies.nt → import/cb37615bf36a26ecbfd6e0f738302d17.nt} +0 -0
- data/public/uploads/{tmp/1418656093-9614-5971/hobbies.nt → import/d0369e2cb8216ddc3858a5ae93307da2.nt} +0 -0
- data/public/uploads/import/d395b7bd9126c74ee3586b849768ef14.nt +260 -0
- data/public/uploads/{tmp/1418659992-10218-8665/hobbies.nt → import/d5d835b59eae82a208653c1b30ad74c9.nt} +0 -0
- data/public/uploads/{tmp/1418664440-11199-8740/hobbies.nt → import/d82612b6c9d65e2f2dcfbda202b59a90.nt} +0 -0
- data/public/uploads/{tmp/1418665022-11430-9919/hobbies.nt → import/df361efdd673094c731454a91d925850.nt} +0 -0
- data/public/uploads/import/df66a381628757d745ae3b60642c3746.nt +260 -0
- data/public/uploads/{tmp/1418665225-11485-5805/hobbies.nt → import/e1c59deb5c9119a65787bc5c2d71d678.nt} +0 -0
- data/public/uploads/{tmp/1418665744-11777-4958/hobbies.nt → import/e2242e8bc7216edacba54071db90e2f7.nt} +0 -0
- data/public/uploads/{tmp/1418666103-11837-9818/hobbies.nt → import/e3d2d0b824f8c45aae697261a4dbe891.nt} +0 -0
- data/public/uploads/{tmp/1418666157-11880-9002/hobbies.nt → import/e59bb2aced9152cc0c9a8b1be30bf7b0.nt} +0 -0
- data/public/uploads/{tmp/1418666292-11920-9076/hobbies.nt → import/e9a6f6db0a5a7e13b6eb576a8f724347.nt} +0 -0
- data/public/uploads/{tmp/1418666482-11968-5799/hobbies.nt → import/ea69b273df07fb624312cbf853c434f4.nt} +0 -0
- data/public/uploads/{tmp/1418666589-12006-6137/hobbies.nt → import/eaa64a373eab2b1ccf3a0caf4b9a9b36.nt} +0 -0
- data/public/uploads/import/eaec06e06215273b63df2bfbfcd1be1f.nt +260 -0
- data/public/uploads/{tmp/1419417707-62741-8601/hobbies.nt → import/ed37994c6a8c15cc9dfcc5f0fc98d25e.nt} +0 -0
- data/public/uploads/{tmp/1419418501-62977-9798/hobbies.nt → import/ef8c5b07b56a2f5bfd0818d146b54ad0.nt} +0 -0
- data/public/uploads/import/f02c74ffa5f9b0247ed608654d69afbe.nt +260 -0
- data/public/uploads/import/f19ecbe95745af34dc11c7ee3a185250.nt +260 -0
- data/public/uploads/{tmp/1419419091-63178-5200/hobbies.nt → import/f1f6bbcef457c577c6cf8a41c332ed52.nt} +0 -0
- data/public/uploads/{tmp/1419845421-37940-7338/hobbies.nt → import/f24e1405527ac90b18fc4b9103b0356b.nt} +0 -0
- data/public/uploads/{tmp/1419872019-93309-7785/hobbies.nt → import/f324628e42cd2165e0befb2dc9e19ec3.nt} +0 -0
- data/public/uploads/{tmp/1419872459-93489-7475/hobbies.nt → import/f4f4b5eb4283efc264b2e29b728b45ce.nt} +0 -0
- data/public/uploads/{tmp/1420204292-55473-2339/hobbies.nt → import/f6cda0379fadb6b9ed88b59b04d1544a.nt} +0 -0
- data/public/uploads/import/f8eb5272e6cc4b691765b370685b634e.nt +260 -0
- data/public/uploads/{tmp/1420469113-94913-1977/hobbies.nt → import/f92c5202d53cf595d63051016ebe2aed.nt} +0 -0
- data/public/uploads/{tmp/1420469218-94957-7818/hobbies.nt → import/f9948cb7e270f1582313d9d64a0013f4.nt} +0 -0
- data/public/uploads/tmp/1399391854-10068-6618/hobbies.nt +260 -0
- data/public/uploads/tmp/1399391911-10213-8446/hobbies.nt +260 -0
- data/public/uploads/tmp/1399392015-10496-2495/hobbies.nt +260 -0
- data/public/uploads/tmp/1399465936-82819-2227/hobbies.nt +260 -0
- data/public/uploads/tmp/1399562287-11058-4844/hobbies.nt +260 -0
- data/public/uploads/tmp/1399562349-11220-5006/hobbies.nt +260 -0
- data/public/uploads/tmp/1399562606-12081-8172/hobbies.nt +260 -0
- data/public/uploads/tmp/1399562663-12419-6959/hobbies.nt +260 -0
- data/public/uploads/tmp/1399562758-12675-1044/hobbies.nt +260 -0
- data/public/uploads/tmp/1399563325-14184-4165/hobbies.nt +260 -0
- data/public/uploads/tmp/1399563511-14691-1597/hobbies.nt +260 -0
- data/public/uploads/tmp/1399563577-14899-9811/hobbies.nt +260 -0
- data/public/uploads/tmp/1399563654-15101-9704/hobbies.nt +260 -0
- data/public/uploads/tmp/1399563789-15465-3853/hobbies.nt +260 -0
- data/public/uploads/tmp/1399564038-16136-7758/hobbies.nt +260 -0
- data/public/uploads/tmp/1399564391-17273-4324/hobbies.nt +260 -0
- data/public/uploads/tmp/1399565011-19048-6725/hobbies.nt +260 -0
- data/public/uploads/tmp/1399565066-19204-6162/hobbies.nt +260 -0
- data/public/uploads/tmp/1399639727-33218-9866/hobbies.nt +260 -0
- data/public/uploads/tmp/1399642528-42021-8916/hobbies.nt +260 -0
- data/public/uploads/tmp/1399642763-42734-7348/hobbies.nt +260 -0
- data/public/uploads/tmp/1399886894-13606-2429/hobbies.nt +260 -0
- data/public/uploads/tmp/{1420471310-95437-1840 → 1400683232-10539-5676}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420475764-97681-5693 → 1400683420-10634-8312}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420475937-97729-2119 → 1400683468-10666-6540}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420476857-98058-7891 → 1400684714-11424-9829}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420535851-99018-0174 → 1400846672-62648-9413}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420536204-1785-0172 → 1400846766-62697-7073}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420551687-4559-4581 → 1401180379-3162-2871}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420553228-5060-8398 → 1401185202-4377-2768}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420554138-5330-1218 → 1401192012-6573-2832}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420623682-11549-0730 → 1401194508-7699-9522}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420627830-12489-1669 → 1401194627-7742-0813}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420643849-18200-3932 → 1401194954-7841-9994}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420649772-21728-5542 → 1401195326-7932-3790}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420708117-27095-8292 → 1401206318-10643-2808}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420708387-27223-6774 → 1401292131-92601-6112}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420708470-27267-7475 → 1401292181-92670-8615}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420708517-27294-4695 → 1401292252-92839-0886}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420708539-27319-1354 → 1401292294-92900-5587}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420708586-27334-3786 → 1401292390-92976-9639}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420708992-27418-8019 → 1401701949-3140-4347}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420709221-27495-1252 → 1401702355-40904-9058}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420709888-27667-9904 → 1401702361-40926-1371}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420710092-27729-5735 → 1401702406-40992-5615}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420710448-27814-7190 → 1401702475-41050-2716}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420710886-27909-4558 → 1401702625-41136-3304}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420711474-28046-6914 → 1401702771-41202-1777}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420711601-28081-0714 → 1401704263-41803-0906}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420711904-28153-8591 → 1401704312-41845-2277}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420712160-28240-2054 → 1401704455-41906-3348}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420712349-28303-3685 → 1401704517-41941-3825}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420712756-28475-0893 → 1401704557-42078-2926}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420712995-28567-4743 → 1401704659-42140-2026}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420722946-31448-5312 → 1401704727-42194-2926}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420723021-31498-6069 → 1401704810-42233-0719}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420723172-31541-4390 → 1401704877-42346-6423}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1420723249-31574-6508 → 1401704969-42396-2636}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422290833-38334-3392 → 1401706200-42741-9489}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422292996-38701-6635 → 1401706505-42885-6630}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422293183-38751-2662 → 1401706579-42925-3938}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422293478-38811-6215 → 1401706998-43068-7269}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422300870-38980-1343 → 1401707073-43147-4480}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422372626-67843-5956 → 1401707148-43190-8990}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422374262-68176-3483 → 1401707185-43233-6339}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422374611-68319-4455 → 1401707525-43306-5760}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422467418-10546-8937 → 1401716194-45552-4247}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422467614-10596-6509 → 1401716269-45634-6256}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422537271-15787-8339 → 1401716431-45713-6690}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422538114-15972-5522 → 1401717803-46392-3771}/hobbies.nt +0 -0
- data/public/uploads/tmp/{1422540419-16733-4506 → 1401717970-46482-3771}/hobbies.nt +0 -0
- data/public/uploads/tmp/1401719163-46906-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401719307-46967-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401719376-47013-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401719630-47114-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401719982-47199-3873/hobbies.nt +259 -0
- data/public/uploads/tmp/1401720178-47285-9163/hobbies.nt +259 -0
- data/public/uploads/tmp/1401720378-47376-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401720550-47464-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401720661-47532-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401721032-47662-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401721110-47707-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401722057-48025-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401722131-48079-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401722177-48112-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401722330-48176-3771/hobbies.nt +259 -0
- data/public/uploads/tmp/1401722430-48237-4227/hobbies.nt +259 -0
- data/public/uploads/tmp/1401722732-48343-4227/hobbies.nt +259 -0
- data/public/uploads/tmp/1401722909-48424-1412/hobbies.nt +259 -0
- data/public/uploads/tmp/1401723009-48482-7948/hobbies.nt +259 -0
- data/public/uploads/tmp/1401723431-48680-9071/hobbies.nt +259 -0
- data/public/uploads/tmp/1401724808-49229-3988/hobbies.nt +259 -0
- data/public/uploads/tmp/1401725005-49344-4227/hobbies.nt +259 -0
- data/public/uploads/tmp/1401801415-57643-7508/hobbies.nt +259 -0
- data/public/uploads/tmp/1401801470-57683-1511/hobbies.nt +259 -0
- data/public/uploads/tmp/1401801589-57766-6716/hobbies.nt +259 -0
- data/public/uploads/tmp/1401801648-57810-6653/hobbies.nt +259 -0
- data/public/uploads/tmp/1401801703-57902-1218/hobbies.nt +259 -0
- data/public/uploads/tmp/1401801780-57957-6963/hobbies.nt +259 -0
- data/public/uploads/tmp/1401801876-58010-6576/hobbies.nt +259 -0
- data/public/uploads/tmp/1401801925-58061-5018/hobbies.nt +259 -0
- data/public/uploads/tmp/1401801966-58088-4598/hobbies.nt +259 -0
- data/public/uploads/tmp/1401802064-58134-0309/hobbies.nt +259 -0
- data/public/uploads/tmp/1401802128-58183-5882/hobbies.nt +259 -0
- data/public/uploads/tmp/1401802254-58261-9292/hobbies.nt +259 -0
- data/public/uploads/tmp/1401802305-58305-0716/hobbies.nt +259 -0
- data/public/uploads/tmp/1401802559-58393-8087/hobbies.nt +259 -0
- data/public/uploads/tmp/1401802603-58429-5414/hobbies.nt +259 -0
- data/public/uploads/tmp/1401802704-58494-3176/hobbies.nt +259 -0
- data/public/uploads/tmp/1401876393-11719-7974/hobbies.nt +259 -0
- data/public/uploads/tmp/1401880994-13325-5134/hobbies.nt +259 -0
- data/public/uploads/tmp/1401881408-13497-2210/hobbies.nt +259 -0
- data/public/uploads/tmp/1402407940-72993-0117/hobbies.nt +259 -0
- data/public/uploads/tmp/1403276908-17566-3335/hobbies.nt +259 -0
- data/public/uploads/tmp/1403276972-17606-3705/hobbies.nt +259 -0
- data/public/uploads/tmp/1403277054-17662-2528/hobbies.nt +259 -0
- data/public/uploads/tmp/1405605924-28482-6761/hobbies.nt +259 -0
- data/public/uploads/tmp/1405606039-28627-4530/hobbies.nt +259 -0
- data/public/uploads/tmp/1405606796-29190-4080/hobbies.nt +259 -0
- data/test/authentication.rb +33 -0
- data/test/controllers/hierarchy_test.rb +406 -0
- data/test/{functional → controllers}/rdf_rendering_test.rb +26 -33
- data/test/integration/alphabetical_test.rb +18 -16
- data/test/integration/authentication_test.rb +13 -15
- data/test/integration/browse_concepts_and_labels_test.rb +27 -32
- data/test/integration/client_augmentation_test.rb +14 -15
- data/test/integration/client_edit_concept_test.rb +31 -33
- data/test/integration/collection_circularity_test.rb +57 -53
- data/test/integration/concept_browsing_test.rb +23 -25
- data/test/integration/concept_scheme_browsing_test.rb +28 -28
- data/test/integration/edit_collections_test.rb +21 -0
- data/test/integration/edit_concepts_test.rb +15 -13
- data/test/integration/export_test.rb +73 -0
- data/test/integration/import_test.rb +77 -0
- data/test/integration/instance_configuration_browsing_test.rb +19 -21
- data/test/integration/navigation_test.rb +14 -16
- data/test/integration/note_annotations_test.rb +34 -36
- data/test/integration/search_test.rb +105 -100
- data/test/integration/tree_test.rb +13 -5
- data/test/integration/untranslated_test.rb +19 -22
- data/test/integration/user_management_test.rb +51 -0
- data/test/integration_test_helper.rb +10 -2
- data/test/{unit → models}/concept_scheme_test.rb +1 -1
- data/test/models/concept_test.rb +178 -0
- data/test/{unit → models}/hygiene_test.rb +8 -8
- data/test/{unit → models}/inline_data_test.rb +11 -13
- data/test/{unit → models}/instance_configuration_test.rb +16 -18
- data/test/{unit → models}/note_test.rb +4 -6
- data/test/models/origin_test.rb +83 -0
- data/test/{unit → models}/rdf_sync_test.rb +20 -22
- data/test/{unit → models}/rdfapi_test.rb +0 -1
- data/test/models/skos_collection_import_test.rb +104 -0
- data/test/models/skos_export_test.rb +48 -0
- data/test/models/skos_import_test.rb +143 -0
- data/test/models/testdata.nt +22 -0
- data/test/test_helper.rb +5 -3
- metadata +454 -305
- data/app/views/collections/show.html.erb +0 -53
- data/app/views/concepts/index.iqrdf +0 -28
- data/app/views/kaminari/_first_page.html.erb +0 -13
- data/app/views/kaminari/_gap.html.erb +0 -8
- data/app/views/kaminari/_last_page.html.erb +0 -13
- data/app/views/kaminari/_next_page.html.erb +0 -13
- data/app/views/kaminari/_page.html.erb +0 -12
- data/app/views/kaminari/_paginator.html.erb +0 -25
- data/app/views/kaminari/_prev_page.html.erb +0 -13
- data/config/initializers/secret_token_configurator.rb +0 -29
- data/config/initializers/simple_form.rb +0 -177
- data/config/locales/simple_form.en.yml +0 -24
- data/config/locales/simple_form.pt.yml +0 -23
- data/lib/engine_tasks/setup.rake +0 -10
- data/lib/iqvoc/versioning.rb +0 -151
- data/lib/tasks/heroku.rake +0 -14
- data/lib/tasks/setup.rake +0 -7
- data/lib/templates/erb/scaffold/_form.html.erb +0 -13
- data/test/capybara_helper.rb +0 -31
- data/test/factories.rb +0 -75
- data/test/functional/hierarchy_test.rb +0 -408
- data/test/unit/concept_test.rb +0 -153
- data/test/unit/origin_test.rb +0 -78
- data/test/unit/skos_import_test.rb +0 -228
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.
|
4
|
+
version: 4.4.0
|
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:
|
13
|
+
date: 2014-07-17 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -18,14 +18,14 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - "~>"
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 4.
|
21
|
+
version: 4.1.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - "~>"
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 4.
|
28
|
+
version: 4.1.0
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: bundler
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,32 +44,46 @@ dependencies:
|
|
44
44
|
name: kaminari
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- -
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0'
|
50
|
+
type: :runtime
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: kaminari-bootstrap
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - "~>"
|
48
62
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.
|
63
|
+
version: 3.0.1
|
50
64
|
type: :runtime
|
51
65
|
prerelease: false
|
52
66
|
version_requirements: !ruby/object:Gem::Requirement
|
53
67
|
requirements:
|
54
|
-
- -
|
68
|
+
- - "~>"
|
55
69
|
- !ruby/object:Gem::Version
|
56
|
-
version: 0.
|
70
|
+
version: 3.0.1
|
57
71
|
- !ruby/object:Gem::Dependency
|
58
72
|
name: authlogic
|
59
73
|
requirement: !ruby/object:Gem::Requirement
|
60
74
|
requirements:
|
61
|
-
- - "
|
75
|
+
- - "~>"
|
62
76
|
- !ruby/object:Gem::Version
|
63
|
-
version:
|
77
|
+
version: 3.4.2
|
64
78
|
type: :runtime
|
65
79
|
prerelease: false
|
66
80
|
version_requirements: !ruby/object:Gem::Requirement
|
67
81
|
requirements:
|
68
|
-
- - "
|
82
|
+
- - "~>"
|
69
83
|
- !ruby/object:Gem::Version
|
70
|
-
version:
|
84
|
+
version: 3.4.2
|
71
85
|
- !ruby/object:Gem::Dependency
|
72
|
-
name:
|
86
|
+
name: cancancan
|
73
87
|
requirement: !ruby/object:Gem::Requirement
|
74
88
|
requirements:
|
75
89
|
- - ">="
|
@@ -88,14 +102,14 @@ dependencies:
|
|
88
102
|
requirements:
|
89
103
|
- - ">="
|
90
104
|
- !ruby/object:Gem::Version
|
91
|
-
version: 0.1.
|
105
|
+
version: 0.1.15
|
92
106
|
type: :runtime
|
93
107
|
prerelease: false
|
94
108
|
version_requirements: !ruby/object:Gem::Requirement
|
95
109
|
requirements:
|
96
110
|
- - ">="
|
97
111
|
- !ruby/object:Gem::Version
|
98
|
-
version: 0.1.
|
112
|
+
version: 0.1.15
|
99
113
|
- !ruby/object:Gem::Dependency
|
100
114
|
name: json
|
101
115
|
requirement: !ruby/object:Gem::Requirement
|
@@ -139,47 +153,47 @@ dependencies:
|
|
139
153
|
- !ruby/object:Gem::Version
|
140
154
|
version: '0'
|
141
155
|
- !ruby/object:Gem::Dependency
|
142
|
-
name:
|
156
|
+
name: sass-rails
|
143
157
|
requirement: !ruby/object:Gem::Requirement
|
144
158
|
requirements:
|
145
|
-
- - "
|
159
|
+
- - "~>"
|
146
160
|
- !ruby/object:Gem::Version
|
147
|
-
version:
|
161
|
+
version: 4.0.2
|
148
162
|
type: :runtime
|
149
163
|
prerelease: false
|
150
164
|
version_requirements: !ruby/object:Gem::Requirement
|
151
165
|
requirements:
|
152
|
-
- - "
|
166
|
+
- - "~>"
|
153
167
|
- !ruby/object:Gem::Version
|
154
|
-
version:
|
168
|
+
version: 4.0.2
|
155
169
|
- !ruby/object:Gem::Dependency
|
156
|
-
name: sass
|
170
|
+
name: bootstrap-sass
|
157
171
|
requirement: !ruby/object:Gem::Requirement
|
158
172
|
requirements:
|
159
173
|
- - "~>"
|
160
174
|
- !ruby/object:Gem::Version
|
161
|
-
version:
|
175
|
+
version: 3.1.1.0
|
162
176
|
type: :runtime
|
163
177
|
prerelease: false
|
164
178
|
version_requirements: !ruby/object:Gem::Requirement
|
165
179
|
requirements:
|
166
180
|
- - "~>"
|
167
181
|
- !ruby/object:Gem::Version
|
168
|
-
version:
|
182
|
+
version: 3.1.1.0
|
169
183
|
- !ruby/object:Gem::Dependency
|
170
|
-
name:
|
184
|
+
name: bootstrap_form
|
171
185
|
requirement: !ruby/object:Gem::Requirement
|
172
186
|
requirements:
|
173
187
|
- - "~>"
|
174
188
|
- !ruby/object:Gem::Version
|
175
|
-
version: 2.
|
189
|
+
version: 2.1.1
|
176
190
|
type: :runtime
|
177
191
|
prerelease: false
|
178
192
|
version_requirements: !ruby/object:Gem::Requirement
|
179
193
|
requirements:
|
180
194
|
- - "~>"
|
181
195
|
- !ruby/object:Gem::Version
|
182
|
-
version: 2.
|
196
|
+
version: 2.1.1
|
183
197
|
- !ruby/object:Gem::Dependency
|
184
198
|
name: iq_triplestorage
|
185
199
|
requirement: !ruby/object:Gem::Requirement
|
@@ -222,20 +236,6 @@ dependencies:
|
|
222
236
|
- - ">="
|
223
237
|
- !ruby/object:Gem::Version
|
224
238
|
version: '0'
|
225
|
-
- !ruby/object:Gem::Dependency
|
226
|
-
name: protected_attributes
|
227
|
-
requirement: !ruby/object:Gem::Requirement
|
228
|
-
requirements:
|
229
|
-
- - ">="
|
230
|
-
- !ruby/object:Gem::Version
|
231
|
-
version: 1.0.5
|
232
|
-
type: :runtime
|
233
|
-
prerelease: false
|
234
|
-
version_requirements: !ruby/object:Gem::Requirement
|
235
|
-
requirements:
|
236
|
-
- - ">="
|
237
|
-
- !ruby/object:Gem::Version
|
238
|
-
version: 1.0.5
|
239
239
|
- !ruby/object:Gem::Dependency
|
240
240
|
name: font-awesome-rails
|
241
241
|
requirement: !ruby/object:Gem::Requirement
|
@@ -312,14 +312,28 @@ dependencies:
|
|
312
312
|
requirements:
|
313
313
|
- - "~>"
|
314
314
|
- !ruby/object:Gem::Version
|
315
|
-
version: 4.0.
|
315
|
+
version: 4.0.1
|
316
316
|
type: :runtime
|
317
317
|
prerelease: false
|
318
318
|
version_requirements: !ruby/object:Gem::Requirement
|
319
319
|
requirements:
|
320
320
|
- - "~>"
|
321
321
|
- !ruby/object:Gem::Version
|
322
|
-
version: 4.0.
|
322
|
+
version: 4.0.1
|
323
|
+
- !ruby/object:Gem::Dependency
|
324
|
+
name: carrierwave
|
325
|
+
requirement: !ruby/object:Gem::Requirement
|
326
|
+
requirements:
|
327
|
+
- - ">="
|
328
|
+
- !ruby/object:Gem::Version
|
329
|
+
version: '0'
|
330
|
+
type: :runtime
|
331
|
+
prerelease: false
|
332
|
+
version_requirements: !ruby/object:Gem::Requirement
|
333
|
+
requirements:
|
334
|
+
- - ">="
|
335
|
+
- !ruby/object:Gem::Version
|
336
|
+
version: '0'
|
323
337
|
description: iQvoc - a SKOS(-XL) vocabulary management system built on the Semantic
|
324
338
|
Web
|
325
339
|
email:
|
@@ -365,7 +379,10 @@ files:
|
|
365
379
|
- app/assets/stylesheets/iqvoc/ie_fixes.css.scss
|
366
380
|
- app/assets/stylesheets/iqvoc/manifest.css.scss
|
367
381
|
- app/assets/stylesheets/manifest.css.scss
|
382
|
+
- app/concerns/first_level_object_validations.rb
|
383
|
+
- app/concerns/versioning.rb
|
368
384
|
- app/controllers/application_controller.rb
|
385
|
+
- app/controllers/collections/versions_controller.rb
|
369
386
|
- app/controllers/collections_controller.rb
|
370
387
|
- app/controllers/concepts/alphabetical_controller.rb
|
371
388
|
- app/controllers/concepts/expired_controller.rb
|
@@ -376,6 +393,7 @@ files:
|
|
376
393
|
- app/controllers/concepts_controller.rb
|
377
394
|
- app/controllers/concerns/dataset_initialization.rb
|
378
395
|
- app/controllers/dashboard_controller.rb
|
396
|
+
- app/controllers/exports_controller.rb
|
379
397
|
- app/controllers/frontpage_controller.rb
|
380
398
|
- app/controllers/hierarchy_controller.rb
|
381
399
|
- app/controllers/imports_controller.rb
|
@@ -387,6 +405,7 @@ files:
|
|
387
405
|
- app/controllers/triplestore_sync_controller.rb
|
388
406
|
- app/controllers/user_sessions_controller.rb
|
389
407
|
- app/controllers/users_controller.rb
|
408
|
+
- app/exceptions/invalid_string_literal_error.rb
|
390
409
|
- app/helpers/application_helper.rb
|
391
410
|
- app/helpers/concepts_helper.rb
|
392
411
|
- app/helpers/dashboard_helper.rb
|
@@ -394,8 +413,10 @@ files:
|
|
394
413
|
- app/helpers/link_helper.rb
|
395
414
|
- app/helpers/navigation_helper.rb
|
396
415
|
- app/helpers/rdf_helper.rb
|
416
|
+
- app/helpers/rdf_namespaces_helper.rb
|
397
417
|
- app/helpers/search_results_helper.rb
|
398
418
|
- app/helpers/widget_helper.rb
|
419
|
+
- app/jobs/export_job.rb
|
399
420
|
- app/jobs/import_job.rb
|
400
421
|
- app/models/collection/base.rb
|
401
422
|
- app/models/collection/member/base.rb
|
@@ -421,6 +442,7 @@ files:
|
|
421
442
|
- app/models/dataset/adaptors/iqvoc/label_adaptor.rb
|
422
443
|
- app/models/dataset/adaptors/iqvoc/search_adaptor.rb
|
423
444
|
- app/models/dataset/iqvoc_dataset.rb
|
445
|
+
- app/models/export.rb
|
424
446
|
- app/models/import.rb
|
425
447
|
- app/models/label/base.rb
|
426
448
|
- app/models/label/skos/base.rb
|
@@ -456,15 +478,19 @@ files:
|
|
456
478
|
- app/presenters/search_result.rb
|
457
479
|
- app/presenters/search_result_collection.rb
|
458
480
|
- app/presenters/search_result_remote.rb
|
481
|
+
- app/uploaders/base.rb
|
482
|
+
- app/uploaders/rdf_uploader.rb
|
459
483
|
- app/views/collections/_collection.html.erb
|
484
|
+
- app/views/collections/_data.html.erb
|
460
485
|
- app/views/collections/_form.html.erb
|
461
486
|
- app/views/collections/_header.html.erb
|
462
487
|
- app/views/collections/_sidebar.html.erb
|
463
488
|
- app/views/collections/edit.html.erb
|
464
489
|
- app/views/collections/index.html.erb
|
465
490
|
- app/views/collections/new.html.erb
|
466
|
-
- app/views/collections/show.html.erb
|
467
491
|
- app/views/collections/show.iqrdf
|
492
|
+
- app/views/collections/show_published.html.erb
|
493
|
+
- app/views/collections/show_unpublished.html.erb
|
468
494
|
- app/views/concepts/_form.html.erb
|
469
495
|
- app/views/concepts/_header.html.erb
|
470
496
|
- app/views/concepts/alphabetical/_search_result.html.erb
|
@@ -474,7 +500,6 @@ files:
|
|
474
500
|
- app/views/concepts/expired/index.html.erb
|
475
501
|
- app/views/concepts/hierarchical/_treeview.html.erb
|
476
502
|
- app/views/concepts/hierarchical/index.html.erb
|
477
|
-
- app/views/concepts/index.iqrdf
|
478
503
|
- app/views/concepts/new.html.erb
|
479
504
|
- app/views/concepts/notifications/_referenced_concepts.html.erb
|
480
505
|
- app/views/concepts/scheme/_sidebar.html.erb
|
@@ -492,26 +517,23 @@ files:
|
|
492
517
|
- app/views/dashboard/reset.html.erb
|
493
518
|
- app/views/errors/access_denied.html.erb
|
494
519
|
- app/views/errors/not_found.html.erb
|
520
|
+
- app/views/exports/index.html.erb
|
521
|
+
- app/views/exports/show.html.erb
|
495
522
|
- app/views/frontpage/index.html.erb
|
496
523
|
- app/views/hierarchy/show.html.erb
|
497
524
|
- app/views/hierarchy/show.iqrdf
|
498
525
|
- app/views/imports/index.html.erb
|
499
526
|
- app/views/imports/show.html.erb
|
500
527
|
- app/views/instance_configuration/index.html.erb
|
501
|
-
- app/views/kaminari/_first_page.html.erb
|
502
|
-
- app/views/kaminari/_gap.html.erb
|
503
|
-
- app/views/kaminari/_last_page.html.erb
|
504
|
-
- app/views/kaminari/_next_page.html.erb
|
505
|
-
- app/views/kaminari/_page.html.erb
|
506
|
-
- app/views/kaminari/_paginator.html.erb
|
507
|
-
- app/views/kaminari/_prev_page.html.erb
|
508
528
|
- app/views/layouts/_controls.html.erb
|
509
529
|
- app/views/layouts/_header.html.erb
|
510
530
|
- app/views/layouts/_navigation.html.erb
|
511
531
|
- app/views/layouts/_sections.html.erb
|
512
532
|
- app/views/layouts/application.html.erb
|
513
533
|
- app/views/pages/help.html.erb
|
534
|
+
- app/views/partials/collection/_edit_link_base.html.erb
|
514
535
|
- app/views/partials/collection/_member.html.erb
|
536
|
+
- app/views/partials/collection/_new_link_base.html.erb
|
515
537
|
- app/views/partials/concept/_edit_link_base.html.erb
|
516
538
|
- app/views/partials/concept/_inline_base.html.erb
|
517
539
|
- app/views/partials/concept/_new_link_base.html.erb
|
@@ -573,7 +595,10 @@ files:
|
|
573
595
|
- config/initializers/action_view.rb
|
574
596
|
- config/initializers/active_record.rb
|
575
597
|
- config/initializers/apipie.rb
|
598
|
+
- config/initializers/assets.rb
|
576
599
|
- config/initializers/backtrace_silencers.rb
|
600
|
+
- config/initializers/cookies_serializer.rb
|
601
|
+
- config/initializers/filter_parameter_logging.rb
|
577
602
|
- config/initializers/heroku.rb
|
578
603
|
- config/initializers/inflections.rb
|
579
604
|
- config/initializers/iqvoc.rb
|
@@ -581,10 +606,9 @@ files:
|
|
581
606
|
- config/initializers/kaminari_config.rb
|
582
607
|
- config/initializers/language.rb
|
583
608
|
- config/initializers/mime_types.rb
|
584
|
-
- config/initializers/secret_token.rb
|
585
|
-
- config/initializers/secret_token_configurator.rb
|
609
|
+
- config/initializers/secret_token.rb
|
586
610
|
- config/initializers/session_store.rb
|
587
|
-
- config/initializers/
|
611
|
+
- config/initializers/wrap_parameters.rb
|
588
612
|
- config/locales/activerecord.de.yml
|
589
613
|
- config/locales/activerecord.en.yml
|
590
614
|
- config/locales/activerecord.pt.yml
|
@@ -595,9 +619,8 @@ files:
|
|
595
619
|
- config/locales/defaults.de.yml
|
596
620
|
- config/locales/en.yml
|
597
621
|
- config/locales/pt.yml
|
598
|
-
- config/locales/simple_form.en.yml
|
599
|
-
- config/locales/simple_form.pt.yml
|
600
622
|
- config/routes.rb
|
623
|
+
- config/secrets.yml
|
601
624
|
- config/warble.rb
|
602
625
|
- db/migrate/20100927101502_create_schema.rb
|
603
626
|
- db/migrate/20101125141218_add_collection_tables.rb
|
@@ -628,11 +651,15 @@ files:
|
|
628
651
|
- db/migrate/20130508103137_adjust_note_languages_setting.rb
|
629
652
|
- db/migrate/20131220134356_create_delayed_jobs.rb
|
630
653
|
- db/migrate/20131220144601_create_imports.rb
|
654
|
+
- db/migrate/20140423095147_create_exports.rb
|
655
|
+
- db/migrate/20140425130615_add_fk_indexes_to_exports_and_imports.rb
|
656
|
+
- db/migrate/20140505144919_add_import_file_to_imports.rb
|
657
|
+
- db/migrate/20140506073428_add_missing_imports_attributes.rb
|
658
|
+
- db/migrate/20140506133619_add_namespace_to_exports.rb
|
631
659
|
- db/schema.rb
|
632
660
|
- db/seeds.rb
|
633
661
|
- iqvoc.gemspec
|
634
662
|
- lib/engine_tasks/db.rake
|
635
|
-
- lib/engine_tasks/setup.rake
|
636
663
|
- lib/generators/app/template.rb
|
637
664
|
- lib/iqvoc.rb
|
638
665
|
- lib/iqvoc/ability.rb
|
@@ -654,241 +681,350 @@ files:
|
|
654
681
|
- lib/iqvoc/rankable.rb
|
655
682
|
- lib/iqvoc/rdf_sync.rb
|
656
683
|
- lib/iqvoc/rdfapi.rb
|
684
|
+
- lib/iqvoc/skos_exporter.rb
|
657
685
|
- lib/iqvoc/skos_importer.rb
|
658
686
|
- lib/iqvoc/version.rb
|
659
|
-
- lib/iqvoc/versioning.rb
|
660
687
|
- lib/multi_logger.rb
|
661
688
|
- lib/string.rb
|
662
|
-
- lib/tasks/
|
689
|
+
- lib/tasks/exporter.rake
|
663
690
|
- lib/tasks/importer.rake
|
664
691
|
- lib/tasks/release.rake
|
665
|
-
- lib/tasks/
|
692
|
+
- lib/tasks/reset.rake
|
666
693
|
- lib/tasks/sync.rake
|
667
|
-
- lib/templates/erb/scaffold/_form.html.erb
|
668
694
|
- public/404.html
|
669
695
|
- public/422.html
|
670
696
|
- public/500.html
|
671
|
-
- public/export/
|
672
|
-
- public/export/
|
673
|
-
- public/export/
|
674
|
-
- public/export/
|
675
|
-
- public/export/
|
676
|
-
- public/export/
|
677
|
-
- public/export/
|
678
|
-
- public/export/
|
679
|
-
- public/export/
|
680
|
-
- public/export/
|
681
|
-
- public/export/
|
682
|
-
- public/export/
|
683
|
-
- public/export/
|
684
|
-
- public/export/
|
685
|
-
- public/export/
|
686
|
-
- public/export/
|
687
|
-
- public/export/
|
688
|
-
- public/export/
|
689
|
-
- public/export/
|
690
|
-
- public/export/
|
691
|
-
- public/export/
|
692
|
-
- public/export/
|
693
|
-
- public/export/
|
694
|
-
- public/export/
|
695
|
-
- public/export/
|
696
|
-
- public/export/
|
697
|
-
- public/export/
|
698
|
-
- public/export/
|
699
|
-
- public/export/
|
700
|
-
- public/export/
|
701
|
-
- public/export/
|
702
|
-
- public/export/
|
703
|
-
- public/export/
|
704
|
-
- public/export/
|
705
|
-
- public/export/
|
706
|
-
- public/export/
|
707
|
-
- public/export/
|
708
|
-
- public/export/
|
709
|
-
- public/export/
|
710
|
-
- public/export/
|
711
|
-
- public/export/
|
712
|
-
- public/export/
|
713
|
-
- public/export/
|
714
|
-
- public/export/
|
715
|
-
- public/export/
|
716
|
-
- public/export/
|
717
|
-
- public/export/
|
718
|
-
- public/export/
|
719
|
-
- public/export/
|
720
|
-
- public/export/
|
721
|
-
- public/export/
|
722
|
-
- public/export/
|
723
|
-
- public/export/
|
724
|
-
- public/export/
|
725
|
-
- public/export/
|
726
|
-
- public/export/
|
727
|
-
- public/export/
|
728
|
-
- public/export/
|
729
|
-
- public/export/
|
730
|
-
- public/export/
|
731
|
-
- public/export/
|
732
|
-
- public/export/
|
733
|
-
- public/export/
|
734
|
-
- public/export/
|
735
|
-
- public/export/
|
736
|
-
- public/export/
|
737
|
-
- public/export/
|
738
|
-
- public/export/
|
739
|
-
- public/export/
|
697
|
+
- public/export/10110.nt
|
698
|
+
- public/export/10528.nt
|
699
|
+
- public/export/11105.nt
|
700
|
+
- public/export/11353.nt
|
701
|
+
- public/export/11790.nt
|
702
|
+
- public/export/12931.nt
|
703
|
+
- public/export/1385.nt
|
704
|
+
- public/export/15083.nt
|
705
|
+
- public/export/16538.nt
|
706
|
+
- public/export/1879.nt
|
707
|
+
- public/export/19502.nt
|
708
|
+
- public/export/19834.nt
|
709
|
+
- public/export/21183.nt
|
710
|
+
- public/export/21512.nt
|
711
|
+
- public/export/22034.nt
|
712
|
+
- public/export/2434.nt
|
713
|
+
- public/export/24841.nt
|
714
|
+
- public/export/26109.nt
|
715
|
+
- public/export/27784.nt
|
716
|
+
- public/export/28422.nt
|
717
|
+
- public/export/28627.nt
|
718
|
+
- public/export/29185.nt
|
719
|
+
- public/export/30124.nt
|
720
|
+
- public/export/305768326302831570152374795088739069204.nt
|
721
|
+
- public/export/3118.nt
|
722
|
+
- public/export/31250.nt
|
723
|
+
- public/export/31272.nt
|
724
|
+
- public/export/31875.nt
|
725
|
+
- public/export/32197.nt
|
726
|
+
- public/export/32223.nt
|
727
|
+
- public/export/32324.nt
|
728
|
+
- public/export/33084.nt
|
729
|
+
- public/export/33257.nt
|
730
|
+
- public/export/33545.nt
|
731
|
+
- public/export/34179.nt
|
732
|
+
- public/export/34582.nt
|
733
|
+
- public/export/35271.nt
|
734
|
+
- public/export/35426.nt
|
735
|
+
- public/export/36234.nt
|
736
|
+
- public/export/36363.nt
|
737
|
+
- public/export/36559.nt
|
738
|
+
- public/export/37333.nt
|
739
|
+
- public/export/38332.nt
|
740
|
+
- public/export/38461.nt
|
741
|
+
- public/export/38721.nt
|
742
|
+
- public/export/39469.nt
|
743
|
+
- public/export/40637.nt
|
744
|
+
- public/export/40746.nt
|
745
|
+
- public/export/4297.nt
|
746
|
+
- public/export/43236.nt
|
747
|
+
- public/export/43644.nt
|
748
|
+
- public/export/45021.nt
|
749
|
+
- public/export/45120.nt
|
750
|
+
- public/export/45552.nt
|
751
|
+
- public/export/46172.nt
|
752
|
+
- public/export/46739.nt
|
753
|
+
- public/export/4929.nt
|
754
|
+
- public/export/50335.nt
|
755
|
+
- public/export/51428.nt
|
756
|
+
- public/export/51494.nt
|
757
|
+
- public/export/51877.nt
|
758
|
+
- public/export/5359.nt
|
759
|
+
- public/export/53989.nt
|
760
|
+
- public/export/54563.nt
|
761
|
+
- public/export/54634.nt
|
762
|
+
- public/export/54759.nt
|
763
|
+
- public/export/54895.nt
|
764
|
+
- public/export/55279.nt
|
765
|
+
- public/export/5567.nt
|
766
|
+
- public/export/57502.nt
|
767
|
+
- public/export/58015.nt
|
768
|
+
- public/export/58964.nt
|
769
|
+
- public/export/60674.nt
|
770
|
+
- public/export/61265.nt
|
771
|
+
- public/export/61895.nt
|
772
|
+
- public/export/62372.nt
|
773
|
+
- public/export/62469.nt
|
774
|
+
- public/export/62880.nt
|
775
|
+
- public/export/63673.nt
|
776
|
+
- public/export/64151.nt
|
777
|
+
- public/export/64891.nt
|
778
|
+
- public/export/7089.nt
|
779
|
+
- public/export/7365.nt
|
780
|
+
- public/export/7473.nt
|
781
|
+
- public/export/7939.nt
|
782
|
+
- public/export/8509.nt
|
783
|
+
- public/export/9370.nt
|
784
|
+
- public/export/9600.nt
|
740
785
|
- public/favicon.ico
|
741
786
|
- public/robots.txt
|
742
|
-
- public/uploads/import/
|
743
|
-
- public/uploads/import/
|
744
|
-
- public/uploads/import/
|
745
|
-
- public/uploads/import/
|
746
|
-
- public/uploads/import/
|
747
|
-
- public/uploads/import/
|
748
|
-
- public/uploads/import/
|
749
|
-
- public/uploads/import/
|
750
|
-
- public/uploads/import/
|
751
|
-
- public/uploads/import/
|
752
|
-
- public/uploads/import/
|
753
|
-
- public/uploads/import/
|
754
|
-
- public/uploads/import/
|
755
|
-
- public/uploads/import/
|
756
|
-
- public/uploads/import/
|
757
|
-
- public/uploads/import/
|
758
|
-
- public/uploads/import/
|
759
|
-
- public/uploads/import/
|
760
|
-
- public/uploads/import/
|
761
|
-
- public/uploads/import/
|
762
|
-
- public/uploads/import/
|
763
|
-
- public/uploads/import/
|
764
|
-
- public/uploads/import/
|
765
|
-
- public/uploads/import/
|
766
|
-
- public/uploads/import/
|
767
|
-
- public/uploads/import/
|
768
|
-
- public/uploads/import/
|
769
|
-
- public/uploads/import/
|
770
|
-
- public/uploads/import/
|
771
|
-
- public/uploads/import/
|
772
|
-
- public/uploads/import/
|
773
|
-
- public/uploads/import/
|
774
|
-
- public/uploads/import/
|
775
|
-
- public/uploads/import/
|
776
|
-
- public/uploads/import/
|
777
|
-
- public/uploads/import/
|
778
|
-
- public/uploads/import/
|
779
|
-
- public/uploads/import/
|
780
|
-
- public/uploads/import/
|
781
|
-
- public/uploads/import/
|
782
|
-
- public/uploads/import/
|
783
|
-
- public/uploads/import/
|
784
|
-
- public/uploads/import/
|
785
|
-
- public/uploads/import/
|
786
|
-
- public/uploads/import/
|
787
|
-
- public/uploads/import/
|
788
|
-
- public/uploads/import/
|
789
|
-
- public/uploads/import/
|
790
|
-
- public/uploads/import/
|
791
|
-
- public/uploads/import/
|
792
|
-
- public/uploads/import/
|
793
|
-
- public/uploads/import/
|
794
|
-
- public/uploads/import/
|
795
|
-
- public/uploads/import/
|
796
|
-
- public/uploads/import/
|
797
|
-
- public/uploads/import/
|
798
|
-
- public/uploads/import/
|
799
|
-
- public/uploads/import/
|
800
|
-
- public/uploads/import/
|
801
|
-
- public/uploads/import/
|
802
|
-
- public/uploads/import/
|
803
|
-
- public/uploads/import/
|
804
|
-
- public/uploads/import/
|
805
|
-
- public/uploads/import/
|
806
|
-
- public/uploads/import/
|
807
|
-
- public/uploads/import/
|
808
|
-
- public/uploads/import/
|
809
|
-
- public/uploads/import/
|
810
|
-
- public/uploads/import/
|
811
|
-
- public/uploads/import/
|
812
|
-
- public/uploads/import/
|
813
|
-
- public/uploads/import/
|
814
|
-
- public/uploads/import/
|
815
|
-
- public/uploads/
|
816
|
-
- public/uploads/
|
817
|
-
- public/uploads/
|
818
|
-
- public/uploads/
|
819
|
-
- public/uploads/
|
820
|
-
- public/uploads/
|
821
|
-
- public/uploads/
|
822
|
-
- public/uploads/
|
823
|
-
- public/uploads/
|
824
|
-
- public/uploads/
|
825
|
-
- public/uploads/
|
826
|
-
- public/uploads/
|
827
|
-
- public/uploads/
|
828
|
-
- public/uploads/
|
829
|
-
- public/uploads/
|
830
|
-
- public/uploads/
|
831
|
-
- public/uploads/
|
832
|
-
- public/uploads/
|
833
|
-
- public/uploads/
|
834
|
-
- public/uploads/
|
835
|
-
- public/uploads/
|
836
|
-
- public/uploads/
|
837
|
-
- public/uploads/
|
838
|
-
- public/uploads/
|
839
|
-
- public/uploads/
|
840
|
-
- public/uploads/
|
841
|
-
- public/uploads/
|
842
|
-
- public/uploads/
|
843
|
-
- public/uploads/
|
844
|
-
- public/uploads/
|
845
|
-
- public/uploads/
|
846
|
-
- public/uploads/
|
847
|
-
- public/uploads/
|
848
|
-
- public/uploads/
|
849
|
-
- public/uploads/
|
850
|
-
- public/uploads/
|
851
|
-
- public/uploads/
|
852
|
-
- public/uploads/
|
853
|
-
- public/uploads/
|
854
|
-
- public/uploads/
|
855
|
-
- public/uploads/
|
856
|
-
- public/uploads/
|
857
|
-
- public/uploads/
|
858
|
-
- public/uploads/
|
859
|
-
- public/uploads/
|
860
|
-
- public/uploads/
|
861
|
-
- public/uploads/tmp/
|
862
|
-
- public/uploads/tmp/
|
863
|
-
- public/uploads/tmp/
|
864
|
-
- public/uploads/tmp/
|
865
|
-
- public/uploads/tmp/
|
866
|
-
- public/uploads/tmp/
|
867
|
-
- public/uploads/tmp/
|
868
|
-
- public/uploads/tmp/
|
869
|
-
- public/uploads/tmp/
|
870
|
-
- public/uploads/tmp/
|
871
|
-
- public/uploads/tmp/
|
872
|
-
- public/uploads/tmp/
|
873
|
-
- public/uploads/tmp/
|
874
|
-
- public/uploads/tmp/
|
875
|
-
- public/uploads/tmp/
|
876
|
-
- public/uploads/tmp/
|
877
|
-
- public/uploads/tmp/
|
878
|
-
- public/uploads/tmp/
|
879
|
-
- public/uploads/tmp/
|
880
|
-
- public/uploads/tmp/
|
881
|
-
- public/uploads/tmp/
|
882
|
-
- public/uploads/tmp/
|
883
|
-
- public/uploads/tmp/
|
884
|
-
- public/uploads/tmp/
|
885
|
-
- public/uploads/tmp/
|
886
|
-
- public/uploads/tmp/
|
887
|
-
- public/uploads/tmp/
|
888
|
-
-
|
889
|
-
-
|
890
|
-
-
|
891
|
-
-
|
787
|
+
- public/uploads/import/01cb889ac483ce809435db5e37d01010.nt
|
788
|
+
- public/uploads/import/05c5e3cc92a18a3ce176065485caafeb.nt
|
789
|
+
- public/uploads/import/0a539be7eb44e0aa1f4eebe485e67d32.nt
|
790
|
+
- public/uploads/import/0ceccdec88406d5de2f9c91d6c32bd63.nt
|
791
|
+
- public/uploads/import/0d199979d7a157c89b517b0121f220de.nt
|
792
|
+
- public/uploads/import/0d1cb3a3c90c406735065c39ccf36882.nt
|
793
|
+
- public/uploads/import/1146b2566f01d412f53aefb921b8abf6.nt
|
794
|
+
- public/uploads/import/12f08c2e20a05620666d39cabb148b90.nt
|
795
|
+
- public/uploads/import/136c72e86af49d44b885c609a97050e5.nt
|
796
|
+
- public/uploads/import/1406b0ff2e1b68d38bdafe54a54e7981.nt
|
797
|
+
- public/uploads/import/142764b92a63f20feb0e6d1398517394.nt
|
798
|
+
- public/uploads/import/1618cd8f36abb0d25d5cee9eef4162dd.nt
|
799
|
+
- public/uploads/import/1838327ebac2c062a9036e0187d8c607.nt
|
800
|
+
- public/uploads/import/1be9a54bb74a467fbd6321190e10a23b.nt
|
801
|
+
- public/uploads/import/1eb3eabccf76ddb2a6bba92eac8b84b9.nt
|
802
|
+
- public/uploads/import/1f147a50c4203690ea4b1ac66f748537.nt
|
803
|
+
- public/uploads/import/22be1db3763deeafb6e9bdc8af7de52f.nt
|
804
|
+
- public/uploads/import/24ed4b1b10f4c9facb797d8055f3cc59.nt
|
805
|
+
- public/uploads/import/25634d3f1c727c79e47104d45a169d22.nt
|
806
|
+
- public/uploads/import/25eb335ad83136428eedfd427409f5bb.nt
|
807
|
+
- public/uploads/import/283e799cc2342cf33550a1668e760021.nt
|
808
|
+
- public/uploads/import/28848fff43a56cba0924478a015e4c8e.nt
|
809
|
+
- public/uploads/import/28a2a5974b1eed79e85d92046fe58d22.nt
|
810
|
+
- public/uploads/import/296bea9c560bb915222cb892124c9bab.nt
|
811
|
+
- public/uploads/import/2ac22cf493b3991b6524e7bf7c9c9483.nt
|
812
|
+
- public/uploads/import/2b0de64784aa4f574c74bd7a5ca67e81.nt
|
813
|
+
- public/uploads/import/2be31e7e2493319f9cb7e210eabb84b6.nt
|
814
|
+
- public/uploads/import/2f7a5213d7e134237b69cbdc9c8e0985.nt
|
815
|
+
- public/uploads/import/3025f07688ed08e81c430eed8e5e2b2c.nt
|
816
|
+
- public/uploads/import/3062df55d07d30a0db0b00fc59a066ef.nt
|
817
|
+
- public/uploads/import/35901d7daa6f90eb09b508eab2f19f97.nt
|
818
|
+
- public/uploads/import/35943ba240eb26dc43092746316a666a.nt
|
819
|
+
- public/uploads/import/3a39842a235c47d341390bb5ff76b013.nt
|
820
|
+
- public/uploads/import/4217de34967f03696a2d1c4ec832b395.nt
|
821
|
+
- public/uploads/import/432a521429991340c75d39069672f200.nt
|
822
|
+
- public/uploads/import/4410370b7349278a941ec73edc506afb.nt
|
823
|
+
- public/uploads/import/44f43bafabc21e6a080bb820b86c8efa.nt
|
824
|
+
- public/uploads/import/4910bf38577bcef7ca835225a22d04cf.nt
|
825
|
+
- public/uploads/import/4a1092bfdd2c3e6cd684d00f2ebb48a0.nt
|
826
|
+
- public/uploads/import/4a924fe4d94485b794a0ac4ae2dbe7b2.nt
|
827
|
+
- public/uploads/import/4ab869eeeec7deaf5840548196350ffe.nt
|
828
|
+
- public/uploads/import/4d8c90b9e5b7a06e40dc9b426f19d762.nt
|
829
|
+
- public/uploads/import/4f884498309031e9a3b75c5d7c59b353.nt
|
830
|
+
- public/uploads/import/503e198ce4ec0e311db1d06fc2b6962a.nt
|
831
|
+
- public/uploads/import/51fcfdd1ba9e57f7afd8bfb3135b18be.nt
|
832
|
+
- public/uploads/import/525b24358e3b1a5afd18bbbe930bcb35.nt
|
833
|
+
- public/uploads/import/542a2a3b0a62b9599922a67a5085c625.nt
|
834
|
+
- public/uploads/import/5572705385339b834e975f5d7f26f89a.nt
|
835
|
+
- public/uploads/import/56aafaf5adcdd148722aeaf0b37a2ba3.nt
|
836
|
+
- public/uploads/import/59b6122c9a524891ae8dadf34e04f925.nt
|
837
|
+
- public/uploads/import/5d4578b7bb3e3f2067f354be5b68d08f.nt
|
838
|
+
- public/uploads/import/645eb1a598ae7003b45b29176587088b.nt
|
839
|
+
- public/uploads/import/64cea1620f460841301aa57d23e6223c.nt
|
840
|
+
- public/uploads/import/6bee752d1b71422389551999e1c29af9.nt
|
841
|
+
- public/uploads/import/6c03e1aa271ca4613340130d16722850.nt
|
842
|
+
- public/uploads/import/6d829ce927bca0d0291d3ca94c87d47d.nt
|
843
|
+
- public/uploads/import/7019eec0ddbd6deccfa69f564e03007d.nt
|
844
|
+
- public/uploads/import/70dcaf9bcb39a21172db26e20ef3abb1.nt
|
845
|
+
- public/uploads/import/7c7f872865d77373f4e5d12d3b46c6d1.nt
|
846
|
+
- public/uploads/import/7d630e4ae70fcdef7a26a5f54be1c87d.nt
|
847
|
+
- public/uploads/import/7e2154e0fb9ecfa38d7d1791ba1f91e2.nt
|
848
|
+
- public/uploads/import/7f5864cd2bb3608a478b6cacf213b6ef.nt
|
849
|
+
- public/uploads/import/7fd575d1e51e867294cc3c55dd7b86d3.nt
|
850
|
+
- public/uploads/import/81e614eb844d0a6e07724df0e0a391af.nt
|
851
|
+
- public/uploads/import/8635fc73b0ad52e5531f6542cf73aab0.nt
|
852
|
+
- public/uploads/import/87e8ab3b30135925cd296a4f105fdf28.nt
|
853
|
+
- public/uploads/import/88f3ede5c716bcdc9ac4b16361f6014c.nt
|
854
|
+
- public/uploads/import/8a09903d5ce62375eb315fb5a28cfb1e.nt
|
855
|
+
- public/uploads/import/8dd67edd0888cc10c181b0cb13f114a5.nt
|
856
|
+
- public/uploads/import/945e467cd3b86903a712322622403350.nt
|
857
|
+
- public/uploads/import/947fc847742818ad2f8946150fa68280.nt
|
858
|
+
- public/uploads/import/9668f439f7429886747a4981c53d2f7b.nt
|
859
|
+
- public/uploads/import/97bf213b1827e1b3fe4a93f660cd297b.nt
|
860
|
+
- public/uploads/import/9cc1c8c8530900bb42723b35a85c997a.nt
|
861
|
+
- public/uploads/import/a34ebe5f52348d8e0690efbbd7dbb29b.nt
|
862
|
+
- public/uploads/import/a6362a3aa7b0154ee5881aa4e97e4fc1.nt
|
863
|
+
- public/uploads/import/acfb67a494ba87573b3cdd7997c7aba2.nt
|
864
|
+
- public/uploads/import/ae888974bc1697ae1949a95dbcaa104b.nt
|
865
|
+
- public/uploads/import/b238195b0159fd1aca793e33ea179b1d.nt
|
866
|
+
- public/uploads/import/b36159aad53d09f5e6ca12e0dcea000c.nt
|
867
|
+
- public/uploads/import/b42cf56722b79ef7e6730d19130d9dfd.nt
|
868
|
+
- public/uploads/import/b54ffcb43a4c939b339fca358223177d.nt
|
869
|
+
- public/uploads/import/bc140bce0ab1818edd55350b793eb36c.nt
|
870
|
+
- public/uploads/import/bdfe458413c233f7c2e96041b8c2aa9d.nt
|
871
|
+
- public/uploads/import/bf0168c5d5f472442707ff76115480b0.nt
|
872
|
+
- public/uploads/import/c0479e6569a5cbd8fc74702c165f71b5.nt
|
873
|
+
- public/uploads/import/c2c0372e27f625ca1ce1aa527059d6d2.nt
|
874
|
+
- public/uploads/import/c43fbad62457debced3e2b5f175b633a.nt
|
875
|
+
- public/uploads/import/c4d8f635e4bb5601713bbf9bc456c797.nt
|
876
|
+
- public/uploads/import/c61960b982b3a8308e41de6cf094255d.nt
|
877
|
+
- public/uploads/import/c63faf859a988775b27acb8e8712f13b.nt
|
878
|
+
- public/uploads/import/cb1b6b27edfcc404ca469fa3ec6b0664.nt
|
879
|
+
- public/uploads/import/cb37615bf36a26ecbfd6e0f738302d17.nt
|
880
|
+
- public/uploads/import/d0369e2cb8216ddc3858a5ae93307da2.nt
|
881
|
+
- public/uploads/import/d395b7bd9126c74ee3586b849768ef14.nt
|
882
|
+
- public/uploads/import/d5d835b59eae82a208653c1b30ad74c9.nt
|
883
|
+
- public/uploads/import/d82612b6c9d65e2f2dcfbda202b59a90.nt
|
884
|
+
- public/uploads/import/df361efdd673094c731454a91d925850.nt
|
885
|
+
- public/uploads/import/df66a381628757d745ae3b60642c3746.nt
|
886
|
+
- public/uploads/import/e1c59deb5c9119a65787bc5c2d71d678.nt
|
887
|
+
- public/uploads/import/e2242e8bc7216edacba54071db90e2f7.nt
|
888
|
+
- public/uploads/import/e3d2d0b824f8c45aae697261a4dbe891.nt
|
889
|
+
- public/uploads/import/e59bb2aced9152cc0c9a8b1be30bf7b0.nt
|
890
|
+
- public/uploads/import/e9a6f6db0a5a7e13b6eb576a8f724347.nt
|
891
|
+
- public/uploads/import/ea69b273df07fb624312cbf853c434f4.nt
|
892
|
+
- public/uploads/import/eaa64a373eab2b1ccf3a0caf4b9a9b36.nt
|
893
|
+
- public/uploads/import/eaec06e06215273b63df2bfbfcd1be1f.nt
|
894
|
+
- public/uploads/import/ed37994c6a8c15cc9dfcc5f0fc98d25e.nt
|
895
|
+
- public/uploads/import/ef8c5b07b56a2f5bfd0818d146b54ad0.nt
|
896
|
+
- public/uploads/import/f02c74ffa5f9b0247ed608654d69afbe.nt
|
897
|
+
- public/uploads/import/f19ecbe95745af34dc11c7ee3a185250.nt
|
898
|
+
- public/uploads/import/f1f6bbcef457c577c6cf8a41c332ed52.nt
|
899
|
+
- public/uploads/import/f24e1405527ac90b18fc4b9103b0356b.nt
|
900
|
+
- public/uploads/import/f324628e42cd2165e0befb2dc9e19ec3.nt
|
901
|
+
- public/uploads/import/f4f4b5eb4283efc264b2e29b728b45ce.nt
|
902
|
+
- public/uploads/import/f6cda0379fadb6b9ed88b59b04d1544a.nt
|
903
|
+
- public/uploads/import/f8eb5272e6cc4b691765b370685b634e.nt
|
904
|
+
- public/uploads/import/f92c5202d53cf595d63051016ebe2aed.nt
|
905
|
+
- public/uploads/import/f9948cb7e270f1582313d9d64a0013f4.nt
|
906
|
+
- public/uploads/tmp/1399391854-10068-6618/hobbies.nt
|
907
|
+
- public/uploads/tmp/1399391911-10213-8446/hobbies.nt
|
908
|
+
- public/uploads/tmp/1399392015-10496-2495/hobbies.nt
|
909
|
+
- public/uploads/tmp/1399465936-82819-2227/hobbies.nt
|
910
|
+
- public/uploads/tmp/1399562287-11058-4844/hobbies.nt
|
911
|
+
- public/uploads/tmp/1399562349-11220-5006/hobbies.nt
|
912
|
+
- public/uploads/tmp/1399562606-12081-8172/hobbies.nt
|
913
|
+
- public/uploads/tmp/1399562663-12419-6959/hobbies.nt
|
914
|
+
- public/uploads/tmp/1399562758-12675-1044/hobbies.nt
|
915
|
+
- public/uploads/tmp/1399563325-14184-4165/hobbies.nt
|
916
|
+
- public/uploads/tmp/1399563511-14691-1597/hobbies.nt
|
917
|
+
- public/uploads/tmp/1399563577-14899-9811/hobbies.nt
|
918
|
+
- public/uploads/tmp/1399563654-15101-9704/hobbies.nt
|
919
|
+
- public/uploads/tmp/1399563789-15465-3853/hobbies.nt
|
920
|
+
- public/uploads/tmp/1399564038-16136-7758/hobbies.nt
|
921
|
+
- public/uploads/tmp/1399564391-17273-4324/hobbies.nt
|
922
|
+
- public/uploads/tmp/1399565011-19048-6725/hobbies.nt
|
923
|
+
- public/uploads/tmp/1399565066-19204-6162/hobbies.nt
|
924
|
+
- public/uploads/tmp/1399639727-33218-9866/hobbies.nt
|
925
|
+
- public/uploads/tmp/1399642528-42021-8916/hobbies.nt
|
926
|
+
- public/uploads/tmp/1399642763-42734-7348/hobbies.nt
|
927
|
+
- public/uploads/tmp/1399886894-13606-2429/hobbies.nt
|
928
|
+
- public/uploads/tmp/1400683232-10539-5676/hobbies.nt
|
929
|
+
- public/uploads/tmp/1400683420-10634-8312/hobbies.nt
|
930
|
+
- public/uploads/tmp/1400683468-10666-6540/hobbies.nt
|
931
|
+
- public/uploads/tmp/1400684714-11424-9829/hobbies.nt
|
932
|
+
- public/uploads/tmp/1400846672-62648-9413/hobbies.nt
|
933
|
+
- public/uploads/tmp/1400846766-62697-7073/hobbies.nt
|
934
|
+
- public/uploads/tmp/1401180379-3162-2871/hobbies.nt
|
935
|
+
- public/uploads/tmp/1401185202-4377-2768/hobbies.nt
|
936
|
+
- public/uploads/tmp/1401192012-6573-2832/hobbies.nt
|
937
|
+
- public/uploads/tmp/1401194508-7699-9522/hobbies.nt
|
938
|
+
- public/uploads/tmp/1401194627-7742-0813/hobbies.nt
|
939
|
+
- public/uploads/tmp/1401194954-7841-9994/hobbies.nt
|
940
|
+
- public/uploads/tmp/1401195326-7932-3790/hobbies.nt
|
941
|
+
- public/uploads/tmp/1401206318-10643-2808/hobbies.nt
|
942
|
+
- public/uploads/tmp/1401292131-92601-6112/hobbies.nt
|
943
|
+
- public/uploads/tmp/1401292181-92670-8615/hobbies.nt
|
944
|
+
- public/uploads/tmp/1401292252-92839-0886/hobbies.nt
|
945
|
+
- public/uploads/tmp/1401292294-92900-5587/hobbies.nt
|
946
|
+
- public/uploads/tmp/1401292390-92976-9639/hobbies.nt
|
947
|
+
- public/uploads/tmp/1401701949-3140-4347/hobbies.nt
|
948
|
+
- public/uploads/tmp/1401702355-40904-9058/hobbies.nt
|
949
|
+
- public/uploads/tmp/1401702361-40926-1371/hobbies.nt
|
950
|
+
- public/uploads/tmp/1401702406-40992-5615/hobbies.nt
|
951
|
+
- public/uploads/tmp/1401702475-41050-2716/hobbies.nt
|
952
|
+
- public/uploads/tmp/1401702625-41136-3304/hobbies.nt
|
953
|
+
- public/uploads/tmp/1401702771-41202-1777/hobbies.nt
|
954
|
+
- public/uploads/tmp/1401704263-41803-0906/hobbies.nt
|
955
|
+
- public/uploads/tmp/1401704312-41845-2277/hobbies.nt
|
956
|
+
- public/uploads/tmp/1401704455-41906-3348/hobbies.nt
|
957
|
+
- public/uploads/tmp/1401704517-41941-3825/hobbies.nt
|
958
|
+
- public/uploads/tmp/1401704557-42078-2926/hobbies.nt
|
959
|
+
- public/uploads/tmp/1401704659-42140-2026/hobbies.nt
|
960
|
+
- public/uploads/tmp/1401704727-42194-2926/hobbies.nt
|
961
|
+
- public/uploads/tmp/1401704810-42233-0719/hobbies.nt
|
962
|
+
- public/uploads/tmp/1401704877-42346-6423/hobbies.nt
|
963
|
+
- public/uploads/tmp/1401704969-42396-2636/hobbies.nt
|
964
|
+
- public/uploads/tmp/1401706200-42741-9489/hobbies.nt
|
965
|
+
- public/uploads/tmp/1401706505-42885-6630/hobbies.nt
|
966
|
+
- public/uploads/tmp/1401706579-42925-3938/hobbies.nt
|
967
|
+
- public/uploads/tmp/1401706998-43068-7269/hobbies.nt
|
968
|
+
- public/uploads/tmp/1401707073-43147-4480/hobbies.nt
|
969
|
+
- public/uploads/tmp/1401707148-43190-8990/hobbies.nt
|
970
|
+
- public/uploads/tmp/1401707185-43233-6339/hobbies.nt
|
971
|
+
- public/uploads/tmp/1401707525-43306-5760/hobbies.nt
|
972
|
+
- public/uploads/tmp/1401716194-45552-4247/hobbies.nt
|
973
|
+
- public/uploads/tmp/1401716269-45634-6256/hobbies.nt
|
974
|
+
- public/uploads/tmp/1401716431-45713-6690/hobbies.nt
|
975
|
+
- public/uploads/tmp/1401717803-46392-3771/hobbies.nt
|
976
|
+
- public/uploads/tmp/1401717970-46482-3771/hobbies.nt
|
977
|
+
- public/uploads/tmp/1401719163-46906-3771/hobbies.nt
|
978
|
+
- public/uploads/tmp/1401719307-46967-3771/hobbies.nt
|
979
|
+
- public/uploads/tmp/1401719376-47013-3771/hobbies.nt
|
980
|
+
- public/uploads/tmp/1401719630-47114-3771/hobbies.nt
|
981
|
+
- public/uploads/tmp/1401719982-47199-3873/hobbies.nt
|
982
|
+
- public/uploads/tmp/1401720178-47285-9163/hobbies.nt
|
983
|
+
- public/uploads/tmp/1401720378-47376-3771/hobbies.nt
|
984
|
+
- public/uploads/tmp/1401720550-47464-3771/hobbies.nt
|
985
|
+
- public/uploads/tmp/1401720661-47532-3771/hobbies.nt
|
986
|
+
- public/uploads/tmp/1401721032-47662-3771/hobbies.nt
|
987
|
+
- public/uploads/tmp/1401721110-47707-3771/hobbies.nt
|
988
|
+
- public/uploads/tmp/1401722057-48025-3771/hobbies.nt
|
989
|
+
- public/uploads/tmp/1401722131-48079-3771/hobbies.nt
|
990
|
+
- public/uploads/tmp/1401722177-48112-3771/hobbies.nt
|
991
|
+
- public/uploads/tmp/1401722330-48176-3771/hobbies.nt
|
992
|
+
- public/uploads/tmp/1401722430-48237-4227/hobbies.nt
|
993
|
+
- public/uploads/tmp/1401722732-48343-4227/hobbies.nt
|
994
|
+
- public/uploads/tmp/1401722909-48424-1412/hobbies.nt
|
995
|
+
- public/uploads/tmp/1401723009-48482-7948/hobbies.nt
|
996
|
+
- public/uploads/tmp/1401723431-48680-9071/hobbies.nt
|
997
|
+
- public/uploads/tmp/1401724808-49229-3988/hobbies.nt
|
998
|
+
- public/uploads/tmp/1401725005-49344-4227/hobbies.nt
|
999
|
+
- public/uploads/tmp/1401801415-57643-7508/hobbies.nt
|
1000
|
+
- public/uploads/tmp/1401801470-57683-1511/hobbies.nt
|
1001
|
+
- public/uploads/tmp/1401801589-57766-6716/hobbies.nt
|
1002
|
+
- public/uploads/tmp/1401801648-57810-6653/hobbies.nt
|
1003
|
+
- public/uploads/tmp/1401801703-57902-1218/hobbies.nt
|
1004
|
+
- public/uploads/tmp/1401801780-57957-6963/hobbies.nt
|
1005
|
+
- public/uploads/tmp/1401801876-58010-6576/hobbies.nt
|
1006
|
+
- public/uploads/tmp/1401801925-58061-5018/hobbies.nt
|
1007
|
+
- public/uploads/tmp/1401801966-58088-4598/hobbies.nt
|
1008
|
+
- public/uploads/tmp/1401802064-58134-0309/hobbies.nt
|
1009
|
+
- public/uploads/tmp/1401802128-58183-5882/hobbies.nt
|
1010
|
+
- public/uploads/tmp/1401802254-58261-9292/hobbies.nt
|
1011
|
+
- public/uploads/tmp/1401802305-58305-0716/hobbies.nt
|
1012
|
+
- public/uploads/tmp/1401802559-58393-8087/hobbies.nt
|
1013
|
+
- public/uploads/tmp/1401802603-58429-5414/hobbies.nt
|
1014
|
+
- public/uploads/tmp/1401802704-58494-3176/hobbies.nt
|
1015
|
+
- public/uploads/tmp/1401876393-11719-7974/hobbies.nt
|
1016
|
+
- public/uploads/tmp/1401880994-13325-5134/hobbies.nt
|
1017
|
+
- public/uploads/tmp/1401881408-13497-2210/hobbies.nt
|
1018
|
+
- public/uploads/tmp/1402407940-72993-0117/hobbies.nt
|
1019
|
+
- public/uploads/tmp/1403276908-17566-3335/hobbies.nt
|
1020
|
+
- public/uploads/tmp/1403276972-17606-3705/hobbies.nt
|
1021
|
+
- public/uploads/tmp/1403277054-17662-2528/hobbies.nt
|
1022
|
+
- public/uploads/tmp/1405605924-28482-6761/hobbies.nt
|
1023
|
+
- public/uploads/tmp/1405606039-28627-4530/hobbies.nt
|
1024
|
+
- public/uploads/tmp/1405606796-29190-4080/hobbies.nt
|
1025
|
+
- test/authentication.rb
|
1026
|
+
- test/controllers/hierarchy_test.rb
|
1027
|
+
- test/controllers/rdf_rendering_test.rb
|
892
1028
|
- test/integration/alphabetical_test.rb
|
893
1029
|
- test/integration/authentication_test.rb
|
894
1030
|
- test/integration/browse_concepts_and_labels_test.rb
|
@@ -897,26 +1033,33 @@ files:
|
|
897
1033
|
- test/integration/collection_circularity_test.rb
|
898
1034
|
- test/integration/concept_browsing_test.rb
|
899
1035
|
- test/integration/concept_scheme_browsing_test.rb
|
1036
|
+
- test/integration/edit_collections_test.rb
|
900
1037
|
- test/integration/edit_concepts_test.rb
|
1038
|
+
- test/integration/export_test.rb
|
1039
|
+
- test/integration/import_test.rb
|
901
1040
|
- test/integration/instance_configuration_browsing_test.rb
|
902
1041
|
- test/integration/navigation_test.rb
|
903
1042
|
- test/integration/note_annotations_test.rb
|
904
1043
|
- test/integration/search_test.rb
|
905
1044
|
- test/integration/tree_test.rb
|
906
1045
|
- test/integration/untranslated_test.rb
|
1046
|
+
- test/integration/user_management_test.rb
|
907
1047
|
- test/integration_test_helper.rb
|
1048
|
+
- test/models/concept_scheme_test.rb
|
1049
|
+
- test/models/concept_test.rb
|
1050
|
+
- test/models/hygiene_test.rb
|
1051
|
+
- test/models/inline_data_test.rb
|
1052
|
+
- test/models/instance_configuration_test.rb
|
1053
|
+
- test/models/note_test.rb
|
1054
|
+
- test/models/origin_test.rb
|
1055
|
+
- test/models/rdf_sync_test.rb
|
1056
|
+
- test/models/rdfapi_test.rb
|
1057
|
+
- test/models/skos_collection_import_test.rb
|
1058
|
+
- test/models/skos_export_test.rb
|
1059
|
+
- test/models/skos_import_test.rb
|
1060
|
+
- test/models/testdata.nt
|
908
1061
|
- test/performance/browsing_test.rb
|
909
1062
|
- test/test_helper.rb
|
910
|
-
- test/unit/concept_scheme_test.rb
|
911
|
-
- test/unit/concept_test.rb
|
912
|
-
- test/unit/hygiene_test.rb
|
913
|
-
- test/unit/inline_data_test.rb
|
914
|
-
- test/unit/instance_configuration_test.rb
|
915
|
-
- test/unit/note_test.rb
|
916
|
-
- test/unit/origin_test.rb
|
917
|
-
- test/unit/rdf_sync_test.rb
|
918
|
-
- test/unit/rdfapi_test.rb
|
919
|
-
- test/unit/skos_import_test.rb
|
920
1063
|
- vendor/assets/images/ajax-loader.gif
|
921
1064
|
- vendor/assets/images/animated-overlay.gif
|
922
1065
|
- vendor/assets/images/file.gif
|
@@ -979,15 +1122,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
979
1122
|
version: '0'
|
980
1123
|
requirements: []
|
981
1124
|
rubyforge_project:
|
982
|
-
rubygems_version: 2.
|
1125
|
+
rubygems_version: 2.3.0
|
983
1126
|
signing_key:
|
984
1127
|
specification_version: 4
|
985
1128
|
summary: iQvoc
|
986
1129
|
test_files:
|
987
|
-
- test/
|
988
|
-
- test/
|
989
|
-
- test/
|
990
|
-
- test/functional/rdf_rendering_test.rb
|
1130
|
+
- test/authentication.rb
|
1131
|
+
- test/controllers/hierarchy_test.rb
|
1132
|
+
- test/controllers/rdf_rendering_test.rb
|
991
1133
|
- test/integration/alphabetical_test.rb
|
992
1134
|
- test/integration/authentication_test.rb
|
993
1135
|
- test/integration/browse_concepts_and_labels_test.rb
|
@@ -996,23 +1138,30 @@ test_files:
|
|
996
1138
|
- test/integration/collection_circularity_test.rb
|
997
1139
|
- test/integration/concept_browsing_test.rb
|
998
1140
|
- test/integration/concept_scheme_browsing_test.rb
|
1141
|
+
- test/integration/edit_collections_test.rb
|
999
1142
|
- test/integration/edit_concepts_test.rb
|
1143
|
+
- test/integration/export_test.rb
|
1144
|
+
- test/integration/import_test.rb
|
1000
1145
|
- test/integration/instance_configuration_browsing_test.rb
|
1001
1146
|
- test/integration/navigation_test.rb
|
1002
1147
|
- test/integration/note_annotations_test.rb
|
1003
1148
|
- test/integration/search_test.rb
|
1004
1149
|
- test/integration/tree_test.rb
|
1005
1150
|
- test/integration/untranslated_test.rb
|
1151
|
+
- test/integration/user_management_test.rb
|
1006
1152
|
- test/integration_test_helper.rb
|
1153
|
+
- test/models/concept_scheme_test.rb
|
1154
|
+
- test/models/concept_test.rb
|
1155
|
+
- test/models/hygiene_test.rb
|
1156
|
+
- test/models/inline_data_test.rb
|
1157
|
+
- test/models/instance_configuration_test.rb
|
1158
|
+
- test/models/note_test.rb
|
1159
|
+
- test/models/origin_test.rb
|
1160
|
+
- test/models/rdf_sync_test.rb
|
1161
|
+
- test/models/rdfapi_test.rb
|
1162
|
+
- test/models/skos_collection_import_test.rb
|
1163
|
+
- test/models/skos_export_test.rb
|
1164
|
+
- test/models/skos_import_test.rb
|
1165
|
+
- test/models/testdata.nt
|
1007
1166
|
- test/performance/browsing_test.rb
|
1008
1167
|
- test/test_helper.rb
|
1009
|
-
- test/unit/concept_scheme_test.rb
|
1010
|
-
- test/unit/concept_test.rb
|
1011
|
-
- test/unit/hygiene_test.rb
|
1012
|
-
- test/unit/inline_data_test.rb
|
1013
|
-
- test/unit/instance_configuration_test.rb
|
1014
|
-
- test/unit/note_test.rb
|
1015
|
-
- test/unit/origin_test.rb
|
1016
|
-
- test/unit/rdf_sync_test.rb
|
1017
|
-
- test/unit/rdfapi_test.rb
|
1018
|
-
- test/unit/skos_import_test.rb
|