curation_concerns 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.rspec +2 -0
- data/.travis.yml +18 -0
- data/Gemfile +31 -0
- data/LICENSE.txt +15 -0
- data/README.md +46 -0
- data/RELEASING.md +2 -0
- data/Rakefile +26 -0
- data/VERSION +1 -0
- data/app/assets/images/default.png +0 -0
- data/app/assets/images/nope.png +0 -0
- data/app/assets/javascripts/.gitkeep +0 -0
- data/app/assets/javascripts/curation_concerns/.gitkeep +0 -0
- data/app/assets/javascripts/curation_concerns/application.js +18 -0
- data/app/assets/javascripts/curation_concerns/browse_everything_implement.js +7 -0
- data/app/assets/javascripts/curation_concerns/curation_concerns.js +28 -0
- data/app/assets/javascripts/curation_concerns/embargoes.js +17 -0
- data/app/assets/javascripts/curation_concerns/facet_mine.js +22 -0
- data/app/assets/javascripts/curation_concerns/help_modal.js +36 -0
- data/app/assets/javascripts/curation_concerns/link_groups.js.coffee +123 -0
- data/app/assets/javascripts/curation_concerns/link_users.js.coffee +126 -0
- data/app/assets/javascripts/curation_concerns/proxy_rights.js.coffee +95 -0
- data/app/assets/javascripts/curation_concerns/proxy_submission.js +23 -0
- data/app/assets/javascripts/curation_concerns/select_works.js.coffee +20 -0
- data/app/assets/javascripts/modernizr.js +3 -0
- data/app/assets/stylesheets/curation_concerns/_curation_concerns.scss +9 -0
- data/app/assets/stylesheets/curation_concerns/_global-variables.scss +5 -0
- data/app/assets/stylesheets/curation_concerns/_modules.scss +13 -0
- data/app/assets/stylesheets/curation_concerns/_positioning.scss +138 -0
- data/app/assets/stylesheets/curation_concerns/_theme.scss +46 -0
- data/app/assets/stylesheets/curation_concerns/_typography.scss +137 -0
- data/app/assets/stylesheets/curation_concerns/_variables_bootstrap.scss +7 -0
- data/app/assets/stylesheets/curation_concerns/downloads.scss +3 -0
- data/app/assets/stylesheets/curation_concerns/help_requests.scss +3 -0
- data/app/assets/stylesheets/curation_concerns/modules/accessibility.scss +50 -0
- data/app/assets/stylesheets/curation_concerns/modules/accordion.scss +33 -0
- data/app/assets/stylesheets/curation_concerns/modules/attributes.scss +31 -0
- data/app/assets/stylesheets/curation_concerns/modules/classify_work.scss +100 -0
- data/app/assets/stylesheets/curation_concerns/modules/embargoes.scss +15 -0
- data/app/assets/stylesheets/curation_concerns/modules/emphatic_action_area.scss +14 -0
- data/app/assets/stylesheets/curation_concerns/modules/forms.scss +116 -0
- data/app/assets/stylesheets/curation_concerns/modules/multi_value_fields.scss +52 -0
- data/app/assets/stylesheets/curation_concerns/modules/pagination.scss +4 -0
- data/app/assets/stylesheets/curation_concerns/modules/search_results.scss +55 -0
- data/app/assets/stylesheets/curation_concerns/modules/site_actions.scss +53 -0
- data/app/assets/stylesheets/curation_concerns/modules/site_search.scss +46 -0
- data/app/controllers/catalog_controller.rb +3 -0
- data/app/controllers/collections_controller.rb +3 -0
- data/app/controllers/concerns/curation_concerns/application_controller_behavior.rb +28 -0
- data/app/controllers/concerns/curation_concerns/catalog_controller.rb +321 -0
- data/app/controllers/concerns/curation_concerns/collections_controller_behavior.rb +76 -0
- data/app/controllers/concerns/curation_concerns/curation_concern_controller.rb +125 -0
- data/app/controllers/concerns/curation_concerns/download_behavior.rb +60 -0
- data/app/controllers/concerns/curation_concerns/embargoes_controller_behavior.rb +44 -0
- data/app/controllers/concerns/curation_concerns/generic_files_controller_behavior.rb +149 -0
- data/app/controllers/concerns/curation_concerns/leases_controller_behavior.rb +36 -0
- data/app/controllers/concerns/curation_concerns/manages_embargoes.rb +26 -0
- data/app/controllers/concerns/curation_concerns/parent_container.rb +33 -0
- data/app/controllers/concerns/curation_concerns/themed_layout_controller.rb +31 -0
- data/app/controllers/concerns/curation_concerns/without_namespace.rb +15 -0
- data/app/controllers/curation_concerns/application_controller.rb +7 -0
- data/app/controllers/curation_concerns/classify_concerns_controller.rb +35 -0
- data/app/controllers/curation_concerns/generic_files_controller.rb +13 -0
- data/app/controllers/curation_concerns/permissions_controller.rb +19 -0
- data/app/controllers/downloads_controller.rb +4 -0
- data/app/controllers/embargoes_controller.rb +5 -0
- data/app/controllers/leases_controller.rb +5 -0
- data/app/controllers/registrations_controller.rb +20 -0
- data/app/controllers/sessions_controller.rb +4 -0
- data/app/datastreams/curation_concerns/generic_work_rdf_properties.rb +57 -0
- data/app/datastreams/generic_work_metadata.rb +3 -0
- data/app/forms/curation_concerns/forms/collection_edit_form.rb +17 -0
- data/app/forms/curation_concerns/forms/generic_file_edit_form.rb +15 -0
- data/app/forms/curation_concerns/forms/generic_work_edit_form.rb +9 -0
- data/app/helpers/curation_concerns/ability_helper.rb +46 -0
- data/app/helpers/curation_concerns/attribute_helper.rb +67 -0
- data/app/helpers/curation_concerns/catalog_helper.rb +38 -0
- data/app/helpers/curation_concerns/collections_helper.rb +63 -0
- data/app/helpers/curation_concerns/embargo_helper.rb +17 -0
- data/app/helpers/curation_concerns/generic_file_helper.rb +19 -0
- data/app/helpers/curation_concerns/lease_helper.rb +18 -0
- data/app/helpers/curation_concerns/main_app_helpers.rb +13 -0
- data/app/helpers/curation_concerns/render_constraints_helper.rb +42 -0
- data/app/helpers/curation_concerns/search_paths_helper.rb +13 -0
- data/app/helpers/curation_concerns/thumbnail_helper.rb +11 -0
- data/app/helpers/curation_concerns/title_helper.rb +23 -0
- data/app/helpers/curation_concerns/url_helper.rb +29 -0
- data/app/presenters/curation_concerns/collection_presenter.rb +40 -0
- data/app/presenters/curation_concerns/generic_file_presenter.rb +14 -0
- data/app/presenters/curation_concerns/generic_work_presenter.rb +13 -0
- data/app/search_builders/curation_concerns/search_builder.rb +49 -0
- data/app/services/curation_concerns/curation_concern.rb +14 -0
- data/app/services/curation_concerns/embargo_service.rb +26 -0
- data/app/services/curation_concerns/lease_service.rb +23 -0
- data/app/views/catalog/_action_menu_partials/_collection.html.erb +27 -0
- data/app/views/catalog/_action_menu_partials/_default.html.erb +27 -0
- data/app/views/catalog/_document.html.erb +3 -0
- data/app/views/catalog/_document_list.html.erb +5 -0
- data/app/views/catalog/_home_text.html.erb +8 -0
- data/app/views/catalog/_index_default.html.erb +17 -0
- data/app/views/catalog/_index_header_list_default.html.erb +8 -0
- data/app/views/catalog/_navbar.html.erb +12 -0
- data/app/views/catalog/_show_partials/_default.html.erb +22 -0
- data/app/views/catalog/_show_partials/_default_details.html.erb +15 -0
- data/app/views/catalog/_show_partials/_facets.html.erb +52 -0
- data/app/views/catalog/index.html.erb +47 -0
- data/app/views/collections/_add_to_collection_modal.html.erb +15 -0
- data/app/views/collections/_batch_edits_actions.html.erb +3 -0
- data/app/views/collections/_button_for_creating_empty_collection.html.erb +3 -0
- data/app/views/collections/_collection.html.erb +1 -0
- data/app/views/collections/_dashboard_document_list.html.erb +6 -0
- data/app/views/collections/_document_list.html.erb +7 -0
- data/app/views/collections/_edit_actions.html.erb +5 -0
- data/app/views/collections/_edit_descriptions.html.erb +20 -0
- data/app/views/collections/_form.html.erb +26 -0
- data/app/views/collections/_form_additional_information.html.erb +6 -0
- data/app/views/collections/_form_for_select_collection.html.erb +34 -0
- data/app/views/collections/_form_permission.html.erb +36 -0
- data/app/views/collections/_form_representative_image.html.erb +13 -0
- data/app/views/collections/_form_required_information.html.erb +11 -0
- data/app/views/collections/_form_to_add_member.html.erb +21 -0
- data/app/views/collections/_identifier_and_action.html.erb +15 -0
- data/app/views/collections/_media_display.html.erb +1 -0
- data/app/views/collections/_paginate.html.erb +6 -0
- data/app/views/collections/_search_collection_dashboard_form.html.erb +10 -0
- data/app/views/collections/_show_actions.html.erb +8 -0
- data/app/views/collections/_show_descriptions.html.erb +10 -0
- data/app/views/collections/_show_fields.html.erb +0 -0
- data/app/views/collections/_single_item_action_fields.html.erb +6 -0
- data/app/views/collections/_sort_and_per_page.html.erb +29 -0
- data/app/views/collections/_view_type_group.html.erb +13 -0
- data/app/views/collections/edit.html.erb +17 -0
- data/app/views/collections/show.html.erb +24 -0
- data/app/views/curation_concerns/base/_attributes.html.erb +25 -0
- data/app/views/curation_concerns/base/_collections.html.erb +26 -0
- data/app/views/curation_concerns/base/_form.html.erb +25 -0
- data/app/views/curation_concerns/base/_form_additional_information.html.erb +7 -0
- data/app/views/curation_concerns/base/_form_content_license.html.erb +16 -0
- data/app/views/curation_concerns/base/_form_descriptive_fields.erb +11 -0
- data/app/views/curation_concerns/base/_form_editors.html.erb +15 -0
- data/app/views/curation_concerns/base/_form_files_and_links.html.erb +23 -0
- data/app/views/curation_concerns/base/_form_permission.html.erb +52 -0
- data/app/views/curation_concerns/base/_form_permission_embargo.html.erb +6 -0
- data/app/views/curation_concerns/base/_form_permission_lease.html.erb +6 -0
- data/app/views/curation_concerns/base/_form_permission_under_embargo.html.erb +16 -0
- data/app/views/curation_concerns/base/_form_permission_under_lease.html.erb +18 -0
- data/app/views/curation_concerns/base/_form_representative_image.html.erb +13 -0
- data/app/views/curation_concerns/base/_form_required_information.html.erb +11 -0
- data/app/views/curation_concerns/base/_form_supplementary_fields.html.erb +15 -0
- data/app/views/curation_concerns/base/_legally_binding_text.html.erb +33 -0
- data/app/views/curation_concerns/base/_related_files.html.erb +24 -0
- data/app/views/curation_concerns/base/_representative_media.html.erb +8 -0
- data/app/views/curation_concerns/base/edit.html.erb +13 -0
- data/app/views/curation_concerns/base/new.html.erb +12 -0
- data/app/views/curation_concerns/base/show.html.erb +21 -0
- data/app/views/curation_concerns/base/unauthorized.html.erb +3 -0
- data/app/views/curation_concerns/classify_concerns/new.html.erb +25 -0
- data/app/views/curation_concerns/collections/_form_additional_information.html.erb +6 -0
- data/app/views/curation_concerns/generic_files/_actions.html.erb +16 -0
- data/app/views/curation_concerns/generic_files/_form.html.erb +35 -0
- data/app/views/curation_concerns/generic_files/_generic_file.html.erb +12 -0
- data/app/views/curation_concerns/generic_files/_media_display.html.erb +19 -0
- data/app/views/curation_concerns/generic_files/edit.html.erb +5 -0
- data/app/views/curation_concerns/generic_files/jq_upload.json.jbuilder +8 -0
- data/app/views/curation_concerns/generic_files/show.html.erb +15 -0
- data/app/views/curation_concerns/permissions/confirm.html.erb +21 -0
- data/app/views/embargoes/_embargo_history.html.erb +7 -0
- data/app/views/embargoes/_list_active_embargoes.html.erb +16 -0
- data/app/views/embargoes/_list_deactivated_embargoes.html.erb +10 -0
- data/app/views/embargoes/_list_expired_active_embargoes.html.erb +44 -0
- data/app/views/embargoes/edit.html.erb +43 -0
- data/app/views/embargoes/index.html.erb +18 -0
- data/app/views/layouts/boilerplate.html.erb +22 -0
- data/app/views/layouts/curation_concerns/1_column.html.erb +11 -0
- data/app/views/layouts/curation_concerns/catalog.html.erb +37 -0
- data/app/views/layouts/curation_concerns.html.erb +22 -0
- data/app/views/leases/_lease_history.html.erb +7 -0
- data/app/views/leases/_list_active_leases.html.erb +16 -0
- data/app/views/leases/_list_deactivated_leases.html.erb +4 -0
- data/app/views/leases/_list_expired_active_leases.html.erb +38 -0
- data/app/views/leases/edit.html.erb +43 -0
- data/app/views/leases/index.html.erb +18 -0
- data/app/views/shared/_add_content.html.erb +32 -0
- data/app/views/shared/_brand_bar.html.erb +10 -0
- data/app/views/shared/_flash_message.html.erb +17 -0
- data/app/views/shared/_footer.html.erb +10 -0
- data/app/views/shared/_ga.html.erb +6 -0
- data/app/views/shared/_header.html.erb +12 -0
- data/app/views/shared/_my_actions.html.erb +21 -0
- data/app/views/shared/_site_actions.html.erb +7 -0
- data/app/views/shared/_site_search.html.erb +12 -0
- data/app/views/shared/_title_bar.html.erb +16 -0
- data/app/workers/visibility_copy_worker.rb +30 -0
- data/config/initializers/simple_form.rb +31 -0
- data/config/locales/curation_concerns.en.yml +96 -0
- data/config/routes.rb +4 -0
- data/curation_concerns-models/.gitignore +17 -0
- data/curation_concerns-models/Gemfile +4 -0
- data/curation_concerns-models/LICENSE.md +177 -0
- data/curation_concerns-models/README.md +42 -0
- data/curation_concerns-models/Rakefile +1 -0
- data/curation_concerns-models/app/actors/concerns/curation_concerns/manages_embargoes_actor.rb +99 -0
- data/curation_concerns-models/app/actors/curation_concerns/base_actor.rb +90 -0
- data/curation_concerns-models/app/actors/curation_concerns/generic_file_actor.rb +150 -0
- data/curation_concerns-models/app/actors/curation_concerns/work_actor_behavior.rb +88 -0
- data/curation_concerns-models/app/jobs/active_fedora_id_based_job.rb +22 -0
- data/curation_concerns-models/app/jobs/active_fedora_pid_based_job.rb +6 -0
- data/curation_concerns-models/app/jobs/audit_job.rb +58 -0
- data/curation_concerns-models/app/jobs/characterize_job.rb +11 -0
- data/curation_concerns-models/app/jobs/copy_permissions_job.rb +24 -0
- data/curation_concerns-models/app/jobs/create_derivatives_job.rb +15 -0
- data/curation_concerns-models/app/jobs/import_url_job.rb +56 -0
- data/curation_concerns-models/app/jobs/ingest_local_file_job.rb +48 -0
- data/curation_concerns-models/app/jobs/resolrize_job.rb +9 -0
- data/curation_concerns-models/app/models/checksum_audit_log.rb +21 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/ability.rb +34 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/basic_metadata.rb +87 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/collection_behavior.rb +47 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/belongs_to_works.rb +53 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/characterization.rb +89 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/content.rb +8 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/export.rb +343 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/full_text_indexing.rb +12 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/indexing.rb +14 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/versions.rb +16 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file.rb +5 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file_behavior.rb +44 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_work_behavior.rb +38 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/has_representative.rb +14 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/human_readable_type.rb +23 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/readable.rb +19 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/writable.rb +75 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/permissions.rb +7 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/serializers.rb +15 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/solr_document_behavior.rb +135 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/user.rb +65 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/with_basic_metadata.rb +98 -0
- data/curation_concerns-models/app/models/concerns/curation_concerns/with_generic_files.rb +29 -0
- data/curation_concerns-models/app/models/curation_concerns/classify_concern.rb +47 -0
- data/curation_concerns-models/app/models/curation_concerns/quick_classification_query.rb +31 -0
- data/curation_concerns-models/app/models/datastreams/fits_datastream.rb +148 -0
- data/curation_concerns-models/app/models/version_committer.rb +2 -0
- data/curation_concerns-models/app/services/curation_concerns/characterization_service.rb +71 -0
- data/curation_concerns-models/app/services/curation_concerns/full_text_extraction_service.rb +38 -0
- data/curation_concerns-models/app/services/curation_concerns/generic_file_audit_service.rb +85 -0
- data/curation_concerns-models/app/services/curation_concerns/generic_file_indexing_service.rb +14 -0
- data/curation_concerns-models/app/services/curation_concerns/generic_work_indexing_service.rb +16 -0
- data/curation_concerns-models/app/services/curation_concerns/noid.rb +23 -0
- data/curation_concerns-models/app/services/curation_concerns/repository_audit_service.rb +9 -0
- data/curation_concerns-models/app/services/curation_concerns/versioning_service.rb +27 -0
- data/curation_concerns-models/config/locales/curation_concerns.en.yml +6 -0
- data/curation_concerns-models/curation_concerns-models.gemspec +34 -0
- data/curation_concerns-models/lib/curation_concerns/messages.rb +66 -0
- data/curation_concerns-models/lib/curation_concerns/models/engine.rb +61 -0
- data/curation_concerns-models/lib/curation_concerns/models/resque.rb +36 -0
- data/curation_concerns-models/lib/curation_concerns/models/utils.rb +22 -0
- data/curation_concerns-models/lib/curation_concerns/models/version.rb +5 -0
- data/curation_concerns-models/lib/curation_concerns/models.rb +32 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/abstract_migration_generator.rb +30 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/clamav_generator.rb +19 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/fulltext_generator.rb +28 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/install_generator.rb +70 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/collection.rb +4 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/generic_file.rb +4 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/clamav.rb +1 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/curation_concerns.rb +123 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/mime_types.rb +6 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis.yml +9 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis_config.rb +32 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque-pool.yml +1 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_admin.rb +10 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_config.rb +5 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_checksum_audit_logs.rb +19 -0
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_version_committers.rb +15 -0
- data/curation_concerns-models/lib/tasks/curation_concerns-models_tasks.rake +75 -0
- data/curation_concerns-models/lib/tasks/migrate.rake +13 -0
- data/curation_concerns-models/lib/tasks/resque.rake +13 -0
- data/curation_concerns-models/lib/tasks/solr_reindex.rake +8 -0
- data/curation_concerns.gemspec +46 -0
- data/lib/curation_concerns/configuration.rb +74 -0
- data/lib/curation_concerns/controller_resource.rb +10 -0
- data/lib/curation_concerns/engine.rb +20 -0
- data/lib/curation_concerns/rails/routes.rb +76 -0
- data/lib/curation_concerns/spec_support.rb +10 -0
- data/lib/curation_concerns/version.rb +3 -0
- data/lib/curation_concerns.rb +8 -0
- data/lib/generators/curation_concerns/install_generator.rb +103 -0
- data/lib/generators/curation_concerns/templates/curation_concerns.css.scss +3 -0
- data/lib/generators/curation_concerns/templates/curation_concerns.js +1 -0
- data/lib/generators/curation_concerns/templates/curation_concerns_config.rb +2 -0
- data/lib/generators/curation_concerns/templates/curation_concerns_helper.rb +4 -0
- data/lib/generators/curation_concerns/work/USAGE +19 -0
- data/lib/generators/curation_concerns/work/templates/README +13 -0
- data/lib/generators/curation_concerns/work/templates/actor.rb.erb +7 -0
- data/lib/generators/curation_concerns/work/templates/actor_spec.rb.erb +9 -0
- data/lib/generators/curation_concerns/work/templates/controller.rb.erb +7 -0
- data/lib/generators/curation_concerns/work/templates/controller_spec.rb.erb +9 -0
- data/lib/generators/curation_concerns/work/templates/model.rb.erb +7 -0
- data/lib/generators/curation_concerns/work/templates/model_spec.rb.erb +9 -0
- data/lib/generators/curation_concerns/work/work_generator.rb +78 -0
- data/solr_conf/conf/solrconfig.xml +223 -0
- data/spec/abilities/collection_abilities_spec.rb +48 -0
- data/spec/abilities/generic_file_abilities_spec.rb +62 -0
- data/spec/abilities/generic_work_abilities_spec.rb +58 -0
- data/spec/actors/curation_concerns/generic_file_actor_spec.rb +116 -0
- data/spec/actors/curation_concerns/manages_embargoes_actor_spec.rb +95 -0
- data/spec/actors/curation_concerns/work_actor_spec.rb +203 -0
- data/spec/controllers/catalog_controller_spec.rb +115 -0
- data/spec/controllers/curation_concerns/classify_concerns_controller_spec.rb +43 -0
- data/spec/controllers/curation_concerns/collections_controller_spec.rb +171 -0
- data/spec/controllers/curation_concerns/generic_files_controller_spec.rb +251 -0
- data/spec/controllers/curation_concerns/generic_works_controller_spec.rb +167 -0
- data/spec/controllers/curation_concerns/permissions_controller_spec.rb +29 -0
- data/spec/controllers/downloads_controller_spec.rb +51 -0
- data/spec/controllers/embargoes_controller_spec.rb +114 -0
- data/spec/controllers/leases_controller_spec.rb +94 -0
- data/spec/factories/collections.rb +15 -0
- data/spec/factories/create_curation_concern.rb +3 -0
- data/spec/factories/generic_files.rb +31 -0
- data/spec/factories/generic_works.rb +54 -0
- data/spec/factories/users.rb +28 -0
- data/spec/features/add_file_spec.rb +30 -0
- data/spec/features/collection_spec.rb +222 -0
- data/spec/features/create_work_spec.rb +43 -0
- data/spec/features/embargo_spec.rb +51 -0
- data/spec/features/lease_spec.rb +49 -0
- data/spec/features/update_file_spec.rb +32 -0
- data/spec/features/work_generator_spec.rb +58 -0
- data/spec/fixtures/Example.ogg +0 -0
- data/spec/fixtures/charter.docx +0 -0
- data/spec/fixtures/countdown.avi +0 -0
- data/spec/fixtures/curation_concerns_generic_stub.txt +1 -0
- data/spec/fixtures/files/image.png +0 -0
- data/spec/fixtures/image.jp2 +0 -0
- data/spec/fixtures/image.jpg +0 -0
- data/spec/fixtures/piano_note.wav +0 -0
- data/spec/fixtures/sample_mpeg4.mp4 +0 -0
- data/spec/fixtures/small_file.txt +1 -0
- data/spec/fixtures/spoken-text.m4a +0 -0
- data/spec/fixtures/test4.pdf +0 -0
- data/spec/fixtures/test5.mp3 +0 -0
- data/spec/fixtures/world.png +0 -0
- data/spec/forms/collection_edit_form_spec.rb +20 -0
- data/spec/forms/generic_file_edit_form_spec.rb +33 -0
- data/spec/helpers/catalog_helper_spec.rb +58 -0
- data/spec/helpers/configuration_helper_spec.rb +13 -0
- data/spec/helpers/curation_concerns/.keep +0 -0
- data/spec/helpers/curation_concerns/collections_helper_spec.rb +49 -0
- data/spec/helpers/render_constraints_helper_spec.rb +19 -0
- data/spec/helpers/thumbnail_helper_spec.rb +21 -0
- data/spec/helpers/url_helper_spec.rb +22 -0
- data/spec/jobs/active_fedora_id_based_job_spec.rb +14 -0
- data/spec/jobs/audit_job_spec.rb +53 -0
- data/spec/jobs/characterize_job_spec.rb +23 -0
- data/spec/jobs/copy_permissions_job_spec.rb +49 -0
- data/spec/jobs/create_derivatives_job_spec.rb +23 -0
- data/spec/jobs/curation_concerns_resque_queue_spec.rb +49 -0
- data/spec/jobs/import_url_job_spec.rb +45 -0
- data/spec/jobs/ingest_local_file_job_spec.rb +25 -0
- data/spec/lib/curation_concerns/messages_spec.rb +70 -0
- data/spec/lib/curation_concerns/readable_permissions_spec.rb +56 -0
- data/spec/lib/curation_concerns/writable_permissions_spec.rb +16 -0
- data/spec/matchers/metadata_field_matchers.rb +28 -0
- data/spec/matchers/response_matchers.rb +7 -0
- data/spec/matchers.rb +24 -0
- data/spec/models/checksum_audit_log_spec.rb +66 -0
- data/spec/models/curation_concerns/collection_behavior_spec.rb +107 -0
- data/spec/models/curation_concerns/generic_file/derivatives_spec.rb +88 -0
- data/spec/models/curation_concerns/generic_work_behavior_spec.rb +35 -0
- data/spec/models/fits_datastream_spec.rb +127 -0
- data/spec/models/generic_file_spec.rb +619 -0
- data/spec/models/generic_work_spec.rb +43 -0
- data/spec/models/user_spec.rb +23 -0
- data/spec/presenters/curation_concerns/collection_presenter_spec.rb +34 -0
- data/spec/presenters/curation_concerns/generic_file_presenter_spec.rb +16 -0
- data/spec/routing/curation_concerns/routes_spec.rb +36 -0
- data/spec/routing/route_spec.rb +86 -0
- data/spec/services/characterization_service_spec.rb +30 -0
- data/spec/services/embargo_service_spec.rb +38 -0
- data/spec/services/full_text_extraction_service_spec.rb +5 -0
- data/spec/services/generic_file_audit_service_spec.rb +71 -0
- data/spec/services/generic_file_indexing_service_spec.rb +57 -0
- data/spec/services/generic_work_indexing_service_spec.rb +18 -0
- data/spec/services/lease_service_spec.rb +53 -0
- data/spec/services/repository_audit_service_spec.rb +18 -0
- data/spec/services/versioning_service_spec.rb +32 -0
- data/spec/spec_helper.rb +94 -0
- data/spec/support/controllers/engine_helpers.rb +7 -0
- data/spec/support/curation_concerns/factory_helpers.rb +14 -0
- data/spec/support/features/fixture_file_upload.rb +14 -0
- data/spec/support/features/session_helpers.rb +41 -0
- data/spec/support/features.rb +19 -0
- data/spec/support/shared/shared_examples_has_dc_metadata.rb +17 -0
- data/spec/support/shared/shared_examples_is_embargoable.rb +8 -0
- data/spec/support/shared/shared_examples_with_access_rights.rb +63 -0
- data/spec/tasks/rake_spec.rb +24 -0
- data/spec/test_app_templates/Gemfile.extra +1 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +55 -0
- data/spec/views/catalog/index.html.erb_spec.rb +59 -0
- data/spec/views/curation_concerns/base/_attributes.html.erb_spec.rb +25 -0
- data/spec/views/curation_concerns/base/show.html.erb_spec.rb +29 -0
- data/spec/views/curation_concerns/permissions/confirm.html.erb_spec.rb +33 -0
- data/spec/views/shared/_add_content.html.erb_spec.rb +42 -0
- data/spec/views/shared/_my_actions.html.erb_spec.rb +23 -0
- data/spec/workers/visibility_copy_worker_spec.rb +70 -0
- data/tasks/jetty.rake +15 -0
- data/tasks/release.rake +93 -0
- data/vendor/assets/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/vendor/assets/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/vendor/assets/javascripts/handlebars.js +2278 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.autocomplete.js +602 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.core.js +356 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect-highlight.js +50 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect.js +1276 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.menu.js +610 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.position.js +498 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.widget.js +528 -0
- data/vendor/assets/javascripts/jquery.tokeninput.js +1061 -0
- data/vendor/assets/stylesheets/jquery-ui-lightness.css +474 -0
- data/vendor/assets/stylesheets/token-input-facebook.css +122 -0
- data/vendor/assets/stylesheets/token-input-mac.css +204 -0
- data/vendor/assets/stylesheets/token-input.css +127 -0
- metadata +888 -0
|
@@ -0,0 +1,610 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* jQuery UI Menu @VERSION
|
|
3
|
+
* http://jqueryui.com
|
|
4
|
+
*
|
|
5
|
+
* Copyright 2012 jQuery Foundation and other contributors
|
|
6
|
+
* Released under the MIT license.
|
|
7
|
+
* http://jquery.org/license
|
|
8
|
+
*
|
|
9
|
+
* http://api.jqueryui.com/menu/
|
|
10
|
+
*
|
|
11
|
+
* Depends:
|
|
12
|
+
* jquery.ui.core.js
|
|
13
|
+
* jquery.ui.widget.js
|
|
14
|
+
* jquery.ui.position.js
|
|
15
|
+
*/
|
|
16
|
+
(function( $, undefined ) {
|
|
17
|
+
|
|
18
|
+
var mouseHandled = false;
|
|
19
|
+
|
|
20
|
+
$.widget( "ui.menu", {
|
|
21
|
+
version: "@VERSION",
|
|
22
|
+
defaultElement: "<ul>",
|
|
23
|
+
delay: 300,
|
|
24
|
+
options: {
|
|
25
|
+
icons: {
|
|
26
|
+
submenu: "ui-icon-carat-1-e"
|
|
27
|
+
},
|
|
28
|
+
menus: "ul",
|
|
29
|
+
position: {
|
|
30
|
+
my: "left top",
|
|
31
|
+
at: "right top"
|
|
32
|
+
},
|
|
33
|
+
role: "menu",
|
|
34
|
+
|
|
35
|
+
// callbacks
|
|
36
|
+
blur: null,
|
|
37
|
+
focus: null,
|
|
38
|
+
select: null
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
_create: function() {
|
|
42
|
+
this.activeMenu = this.element;
|
|
43
|
+
this.element
|
|
44
|
+
.uniqueId()
|
|
45
|
+
.addClass( "ui-menu ui-widget ui-widget-content ui-corner-all" )
|
|
46
|
+
.toggleClass( "ui-menu-icons", !!this.element.find( ".ui-icon" ).length )
|
|
47
|
+
.attr({
|
|
48
|
+
role: this.options.role,
|
|
49
|
+
tabIndex: 0
|
|
50
|
+
})
|
|
51
|
+
// need to catch all clicks on disabled menu
|
|
52
|
+
// not possible through _on
|
|
53
|
+
.bind( "click" + this.eventNamespace, $.proxy(function( event ) {
|
|
54
|
+
if ( this.options.disabled ) {
|
|
55
|
+
event.preventDefault();
|
|
56
|
+
}
|
|
57
|
+
}, this ));
|
|
58
|
+
|
|
59
|
+
if ( this.options.disabled ) {
|
|
60
|
+
this.element
|
|
61
|
+
.addClass( "ui-state-disabled" )
|
|
62
|
+
.attr( "aria-disabled", "true" );
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
this._on({
|
|
66
|
+
// Prevent focus from sticking to links inside menu after clicking
|
|
67
|
+
// them (focus should always stay on UL during navigation).
|
|
68
|
+
"mousedown .ui-menu-item > a": function( event ) {
|
|
69
|
+
event.preventDefault();
|
|
70
|
+
},
|
|
71
|
+
"click .ui-state-disabled > a": function( event ) {
|
|
72
|
+
event.preventDefault();
|
|
73
|
+
},
|
|
74
|
+
"click .ui-menu-item:has(a)": function( event ) {
|
|
75
|
+
var target = $( event.target ).closest( ".ui-menu-item" );
|
|
76
|
+
if ( !mouseHandled && target.not( ".ui-state-disabled" ).length ) {
|
|
77
|
+
mouseHandled = true;
|
|
78
|
+
|
|
79
|
+
this.select( event );
|
|
80
|
+
// Open submenu on click
|
|
81
|
+
if ( target.has( ".ui-menu" ).length ) {
|
|
82
|
+
this.expand( event );
|
|
83
|
+
} else if ( !this.element.is( ":focus" ) ) {
|
|
84
|
+
// Redirect focus to the menu
|
|
85
|
+
this.element.trigger( "focus", [ true ] );
|
|
86
|
+
|
|
87
|
+
// If the active item is on the top level, let it stay active.
|
|
88
|
+
// Otherwise, blur the active item since it is no longer visible.
|
|
89
|
+
if ( this.active && this.active.parents( ".ui-menu" ).length === 1 ) {
|
|
90
|
+
clearTimeout( this.timer );
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"mouseenter .ui-menu-item": function( event ) {
|
|
96
|
+
var target = $( event.currentTarget );
|
|
97
|
+
// Remove ui-state-active class from siblings of the newly focused menu item
|
|
98
|
+
// to avoid a jump caused by adjacent elements both having a class with a border
|
|
99
|
+
target.siblings().children( ".ui-state-active" ).removeClass( "ui-state-active" );
|
|
100
|
+
this.focus( event, target );
|
|
101
|
+
},
|
|
102
|
+
mouseleave: "collapseAll",
|
|
103
|
+
"mouseleave .ui-menu": "collapseAll",
|
|
104
|
+
focus: function( event, keepActiveItem ) {
|
|
105
|
+
// If there's already an active item, keep it active
|
|
106
|
+
// If not, activate the first item
|
|
107
|
+
var item = this.active || this.element.children( ".ui-menu-item" ).eq( 0 );
|
|
108
|
+
|
|
109
|
+
if ( !keepActiveItem ) {
|
|
110
|
+
this.focus( event, item );
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
blur: function( event ) {
|
|
114
|
+
this._delay(function() {
|
|
115
|
+
if ( !$.contains( this.element[0], this.document[0].activeElement ) ) {
|
|
116
|
+
this.collapseAll( event );
|
|
117
|
+
}
|
|
118
|
+
});
|
|
119
|
+
},
|
|
120
|
+
keydown: "_keydown"
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
this.refresh();
|
|
124
|
+
|
|
125
|
+
// Clicks outside of a menu collapse any open menus
|
|
126
|
+
this._on( this.document, {
|
|
127
|
+
click: function( event ) {
|
|
128
|
+
if ( !$( event.target ).closest( ".ui-menu" ).length ) {
|
|
129
|
+
this.collapseAll( event );
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// Reset the mouseHandled flag
|
|
133
|
+
mouseHandled = false;
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
},
|
|
137
|
+
|
|
138
|
+
_destroy: function() {
|
|
139
|
+
// Destroy (sub)menus
|
|
140
|
+
this.element
|
|
141
|
+
.removeAttr( "aria-activedescendant" )
|
|
142
|
+
.find( ".ui-menu" ).andSelf()
|
|
143
|
+
.removeClass( "ui-menu ui-widget ui-widget-content ui-corner-all ui-menu-icons" )
|
|
144
|
+
.removeAttr( "role" )
|
|
145
|
+
.removeAttr( "tabIndex" )
|
|
146
|
+
.removeAttr( "aria-labelledby" )
|
|
147
|
+
.removeAttr( "aria-expanded" )
|
|
148
|
+
.removeAttr( "aria-hidden" )
|
|
149
|
+
.removeAttr( "aria-disabled" )
|
|
150
|
+
.removeUniqueId()
|
|
151
|
+
.show();
|
|
152
|
+
|
|
153
|
+
// Destroy menu items
|
|
154
|
+
this.element.find( ".ui-menu-item" )
|
|
155
|
+
.removeClass( "ui-menu-item" )
|
|
156
|
+
.removeAttr( "role" )
|
|
157
|
+
.removeAttr( "aria-disabled" )
|
|
158
|
+
.children( "a" )
|
|
159
|
+
.removeUniqueId()
|
|
160
|
+
.removeClass( "ui-corner-all ui-state-hover" )
|
|
161
|
+
.removeAttr( "tabIndex" )
|
|
162
|
+
.removeAttr( "role" )
|
|
163
|
+
.removeAttr( "aria-haspopup" )
|
|
164
|
+
.children().each( function() {
|
|
165
|
+
var elem = $( this );
|
|
166
|
+
if ( elem.data( "ui-menu-submenu-carat" ) ) {
|
|
167
|
+
elem.remove();
|
|
168
|
+
}
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
// Destroy menu dividers
|
|
172
|
+
this.element.find( ".ui-menu-divider" ).removeClass( "ui-menu-divider ui-widget-content" );
|
|
173
|
+
},
|
|
174
|
+
|
|
175
|
+
_keydown: function( event ) {
|
|
176
|
+
var match, prev, character, skip, regex,
|
|
177
|
+
preventDefault = true;
|
|
178
|
+
|
|
179
|
+
function escape( value ) {
|
|
180
|
+
return value.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" );
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
switch ( event.keyCode ) {
|
|
184
|
+
case $.ui.keyCode.PAGE_UP:
|
|
185
|
+
this.previousPage( event );
|
|
186
|
+
break;
|
|
187
|
+
case $.ui.keyCode.PAGE_DOWN:
|
|
188
|
+
this.nextPage( event );
|
|
189
|
+
break;
|
|
190
|
+
case $.ui.keyCode.HOME:
|
|
191
|
+
this._move( "first", "first", event );
|
|
192
|
+
break;
|
|
193
|
+
case $.ui.keyCode.END:
|
|
194
|
+
this._move( "last", "last", event );
|
|
195
|
+
break;
|
|
196
|
+
case $.ui.keyCode.UP:
|
|
197
|
+
this.previous( event );
|
|
198
|
+
break;
|
|
199
|
+
case $.ui.keyCode.DOWN:
|
|
200
|
+
this.next( event );
|
|
201
|
+
break;
|
|
202
|
+
case $.ui.keyCode.LEFT:
|
|
203
|
+
this.collapse( event );
|
|
204
|
+
break;
|
|
205
|
+
case $.ui.keyCode.RIGHT:
|
|
206
|
+
if ( this.active && !this.active.is( ".ui-state-disabled" ) ) {
|
|
207
|
+
this.expand( event );
|
|
208
|
+
}
|
|
209
|
+
break;
|
|
210
|
+
case $.ui.keyCode.ENTER:
|
|
211
|
+
case $.ui.keyCode.SPACE:
|
|
212
|
+
this._activate( event );
|
|
213
|
+
break;
|
|
214
|
+
case $.ui.keyCode.ESCAPE:
|
|
215
|
+
this.collapse( event );
|
|
216
|
+
break;
|
|
217
|
+
default:
|
|
218
|
+
preventDefault = false;
|
|
219
|
+
prev = this.previousFilter || "";
|
|
220
|
+
character = String.fromCharCode( event.keyCode );
|
|
221
|
+
skip = false;
|
|
222
|
+
|
|
223
|
+
clearTimeout( this.filterTimer );
|
|
224
|
+
|
|
225
|
+
if ( character === prev ) {
|
|
226
|
+
skip = true;
|
|
227
|
+
} else {
|
|
228
|
+
character = prev + character;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
regex = new RegExp( "^" + escape( character ), "i" );
|
|
232
|
+
match = this.activeMenu.children( ".ui-menu-item" ).filter(function() {
|
|
233
|
+
return regex.test( $( this ).children( "a" ).text() );
|
|
234
|
+
});
|
|
235
|
+
match = skip && match.index( this.active.next() ) !== -1 ?
|
|
236
|
+
this.active.nextAll( ".ui-menu-item" ) :
|
|
237
|
+
match;
|
|
238
|
+
|
|
239
|
+
// If no matches on the current filter, reset to the last character pressed
|
|
240
|
+
// to move down the menu to the first item that starts with that character
|
|
241
|
+
if ( !match.length ) {
|
|
242
|
+
character = String.fromCharCode( event.keyCode );
|
|
243
|
+
regex = new RegExp( "^" + escape( character ), "i" );
|
|
244
|
+
match = this.activeMenu.children( ".ui-menu-item" ).filter(function() {
|
|
245
|
+
return regex.test( $( this ).children( "a" ).text() );
|
|
246
|
+
});
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
if ( match.length ) {
|
|
250
|
+
this.focus( event, match );
|
|
251
|
+
if ( match.length > 1 ) {
|
|
252
|
+
this.previousFilter = character;
|
|
253
|
+
this.filterTimer = this._delay(function() {
|
|
254
|
+
delete this.previousFilter;
|
|
255
|
+
}, 1000 );
|
|
256
|
+
} else {
|
|
257
|
+
delete this.previousFilter;
|
|
258
|
+
}
|
|
259
|
+
} else {
|
|
260
|
+
delete this.previousFilter;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
if ( preventDefault ) {
|
|
265
|
+
event.preventDefault();
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
|
|
269
|
+
_activate: function( event ) {
|
|
270
|
+
if ( !this.active.is( ".ui-state-disabled" ) ) {
|
|
271
|
+
if ( this.active.children( "a[aria-haspopup='true']" ).length ) {
|
|
272
|
+
this.expand( event );
|
|
273
|
+
} else {
|
|
274
|
+
this.select( event );
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
|
|
279
|
+
refresh: function() {
|
|
280
|
+
var menus,
|
|
281
|
+
icon = this.options.icons.submenu,
|
|
282
|
+
submenus = this.element.find( this.options.menus );
|
|
283
|
+
|
|
284
|
+
// Initialize nested menus
|
|
285
|
+
submenus.filter( ":not(.ui-menu)" )
|
|
286
|
+
.addClass( "ui-menu ui-widget ui-widget-content ui-corner-all" )
|
|
287
|
+
.hide()
|
|
288
|
+
.attr({
|
|
289
|
+
role: this.options.role,
|
|
290
|
+
"aria-hidden": "true",
|
|
291
|
+
"aria-expanded": "false"
|
|
292
|
+
})
|
|
293
|
+
.each(function() {
|
|
294
|
+
var menu = $( this ),
|
|
295
|
+
item = menu.prev( "a" ),
|
|
296
|
+
submenuCarat = $( "<span>" )
|
|
297
|
+
.addClass( "ui-menu-icon ui-icon " + icon )
|
|
298
|
+
.data( "ui-menu-submenu-carat", true );
|
|
299
|
+
|
|
300
|
+
item
|
|
301
|
+
.attr( "aria-haspopup", "true" )
|
|
302
|
+
.prepend( submenuCarat );
|
|
303
|
+
menu.attr( "aria-labelledby", item.attr( "id" ) );
|
|
304
|
+
});
|
|
305
|
+
|
|
306
|
+
menus = submenus.add( this.element );
|
|
307
|
+
|
|
308
|
+
// Don't refresh list items that are already adapted
|
|
309
|
+
menus.children( ":not(.ui-menu-item):has(a)" )
|
|
310
|
+
.addClass( "ui-menu-item" )
|
|
311
|
+
.attr( "role", "presentation" )
|
|
312
|
+
.children( "a" )
|
|
313
|
+
.uniqueId()
|
|
314
|
+
.addClass( "ui-corner-all" )
|
|
315
|
+
.attr({
|
|
316
|
+
tabIndex: -1,
|
|
317
|
+
role: this._itemRole()
|
|
318
|
+
});
|
|
319
|
+
|
|
320
|
+
// Initialize unlinked menu-items containing spaces and/or dashes only as dividers
|
|
321
|
+
menus.children( ":not(.ui-menu-item)" ).each(function() {
|
|
322
|
+
var item = $( this );
|
|
323
|
+
// hyphen, em dash, en dash
|
|
324
|
+
if ( !/[^\-—–\s]/.test( item.text() ) ) {
|
|
325
|
+
item.addClass( "ui-widget-content ui-menu-divider" );
|
|
326
|
+
}
|
|
327
|
+
});
|
|
328
|
+
|
|
329
|
+
// Add aria-disabled attribute to any disabled menu item
|
|
330
|
+
menus.children( ".ui-state-disabled" ).attr( "aria-disabled", "true" );
|
|
331
|
+
|
|
332
|
+
// If the active item has been removed, blur the menu
|
|
333
|
+
if ( this.active && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {
|
|
334
|
+
this.blur();
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
|
|
338
|
+
_itemRole: function() {
|
|
339
|
+
return {
|
|
340
|
+
menu: "menuitem",
|
|
341
|
+
listbox: "option"
|
|
342
|
+
}[ this.options.role ];
|
|
343
|
+
},
|
|
344
|
+
|
|
345
|
+
focus: function( event, item ) {
|
|
346
|
+
var nested, focused;
|
|
347
|
+
this.blur( event, event && event.type === "focus" );
|
|
348
|
+
|
|
349
|
+
this._scrollIntoView( item );
|
|
350
|
+
|
|
351
|
+
this.active = item.first();
|
|
352
|
+
focused = this.active.children( "a" ).addClass( "ui-state-focus" );
|
|
353
|
+
// Only update aria-activedescendant if there's a role
|
|
354
|
+
// otherwise we assume focus is managed elsewhere
|
|
355
|
+
if ( this.options.role ) {
|
|
356
|
+
this.element.attr( "aria-activedescendant", focused.attr( "id" ) );
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
// Highlight active parent menu item, if any
|
|
360
|
+
this.active
|
|
361
|
+
.parent()
|
|
362
|
+
.closest( ".ui-menu-item" )
|
|
363
|
+
.children( "a:first" )
|
|
364
|
+
.addClass( "ui-state-active" );
|
|
365
|
+
|
|
366
|
+
if ( event && event.type === "keydown" ) {
|
|
367
|
+
this._close();
|
|
368
|
+
} else {
|
|
369
|
+
this.timer = this._delay(function() {
|
|
370
|
+
this._close();
|
|
371
|
+
}, this.delay );
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
nested = item.children( ".ui-menu" );
|
|
375
|
+
if ( nested.length && ( /^mouse/.test( event.type ) ) ) {
|
|
376
|
+
this._startOpening(nested);
|
|
377
|
+
}
|
|
378
|
+
this.activeMenu = item.parent();
|
|
379
|
+
|
|
380
|
+
this._trigger( "focus", event, { item: item } );
|
|
381
|
+
},
|
|
382
|
+
|
|
383
|
+
_scrollIntoView: function( item ) {
|
|
384
|
+
var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight;
|
|
385
|
+
if ( this._hasScroll() ) {
|
|
386
|
+
borderTop = parseFloat( $.css( this.activeMenu[0], "borderTopWidth" ) ) || 0;
|
|
387
|
+
paddingTop = parseFloat( $.css( this.activeMenu[0], "paddingTop" ) ) || 0;
|
|
388
|
+
offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop;
|
|
389
|
+
scroll = this.activeMenu.scrollTop();
|
|
390
|
+
elementHeight = this.activeMenu.height();
|
|
391
|
+
itemHeight = item.height();
|
|
392
|
+
|
|
393
|
+
if ( offset < 0 ) {
|
|
394
|
+
this.activeMenu.scrollTop( scroll + offset );
|
|
395
|
+
} else if ( offset + itemHeight > elementHeight ) {
|
|
396
|
+
this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight );
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
|
|
401
|
+
blur: function( event, fromFocus ) {
|
|
402
|
+
if ( !fromFocus ) {
|
|
403
|
+
clearTimeout( this.timer );
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
if ( !this.active ) {
|
|
407
|
+
return;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
this.active.children( "a" ).removeClass( "ui-state-focus" );
|
|
411
|
+
this.active = null;
|
|
412
|
+
|
|
413
|
+
this._trigger( "blur", event, { item: this.active } );
|
|
414
|
+
},
|
|
415
|
+
|
|
416
|
+
_startOpening: function( submenu ) {
|
|
417
|
+
clearTimeout( this.timer );
|
|
418
|
+
|
|
419
|
+
// Don't open if already open fixes a Firefox bug that caused a .5 pixel
|
|
420
|
+
// shift in the submenu position when mousing over the carat icon
|
|
421
|
+
if ( submenu.attr( "aria-hidden" ) !== "true" ) {
|
|
422
|
+
return;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
this.timer = this._delay(function() {
|
|
426
|
+
this._close();
|
|
427
|
+
this._open( submenu );
|
|
428
|
+
}, this.delay );
|
|
429
|
+
},
|
|
430
|
+
|
|
431
|
+
_open: function( submenu ) {
|
|
432
|
+
var position = $.extend({
|
|
433
|
+
of: this.active
|
|
434
|
+
}, this.options.position );
|
|
435
|
+
|
|
436
|
+
clearTimeout( this.timer );
|
|
437
|
+
this.element.find( ".ui-menu" ).not( submenu.parents( ".ui-menu" ) )
|
|
438
|
+
.hide()
|
|
439
|
+
.attr( "aria-hidden", "true" );
|
|
440
|
+
|
|
441
|
+
submenu
|
|
442
|
+
.show()
|
|
443
|
+
.removeAttr( "aria-hidden" )
|
|
444
|
+
.attr( "aria-expanded", "true" )
|
|
445
|
+
.position( position );
|
|
446
|
+
},
|
|
447
|
+
|
|
448
|
+
collapseAll: function( event, all ) {
|
|
449
|
+
clearTimeout( this.timer );
|
|
450
|
+
this.timer = this._delay(function() {
|
|
451
|
+
// If we were passed an event, look for the submenu that contains the event
|
|
452
|
+
var currentMenu = all ? this.element :
|
|
453
|
+
$( event && event.target ).closest( this.element.find( ".ui-menu" ) );
|
|
454
|
+
|
|
455
|
+
// If we found no valid submenu ancestor, use the main menu to close all sub menus anyway
|
|
456
|
+
if ( !currentMenu.length ) {
|
|
457
|
+
currentMenu = this.element;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
this._close( currentMenu );
|
|
461
|
+
|
|
462
|
+
this.blur( event );
|
|
463
|
+
this.activeMenu = currentMenu;
|
|
464
|
+
}, this.delay );
|
|
465
|
+
},
|
|
466
|
+
|
|
467
|
+
// With no arguments, closes the currently active menu - if nothing is active
|
|
468
|
+
// it closes all menus. If passed an argument, it will search for menus BELOW
|
|
469
|
+
_close: function( startMenu ) {
|
|
470
|
+
if ( !startMenu ) {
|
|
471
|
+
startMenu = this.active ? this.active.parent() : this.element;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
startMenu
|
|
475
|
+
.find( ".ui-menu" )
|
|
476
|
+
.hide()
|
|
477
|
+
.attr( "aria-hidden", "true" )
|
|
478
|
+
.attr( "aria-expanded", "false" )
|
|
479
|
+
.end()
|
|
480
|
+
.find( "a.ui-state-active" )
|
|
481
|
+
.removeClass( "ui-state-active" );
|
|
482
|
+
},
|
|
483
|
+
|
|
484
|
+
collapse: function( event ) {
|
|
485
|
+
var newItem = this.active &&
|
|
486
|
+
this.active.parent().closest( ".ui-menu-item", this.element );
|
|
487
|
+
if ( newItem && newItem.length ) {
|
|
488
|
+
this._close();
|
|
489
|
+
this.focus( event, newItem );
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
|
|
493
|
+
expand: function( event ) {
|
|
494
|
+
var newItem = this.active &&
|
|
495
|
+
this.active
|
|
496
|
+
.children( ".ui-menu " )
|
|
497
|
+
.children( ".ui-menu-item" )
|
|
498
|
+
.first();
|
|
499
|
+
|
|
500
|
+
if ( newItem && newItem.length ) {
|
|
501
|
+
this._open( newItem.parent() );
|
|
502
|
+
|
|
503
|
+
// Delay so Firefox will not hide activedescendant change in expanding submenu from AT
|
|
504
|
+
this._delay(function() {
|
|
505
|
+
this.focus( event, newItem );
|
|
506
|
+
});
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
|
|
510
|
+
next: function( event ) {
|
|
511
|
+
this._move( "next", "first", event );
|
|
512
|
+
},
|
|
513
|
+
|
|
514
|
+
previous: function( event ) {
|
|
515
|
+
this._move( "prev", "last", event );
|
|
516
|
+
},
|
|
517
|
+
|
|
518
|
+
isFirstItem: function() {
|
|
519
|
+
return this.active && !this.active.prevAll( ".ui-menu-item" ).length;
|
|
520
|
+
},
|
|
521
|
+
|
|
522
|
+
isLastItem: function() {
|
|
523
|
+
return this.active && !this.active.nextAll( ".ui-menu-item" ).length;
|
|
524
|
+
},
|
|
525
|
+
|
|
526
|
+
_move: function( direction, filter, event ) {
|
|
527
|
+
var next;
|
|
528
|
+
if ( this.active ) {
|
|
529
|
+
if ( direction === "first" || direction === "last" ) {
|
|
530
|
+
next = this.active
|
|
531
|
+
[ direction === "first" ? "prevAll" : "nextAll" ]( ".ui-menu-item" )
|
|
532
|
+
.eq( -1 );
|
|
533
|
+
} else {
|
|
534
|
+
next = this.active
|
|
535
|
+
[ direction + "All" ]( ".ui-menu-item" )
|
|
536
|
+
.eq( 0 );
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
if ( !next || !next.length || !this.active ) {
|
|
540
|
+
next = this.activeMenu.children( ".ui-menu-item" )[ filter ]();
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
this.focus( event, next );
|
|
544
|
+
},
|
|
545
|
+
|
|
546
|
+
nextPage: function( event ) {
|
|
547
|
+
var item, base, height;
|
|
548
|
+
|
|
549
|
+
if ( !this.active ) {
|
|
550
|
+
this.next( event );
|
|
551
|
+
return;
|
|
552
|
+
}
|
|
553
|
+
if ( this.isLastItem() ) {
|
|
554
|
+
return;
|
|
555
|
+
}
|
|
556
|
+
if ( this._hasScroll() ) {
|
|
557
|
+
base = this.active.offset().top;
|
|
558
|
+
height = this.element.height();
|
|
559
|
+
this.active.nextAll( ".ui-menu-item" ).each(function() {
|
|
560
|
+
item = $( this );
|
|
561
|
+
return item.offset().top - base - height < 0;
|
|
562
|
+
});
|
|
563
|
+
|
|
564
|
+
this.focus( event, item );
|
|
565
|
+
} else {
|
|
566
|
+
this.focus( event, this.activeMenu.children( ".ui-menu-item" )
|
|
567
|
+
[ !this.active ? "first" : "last" ]() );
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
|
|
571
|
+
previousPage: function( event ) {
|
|
572
|
+
var item, base, height;
|
|
573
|
+
if ( !this.active ) {
|
|
574
|
+
this.next( event );
|
|
575
|
+
return;
|
|
576
|
+
}
|
|
577
|
+
if ( this.isFirstItem() ) {
|
|
578
|
+
return;
|
|
579
|
+
}
|
|
580
|
+
if ( this._hasScroll() ) {
|
|
581
|
+
base = this.active.offset().top;
|
|
582
|
+
height = this.element.height();
|
|
583
|
+
this.active.prevAll( ".ui-menu-item" ).each(function() {
|
|
584
|
+
item = $( this );
|
|
585
|
+
return item.offset().top - base + height > 0;
|
|
586
|
+
});
|
|
587
|
+
|
|
588
|
+
this.focus( event, item );
|
|
589
|
+
} else {
|
|
590
|
+
this.focus( event, this.activeMenu.children( ".ui-menu-item" ).first() );
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
|
|
594
|
+
_hasScroll: function() {
|
|
595
|
+
return this.element.outerHeight() < this.element.prop( "scrollHeight" );
|
|
596
|
+
},
|
|
597
|
+
|
|
598
|
+
select: function( event ) {
|
|
599
|
+
// TODO: It should never be possible to not have an active item at this
|
|
600
|
+
// point, but the tests don't trigger mouseenter before click.
|
|
601
|
+
this.active = this.active || $( event.target ).closest( ".ui-menu-item" );
|
|
602
|
+
var ui = { item: this.active };
|
|
603
|
+
if ( !this.active.has( ".ui-menu" ).length ) {
|
|
604
|
+
this.collapseAll( event, true );
|
|
605
|
+
}
|
|
606
|
+
this._trigger( "select", event, ui );
|
|
607
|
+
}
|
|
608
|
+
});
|
|
609
|
+
|
|
610
|
+
}( jQuery ));
|