curation_concerns 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -9
- data/.rspec +1 -1
- data/.rubocop.yml +185 -0
- data/.travis.yml +0 -10
- data/CONTRIBUTING.md +117 -0
- data/Gemfile +5 -2
- data/README.md +18 -11
- data/Rakefile +23 -11
- data/VERSION +1 -1
- data/app/assets/images/audio.png +0 -0
- data/app/assets/images/loading.gif +0 -0
- data/app/assets/images/progressbar.gif +0 -0
- data/app/assets/javascripts/curation_concerns/application.js +2 -8
- data/app/assets/javascripts/curation_concerns/curation_concerns.js +1 -15
- data/app/assets/javascripts/curation_concerns/facet_mine.js +4 -10
- data/app/assets/javascripts/curation_concerns/fileupload.js +6 -0
- data/app/assets/javascripts/curation_concerns/uploader.js +183 -0
- data/app/assets/stylesheets/curation_concerns/_curation_concerns.scss +3 -0
- data/app/assets/stylesheets/curation_concerns/_positioning.scss +6 -0
- data/app/assets/stylesheets/curation_concerns/fileupload/jquery.fileupload-ui.scss +86 -0
- data/app/assets/stylesheets/curation_concerns/fileupload/thumbnail-scaling.css +3 -0
- data/app/assets/stylesheets/curation_concerns/fileupload.scss +48 -0
- data/app/assets/stylesheets/curation_concerns/modules/attributes.scss +10 -0
- data/app/assets/stylesheets/curation_concerns/modules/embargoes.scss +1 -1
- data/app/assets/stylesheets/curation_concerns/modules/forms.scss +0 -10
- data/app/assets/stylesheets/curation_concerns/modules/search_results.scss +7 -8
- data/app/controllers/concerns/curation_concerns/api.rb +77 -0
- data/app/controllers/concerns/curation_concerns/application_controller_behavior.rb +30 -12
- data/app/controllers/concerns/curation_concerns/catalog_controller.rb +9 -276
- data/app/controllers/concerns/curation_concerns/collections_controller_behavior.rb +51 -40
- data/app/controllers/concerns/curation_concerns/curation_concern_controller.rb +60 -30
- data/app/controllers/concerns/curation_concerns/download_behavior.rb +51 -37
- data/app/controllers/concerns/curation_concerns/embargoes_controller_behavior.rb +29 -29
- data/app/controllers/concerns/curation_concerns/file_sets_controller_behavior.rb +198 -0
- data/app/controllers/concerns/curation_concerns/leases_controller_behavior.rb +27 -20
- data/app/controllers/concerns/curation_concerns/manages_embargoes.rb +2 -7
- data/app/controllers/concerns/curation_concerns/parent_container.rb +20 -4
- data/app/controllers/concerns/curation_concerns/single_use_links_controller_behavior.rb +48 -0
- data/app/controllers/concerns/curation_concerns/single_use_links_viewer_controller_behavior.rb +75 -0
- data/app/controllers/concerns/curation_concerns/themed_layout_controller.rb +0 -1
- data/app/controllers/concerns/curation_concerns/upload_sets_controller_behavior.rb +38 -0
- data/app/controllers/concerns/curation_concerns/welcome_controller_behavior.rb +8 -0
- data/app/controllers/concerns/curation_concerns/without_namespace.rb +2 -1
- data/app/controllers/curation_concerns/classify_concerns_controller.rb +9 -9
- data/app/controllers/curation_concerns/file_sets_controller.rb +5 -0
- data/app/controllers/curation_concerns/permissions_controller.rb +2 -3
- data/app/controllers/curation_concerns/single_use_links_controller.rb +5 -0
- data/app/controllers/curation_concerns/single_use_links_viewer_controller.rb +21 -0
- data/app/controllers/downloads_controller.rb +0 -1
- data/app/controllers/embargoes_controller.rb +0 -2
- data/app/controllers/leases_controller.rb +0 -2
- data/app/controllers/registrations_controller.rb +1 -2
- data/app/controllers/upload_sets_controller.rb +3 -0
- data/app/controllers/welcome_controller.rb +3 -0
- data/app/forms/curation_concerns/forms/collection_edit_form.rb +18 -2
- data/app/forms/curation_concerns/forms/file_set_edit_form.rb +15 -0
- data/app/forms/curation_concerns/forms/work_form.rb +57 -0
- data/app/helpers/curation_concerns/ability_helper.rb +24 -24
- data/app/helpers/curation_concerns/catalog_helper.rb +9 -8
- data/app/helpers/curation_concerns/collections_helper.rb +9 -12
- data/app/helpers/curation_concerns/embargo_helper.rb +0 -2
- data/app/helpers/curation_concerns/file_set_helper.rb +31 -0
- data/app/helpers/curation_concerns/lease_helper.rb +0 -3
- data/app/helpers/curation_concerns/main_app_helpers.rb +1 -3
- data/app/helpers/curation_concerns/render_constraints_helper.rb +5 -5
- data/app/helpers/curation_concerns/search_paths_helper.rb +5 -7
- data/app/helpers/curation_concerns/title_helper.rb +3 -7
- data/app/helpers/curation_concerns/url_helper.rb +4 -6
- data/app/inputs/multifile_input.rb +8 -0
- data/app/jobs/visibility_copy_job.rb +22 -0
- data/app/presenters/curation_concerns/collection_presenter.rb +14 -32
- data/app/presenters/curation_concerns/embargo_presenter.rb +26 -0
- data/app/presenters/curation_concerns/file_set_presenter.rb +34 -0
- data/app/presenters/curation_concerns/lease_presenter.rb +30 -0
- data/app/presenters/curation_concerns/model_proxy.rb +27 -0
- data/app/presenters/curation_concerns/permission_badge.rb +61 -0
- data/app/presenters/curation_concerns/presenter_factory.rb +45 -0
- data/app/presenters/curation_concerns/presents_attributes.rb +25 -0
- data/app/presenters/curation_concerns/version_list_presenter.rb +18 -0
- data/app/presenters/curation_concerns/version_presenter.rb +27 -0
- data/app/presenters/curation_concerns/work_show_presenter.rb +33 -0
- data/app/renderers/curation_concerns/attribute_renderer.rb +75 -0
- data/app/search_builders/curation_concerns/deactivated_embargo_search_builder.rb +10 -0
- data/app/search_builders/curation_concerns/deactivated_lease_search_builder.rb +10 -0
- data/app/search_builders/curation_concerns/embargo_search_builder.rb +23 -0
- data/app/search_builders/curation_concerns/expired_embargo_search_builder.rb +11 -0
- data/app/search_builders/curation_concerns/expired_lease_search_builder.rb +11 -0
- data/app/search_builders/curation_concerns/lease_search_builder.rb +23 -0
- data/app/search_builders/curation_concerns/search_builder.rb +10 -16
- data/app/services/curation_concerns/curation_concern.rb +0 -5
- data/app/services/curation_concerns/embargo_service.rb +26 -4
- data/app/services/curation_concerns/lease_service.rb +14 -5
- data/app/services/curation_concerns/parent_service.rb +19 -0
- data/app/services/curation_concerns/restriction_service.rb +24 -0
- data/app/services/rights_service.rb +14 -0
- data/app/views/catalog/_action_menu_partials/_collection.html.erb +1 -1
- data/app/views/catalog/_action_menu_partials/_default.html.erb +5 -3
- data/app/views/catalog/_document_list.html.erb +1 -1
- data/app/views/catalog/index.html.erb +1 -35
- data/app/views/collections/_edit_descriptions.html.erb +3 -4
- data/app/views/collections/_form.html.erb +1 -1
- data/app/views/collections/_form_permission.html.erb +1 -1
- data/app/views/collections/_search_form.html.erb +10 -0
- data/app/views/collections/_show_actions.html.erb +3 -3
- data/app/views/collections/_sort_and_per_page.html.erb +2 -2
- data/app/views/collections/show.html.erb +6 -6
- data/app/views/curation_concerns/base/_attribute_rows.html.erb +7 -0
- data/app/views/curation_concerns/base/_attributes.html.erb +6 -13
- data/app/views/curation_concerns/base/_form.html.erb +4 -5
- data/app/views/curation_concerns/base/_form_descriptive_fields.erb +2 -4
- data/app/views/curation_concerns/base/_form_files_and_links.html.erb +3 -5
- data/app/views/curation_concerns/base/_form_permission.html.erb +13 -26
- data/app/views/curation_concerns/base/_form_permission_note.html.erb +15 -0
- data/app/views/curation_concerns/base/_form_permission_under_embargo.html.erb +2 -2
- data/app/views/curation_concerns/base/_form_permission_under_lease.html.erb +2 -2
- data/app/views/curation_concerns/base/_form_representative_image.html.erb +16 -4
- data/app/views/curation_concerns/base/_form_rights.html.erb +17 -0
- data/app/views/curation_concerns/base/_form_supplementary_fields.html.erb +4 -9
- data/app/views/curation_concerns/base/_related_files.html.erb +4 -4
- data/app/views/curation_concerns/base/_representative_media.html.erb +2 -4
- data/app/views/curation_concerns/base/_versioning.html.erb +23 -0
- data/app/views/curation_concerns/base/show.html.erb +13 -10
- data/app/views/curation_concerns/base/show.json.jbuilder +1 -0
- data/app/views/curation_concerns/base/versions.html.erb +6 -0
- data/app/views/curation_concerns/file_sets/_actions.html.erb +16 -0
- data/app/views/curation_concerns/file_sets/_file_set.html.erb +12 -0
- data/app/views/curation_concerns/{generic_files → file_sets}/_form.html.erb +7 -7
- data/app/views/curation_concerns/file_sets/_multiple_upload.html.erb +3 -0
- data/app/views/curation_concerns/{generic_files → file_sets}/edit.html.erb +0 -0
- data/app/views/curation_concerns/file_sets/jq_upload.json.jbuilder +8 -0
- data/app/views/curation_concerns/file_sets/media_display/_audio.html.erb +6 -0
- data/app/views/curation_concerns/file_sets/media_display/_default.html.erb +4 -0
- data/app/views/curation_concerns/file_sets/media_display/_image.html.erb +8 -0
- data/app/views/curation_concerns/file_sets/media_display/_office_document.html.erb +7 -0
- data/app/views/curation_concerns/file_sets/media_display/_pdf.html.erb +7 -0
- data/app/views/curation_concerns/file_sets/media_display/_video.html.erb +6 -0
- data/app/views/curation_concerns/file_sets/show.html.erb +15 -0
- data/app/views/curation_concerns/file_sets/show.json.jbuilder +1 -0
- data/app/views/curation_concerns/file_sets/upload/_alerts.html.erb +19 -0
- data/app/views/curation_concerns/file_sets/upload/_form.html.erb +6 -0
- data/app/views/curation_concerns/file_sets/upload/_form_fields.html.erb +45 -0
- data/app/views/curation_concerns/file_sets/upload/_script_templates.html.erb +61 -0
- data/app/views/curation_concerns/single_use_links/new_download.html.erb +5 -0
- data/app/views/curation_concerns/single_use_links/new_show.html.erb +5 -0
- data/app/views/curation_concerns/single_use_links_viewer/show.html.erb +10 -0
- data/app/views/error/single_use_error.html.erb +19 -0
- data/app/views/layouts/error.html.erb +33 -0
- data/app/views/leases/_list_expired_active_leases.html.erb +6 -1
- data/app/views/records/_rights_modal.html.erb +1 -0
- data/app/views/records/edit_fields/_default.html.erb +5 -0
- data/app/views/records/show_fields/_default.html.erb +6 -0
- data/app/views/shared/_add_content.html.erb +2 -14
- data/app/views/shared/_add_works.html.erb +14 -0
- data/app/views/shared/_my_actions.html.erb +9 -1
- data/app/views/shared/_site_actions.html.erb +1 -1
- data/app/views/shared/_site_search.html.erb +7 -7
- data/app/views/upload_sets/_edit.js.erb +15 -0
- data/app/views/upload_sets/_metadata.html.erb +50 -0
- data/app/views/upload_sets/_more_metadata.html.erb +7 -0
- data/app/views/upload_sets/edit.html.erb +26 -0
- data/app/views/{catalog/_home_text.html.erb → welcome/index.html.erb} +1 -0
- data/config/initializers/simple_form.rb +14 -0
- data/config/jetty.yml +5 -0
- data/config/locales/curation_concerns.en.yml +25 -4
- data/config/routes.rb +5 -0
- data/curation_concerns.gemspec +4 -6
- data/lib/curation_concerns/callbacks/registry.rb +48 -0
- data/lib/curation_concerns/callbacks.rb +26 -0
- data/lib/curation_concerns/controller_resource.rb +4 -4
- data/lib/curation_concerns/engine.rb +4 -2
- data/lib/curation_concerns/rails/routes.rb +23 -19
- data/lib/curation_concerns/single_use_error.rb +3 -0
- data/lib/curation_concerns/spec_support.rb +0 -2
- data/lib/curation_concerns/version.rb +1 -1
- data/lib/curation_concerns.rb +1 -2
- data/lib/generators/curation_concerns/install_generator.rb +34 -30
- data/lib/generators/curation_concerns/templates/catalog_controller.rb +236 -0
- data/lib/generators/curation_concerns/templates/config/authorities/rights.yml +19 -0
- data/lib/generators/curation_concerns/templates/{curation_concerns.css.scss → curation_concerns.scss} +0 -0
- data/lib/generators/curation_concerns/work/templates/actor_spec.rb.erb +1 -1
- data/lib/generators/curation_concerns/work/templates/controller_spec.rb.erb +1 -1
- data/lib/generators/curation_concerns/work/templates/form.rb.erb +8 -0
- data/lib/generators/curation_concerns/work/templates/form_spec.rb.erb +10 -0
- data/lib/generators/curation_concerns/work/templates/model.rb.erb +2 -2
- data/lib/generators/curation_concerns/work/templates/model_spec.rb.erb +1 -1
- data/lib/generators/curation_concerns/work/work_generator.rb +31 -26
- data/spec/abilities/collection_abilities_spec.rb +13 -13
- data/spec/abilities/embargo_and_lease_ability_spec.rb +23 -0
- data/spec/abilities/file_set_abilities_spec.rb +67 -0
- data/spec/abilities/generic_work_abilities_spec.rb +12 -12
- data/spec/actors/curation_concerns/embargo_actor_spec.rb +38 -0
- data/spec/actors/curation_concerns/file_set_actor_spec.rb +180 -0
- data/spec/actors/curation_concerns/lease_actor_spec.rb +39 -0
- data/spec/actors/curation_concerns/manages_embargoes_actor_spec.rb +44 -38
- data/spec/actors/curation_concerns/work_actor_spec.rb +121 -63
- data/spec/controllers/catalog_controller_spec.rb +30 -32
- data/spec/controllers/curation_concerns/classify_concerns_controller_spec.rb +2 -3
- data/spec/controllers/curation_concerns/collections_controller_spec.rb +93 -76
- data/spec/controllers/curation_concerns/file_sets_controller_json_spec.rb +106 -0
- data/spec/controllers/curation_concerns/file_sets_controller_spec.rb +237 -0
- data/spec/controllers/curation_concerns/generic_works_controller_json_spec.rb +85 -0
- data/spec/controllers/curation_concerns/generic_works_controller_spec.rb +84 -72
- data/spec/controllers/curation_concerns/permissions_controller_spec.rb +8 -11
- data/spec/controllers/curation_concerns/single_use_links_controller_spec.rb +79 -0
- data/spec/controllers/curation_concerns/single_use_links_viewer_controller_spec.rb +74 -0
- data/spec/controllers/downloads_controller_spec.rb +49 -24
- data/spec/controllers/embargoes_controller_spec.rb +42 -51
- data/spec/controllers/leases_controller_spec.rb +53 -42
- data/spec/controllers/upload_sets_controller_spec.rb +76 -0
- data/spec/controllers/welcome_controller_spec.rb +12 -0
- data/spec/factories/collections.rb +5 -1
- data/spec/factories/{generic_files.rb → file_sets.rb} +6 -6
- data/spec/factories/generic_works.rb +5 -6
- data/spec/factories/users.rb +2 -4
- data/spec/features/add_file_spec.rb +11 -12
- data/spec/features/catalog_search_spec.rb +43 -0
- data/spec/features/collection_spec.rb +61 -46
- data/spec/features/create_work_spec.rb +26 -19
- data/spec/features/embargo_spec.rb +13 -12
- data/spec/features/lease_spec.rb +15 -16
- data/spec/features/update_file_spec.rb +11 -13
- data/spec/features/work_generator_spec.rb +34 -26
- data/spec/{helpers/curation_concerns/.keep → fixtures/empty_file.txt} +0 -0
- data/spec/fixtures/test.pdf +0 -0
- data/spec/forms/collection_edit_form_spec.rb +53 -9
- data/spec/forms/file_set_edit_form_spec.rb +53 -0
- data/spec/forms/work_form_spec.rb +54 -0
- data/spec/helpers/catalog_helper_spec.rb +9 -10
- data/spec/helpers/configuration_helper_spec.rb +1 -2
- data/spec/helpers/curation_concerns/collections_helper_spec.rb +8 -9
- data/spec/helpers/curation_concerns/file_set_helper_spec.rb +61 -0
- data/spec/helpers/render_constraints_helper_spec.rb +4 -4
- data/spec/helpers/url_helper_spec.rb +8 -7
- data/spec/indexers/collection_indexer_spec.rb +14 -0
- data/spec/indexers/file_set_indexing_service_spec.rb +69 -0
- data/spec/indexers/generic_work_indexing_service_spec.rb +22 -0
- data/spec/inputs/multifile_input_spec.rb +32 -0
- data/spec/jobs/active_fedora_id_based_job_spec.rb +10 -8
- data/spec/jobs/audit_job_spec.rb +28 -20
- data/spec/jobs/characterize_job_spec.rb +10 -15
- data/spec/jobs/create_derivatives_job_spec.rb +11 -9
- data/spec/jobs/import_url_job_spec.rb +14 -21
- data/spec/jobs/ingest_file_job_spec.rb +45 -0
- data/spec/jobs/ingest_local_file_job_spec.rb +13 -15
- data/spec/jobs/upload_set_update_job_spec.rb +30 -0
- data/spec/jobs/visibility_copy_job_spec.rb +61 -0
- data/spec/lib/curation_concerns/callbacks/registry_spec.rb +54 -0
- data/spec/lib/curation_concerns/callbacks_spec.rb +27 -0
- data/spec/lib/curation_concerns/messages_spec.rb +29 -30
- data/spec/lib/curation_concerns/readable_permissions_spec.rb +18 -20
- data/spec/lib/curation_concerns/writable_permissions_spec.rb +2 -4
- data/spec/matchers/metadata_field_matchers.rb +1 -1
- data/spec/matchers/response_matchers.rb +2 -2
- data/spec/matchers.rb +3 -2
- data/spec/models/checksum_audit_log_spec.rb +37 -32
- data/spec/models/curation_concerns/collection_behavior_spec.rb +50 -37
- data/spec/models/curation_concerns/file_set/derivatives_spec.rb +84 -0
- data/spec/models/curation_concerns/work_behavior_spec.rb +53 -0
- data/spec/models/file_set_spec.rb +601 -0
- data/spec/models/generic_work_spec.rb +15 -14
- data/spec/models/single_use_link_spec.rb +69 -0
- data/spec/models/solr_document_spec.rb +67 -0
- data/spec/models/upload_set_spec.rb +39 -0
- data/spec/models/user_spec.rb +7 -8
- data/spec/presenters/curation_concerns/collection_presenter_spec.rb +8 -24
- data/spec/presenters/curation_concerns/file_set_presenter_spec.rb +59 -0
- data/spec/presenters/curation_concerns/permission_badge_spec.rb +29 -0
- data/spec/presenters/curation_concerns/presenter_factory_spec.rb +29 -0
- data/spec/presenters/curation_concerns/version_list_presenter_spec.rb +32 -0
- data/spec/presenters/curation_concerns/version_presenter_spec.rb +51 -0
- data/spec/presenters/curation_concerns/work_show_presenter_spec.rb +35 -0
- data/spec/presenters/embargo_presenter_spec.rb +48 -0
- data/spec/presenters/lease_presenter_spec.rb +48 -0
- data/spec/renderers/curation_concerns/attribute_renderer_spec.rb +14 -0
- data/spec/routing/curation_concerns/routes_spec.rb +38 -12
- data/spec/routing/route_spec.rb +38 -39
- data/spec/search_builders/curation_concerns/embargo_search_builder_spec.rb +17 -0
- data/spec/search_builders/curation_concerns/lease_search_builder_spec.rb +17 -0
- data/spec/search_builders/curation_concerns/search_builder_spec.rb +60 -0
- data/spec/services/derivative_path_spec.rb +16 -0
- data/spec/services/embargo_service_spec.rb +15 -14
- data/spec/services/file_set_audit_service_spec.rb +71 -0
- data/spec/services/lease_service_spec.rb +13 -13
- data/spec/services/lock_manager_spec.rb +12 -0
- data/spec/services/parent_service_spec.rb +13 -0
- data/spec/services/persist_derivatives_spec.rb +24 -0
- data/spec/services/persist_directly_contained_output_file_service_spec.rb +14 -0
- data/spec/services/repository_audit_service_spec.rb +8 -7
- data/spec/services/rights_service_spec.rb +17 -0
- data/spec/services/thumbnail_path_service_spec.rb +43 -0
- data/spec/services/versioning_service_spec.rb +8 -9
- data/spec/spec_helper.rb +21 -13
- data/spec/support/curation_concerns/factory_helpers.rb +1 -0
- data/spec/support/features/fixture_file_upload.rb +3 -1
- data/spec/support/features/session_helpers.rb +3 -4
- data/spec/support/features.rb +1 -4
- data/spec/support/input_support.rb +11 -0
- data/spec/support/matchers/api_responses.rb +22 -0
- data/spec/support/shared/shared_examples_has_dc_metadata.rb +0 -2
- data/spec/support/shared/shared_examples_is_embargoable.rb +1 -3
- data/spec/support/shared/shared_examples_with_access_rights.rb +13 -16
- data/spec/tasks/rake_spec.rb +9 -11
- data/spec/test_app_templates/Gemfile.extra +4 -1
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +3 -35
- data/spec/views/catalog/index.html.erb_spec.rb +7 -10
- data/spec/views/curation_concerns/base/_attributes.html.erb_spec.rb +9 -6
- data/spec/views/curation_concerns/base/_form_permission.html.erb_spec.rb +13 -0
- data/spec/views/curation_concerns/base/show.html.erb_spec.rb +35 -15
- data/spec/views/curation_concerns/base/show.json.jbuilder_spec.rb +21 -0
- data/spec/views/curation_concerns/file_sets/_file_set.html.erb_spec.rb +37 -0
- data/spec/views/curation_concerns/file_sets/show.json.jbuilder_spec.rb +21 -0
- data/spec/views/curation_concerns/permissions/confirm.html.erb_spec.rb +6 -6
- data/spec/views/error/single_use_error.html.erb_spec.rb +8 -0
- data/spec/views/layouts/error.html.erb_spec.rb +8 -0
- data/spec/views/shared/_add_content.html.erb_spec.rb +33 -20
- data/spec/views/shared/_my_actions.html.erb_spec.rb +18 -6
- data/spec/views/single_use_links/new_download.html.erb_spec.rb +29 -0
- data/spec/views/single_use_links_viewer/show.html.erb_spec.rb +32 -0
- data/tasks/jetty.rake +1 -1
- data/vendor/assets/javascrips/fileupload/jquery.fileupload-process.js +175 -0
- data/vendor/assets/javascrips/fileupload/jquery.fileupload-ui.js +710 -0
- data/vendor/assets/javascrips/fileupload/jquery.fileupload-validate.js +122 -0
- data/vendor/assets/javascrips/fileupload/jquery.fileupload.js +1477 -0
- data/vendor/assets/javascrips/fileupload/locale.js +27 -0
- data/vendor/assets/javascrips/fileupload/tmpl.js +87 -0
- metadata +242 -213
- data/app/assets/javascripts/curation_concerns/help_modal.js +0 -36
- data/app/assets/javascripts/curation_concerns/link_groups.js.coffee +0 -123
- data/app/assets/javascripts/curation_concerns/link_users.js.coffee +0 -126
- data/app/assets/javascripts/curation_concerns/proxy_rights.js.coffee +0 -95
- data/app/assets/javascripts/curation_concerns/proxy_submission.js +0 -23
- data/app/assets/javascripts/curation_concerns/select_works.js.coffee +0 -20
- data/app/controllers/catalog_controller.rb +0 -3
- data/app/controllers/concerns/curation_concerns/generic_files_controller_behavior.rb +0 -149
- data/app/controllers/curation_concerns/generic_files_controller.rb +0 -13
- data/app/datastreams/curation_concerns/generic_work_rdf_properties.rb +0 -57
- data/app/datastreams/generic_work_metadata.rb +0 -3
- data/app/forms/curation_concerns/forms/generic_file_edit_form.rb +0 -15
- data/app/forms/curation_concerns/forms/generic_work_edit_form.rb +0 -9
- data/app/helpers/curation_concerns/attribute_helper.rb +0 -67
- data/app/helpers/curation_concerns/generic_file_helper.rb +0 -19
- data/app/helpers/curation_concerns/thumbnail_helper.rb +0 -11
- data/app/presenters/curation_concerns/generic_file_presenter.rb +0 -14
- data/app/presenters/curation_concerns/generic_work_presenter.rb +0 -13
- data/app/views/catalog/_index_default.html.erb +0 -17
- data/app/views/collections/_form_representative_image.html.erb +0 -13
- data/app/views/collections/_identifier_and_action.html.erb +0 -15
- data/app/views/curation_concerns/base/_form_content_license.html.erb +0 -16
- data/app/views/curation_concerns/base/_form_editors.html.erb +0 -15
- data/app/views/curation_concerns/generic_files/_actions.html.erb +0 -16
- data/app/views/curation_concerns/generic_files/_generic_file.html.erb +0 -12
- data/app/views/curation_concerns/generic_files/_media_display.html.erb +0 -19
- data/app/views/curation_concerns/generic_files/jq_upload.json.jbuilder +0 -8
- data/app/views/curation_concerns/generic_files/show.html.erb +0 -15
- data/app/workers/visibility_copy_worker.rb +0 -30
- data/curation_concerns-models/.gitignore +0 -17
- data/curation_concerns-models/Gemfile +0 -4
- data/curation_concerns-models/LICENSE.md +0 -177
- data/curation_concerns-models/README.md +0 -42
- data/curation_concerns-models/Rakefile +0 -1
- data/curation_concerns-models/app/actors/concerns/curation_concerns/manages_embargoes_actor.rb +0 -99
- data/curation_concerns-models/app/actors/curation_concerns/base_actor.rb +0 -90
- data/curation_concerns-models/app/actors/curation_concerns/generic_file_actor.rb +0 -150
- data/curation_concerns-models/app/actors/curation_concerns/work_actor_behavior.rb +0 -88
- data/curation_concerns-models/app/jobs/active_fedora_id_based_job.rb +0 -22
- data/curation_concerns-models/app/jobs/active_fedora_pid_based_job.rb +0 -6
- data/curation_concerns-models/app/jobs/audit_job.rb +0 -58
- data/curation_concerns-models/app/jobs/characterize_job.rb +0 -11
- data/curation_concerns-models/app/jobs/copy_permissions_job.rb +0 -24
- data/curation_concerns-models/app/jobs/create_derivatives_job.rb +0 -15
- data/curation_concerns-models/app/jobs/import_url_job.rb +0 -56
- data/curation_concerns-models/app/jobs/ingest_local_file_job.rb +0 -48
- data/curation_concerns-models/app/jobs/resolrize_job.rb +0 -9
- data/curation_concerns-models/app/models/checksum_audit_log.rb +0 -21
- data/curation_concerns-models/app/models/concerns/curation_concerns/ability.rb +0 -34
- data/curation_concerns-models/app/models/concerns/curation_concerns/basic_metadata.rb +0 -87
- data/curation_concerns-models/app/models/concerns/curation_concerns/collection_behavior.rb +0 -47
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/belongs_to_works.rb +0 -53
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/characterization.rb +0 -89
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/content.rb +0 -8
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/export.rb +0 -343
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/full_text_indexing.rb +0 -12
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/indexing.rb +0 -14
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/versions.rb +0 -16
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file.rb +0 -5
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file_behavior.rb +0 -44
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_work_behavior.rb +0 -38
- data/curation_concerns-models/app/models/concerns/curation_concerns/has_representative.rb +0 -14
- data/curation_concerns-models/app/models/concerns/curation_concerns/human_readable_type.rb +0 -23
- data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/readable.rb +0 -19
- data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/writable.rb +0 -75
- data/curation_concerns-models/app/models/concerns/curation_concerns/permissions.rb +0 -7
- data/curation_concerns-models/app/models/concerns/curation_concerns/serializers.rb +0 -15
- data/curation_concerns-models/app/models/concerns/curation_concerns/solr_document_behavior.rb +0 -135
- data/curation_concerns-models/app/models/concerns/curation_concerns/user.rb +0 -65
- data/curation_concerns-models/app/models/concerns/curation_concerns/with_basic_metadata.rb +0 -98
- data/curation_concerns-models/app/models/concerns/curation_concerns/with_generic_files.rb +0 -29
- data/curation_concerns-models/app/models/curation_concerns/classify_concern.rb +0 -47
- data/curation_concerns-models/app/models/curation_concerns/quick_classification_query.rb +0 -31
- data/curation_concerns-models/app/models/datastreams/fits_datastream.rb +0 -148
- data/curation_concerns-models/app/models/version_committer.rb +0 -2
- data/curation_concerns-models/app/services/curation_concerns/characterization_service.rb +0 -71
- data/curation_concerns-models/app/services/curation_concerns/full_text_extraction_service.rb +0 -38
- data/curation_concerns-models/app/services/curation_concerns/generic_file_audit_service.rb +0 -85
- data/curation_concerns-models/app/services/curation_concerns/generic_file_indexing_service.rb +0 -14
- data/curation_concerns-models/app/services/curation_concerns/generic_work_indexing_service.rb +0 -16
- data/curation_concerns-models/app/services/curation_concerns/noid.rb +0 -23
- data/curation_concerns-models/app/services/curation_concerns/repository_audit_service.rb +0 -9
- data/curation_concerns-models/app/services/curation_concerns/versioning_service.rb +0 -27
- data/curation_concerns-models/config/locales/curation_concerns.en.yml +0 -6
- data/curation_concerns-models/curation_concerns-models.gemspec +0 -34
- data/curation_concerns-models/lib/curation_concerns/messages.rb +0 -66
- data/curation_concerns-models/lib/curation_concerns/models/engine.rb +0 -61
- data/curation_concerns-models/lib/curation_concerns/models/resque.rb +0 -36
- data/curation_concerns-models/lib/curation_concerns/models/utils.rb +0 -22
- data/curation_concerns-models/lib/curation_concerns/models/version.rb +0 -5
- data/curation_concerns-models/lib/curation_concerns/models.rb +0 -32
- data/curation_concerns-models/lib/generators/curation_concerns/models/abstract_migration_generator.rb +0 -30
- data/curation_concerns-models/lib/generators/curation_concerns/models/clamav_generator.rb +0 -19
- data/curation_concerns-models/lib/generators/curation_concerns/models/fulltext_generator.rb +0 -28
- data/curation_concerns-models/lib/generators/curation_concerns/models/install_generator.rb +0 -70
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/collection.rb +0 -4
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/generic_file.rb +0 -4
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/clamav.rb +0 -1
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/curation_concerns.rb +0 -123
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/mime_types.rb +0 -6
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis.yml +0 -9
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis_config.rb +0 -32
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque-pool.yml +0 -1
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_admin.rb +0 -10
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_config.rb +0 -5
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_checksum_audit_logs.rb +0 -19
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_version_committers.rb +0 -15
- data/curation_concerns-models/lib/tasks/curation_concerns-models_tasks.rake +0 -75
- data/curation_concerns-models/lib/tasks/migrate.rake +0 -13
- data/curation_concerns-models/lib/tasks/resque.rake +0 -13
- data/curation_concerns-models/lib/tasks/solr_reindex.rake +0 -8
- data/lib/curation_concerns/configuration.rb +0 -74
- data/lib/generators/curation_concerns/templates/curation_concerns_config.rb +0 -2
- data/solr_conf/conf/solrconfig.xml +0 -223
- data/spec/abilities/generic_file_abilities_spec.rb +0 -62
- data/spec/actors/curation_concerns/generic_file_actor_spec.rb +0 -116
- data/spec/controllers/curation_concerns/generic_files_controller_spec.rb +0 -251
- data/spec/forms/generic_file_edit_form_spec.rb +0 -33
- data/spec/helpers/thumbnail_helper_spec.rb +0 -21
- data/spec/jobs/copy_permissions_job_spec.rb +0 -49
- data/spec/jobs/curation_concerns_resque_queue_spec.rb +0 -49
- data/spec/models/curation_concerns/generic_file/derivatives_spec.rb +0 -88
- data/spec/models/curation_concerns/generic_work_behavior_spec.rb +0 -35
- data/spec/models/fits_datastream_spec.rb +0 -127
- data/spec/models/generic_file_spec.rb +0 -619
- data/spec/presenters/curation_concerns/generic_file_presenter_spec.rb +0 -16
- data/spec/services/characterization_service_spec.rb +0 -30
- data/spec/services/full_text_extraction_service_spec.rb +0 -5
- data/spec/services/generic_file_audit_service_spec.rb +0 -71
- data/spec/services/generic_file_indexing_service_spec.rb +0 -57
- data/spec/services/generic_work_indexing_service_spec.rb +0 -18
- data/spec/workers/visibility_copy_worker_spec.rb +0 -70
- data/vendor/assets/javascripts/handlebars.js +0 -2278
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.autocomplete.js +0 -602
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.core.js +0 -356
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect-highlight.js +0 -50
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect.js +0 -1276
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.menu.js +0 -610
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.position.js +0 -498
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.widget.js +0 -528
- data/vendor/assets/javascripts/jquery.tokeninput.js +0 -1061
- data/vendor/assets/stylesheets/jquery-ui-lightness.css +0 -474
- data/vendor/assets/stylesheets/token-input-facebook.css +0 -122
- data/vendor/assets/stylesheets/token-input-mac.css +0 -204
- data/vendor/assets/stylesheets/token-input.css +0 -127
@@ -1,602 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* jQuery UI Autocomplete @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/autocomplete/
|
10
|
-
*
|
11
|
-
* Depends:
|
12
|
-
* jquery.ui.core.js
|
13
|
-
* jquery.ui.widget.js
|
14
|
-
* jquery.ui.position.js
|
15
|
-
* jquery.ui.menu.js
|
16
|
-
*/
|
17
|
-
(function( $, undefined ) {
|
18
|
-
|
19
|
-
// used to prevent race conditions with remote data sources
|
20
|
-
var requestIndex = 0;
|
21
|
-
|
22
|
-
$.widget( "ui.autocomplete", {
|
23
|
-
version: "@VERSION",
|
24
|
-
defaultElement: "<input>",
|
25
|
-
options: {
|
26
|
-
appendTo: "body",
|
27
|
-
autoFocus: false,
|
28
|
-
delay: 300,
|
29
|
-
minLength: 1,
|
30
|
-
position: {
|
31
|
-
my: "left top",
|
32
|
-
at: "left bottom",
|
33
|
-
collision: "none"
|
34
|
-
},
|
35
|
-
source: null,
|
36
|
-
|
37
|
-
// callbacks
|
38
|
-
change: null,
|
39
|
-
close: null,
|
40
|
-
focus: null,
|
41
|
-
open: null,
|
42
|
-
response: null,
|
43
|
-
search: null,
|
44
|
-
select: null
|
45
|
-
},
|
46
|
-
|
47
|
-
pending: 0,
|
48
|
-
|
49
|
-
_create: function() {
|
50
|
-
// Some browsers only repeat keydown events, not keypress events,
|
51
|
-
// so we use the suppressKeyPress flag to determine if we've already
|
52
|
-
// handled the keydown event. #7269
|
53
|
-
// Unfortunately the code for & in keypress is the same as the up arrow,
|
54
|
-
// so we use the suppressKeyPressRepeat flag to avoid handling keypress
|
55
|
-
// events when we know the keydown event was used to modify the
|
56
|
-
// search term. #7799
|
57
|
-
var suppressKeyPress, suppressKeyPressRepeat, suppressInput;
|
58
|
-
|
59
|
-
this.isMultiLine = this._isMultiLine();
|
60
|
-
this.valueMethod = this.element[ this.element.is( "input,textarea" ) ? "val" : "text" ];
|
61
|
-
this.isNewMenu = true;
|
62
|
-
|
63
|
-
this.element
|
64
|
-
.addClass( "ui-autocomplete-input" )
|
65
|
-
.attr( "autocomplete", "off" );
|
66
|
-
|
67
|
-
this._on( this.element, {
|
68
|
-
keydown: function( event ) {
|
69
|
-
if ( this.element.prop( "readOnly" ) ) {
|
70
|
-
suppressKeyPress = true;
|
71
|
-
suppressInput = true;
|
72
|
-
suppressKeyPressRepeat = true;
|
73
|
-
return;
|
74
|
-
}
|
75
|
-
|
76
|
-
suppressKeyPress = false;
|
77
|
-
suppressInput = false;
|
78
|
-
suppressKeyPressRepeat = false;
|
79
|
-
var keyCode = $.ui.keyCode;
|
80
|
-
switch( event.keyCode ) {
|
81
|
-
case keyCode.PAGE_UP:
|
82
|
-
suppressKeyPress = true;
|
83
|
-
this._move( "previousPage", event );
|
84
|
-
break;
|
85
|
-
case keyCode.PAGE_DOWN:
|
86
|
-
suppressKeyPress = true;
|
87
|
-
this._move( "nextPage", event );
|
88
|
-
break;
|
89
|
-
case keyCode.UP:
|
90
|
-
suppressKeyPress = true;
|
91
|
-
this._keyEvent( "previous", event );
|
92
|
-
break;
|
93
|
-
case keyCode.DOWN:
|
94
|
-
suppressKeyPress = true;
|
95
|
-
this._keyEvent( "next", event );
|
96
|
-
break;
|
97
|
-
case keyCode.ENTER:
|
98
|
-
case keyCode.NUMPAD_ENTER:
|
99
|
-
// when menu is open and has focus
|
100
|
-
if ( this.menu.active ) {
|
101
|
-
// #6055 - Opera still allows the keypress to occur
|
102
|
-
// which causes forms to submit
|
103
|
-
suppressKeyPress = true;
|
104
|
-
event.preventDefault();
|
105
|
-
this.menu.select( event );
|
106
|
-
}
|
107
|
-
break;
|
108
|
-
case keyCode.TAB:
|
109
|
-
if ( this.menu.active ) {
|
110
|
-
this.menu.select( event );
|
111
|
-
}
|
112
|
-
break;
|
113
|
-
case keyCode.ESCAPE:
|
114
|
-
if ( this.menu.element.is( ":visible" ) ) {
|
115
|
-
this._value( this.term );
|
116
|
-
this.close( event );
|
117
|
-
// Different browsers have different default behavior for escape
|
118
|
-
// Single press can mean undo or clear
|
119
|
-
// Double press in IE means clear the whole form
|
120
|
-
event.preventDefault();
|
121
|
-
}
|
122
|
-
break;
|
123
|
-
default:
|
124
|
-
suppressKeyPressRepeat = true;
|
125
|
-
// search timeout should be triggered before the input value is changed
|
126
|
-
this._searchTimeout( event );
|
127
|
-
break;
|
128
|
-
}
|
129
|
-
},
|
130
|
-
keypress: function( event ) {
|
131
|
-
if ( suppressKeyPress ) {
|
132
|
-
suppressKeyPress = false;
|
133
|
-
event.preventDefault();
|
134
|
-
return;
|
135
|
-
}
|
136
|
-
if ( suppressKeyPressRepeat ) {
|
137
|
-
return;
|
138
|
-
}
|
139
|
-
|
140
|
-
// replicate some key handlers to allow them to repeat in Firefox and Opera
|
141
|
-
var keyCode = $.ui.keyCode;
|
142
|
-
switch( event.keyCode ) {
|
143
|
-
case keyCode.PAGE_UP:
|
144
|
-
this._move( "previousPage", event );
|
145
|
-
break;
|
146
|
-
case keyCode.PAGE_DOWN:
|
147
|
-
this._move( "nextPage", event );
|
148
|
-
break;
|
149
|
-
case keyCode.UP:
|
150
|
-
this._keyEvent( "previous", event );
|
151
|
-
break;
|
152
|
-
case keyCode.DOWN:
|
153
|
-
this._keyEvent( "next", event );
|
154
|
-
break;
|
155
|
-
}
|
156
|
-
},
|
157
|
-
input: function( event ) {
|
158
|
-
if ( suppressInput ) {
|
159
|
-
suppressInput = false;
|
160
|
-
event.preventDefault();
|
161
|
-
return;
|
162
|
-
}
|
163
|
-
this._searchTimeout( event );
|
164
|
-
},
|
165
|
-
focus: function() {
|
166
|
-
this.selectedItem = null;
|
167
|
-
this.previous = this._value();
|
168
|
-
},
|
169
|
-
blur: function( event ) {
|
170
|
-
if ( this.cancelBlur ) {
|
171
|
-
delete this.cancelBlur;
|
172
|
-
return;
|
173
|
-
}
|
174
|
-
|
175
|
-
clearTimeout( this.searching );
|
176
|
-
this.close( event );
|
177
|
-
this._change( event );
|
178
|
-
}
|
179
|
-
});
|
180
|
-
|
181
|
-
this._initSource();
|
182
|
-
this.menu = $( "<ul>" )
|
183
|
-
.addClass( "ui-autocomplete" )
|
184
|
-
.appendTo( this.document.find( this.options.appendTo || "body" )[ 0 ] )
|
185
|
-
.menu({
|
186
|
-
// custom key handling for now
|
187
|
-
input: $(),
|
188
|
-
// disable ARIA support, the live region takes care of that
|
189
|
-
role: null
|
190
|
-
})
|
191
|
-
.zIndex( this.element.zIndex() + 1 )
|
192
|
-
.hide()
|
193
|
-
.data( "menu" );
|
194
|
-
|
195
|
-
this._on( this.menu.element, {
|
196
|
-
mousedown: function( event ) {
|
197
|
-
// prevent moving focus out of the text field
|
198
|
-
event.preventDefault();
|
199
|
-
|
200
|
-
// IE doesn't prevent moving focus even with event.preventDefault()
|
201
|
-
// so we set a flag to know when we should ignore the blur event
|
202
|
-
this.cancelBlur = true;
|
203
|
-
this._delay(function() {
|
204
|
-
delete this.cancelBlur;
|
205
|
-
});
|
206
|
-
|
207
|
-
// clicking on the scrollbar causes focus to shift to the body
|
208
|
-
// but we can't detect a mouseup or a click immediately afterward
|
209
|
-
// so we have to track the next mousedown and close the menu if
|
210
|
-
// the user clicks somewhere outside of the autocomplete
|
211
|
-
var menuElement = this.menu.element[ 0 ];
|
212
|
-
if ( !$( event.target ).closest( ".ui-menu-item" ).length ) {
|
213
|
-
this._delay(function() {
|
214
|
-
var that = this;
|
215
|
-
this.document.one( "mousedown", function( event ) {
|
216
|
-
if ( event.target !== that.element[ 0 ] &&
|
217
|
-
event.target !== menuElement &&
|
218
|
-
!$.contains( menuElement, event.target ) ) {
|
219
|
-
that.close();
|
220
|
-
}
|
221
|
-
});
|
222
|
-
});
|
223
|
-
}
|
224
|
-
},
|
225
|
-
menufocus: function( event, ui ) {
|
226
|
-
// #7024 - Prevent accidental activation of menu items in Firefox
|
227
|
-
if ( this.isNewMenu ) {
|
228
|
-
this.isNewMenu = false;
|
229
|
-
if ( event.originalEvent && /^mouse/.test( event.originalEvent.type ) ) {
|
230
|
-
this.menu.blur();
|
231
|
-
|
232
|
-
this.document.one( "mousemove", function() {
|
233
|
-
$( event.target ).trigger( event.originalEvent );
|
234
|
-
});
|
235
|
-
|
236
|
-
return;
|
237
|
-
}
|
238
|
-
}
|
239
|
-
|
240
|
-
// back compat for _renderItem using item.autocomplete, via #7810
|
241
|
-
// TODO remove the fallback, see #8156
|
242
|
-
var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" );
|
243
|
-
if ( false !== this._trigger( "focus", event, { item: item } ) ) {
|
244
|
-
// use value to match what will end up in the input, if it was a key event
|
245
|
-
if ( event.originalEvent && /^key/.test( event.originalEvent.type ) ) {
|
246
|
-
this._value( item.value );
|
247
|
-
}
|
248
|
-
} else {
|
249
|
-
// Normally the input is populated with the item's value as the
|
250
|
-
// menu is navigated, causing screen readers to notice a change and
|
251
|
-
// announce the item. Since the focus event was canceled, this doesn't
|
252
|
-
// happen, so we update the live region so that screen readers can
|
253
|
-
// still notice the change and announce it.
|
254
|
-
this.liveRegion.text( item.value );
|
255
|
-
}
|
256
|
-
},
|
257
|
-
menuselect: function( event, ui ) {
|
258
|
-
// back compat for _renderItem using item.autocomplete, via #7810
|
259
|
-
// TODO remove the fallback, see #8156
|
260
|
-
var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" ),
|
261
|
-
previous = this.previous;
|
262
|
-
|
263
|
-
// only trigger when focus was lost (click on menu)
|
264
|
-
if ( this.element[0] !== this.document[0].activeElement ) {
|
265
|
-
this.element.focus();
|
266
|
-
this.previous = previous;
|
267
|
-
// #6109 - IE triggers two focus events and the second
|
268
|
-
// is asynchronous, so we need to reset the previous
|
269
|
-
// term synchronously and asynchronously :-(
|
270
|
-
this._delay(function() {
|
271
|
-
this.previous = previous;
|
272
|
-
this.selectedItem = item;
|
273
|
-
});
|
274
|
-
}
|
275
|
-
|
276
|
-
if ( false !== this._trigger( "select", event, { item: item } ) ) {
|
277
|
-
this._value( item.value );
|
278
|
-
}
|
279
|
-
// reset the term after the select event
|
280
|
-
// this allows custom select handling to work properly
|
281
|
-
this.term = this._value();
|
282
|
-
|
283
|
-
this.close( event );
|
284
|
-
this.selectedItem = item;
|
285
|
-
}
|
286
|
-
});
|
287
|
-
|
288
|
-
this.liveRegion = $( "<span>", {
|
289
|
-
role: "status",
|
290
|
-
"aria-live": "polite"
|
291
|
-
})
|
292
|
-
.addClass( "ui-helper-hidden-accessible" )
|
293
|
-
.insertAfter( this.element );
|
294
|
-
|
295
|
-
if ( $.fn.bgiframe ) {
|
296
|
-
this.menu.element.bgiframe();
|
297
|
-
}
|
298
|
-
|
299
|
-
// turning off autocomplete prevents the browser from remembering the
|
300
|
-
// value when navigating through history, so we re-enable autocomplete
|
301
|
-
// if the page is unloaded before the widget is destroyed. #7790
|
302
|
-
this._on( this.window, {
|
303
|
-
beforeunload: function() {
|
304
|
-
this.element.removeAttr( "autocomplete" );
|
305
|
-
}
|
306
|
-
});
|
307
|
-
},
|
308
|
-
|
309
|
-
_destroy: function() {
|
310
|
-
clearTimeout( this.searching );
|
311
|
-
this.element
|
312
|
-
.removeClass( "ui-autocomplete-input" )
|
313
|
-
.removeAttr( "autocomplete" );
|
314
|
-
this.menu.element.remove();
|
315
|
-
this.liveRegion.remove();
|
316
|
-
},
|
317
|
-
|
318
|
-
_setOption: function( key, value ) {
|
319
|
-
this._super( key, value );
|
320
|
-
if ( key === "source" ) {
|
321
|
-
this._initSource();
|
322
|
-
}
|
323
|
-
if ( key === "appendTo" ) {
|
324
|
-
this.menu.element.appendTo( this.document.find( value || "body" )[0] );
|
325
|
-
}
|
326
|
-
if ( key === "disabled" && value && this.xhr ) {
|
327
|
-
this.xhr.abort();
|
328
|
-
}
|
329
|
-
},
|
330
|
-
|
331
|
-
_isMultiLine: function() {
|
332
|
-
// Textareas are always multi-line
|
333
|
-
if ( this.element.is( "textarea" ) ) {
|
334
|
-
return true;
|
335
|
-
}
|
336
|
-
// Inputs are always single-line, even if inside a contentEditable element
|
337
|
-
// IE also treats inputs as contentEditable
|
338
|
-
if ( this.element.is( "input" ) ) {
|
339
|
-
return false;
|
340
|
-
}
|
341
|
-
// All other element types are determined by whether or not they're contentEditable
|
342
|
-
return this.element.prop( "isContentEditable" );
|
343
|
-
},
|
344
|
-
|
345
|
-
_initSource: function() {
|
346
|
-
var array, url,
|
347
|
-
that = this;
|
348
|
-
if ( $.isArray(this.options.source) ) {
|
349
|
-
array = this.options.source;
|
350
|
-
this.source = function( request, response ) {
|
351
|
-
response( $.ui.autocomplete.filter( array, request.term ) );
|
352
|
-
};
|
353
|
-
} else if ( typeof this.options.source === "string" ) {
|
354
|
-
url = this.options.source;
|
355
|
-
this.source = function( request, response ) {
|
356
|
-
if ( that.xhr ) {
|
357
|
-
that.xhr.abort();
|
358
|
-
}
|
359
|
-
that.xhr = $.ajax({
|
360
|
-
url: url,
|
361
|
-
data: request,
|
362
|
-
dataType: "json",
|
363
|
-
success: function( data ) {
|
364
|
-
response( data );
|
365
|
-
},
|
366
|
-
error: function() {
|
367
|
-
response( [] );
|
368
|
-
}
|
369
|
-
});
|
370
|
-
};
|
371
|
-
} else {
|
372
|
-
this.source = this.options.source;
|
373
|
-
}
|
374
|
-
},
|
375
|
-
|
376
|
-
_searchTimeout: function( event ) {
|
377
|
-
clearTimeout( this.searching );
|
378
|
-
this.searching = this._delay(function() {
|
379
|
-
// only search if the value has changed
|
380
|
-
if ( this.term !== this._value() ) {
|
381
|
-
this.selectedItem = null;
|
382
|
-
this.search( null, event );
|
383
|
-
}
|
384
|
-
}, this.options.delay );
|
385
|
-
},
|
386
|
-
|
387
|
-
search: function( value, event ) {
|
388
|
-
value = value != null ? value : this._value();
|
389
|
-
|
390
|
-
// always save the actual value, not the one passed as an argument
|
391
|
-
this.term = this._value();
|
392
|
-
|
393
|
-
if ( value.length < this.options.minLength ) {
|
394
|
-
return this.close( event );
|
395
|
-
}
|
396
|
-
|
397
|
-
if ( this._trigger( "search", event ) === false ) {
|
398
|
-
return;
|
399
|
-
}
|
400
|
-
|
401
|
-
return this._search( value );
|
402
|
-
},
|
403
|
-
|
404
|
-
_search: function( value ) {
|
405
|
-
this.pending++;
|
406
|
-
this.element.addClass( "ui-autocomplete-loading" );
|
407
|
-
this.cancelSearch = false;
|
408
|
-
|
409
|
-
this.source( { term: value }, this._response() );
|
410
|
-
},
|
411
|
-
|
412
|
-
_response: function() {
|
413
|
-
var that = this,
|
414
|
-
index = ++requestIndex;
|
415
|
-
|
416
|
-
return function( content ) {
|
417
|
-
if ( index === requestIndex ) {
|
418
|
-
that.__response( content );
|
419
|
-
}
|
420
|
-
|
421
|
-
that.pending--;
|
422
|
-
if ( !that.pending ) {
|
423
|
-
that.element.removeClass( "ui-autocomplete-loading" );
|
424
|
-
}
|
425
|
-
};
|
426
|
-
},
|
427
|
-
|
428
|
-
__response: function( content ) {
|
429
|
-
if ( content ) {
|
430
|
-
content = this._normalize( content );
|
431
|
-
}
|
432
|
-
this._trigger( "response", null, { content: content } );
|
433
|
-
if ( !this.options.disabled && content && content.length && !this.cancelSearch ) {
|
434
|
-
this._suggest( content );
|
435
|
-
this._trigger( "open" );
|
436
|
-
} else {
|
437
|
-
// use ._close() instead of .close() so we don't cancel future searches
|
438
|
-
this._close();
|
439
|
-
}
|
440
|
-
},
|
441
|
-
|
442
|
-
close: function( event ) {
|
443
|
-
this.cancelSearch = true;
|
444
|
-
this._close( event );
|
445
|
-
},
|
446
|
-
|
447
|
-
_close: function( event ) {
|
448
|
-
if ( this.menu.element.is( ":visible" ) ) {
|
449
|
-
this.menu.element.hide();
|
450
|
-
this.menu.blur();
|
451
|
-
this.isNewMenu = true;
|
452
|
-
this._trigger( "close", event );
|
453
|
-
}
|
454
|
-
},
|
455
|
-
|
456
|
-
_change: function( event ) {
|
457
|
-
if ( this.previous !== this._value() ) {
|
458
|
-
this._trigger( "change", event, { item: this.selectedItem } );
|
459
|
-
}
|
460
|
-
},
|
461
|
-
|
462
|
-
_normalize: function( items ) {
|
463
|
-
// assume all items have the right format when the first item is complete
|
464
|
-
if ( items.length && items[0].label && items[0].value ) {
|
465
|
-
return items;
|
466
|
-
}
|
467
|
-
return $.map( items, function( item ) {
|
468
|
-
if ( typeof item === "string" ) {
|
469
|
-
return {
|
470
|
-
label: item,
|
471
|
-
value: item
|
472
|
-
};
|
473
|
-
}
|
474
|
-
return $.extend({
|
475
|
-
label: item.label || item.value,
|
476
|
-
value: item.value || item.label
|
477
|
-
}, item );
|
478
|
-
});
|
479
|
-
},
|
480
|
-
|
481
|
-
_suggest: function( items ) {
|
482
|
-
var ul = this.menu.element
|
483
|
-
.empty()
|
484
|
-
.zIndex( this.element.zIndex() + 1 );
|
485
|
-
this._renderMenu( ul, items );
|
486
|
-
this.menu.refresh();
|
487
|
-
|
488
|
-
// size and position menu
|
489
|
-
ul.show();
|
490
|
-
this._resizeMenu();
|
491
|
-
ul.position( $.extend({
|
492
|
-
of: this.element
|
493
|
-
}, this.options.position ));
|
494
|
-
|
495
|
-
if ( this.options.autoFocus ) {
|
496
|
-
this.menu.next();
|
497
|
-
}
|
498
|
-
},
|
499
|
-
|
500
|
-
_resizeMenu: function() {
|
501
|
-
var ul = this.menu.element;
|
502
|
-
ul.outerWidth( Math.max(
|
503
|
-
// Firefox wraps long text (possibly a rounding bug)
|
504
|
-
// so we add 1px to avoid the wrapping (#7513)
|
505
|
-
ul.width( "" ).outerWidth() + 1,
|
506
|
-
this.element.outerWidth()
|
507
|
-
) );
|
508
|
-
},
|
509
|
-
|
510
|
-
_renderMenu: function( ul, items ) {
|
511
|
-
var that = this;
|
512
|
-
$.each( items, function( index, item ) {
|
513
|
-
that._renderItemData( ul, item );
|
514
|
-
});
|
515
|
-
},
|
516
|
-
|
517
|
-
_renderItemData: function( ul, item ) {
|
518
|
-
return this._renderItem( ul, item ).data( "ui-autocomplete-item", item );
|
519
|
-
},
|
520
|
-
|
521
|
-
_renderItem: function( ul, item ) {
|
522
|
-
return $( "<li>" )
|
523
|
-
.append( $( "<a>" ).text( item.label ) )
|
524
|
-
.appendTo( ul );
|
525
|
-
},
|
526
|
-
|
527
|
-
_move: function( direction, event ) {
|
528
|
-
if ( !this.menu.element.is( ":visible" ) ) {
|
529
|
-
this.search( null, event );
|
530
|
-
return;
|
531
|
-
}
|
532
|
-
if ( this.menu.isFirstItem() && /^previous/.test( direction ) ||
|
533
|
-
this.menu.isLastItem() && /^next/.test( direction ) ) {
|
534
|
-
this._value( this.term );
|
535
|
-
this.menu.blur();
|
536
|
-
return;
|
537
|
-
}
|
538
|
-
this.menu[ direction ]( event );
|
539
|
-
},
|
540
|
-
|
541
|
-
widget: function() {
|
542
|
-
return this.menu.element;
|
543
|
-
},
|
544
|
-
|
545
|
-
_value: function() {
|
546
|
-
return this.valueMethod.apply( this.element, arguments );
|
547
|
-
},
|
548
|
-
|
549
|
-
_keyEvent: function( keyEvent, event ) {
|
550
|
-
if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
|
551
|
-
this._move( keyEvent, event );
|
552
|
-
|
553
|
-
// prevents moving cursor to beginning/end of the text field in some browsers
|
554
|
-
event.preventDefault();
|
555
|
-
}
|
556
|
-
}
|
557
|
-
});
|
558
|
-
|
559
|
-
$.extend( $.ui.autocomplete, {
|
560
|
-
escapeRegex: function( value ) {
|
561
|
-
return value.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&");
|
562
|
-
},
|
563
|
-
filter: function(array, term) {
|
564
|
-
var matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), "i" );
|
565
|
-
return $.grep( array, function(value) {
|
566
|
-
return matcher.test( value.label || value.value || value );
|
567
|
-
});
|
568
|
-
}
|
569
|
-
});
|
570
|
-
|
571
|
-
|
572
|
-
// live region extension, adding a `messages` option
|
573
|
-
// NOTE: This is an experimental API. We are still investigating
|
574
|
-
// a full solution for string manipulation and internationalization.
|
575
|
-
$.widget( "ui.autocomplete", $.ui.autocomplete, {
|
576
|
-
options: {
|
577
|
-
messages: {
|
578
|
-
noResults: "No search results.",
|
579
|
-
results: function( amount ) {
|
580
|
-
return amount + ( amount > 1 ? " results are" : " result is" ) +
|
581
|
-
" available, use up and down arrow keys to navigate.";
|
582
|
-
}
|
583
|
-
}
|
584
|
-
},
|
585
|
-
|
586
|
-
__response: function( content ) {
|
587
|
-
var message;
|
588
|
-
this._superApply( arguments );
|
589
|
-
if ( this.options.disabled || this.cancelSearch ) {
|
590
|
-
return;
|
591
|
-
}
|
592
|
-
if ( content && content.length ) {
|
593
|
-
message = this.options.messages.results( content.length );
|
594
|
-
} else {
|
595
|
-
message = this.options.messages.noResults;
|
596
|
-
}
|
597
|
-
this.liveRegion.text( message );
|
598
|
-
}
|
599
|
-
});
|
600
|
-
|
601
|
-
|
602
|
-
}( jQuery ));
|