iqvoc 3.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +69 -0
- data/Gemfile.lock +134 -0
- data/LICENSE +13 -0
- data/README.md +68 -0
- data/Rakefile +23 -0
- data/app/controllers/application_controller.rb +125 -0
- data/app/controllers/collections/hierarchical_controller.rb +44 -0
- data/app/controllers/collections_controller.rb +124 -0
- data/app/controllers/concepts/alphabetical_controller.rb +39 -0
- data/app/controllers/concepts/hierarchical_controller.rb +74 -0
- data/app/controllers/concepts/untranslated_controller.rb +38 -0
- data/app/controllers/concepts/versions_controller.rb +119 -0
- data/app/controllers/concepts_controller.rb +174 -0
- data/app/controllers/dashboard_controller.rb +43 -0
- data/app/controllers/pages_controller.rb +22 -0
- data/app/controllers/rdf_controller.rb +43 -0
- data/app/controllers/search_results_controller.rb +101 -0
- data/app/controllers/triple_store_syncs_controller.rb +45 -0
- data/app/controllers/user_sessions_controller.rb +48 -0
- data/app/controllers/users_controller.rb +81 -0
- data/app/helpers/application_helper.rb +60 -0
- data/app/helpers/concepts_helper.rb +86 -0
- data/app/helpers/dashboard_helper.rb +46 -0
- data/app/helpers/rdf_helper.rb +63 -0
- data/app/helpers/search_results_helper.rb +32 -0
- data/app/models/collection/base.rb +161 -0
- data/app/models/collection/member/base.rb +23 -0
- data/app/models/collection/member/collection.rb +33 -0
- data/app/models/collection/member/concept.rb +33 -0
- data/app/models/collection/unordered.rb +18 -0
- data/app/models/concept/base.rb +418 -0
- data/app/models/concept/relation/base.rb +95 -0
- data/app/models/concept/relation/reverse_relation_extension.rb +49 -0
- data/app/models/concept/relation/skos/base.rb +37 -0
- data/app/models/concept/relation/skos/broader/base.rb +41 -0
- data/app/models/concept/relation/skos/broader/mono.rb +28 -0
- data/app/models/concept/relation/skos/broader/poly.rb +23 -0
- data/app/models/concept/relation/skos/narrower/base.rb +37 -0
- data/app/models/concept/relation/skos/related.rb +21 -0
- data/app/models/concept/skos/base.rb +28 -0
- data/app/models/label/base.rb +98 -0
- data/app/models/label/skos/base.rb +27 -0
- data/app/models/labeling/base.rb +81 -0
- data/app/models/labeling/skos/alt_label.rb +21 -0
- data/app/models/labeling/skos/base.rb +99 -0
- data/app/models/labeling/skos/hidden_label.rb +25 -0
- data/app/models/labeling/skos/pref_label.rb +30 -0
- data/app/models/match/base.rb +57 -0
- data/app/models/match/skos/base.rb +23 -0
- data/app/models/match/skos/broad_match.rb +21 -0
- data/app/models/match/skos/close_match.rb +21 -0
- data/app/models/match/skos/exact_match.rb +21 -0
- data/app/models/match/skos/mapping_relation.rb +21 -0
- data/app/models/match/skos/narrow_match.rb +21 -0
- data/app/models/match/skos/related_match.rb +21 -0
- data/app/models/note/annotated/base.rb +29 -0
- data/app/models/note/base.rb +127 -0
- data/app/models/note/skos/base.rb +52 -0
- data/app/models/note/skos/change_note.rb +38 -0
- data/app/models/note/skos/definition.rb +33 -0
- data/app/models/note/skos/editorial_note.rb +21 -0
- data/app/models/note/skos/example.rb +21 -0
- data/app/models/note/skos/history_note.rb +21 -0
- data/app/models/note/skos/scope_note.rb +21 -0
- data/app/models/origin_mapping.rb +58 -0
- data/app/models/rdf_store.rb +96 -0
- data/app/models/search_extension.rb +58 -0
- data/app/models/user.rb +49 -0
- data/app/models/user_session.rb +23 -0
- data/app/views/collections/_collection.html.erb +10 -0
- data/app/views/collections/_form.html.erb +47 -0
- data/app/views/collections/edit.html.erb +11 -0
- data/app/views/collections/index.html.erb +12 -0
- data/app/views/collections/new.html.erb +7 -0
- data/app/views/collections/show.html.erb +53 -0
- data/app/views/collections/show.iqrdf +22 -0
- data/app/views/concepts/_base_data.html.erb +72 -0
- data/app/views/concepts/_close_match.html.erb +16 -0
- data/app/views/concepts/_show_head.html.erb +23 -0
- data/app/views/concepts/_visualization.html.erb +9 -0
- data/app/views/concepts/alphabetical/_pref_labeling.html.erb +6 -0
- data/app/views/concepts/alphabetical/index.html.erb +17 -0
- data/app/views/concepts/edit.html.erb +32 -0
- data/app/views/concepts/hierarchical/_treeview.html.erb +20 -0
- data/app/views/concepts/hierarchical/index.html.erb +5 -0
- data/app/views/concepts/index.iqrdf +24 -0
- data/app/views/concepts/new.html.erb +3 -0
- data/app/views/concepts/show_published.html.erb +16 -0
- data/app/views/concepts/show_unpublished.html.erb +43 -0
- data/app/views/concepts/untranslated/index.html.erb +23 -0
- data/app/views/dashboard/index.html.erb +47 -0
- data/app/views/errors/access_denied.html.erb +3 -0
- data/app/views/errors/multiple_choices.html.erb +11 -0
- data/app/views/errors/not_found.html.erb +8 -0
- data/app/views/kaminari/_page.html.erb +6 -0
- data/app/views/kaminari/_paginator.html.erb +15 -0
- data/app/views/layouts/_controls.html.erb +37 -0
- data/app/views/layouts/_header.html.erb +1 -0
- data/app/views/layouts/_navigation.html.erb +27 -0
- data/app/views/layouts/_sections.html.erb +8 -0
- data/app/views/layouts/application.html.erb +83 -0
- data/app/views/pages/about.html.erb +77 -0
- data/app/views/partials/_rdf_logo.html.erb +4 -0
- data/app/views/partials/collection/_member.html.erb +14 -0
- data/app/views/partials/collection_label/_search_result.html.erb +5 -0
- data/app/views/partials/concept/_edit_link_base.html.erb +4 -0
- data/app/views/partials/concept/_inline_base.html.erb +4 -0
- data/app/views/partials/concept/_new_link_base.html.erb +4 -0
- data/app/views/partials/concept/relation/_base.html.erb +8 -0
- data/app/views/partials/concept/relation/_edit_base.html.erb +15 -0
- data/app/views/partials/concept/relation/skos/_narrower.html.erb +12 -0
- data/app/views/partials/concept/relation/skos/broader/_mono.html.erb +28 -0
- data/app/views/partials/concept/relation/skos/broader/_poly.html.erb +14 -0
- data/app/views/partials/labeling/skos/_base.html.erb +17 -0
- data/app/views/partials/labeling/skos/_edit_base.html.erb +7 -0
- data/app/views/partials/labeling/skos/_search_result.html.erb +12 -0
- data/app/views/partials/match/_base.html.erb +13 -0
- data/app/views/partials/match/_edit_base.html.erb +6 -0
- data/app/views/partials/note/_base.html.erb +15 -0
- data/app/views/partials/note/_edit_base.html.erb +28 -0
- data/app/views/partials/note/_note.html.erb +14 -0
- data/app/views/partials/note/_search_result.html.erb +8 -0
- data/app/views/partials/note/skos/_edit_change_note.html.erb +47 -0
- data/app/views/partials/note/skos/definition/_search_result.html.erb +8 -0
- data/app/views/rdf/show_concept.iqrdf +5 -0
- data/app/views/search_results/_head_contents.html.erb +4 -0
- data/app/views/search_results/_rdf_links.html.erb +4 -0
- data/app/views/search_results/index.html.erb +92 -0
- data/app/views/search_results/index.iqrdf +33 -0
- data/app/views/triple_store_syncs/new.html.erb +7 -0
- data/app/views/user_sessions/new.html.erb +11 -0
- data/app/views/users/_form.html.erb +45 -0
- data/app/views/users/_user_preference.html.erb +12 -0
- data/app/views/users/edit.html.erb +14 -0
- data/app/views/users/index.html.erb +29 -0
- data/app/views/users/new.html.erb +13 -0
- data/config/application.rb +82 -0
- data/config/boot.rb +29 -0
- data/config/database.template.yml +43 -0
- data/config/database.yml +40 -0
- data/config/deploy/common.rb +79 -0
- data/config/deploy/ec2.rb +43 -0
- data/config/deploy/history.rb +29 -0
- data/config/deploy/innoq.rb +37 -0
- data/config/deploy.rb +72 -0
- data/config/engine.rb +25 -0
- data/config/environment.rb +21 -0
- data/config/environments/development.rb +74 -0
- data/config/environments/production.rb +65 -0
- data/config/environments/production.template.rb +65 -0
- data/config/environments/production_internal.rb +65 -0
- data/config/environments/test.rb +51 -0
- data/config/initializers/action_view.rb +23 -0
- data/config/initializers/active_record.rb +18 -0
- data/config/initializers/backtrace_silencers.rb +23 -0
- data/config/initializers/inflections.rb +26 -0
- data/config/initializers/iqvoc.rb +50 -0
- data/config/initializers/jdbc.rb +23 -0
- data/config/initializers/kaminari_config.rb +8 -0
- data/config/initializers/language.rb +6 -0
- data/config/initializers/mime_types.rb +24 -0
- data/config/initializers/secret_token.rb +29 -0
- data/config/initializers/secret_token.rb.template +29 -0
- data/config/initializers/session_store.rb +24 -0
- data/config/locales/activerecord.de.yml +135 -0
- data/config/locales/activerecord.en.yml +135 -0
- data/config/locales/authlogic.de.yml +38 -0
- data/config/locales/authlogic.en.yml +38 -0
- data/config/locales/de.yml +326 -0
- data/config/locales/defaults.de.yml +153 -0
- data/config/locales/en.yml +332 -0
- data/config/routes.rb +53 -0
- data/config/warble.rb +158 -0
- data/db/iqvoc_test.sqlite3 +0 -0
- data/db/migrate/20100927101502_create_schema.rb +174 -0
- data/db/migrate/20101125141218_add_collection_tables.rb +32 -0
- data/db/migrate/20101129161528_add_type_to_collections.rb +24 -0
- data/db/migrate/20101202094602_add_origin_to_collections.rb +25 -0
- data/db/migrate/20101202135420_rename_collection_contents_to_collection_members.rb +25 -0
- data/db/migrate/20101208103531_add_type_to_collection_contents.rb +27 -0
- data/db/migrate/20101210153916_add_indexes_to_collections.rb +25 -0
- data/db/migrate/20110204121244_create_collection_labels.rb +32 -0
- data/db/migrate/20110208084250_change_origin_lengths.rb +27 -0
- data/db/migrate/20110328124300_discard_collection_specifics.rb +27 -0
- data/db/migrate/20110408120357_remove_classifications_and_classifiers.rb +32 -0
- data/db/migrate/20110408120740_remove_xl_specfic_stuff.rb +39 -0
- data/db/migrate/20110420133640_change_value_in_notes.rb +8 -0
- data/db/migrate/20110427120534_add_published_at_to_labels.rb +9 -0
- data/db/migrate/20110510162719_use_mono_hierarchy_instead_of_poly_hierarchy.rb +13 -0
- data/db/migrate/20110512132624_extend_notes_value_field_length.rb +8 -0
- data/db/migrate/20110525103100_separate_note_annotation_predicates.rb +38 -0
- data/db/migrate/20110615134040_change_umt_note_annotations_to_dct.rb +9 -0
- data/db/schema.rb +127 -0
- data/db/seeds.rb +37 -0
- data/iqvoc.gemspec +27 -0
- data/lib/engine_tasks/assets.rake +49 -0
- data/lib/engine_tasks/db.rake +18 -0
- data/lib/engine_tasks/release.rake +118 -0
- data/lib/iqvoc/ability.rb +44 -0
- data/lib/iqvoc/data_helper.rb +27 -0
- data/lib/iqvoc/deep_cloning.rb +92 -0
- data/lib/iqvoc/rdf_helper.rb +67 -0
- data/lib/iqvoc/skos_importer.rb +144 -0
- data/lib/iqvoc/version.rb +19 -0
- data/lib/iqvoc/versioning.rb +151 -0
- data/lib/iqvoc.rb +228 -0
- data/lib/maker.rb +144 -0
- data/lib/ojdbc14.jar +0 -0
- data/lib/string.rb +23 -0
- data/lib/tasks/importer.rake +16 -0
- data/lib/tasks/jdbc.rake +24 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +26 -0
- data/public/favicon.ico +0 -0
- data/public/images/iqvoc/add.png +0 -0
- data/public/images/iqvoc/arrow_down.gif +0 -0
- data/public/images/iqvoc/arrow_up.gif +0 -0
- data/public/images/iqvoc/footer.png +0 -0
- data/public/images/iqvoc/go_there.png +0 -0
- data/public/images/iqvoc/header.png +0 -0
- data/public/images/iqvoc/header_long.png +0 -0
- data/public/images/iqvoc/iqvoc.png +0 -0
- data/public/images/iqvoc/note_add.png +0 -0
- data/public/images/iqvoc/note_delete.png +0 -0
- data/public/images/iqvoc/note_edit.png +0 -0
- data/public/images/iqvoc/ok.png +0 -0
- data/public/images/iqvoc/rails.png +0 -0
- data/public/images/iqvoc/rdf_flyer.gif +0 -0
- data/public/images/iqvoc/red_arrow.png +0 -0
- data/public/images/iqvoc/remove.png +0 -0
- data/public/images/iqvoc/shadow.png +0 -0
- data/public/images/iqvoc/spinner.gif +0 -0
- data/public/images/iqvoc/tokenizer_delete.png +0 -0
- data/public/images/iqvoc/tokenizer_pencile.png +0 -0
- data/public/images/iqvoc/tokenizer_show.png +0 -0
- data/public/images/iqvoc/unfinished.png +0 -0
- data/public/javascripts/iqvoc/application.js +123 -0
- data/public/javascripts/iqvoc/entityselect.js +121 -0
- data/public/javascripts/iqvoc/excanvas.js +35 -0
- data/public/javascripts/iqvoc/iqvoc.js +118 -0
- data/public/javascripts/iqvoc/jit_rgraph.js +153 -0
- data/public/javascripts/iqvoc/jquery-1.6.2.min.js +18 -0
- data/public/javascripts/iqvoc/jquery-treeview/changelog.txt +29 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/async.html +44 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/bg.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/demo.js +43 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/images.html +56 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/index.html +340 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/large.html +559 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/prerendered.html +621 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/screen.css +24 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/simple.html +82 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.php +87 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.phps +87 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/ajax-loader.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/file.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/folder-closed.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/folder.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/minus.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/plus.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-black-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-black.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-default-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-default.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-gray-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-gray.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-red-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-red.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.async.js +82 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.css +75 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.js +251 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.min.js +15 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.pack.js +16 -0
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.cookie.js +92 -0
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.js +3363 -0
- data/public/javascripts/iqvoc/jquery-treeview/todo +8 -0
- data/public/javascripts/iqvoc/jquery-ui-1.8.13.custom.js +3229 -0
- data/public/javascripts/iqvoc/jquery-ui-1.8.13.custom.min.js +163 -0
- data/public/javascripts/iqvoc/jquery-ui.datepicker-de.js +22 -0
- data/public/javascripts/iqvoc/json2.js +480 -0
- data/public/javascripts/iqvoc/langselect.js +73 -0
- data/public/javascripts/iqvoc/rails.js +132 -0
- data/public/javascripts/iqvoc/storage.js +122 -0
- data/public/javascripts/iqvoc/visualization.js +321 -0
- data/public/robots.txt +5 -0
- data/public/stylesheets/iqvoc/blueprint/ie.css +35 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/key.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/readme.txt +32 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/screen.css +97 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/screen.css +71 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/readme.txt +18 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/screen.css +40 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/readme.txt +10 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/screen.css +110 -0
- data/public/stylesheets/iqvoc/blueprint/print.css +29 -0
- data/public/stylesheets/iqvoc/blueprint/screen.css +258 -0
- data/public/stylesheets/iqvoc/blueprint/src/forms.css +65 -0
- data/public/stylesheets/iqvoc/blueprint/src/grid.css +280 -0
- data/public/stylesheets/iqvoc/blueprint/src/grid.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/src/ie.css +76 -0
- data/public/stylesheets/iqvoc/blueprint/src/print.css +85 -0
- data/public/stylesheets/iqvoc/blueprint/src/reset.css +45 -0
- data/public/stylesheets/iqvoc/blueprint/src/typography.css +106 -0
- data/public/stylesheets/iqvoc/forms.css +71 -0
- data/public/stylesheets/iqvoc/images/back.png +0 -0
- data/public/stylesheets/iqvoc/images/branch.png +0 -0
- data/public/stylesheets/iqvoc/images/categ.png +0 -0
- data/public/stylesheets/iqvoc/images/categ_open.png +0 -0
- data/public/stylesheets/iqvoc/images/go_there.png +0 -0
- data/public/stylesheets/iqvoc/images/iqvoc.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_end.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_end_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_mid.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_mid_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_nothing.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_only.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_only_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_top.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_top_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/nothing.png +0 -0
- data/public/stylesheets/iqvoc/images/top_01.png +0 -0
- data/public/stylesheets/iqvoc/images/trunk.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_217bc0_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_2e83ff_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_469bdd_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_6da8d5_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_f9bd01_256x240.png +0 -0
- data/public/stylesheets/iqvoc/iqvoc.css +477 -0
- data/public/stylesheets/iqvoc/jquery-ui-1.8.13.custom.css +415 -0
- data/public/stylesheets/iqvoc/widgets.css +81 -0
- data/test/factories.rb +74 -0
- data/test/integration/alphabetical_test.rb +53 -0
- data/test/integration/authentication_test.rb +41 -0
- data/test/integration/browse_concepts_and_labels_test.rb +61 -0
- data/test/integration/browse_static_pages_test.rb +29 -0
- data/test/integration/client_augmentation_test.rb +42 -0
- data/test/integration/client_edit_concept_test.rb +72 -0
- data/test/integration/collection_circularity_test.rb +110 -0
- data/test/integration/concept_test.rb +61 -0
- data/test/integration/edit_concepts_test.rb +40 -0
- data/test/integration/note_annotations_test.rb +86 -0
- data/test/integration/search_test.rb +205 -0
- data/test/integration/tree_test.rb +31 -0
- data/test/integration/untranslated_test.rb +60 -0
- data/test/integration_test_helper.rb +45 -0
- data/test/performance/browsing_test.rb +25 -0
- data/test/test_helper.rb +29 -0
- data/test/unit/concept_test.rb +93 -0
- data/test/unit/note_test.rb +32 -0
- data/test/unit/origin_mapping_test.rb +70 -0
- data/test/unit/skos_import_test.rb +100 -0
- metadata +522 -0
@@ -0,0 +1,100 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# Copyright 2011 innoQ Deutschland GmbH
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require File.join(File.expand_path(File.dirname(__FILE__)), '../test_helper')
|
18
|
+
require 'iqvoc/skos_importer'
|
19
|
+
|
20
|
+
class SkosImportTest < ActiveSupport::TestCase
|
21
|
+
|
22
|
+
def setup
|
23
|
+
Iqvoc::Concept.pref_labeling_class_name = 'Labeling::SKOS::PrefLabel'
|
24
|
+
Iqvoc::Concept.pref_labeling_languages = [ :de, :en ]
|
25
|
+
Iqvoc::Concept.further_labeling_class_names = { 'Labeling::SKOS::AltLabel' => [ :de, :en ] }
|
26
|
+
end
|
27
|
+
|
28
|
+
TEST_DATA = (<<-DATA
|
29
|
+
<http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2008/05/skos#Concept> .
|
30
|
+
<http://www.example.com/animal> <http://www.w3.org/2008/05/skos#prefLabel> "Tier"@de .
|
31
|
+
<http://www.example.com/animal> <http://www.w3.org/2008/05/skos#prefLabel> "Animal"@en .
|
32
|
+
<http://www.example.com/animal> <http://www.w3.org/2008/05/skos#altLabel> "Viehzeug"@de .
|
33
|
+
<http://www.example.com/animal> <http://www.w3.org/2008/05/skos#definition> "Ein Tier ist kein Mensch."@de .
|
34
|
+
<http://www.example.com/animal> <http://www.w3.org/2008/05/skos#narrower> <http://www.example.com/cow> .
|
35
|
+
<http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2008/05/skos#Concept> .
|
36
|
+
<http://www.example.com/cow> <http://www.w3.org/2008/05/skos#prefLabel> "Kuh"@de .
|
37
|
+
<http://www.example.com/cow> <http://www.w3.org/2008/05/skos#prefLabel> "Cow"@en .
|
38
|
+
<http://www.example.com/cow> <http://www.w3.org/2008/05/skos#altLabel> "Rind"@de .
|
39
|
+
<http://www.example.com/cow> <http://www.w3.org/2008/05/skos#broader> <http://www.example.com/animal> .
|
40
|
+
<http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2008/05/skos#Concept> .
|
41
|
+
<http://www.example.com/donkey> <http://www.w3.org/2008/05/skos#prefLabel> "Esel"@de .
|
42
|
+
<http://www.example.com/donkey> <http://www.w3.org/2008/05/skos#prefLabel> "Donkey"@en .
|
43
|
+
<http://www.example.com/donkey> <http://www.w3.org/2008/05/skos#broader> <http://www.example.com/animal> .
|
44
|
+
<http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2008/05/skos#Concept> .
|
45
|
+
<http://www.example.com/monkey> <http://www.w3.org/2008/05/skos#prefLabel> "Affe"@de .
|
46
|
+
<http://www.example.com/monkey> <http://www.w3.org/2008/05/skos#prefLabel> "Monkey"@en .
|
47
|
+
<http://www.example.com/monkey> <http://www.w3.org/2008/05/skos#altLabel> "\u00C4ffle"@de .
|
48
|
+
<http://www.example.com/monkey> <http://www.w3.org/2008/05/skos#altLabel> "Ape"@en .
|
49
|
+
<http://www.example.com/monkey> <http://www.w3.org/2008/05/skos#broader> <http://www.example.com/animal> .
|
50
|
+
<http://www.example.com/monkey> <http://www.w3.org/2008/05/skos#exactMatch> <http://dbpedia.org/page/Monkey> .
|
51
|
+
<http://not-my-problem.com/me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2008/05/skos#Concept>.
|
52
|
+
DATA
|
53
|
+
).split("\n")
|
54
|
+
|
55
|
+
test "unicode json decoding trick" do
|
56
|
+
encoded_val = "\\u00C4ffle"
|
57
|
+
decoded_val = JSON.parse(%Q{["#{encoded_val}"]})[0].gsub("\\n", "\n")
|
58
|
+
assert_equal decoded_val, "Äffle"
|
59
|
+
end
|
60
|
+
|
61
|
+
test "basic_importer_functionality" do
|
62
|
+
assert_difference('Concept::Base.count', 4) do
|
63
|
+
Iqvoc::SkosImporter.new(TEST_DATA, "http://www.example.com/")
|
64
|
+
end
|
65
|
+
|
66
|
+
concepts = {}
|
67
|
+
["animal", "cow", "donkey", "monkey"].each do |origin|
|
68
|
+
concepts[origin] = Iqvoc::Concept.base_class.by_origin(origin).last
|
69
|
+
assert_not_nil(concepts[origin], "Couldn't find concept '#{origin}'.")
|
70
|
+
assert concepts[origin].published?, "Concept '#{origin}' wasn't published."
|
71
|
+
end
|
72
|
+
|
73
|
+
assert_equal "Animal", concepts["animal"].pref_label.to_s
|
74
|
+
|
75
|
+
broader_relation = concepts["cow"].broader_relations.first
|
76
|
+
assert_not_nil broader_relation
|
77
|
+
assert_not_nil broader_relation.target
|
78
|
+
assert_equal concepts["animal"].origin, broader_relation.target.origin
|
79
|
+
|
80
|
+
narrower_relations = concepts["animal"].narrower_relations
|
81
|
+
assert_equal 3, narrower_relations.count
|
82
|
+
|
83
|
+
note = concepts["animal"].note_skos_definitions.first
|
84
|
+
assert_not_nil note
|
85
|
+
assert_equal "Ein Tier ist kein Mensch.", note.value
|
86
|
+
|
87
|
+
match = concepts["monkey"].match_skos_exact_matches.first
|
88
|
+
assert_not_nil match
|
89
|
+
assert_equal "http://dbpedia.org/page/Monkey", match.value
|
90
|
+
end
|
91
|
+
|
92
|
+
test "incorrect origin" do
|
93
|
+
assert_difference('Concept::Base.count', 1) do
|
94
|
+
Iqvoc::SkosImporter.new(["<http://www.example.com/1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2008/05/skos#Concept>."], "http://www.example.com/")
|
95
|
+
end
|
96
|
+
assert_nil Iqvoc::Concept.base_class.by_origin("1").last
|
97
|
+
assert_not_nil Iqvoc::Concept.base_class.by_origin("_1").last
|
98
|
+
end
|
99
|
+
|
100
|
+
end
|
metadata
ADDED
@@ -0,0 +1,522 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: iqvoc
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.2.3
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Robert Glaser
|
9
|
+
- Till Schulte-Coerne
|
10
|
+
- Frederik Dohr
|
11
|
+
autorequire:
|
12
|
+
bindir: bin
|
13
|
+
cert_chain: []
|
14
|
+
date: 2011-08-22 00:00:00.000000000Z
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: rails
|
18
|
+
requirement: &70231805464040 !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ~>
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 3.0.9
|
24
|
+
type: :runtime
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: *70231805464040
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: &70231805463400 !ruby/object:Gem::Requirement
|
30
|
+
none: false
|
31
|
+
requirements:
|
32
|
+
- - ! '>='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: *70231805463400
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: kaminari
|
40
|
+
requirement: &70231805462580 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
type: :runtime
|
47
|
+
prerelease: false
|
48
|
+
version_requirements: *70231805462580
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: authlogic
|
51
|
+
requirement: &70231805461920 !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
type: :runtime
|
58
|
+
prerelease: false
|
59
|
+
version_requirements: *70231805461920
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: cancan
|
62
|
+
requirement: &70231805461260 !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
64
|
+
requirements:
|
65
|
+
- - ! '>='
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
type: :runtime
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: *70231805461260
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: iq_rdf
|
73
|
+
requirement: &70231805452540 !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
75
|
+
requirements:
|
76
|
+
- - ~>
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 0.0.14
|
79
|
+
type: :runtime
|
80
|
+
prerelease: false
|
81
|
+
version_requirements: *70231805452540
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: json
|
84
|
+
requirement: &70231805451880 !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
86
|
+
requirements:
|
87
|
+
- - ! '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: *70231805451880
|
93
|
+
description: iQvoc - a SKOS(-XL) vocabulary management system built on the Semantic
|
94
|
+
Web
|
95
|
+
email:
|
96
|
+
- robert.glaser@innoq.com
|
97
|
+
- till.schulte-coerne@innoq.com
|
98
|
+
executables: []
|
99
|
+
extensions: []
|
100
|
+
extra_rdoc_files: []
|
101
|
+
files:
|
102
|
+
- LICENSE
|
103
|
+
- README.md
|
104
|
+
- Gemfile
|
105
|
+
- Gemfile.lock
|
106
|
+
- Rakefile
|
107
|
+
- iqvoc.gemspec
|
108
|
+
- app/controllers/application_controller.rb
|
109
|
+
- app/controllers/collections/hierarchical_controller.rb
|
110
|
+
- app/controllers/collections_controller.rb
|
111
|
+
- app/controllers/concepts/alphabetical_controller.rb
|
112
|
+
- app/controllers/concepts/hierarchical_controller.rb
|
113
|
+
- app/controllers/concepts/untranslated_controller.rb
|
114
|
+
- app/controllers/concepts/versions_controller.rb
|
115
|
+
- app/controllers/concepts_controller.rb
|
116
|
+
- app/controllers/dashboard_controller.rb
|
117
|
+
- app/controllers/pages_controller.rb
|
118
|
+
- app/controllers/rdf_controller.rb
|
119
|
+
- app/controllers/search_results_controller.rb
|
120
|
+
- app/controllers/triple_store_syncs_controller.rb
|
121
|
+
- app/controllers/user_sessions_controller.rb
|
122
|
+
- app/controllers/users_controller.rb
|
123
|
+
- app/helpers/application_helper.rb
|
124
|
+
- app/helpers/concepts_helper.rb
|
125
|
+
- app/helpers/dashboard_helper.rb
|
126
|
+
- app/helpers/rdf_helper.rb
|
127
|
+
- app/helpers/search_results_helper.rb
|
128
|
+
- app/models/collection/base.rb
|
129
|
+
- app/models/collection/member/base.rb
|
130
|
+
- app/models/collection/member/collection.rb
|
131
|
+
- app/models/collection/member/concept.rb
|
132
|
+
- app/models/collection/unordered.rb
|
133
|
+
- app/models/concept/base.rb
|
134
|
+
- app/models/concept/relation/base.rb
|
135
|
+
- app/models/concept/relation/reverse_relation_extension.rb
|
136
|
+
- app/models/concept/relation/skos/base.rb
|
137
|
+
- app/models/concept/relation/skos/broader/base.rb
|
138
|
+
- app/models/concept/relation/skos/broader/mono.rb
|
139
|
+
- app/models/concept/relation/skos/broader/poly.rb
|
140
|
+
- app/models/concept/relation/skos/narrower/base.rb
|
141
|
+
- app/models/concept/relation/skos/related.rb
|
142
|
+
- app/models/concept/skos/base.rb
|
143
|
+
- app/models/label/base.rb
|
144
|
+
- app/models/label/skos/base.rb
|
145
|
+
- app/models/labeling/base.rb
|
146
|
+
- app/models/labeling/skos/alt_label.rb
|
147
|
+
- app/models/labeling/skos/base.rb
|
148
|
+
- app/models/labeling/skos/hidden_label.rb
|
149
|
+
- app/models/labeling/skos/pref_label.rb
|
150
|
+
- app/models/match/base.rb
|
151
|
+
- app/models/match/skos/base.rb
|
152
|
+
- app/models/match/skos/broad_match.rb
|
153
|
+
- app/models/match/skos/close_match.rb
|
154
|
+
- app/models/match/skos/exact_match.rb
|
155
|
+
- app/models/match/skos/mapping_relation.rb
|
156
|
+
- app/models/match/skos/narrow_match.rb
|
157
|
+
- app/models/match/skos/related_match.rb
|
158
|
+
- app/models/note/annotated/base.rb
|
159
|
+
- app/models/note/base.rb
|
160
|
+
- app/models/note/skos/base.rb
|
161
|
+
- app/models/note/skos/change_note.rb
|
162
|
+
- app/models/note/skos/definition.rb
|
163
|
+
- app/models/note/skos/editorial_note.rb
|
164
|
+
- app/models/note/skos/example.rb
|
165
|
+
- app/models/note/skos/history_note.rb
|
166
|
+
- app/models/note/skos/scope_note.rb
|
167
|
+
- app/models/origin_mapping.rb
|
168
|
+
- app/models/rdf_store.rb
|
169
|
+
- app/models/search_extension.rb
|
170
|
+
- app/models/user.rb
|
171
|
+
- app/models/user_session.rb
|
172
|
+
- app/views/collections/_collection.html.erb
|
173
|
+
- app/views/collections/_form.html.erb
|
174
|
+
- app/views/collections/edit.html.erb
|
175
|
+
- app/views/collections/index.html.erb
|
176
|
+
- app/views/collections/new.html.erb
|
177
|
+
- app/views/collections/show.html.erb
|
178
|
+
- app/views/collections/show.iqrdf
|
179
|
+
- app/views/concepts/_base_data.html.erb
|
180
|
+
- app/views/concepts/_close_match.html.erb
|
181
|
+
- app/views/concepts/_show_head.html.erb
|
182
|
+
- app/views/concepts/_visualization.html.erb
|
183
|
+
- app/views/concepts/alphabetical/_pref_labeling.html.erb
|
184
|
+
- app/views/concepts/alphabetical/index.html.erb
|
185
|
+
- app/views/concepts/edit.html.erb
|
186
|
+
- app/views/concepts/hierarchical/_treeview.html.erb
|
187
|
+
- app/views/concepts/hierarchical/index.html.erb
|
188
|
+
- app/views/concepts/index.iqrdf
|
189
|
+
- app/views/concepts/new.html.erb
|
190
|
+
- app/views/concepts/show_published.html.erb
|
191
|
+
- app/views/concepts/show_unpublished.html.erb
|
192
|
+
- app/views/concepts/untranslated/index.html.erb
|
193
|
+
- app/views/dashboard/index.html.erb
|
194
|
+
- app/views/errors/access_denied.html.erb
|
195
|
+
- app/views/errors/multiple_choices.html.erb
|
196
|
+
- app/views/errors/not_found.html.erb
|
197
|
+
- app/views/kaminari/_page.html.erb
|
198
|
+
- app/views/kaminari/_paginator.html.erb
|
199
|
+
- app/views/layouts/_controls.html.erb
|
200
|
+
- app/views/layouts/_header.html.erb
|
201
|
+
- app/views/layouts/_navigation.html.erb
|
202
|
+
- app/views/layouts/_sections.html.erb
|
203
|
+
- app/views/layouts/application.html.erb
|
204
|
+
- app/views/pages/about.html.erb
|
205
|
+
- app/views/partials/_rdf_logo.html.erb
|
206
|
+
- app/views/partials/collection/_member.html.erb
|
207
|
+
- app/views/partials/collection_label/_search_result.html.erb
|
208
|
+
- app/views/partials/concept/_edit_link_base.html.erb
|
209
|
+
- app/views/partials/concept/_inline_base.html.erb
|
210
|
+
- app/views/partials/concept/_new_link_base.html.erb
|
211
|
+
- app/views/partials/concept/relation/_base.html.erb
|
212
|
+
- app/views/partials/concept/relation/_edit_base.html.erb
|
213
|
+
- app/views/partials/concept/relation/skos/_narrower.html.erb
|
214
|
+
- app/views/partials/concept/relation/skos/broader/_mono.html.erb
|
215
|
+
- app/views/partials/concept/relation/skos/broader/_poly.html.erb
|
216
|
+
- app/views/partials/labeling/skos/_base.html.erb
|
217
|
+
- app/views/partials/labeling/skos/_edit_base.html.erb
|
218
|
+
- app/views/partials/labeling/skos/_search_result.html.erb
|
219
|
+
- app/views/partials/match/_base.html.erb
|
220
|
+
- app/views/partials/match/_edit_base.html.erb
|
221
|
+
- app/views/partials/note/_base.html.erb
|
222
|
+
- app/views/partials/note/_edit_base.html.erb
|
223
|
+
- app/views/partials/note/_note.html.erb
|
224
|
+
- app/views/partials/note/_search_result.html.erb
|
225
|
+
- app/views/partials/note/skos/_edit_change_note.html.erb
|
226
|
+
- app/views/partials/note/skos/definition/_search_result.html.erb
|
227
|
+
- app/views/rdf/show_concept.iqrdf
|
228
|
+
- app/views/search_results/_head_contents.html.erb
|
229
|
+
- app/views/search_results/_rdf_links.html.erb
|
230
|
+
- app/views/search_results/index.html.erb
|
231
|
+
- app/views/search_results/index.iqrdf
|
232
|
+
- app/views/triple_store_syncs/new.html.erb
|
233
|
+
- app/views/user_sessions/new.html.erb
|
234
|
+
- app/views/users/_form.html.erb
|
235
|
+
- app/views/users/_user_preference.html.erb
|
236
|
+
- app/views/users/edit.html.erb
|
237
|
+
- app/views/users/index.html.erb
|
238
|
+
- app/views/users/new.html.erb
|
239
|
+
- config/application.rb
|
240
|
+
- config/boot.rb
|
241
|
+
- config/database.template.yml
|
242
|
+
- config/database.yml
|
243
|
+
- config/deploy/common.rb
|
244
|
+
- config/deploy/ec2.rb
|
245
|
+
- config/deploy/history.rb
|
246
|
+
- config/deploy/innoq.rb
|
247
|
+
- config/deploy.rb
|
248
|
+
- config/engine.rb
|
249
|
+
- config/environment.rb
|
250
|
+
- config/environments/development.rb
|
251
|
+
- config/environments/production.rb
|
252
|
+
- config/environments/production.template.rb
|
253
|
+
- config/environments/production_internal.rb
|
254
|
+
- config/environments/test.rb
|
255
|
+
- config/initializers/action_view.rb
|
256
|
+
- config/initializers/active_record.rb
|
257
|
+
- config/initializers/backtrace_silencers.rb
|
258
|
+
- config/initializers/inflections.rb
|
259
|
+
- config/initializers/iqvoc.rb
|
260
|
+
- config/initializers/jdbc.rb
|
261
|
+
- config/initializers/kaminari_config.rb
|
262
|
+
- config/initializers/language.rb
|
263
|
+
- config/initializers/mime_types.rb
|
264
|
+
- config/initializers/secret_token.rb
|
265
|
+
- config/initializers/secret_token.rb.template
|
266
|
+
- config/initializers/session_store.rb
|
267
|
+
- config/locales/activerecord.de.yml
|
268
|
+
- config/locales/activerecord.en.yml
|
269
|
+
- config/locales/authlogic.de.yml
|
270
|
+
- config/locales/authlogic.en.yml
|
271
|
+
- config/locales/de.yml
|
272
|
+
- config/locales/defaults.de.yml
|
273
|
+
- config/locales/en.yml
|
274
|
+
- config/routes.rb
|
275
|
+
- config/warble.rb
|
276
|
+
- db/iqvoc_test.sqlite3
|
277
|
+
- db/migrate/20100927101502_create_schema.rb
|
278
|
+
- db/migrate/20101125141218_add_collection_tables.rb
|
279
|
+
- db/migrate/20101129161528_add_type_to_collections.rb
|
280
|
+
- db/migrate/20101202094602_add_origin_to_collections.rb
|
281
|
+
- db/migrate/20101202135420_rename_collection_contents_to_collection_members.rb
|
282
|
+
- db/migrate/20101208103531_add_type_to_collection_contents.rb
|
283
|
+
- db/migrate/20101210153916_add_indexes_to_collections.rb
|
284
|
+
- db/migrate/20110204121244_create_collection_labels.rb
|
285
|
+
- db/migrate/20110208084250_change_origin_lengths.rb
|
286
|
+
- db/migrate/20110328124300_discard_collection_specifics.rb
|
287
|
+
- db/migrate/20110408120357_remove_classifications_and_classifiers.rb
|
288
|
+
- db/migrate/20110408120740_remove_xl_specfic_stuff.rb
|
289
|
+
- db/migrate/20110420133640_change_value_in_notes.rb
|
290
|
+
- db/migrate/20110427120534_add_published_at_to_labels.rb
|
291
|
+
- db/migrate/20110510162719_use_mono_hierarchy_instead_of_poly_hierarchy.rb
|
292
|
+
- db/migrate/20110512132624_extend_notes_value_field_length.rb
|
293
|
+
- db/migrate/20110525103100_separate_note_annotation_predicates.rb
|
294
|
+
- db/migrate/20110615134040_change_umt_note_annotations_to_dct.rb
|
295
|
+
- db/schema.rb
|
296
|
+
- db/seeds.rb
|
297
|
+
- public/404.html
|
298
|
+
- public/422.html
|
299
|
+
- public/500.html
|
300
|
+
- public/favicon.ico
|
301
|
+
- public/images/iqvoc/add.png
|
302
|
+
- public/images/iqvoc/arrow_down.gif
|
303
|
+
- public/images/iqvoc/arrow_up.gif
|
304
|
+
- public/images/iqvoc/footer.png
|
305
|
+
- public/images/iqvoc/go_there.png
|
306
|
+
- public/images/iqvoc/header.png
|
307
|
+
- public/images/iqvoc/header_long.png
|
308
|
+
- public/images/iqvoc/iqvoc.png
|
309
|
+
- public/images/iqvoc/note_add.png
|
310
|
+
- public/images/iqvoc/note_delete.png
|
311
|
+
- public/images/iqvoc/note_edit.png
|
312
|
+
- public/images/iqvoc/ok.png
|
313
|
+
- public/images/iqvoc/rails.png
|
314
|
+
- public/images/iqvoc/rdf_flyer.gif
|
315
|
+
- public/images/iqvoc/red_arrow.png
|
316
|
+
- public/images/iqvoc/remove.png
|
317
|
+
- public/images/iqvoc/shadow.png
|
318
|
+
- public/images/iqvoc/spinner.gif
|
319
|
+
- public/images/iqvoc/tokenizer_delete.png
|
320
|
+
- public/images/iqvoc/tokenizer_pencile.png
|
321
|
+
- public/images/iqvoc/tokenizer_show.png
|
322
|
+
- public/images/iqvoc/unfinished.png
|
323
|
+
- public/javascripts/iqvoc/application.js
|
324
|
+
- public/javascripts/iqvoc/entityselect.js
|
325
|
+
- public/javascripts/iqvoc/excanvas.js
|
326
|
+
- public/javascripts/iqvoc/iqvoc.js
|
327
|
+
- public/javascripts/iqvoc/jit_rgraph.js
|
328
|
+
- public/javascripts/iqvoc/jquery-1.6.2.min.js
|
329
|
+
- public/javascripts/iqvoc/jquery-treeview/changelog.txt
|
330
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/async.html
|
331
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/bg.gif
|
332
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/demo.js
|
333
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/images.html
|
334
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/index.html
|
335
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/large.html
|
336
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/prerendered.html
|
337
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/screen.css
|
338
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/simple.html
|
339
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/source.php
|
340
|
+
- public/javascripts/iqvoc/jquery-treeview/demo/source.phps
|
341
|
+
- public/javascripts/iqvoc/jquery-treeview/images/ajax-loader.gif
|
342
|
+
- public/javascripts/iqvoc/jquery-treeview/images/file.gif
|
343
|
+
- public/javascripts/iqvoc/jquery-treeview/images/folder-closed.gif
|
344
|
+
- public/javascripts/iqvoc/jquery-treeview/images/folder.gif
|
345
|
+
- public/javascripts/iqvoc/jquery-treeview/images/minus.gif
|
346
|
+
- public/javascripts/iqvoc/jquery-treeview/images/plus.gif
|
347
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-black-line.gif
|
348
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-black.gif
|
349
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-default-line.gif
|
350
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-default.gif
|
351
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam-line.gif
|
352
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam.gif
|
353
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-gray-line.gif
|
354
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-gray.gif
|
355
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-red-line.gif
|
356
|
+
- public/javascripts/iqvoc/jquery-treeview/images/treeview-red.gif
|
357
|
+
- public/javascripts/iqvoc/jquery-treeview/jquery.treeview.async.js
|
358
|
+
- public/javascripts/iqvoc/jquery-treeview/jquery.treeview.css
|
359
|
+
- public/javascripts/iqvoc/jquery-treeview/jquery.treeview.js
|
360
|
+
- public/javascripts/iqvoc/jquery-treeview/jquery.treeview.min.js
|
361
|
+
- public/javascripts/iqvoc/jquery-treeview/jquery.treeview.pack.js
|
362
|
+
- public/javascripts/iqvoc/jquery-treeview/lib/jquery.cookie.js
|
363
|
+
- public/javascripts/iqvoc/jquery-treeview/lib/jquery.js
|
364
|
+
- public/javascripts/iqvoc/jquery-treeview/todo
|
365
|
+
- public/javascripts/iqvoc/jquery-ui-1.8.13.custom.js
|
366
|
+
- public/javascripts/iqvoc/jquery-ui-1.8.13.custom.min.js
|
367
|
+
- public/javascripts/iqvoc/jquery-ui.datepicker-de.js
|
368
|
+
- public/javascripts/iqvoc/json2.js
|
369
|
+
- public/javascripts/iqvoc/langselect.js
|
370
|
+
- public/javascripts/iqvoc/rails.js
|
371
|
+
- public/javascripts/iqvoc/storage.js
|
372
|
+
- public/javascripts/iqvoc/visualization.js
|
373
|
+
- public/robots.txt
|
374
|
+
- public/stylesheets/iqvoc/blueprint/ie.css
|
375
|
+
- public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/cross.png
|
376
|
+
- public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/key.png
|
377
|
+
- public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/tick.png
|
378
|
+
- public/stylesheets/iqvoc/blueprint/plugins/buttons/readme.txt
|
379
|
+
- public/stylesheets/iqvoc/blueprint/plugins/buttons/screen.css
|
380
|
+
- public/stylesheets/iqvoc/blueprint/plugins/fancy-type/readme.txt
|
381
|
+
- public/stylesheets/iqvoc/blueprint/plugins/fancy-type/screen.css
|
382
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/doc.png
|
383
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/email.png
|
384
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/external.png
|
385
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/feed.png
|
386
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/im.png
|
387
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/pdf.png
|
388
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/visited.png
|
389
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/xls.png
|
390
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/readme.txt
|
391
|
+
- public/stylesheets/iqvoc/blueprint/plugins/link-icons/screen.css
|
392
|
+
- public/stylesheets/iqvoc/blueprint/plugins/rtl/readme.txt
|
393
|
+
- public/stylesheets/iqvoc/blueprint/plugins/rtl/screen.css
|
394
|
+
- public/stylesheets/iqvoc/blueprint/print.css
|
395
|
+
- public/stylesheets/iqvoc/blueprint/screen.css
|
396
|
+
- public/stylesheets/iqvoc/blueprint/src/forms.css
|
397
|
+
- public/stylesheets/iqvoc/blueprint/src/grid.css
|
398
|
+
- public/stylesheets/iqvoc/blueprint/src/grid.png
|
399
|
+
- public/stylesheets/iqvoc/blueprint/src/ie.css
|
400
|
+
- public/stylesheets/iqvoc/blueprint/src/print.css
|
401
|
+
- public/stylesheets/iqvoc/blueprint/src/reset.css
|
402
|
+
- public/stylesheets/iqvoc/blueprint/src/typography.css
|
403
|
+
- public/stylesheets/iqvoc/forms.css
|
404
|
+
- public/stylesheets/iqvoc/images/back.png
|
405
|
+
- public/stylesheets/iqvoc/images/branch.png
|
406
|
+
- public/stylesheets/iqvoc/images/categ.png
|
407
|
+
- public/stylesheets/iqvoc/images/categ_open.png
|
408
|
+
- public/stylesheets/iqvoc/images/go_there.png
|
409
|
+
- public/stylesheets/iqvoc/images/iqvoc.png
|
410
|
+
- public/stylesheets/iqvoc/images/leaf_end.png
|
411
|
+
- public/stylesheets/iqvoc/images/leaf_end_filled.png
|
412
|
+
- public/stylesheets/iqvoc/images/leaf_mid.png
|
413
|
+
- public/stylesheets/iqvoc/images/leaf_mid_filled.png
|
414
|
+
- public/stylesheets/iqvoc/images/leaf_nothing.png
|
415
|
+
- public/stylesheets/iqvoc/images/leaf_only.png
|
416
|
+
- public/stylesheets/iqvoc/images/leaf_only_filled.png
|
417
|
+
- public/stylesheets/iqvoc/images/leaf_top.png
|
418
|
+
- public/stylesheets/iqvoc/images/leaf_top_filled.png
|
419
|
+
- public/stylesheets/iqvoc/images/nothing.png
|
420
|
+
- public/stylesheets/iqvoc/images/top_01.png
|
421
|
+
- public/stylesheets/iqvoc/images/trunk.png
|
422
|
+
- public/stylesheets/iqvoc/images/ui-bg_flat_0_aaaaaa_40x100.png
|
423
|
+
- public/stylesheets/iqvoc/images/ui-bg_flat_55_fbec88_40x100.png
|
424
|
+
- public/stylesheets/iqvoc/images/ui-bg_glass_75_d0e5f5_1x400.png
|
425
|
+
- public/stylesheets/iqvoc/images/ui-bg_glass_85_dfeffc_1x400.png
|
426
|
+
- public/stylesheets/iqvoc/images/ui-bg_glass_95_fef1ec_1x400.png
|
427
|
+
- public/stylesheets/iqvoc/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
|
428
|
+
- public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
|
429
|
+
- public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
|
430
|
+
- public/stylesheets/iqvoc/images/ui-icons_217bc0_256x240.png
|
431
|
+
- public/stylesheets/iqvoc/images/ui-icons_2e83ff_256x240.png
|
432
|
+
- public/stylesheets/iqvoc/images/ui-icons_469bdd_256x240.png
|
433
|
+
- public/stylesheets/iqvoc/images/ui-icons_6da8d5_256x240.png
|
434
|
+
- public/stylesheets/iqvoc/images/ui-icons_cd0a0a_256x240.png
|
435
|
+
- public/stylesheets/iqvoc/images/ui-icons_d8e7f3_256x240.png
|
436
|
+
- public/stylesheets/iqvoc/images/ui-icons_f9bd01_256x240.png
|
437
|
+
- public/stylesheets/iqvoc/iqvoc.css
|
438
|
+
- public/stylesheets/iqvoc/jquery-ui-1.8.13.custom.css
|
439
|
+
- public/stylesheets/iqvoc/widgets.css
|
440
|
+
- lib/engine_tasks/assets.rake
|
441
|
+
- lib/engine_tasks/db.rake
|
442
|
+
- lib/engine_tasks/release.rake
|
443
|
+
- lib/iqvoc/ability.rb
|
444
|
+
- lib/iqvoc/data_helper.rb
|
445
|
+
- lib/iqvoc/deep_cloning.rb
|
446
|
+
- lib/iqvoc/rdf_helper.rb
|
447
|
+
- lib/iqvoc/skos_importer.rb
|
448
|
+
- lib/iqvoc/version.rb
|
449
|
+
- lib/iqvoc/versioning.rb
|
450
|
+
- lib/iqvoc.rb
|
451
|
+
- lib/maker.rb
|
452
|
+
- lib/ojdbc14.jar
|
453
|
+
- lib/string.rb
|
454
|
+
- lib/tasks/importer.rake
|
455
|
+
- lib/tasks/jdbc.rake
|
456
|
+
- test/factories.rb
|
457
|
+
- test/integration/alphabetical_test.rb
|
458
|
+
- test/integration/authentication_test.rb
|
459
|
+
- test/integration/browse_concepts_and_labels_test.rb
|
460
|
+
- test/integration/browse_static_pages_test.rb
|
461
|
+
- test/integration/client_augmentation_test.rb
|
462
|
+
- test/integration/client_edit_concept_test.rb
|
463
|
+
- test/integration/collection_circularity_test.rb
|
464
|
+
- test/integration/concept_test.rb
|
465
|
+
- test/integration/edit_concepts_test.rb
|
466
|
+
- test/integration/note_annotations_test.rb
|
467
|
+
- test/integration/search_test.rb
|
468
|
+
- test/integration/tree_test.rb
|
469
|
+
- test/integration/untranslated_test.rb
|
470
|
+
- test/integration_test_helper.rb
|
471
|
+
- test/performance/browsing_test.rb
|
472
|
+
- test/test_helper.rb
|
473
|
+
- test/unit/concept_test.rb
|
474
|
+
- test/unit/note_test.rb
|
475
|
+
- test/unit/origin_mapping_test.rb
|
476
|
+
- test/unit/skos_import_test.rb
|
477
|
+
homepage: http://innoq.com
|
478
|
+
licenses: []
|
479
|
+
post_install_message:
|
480
|
+
rdoc_options: []
|
481
|
+
require_paths:
|
482
|
+
- lib
|
483
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
484
|
+
none: false
|
485
|
+
requirements:
|
486
|
+
- - ! '>='
|
487
|
+
- !ruby/object:Gem::Version
|
488
|
+
version: '0'
|
489
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
490
|
+
none: false
|
491
|
+
requirements:
|
492
|
+
- - ! '>='
|
493
|
+
- !ruby/object:Gem::Version
|
494
|
+
version: '0'
|
495
|
+
requirements: []
|
496
|
+
rubyforge_project:
|
497
|
+
rubygems_version: 1.8.6
|
498
|
+
signing_key:
|
499
|
+
specification_version: 3
|
500
|
+
summary: iQvoc
|
501
|
+
test_files:
|
502
|
+
- test/factories.rb
|
503
|
+
- test/integration/alphabetical_test.rb
|
504
|
+
- test/integration/authentication_test.rb
|
505
|
+
- test/integration/browse_concepts_and_labels_test.rb
|
506
|
+
- test/integration/browse_static_pages_test.rb
|
507
|
+
- test/integration/client_augmentation_test.rb
|
508
|
+
- test/integration/client_edit_concept_test.rb
|
509
|
+
- test/integration/collection_circularity_test.rb
|
510
|
+
- test/integration/concept_test.rb
|
511
|
+
- test/integration/edit_concepts_test.rb
|
512
|
+
- test/integration/note_annotations_test.rb
|
513
|
+
- test/integration/search_test.rb
|
514
|
+
- test/integration/tree_test.rb
|
515
|
+
- test/integration/untranslated_test.rb
|
516
|
+
- test/integration_test_helper.rb
|
517
|
+
- test/performance/browsing_test.rb
|
518
|
+
- test/test_helper.rb
|
519
|
+
- test/unit/concept_test.rb
|
520
|
+
- test/unit/note_test.rb
|
521
|
+
- test/unit/origin_mapping_test.rb
|
522
|
+
- test/unit/skos_import_test.rb
|