hyrax 2.8.0 → 3.0.0.pre.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +52 -51
- data/.engine_cart.yml +40 -1
- data/.gitignore +4 -0
- data/.regen +1 -1
- data/.rubocop.yml +11 -30
- data/.rubocop_fixme.yml +37 -61
- data/CONTRIBUTING.md +183 -0
- data/Gemfile +3 -1
- data/README.md +14 -17
- data/Rakefile +7 -0
- data/app/actors/hyrax/actors/abstract_actor.rb +1 -0
- data/app/actors/hyrax/actors/active_fedora_to_valkyrie.rb +59 -0
- data/app/actors/hyrax/actors/add_to_work_actor.rb +42 -39
- data/app/actors/hyrax/actors/apply_order_actor.rb +38 -37
- data/app/actors/hyrax/actors/apply_permission_template_actor.rb +20 -19
- data/app/actors/hyrax/actors/attach_members_actor.rb +57 -41
- data/app/actors/hyrax/actors/base_actor.rb +73 -47
- data/app/actors/hyrax/actors/cleanup_file_sets_actor.rb +13 -12
- data/app/actors/hyrax/actors/cleanup_trophies_actor.rb +4 -3
- data/app/actors/hyrax/actors/collections_membership_actor.rb +91 -136
- data/app/actors/hyrax/actors/create_with_files_actor.rb +38 -27
- data/app/actors/hyrax/actors/create_with_files_ordered_members_actor.rb +3 -2
- data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +50 -49
- data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +1 -0
- data/app/actors/hyrax/actors/default_admin_set_actor.rb +20 -19
- data/app/actors/hyrax/actors/embargo_actor.rb +1 -0
- data/app/actors/hyrax/actors/environment.rb +9 -1
- data/app/actors/hyrax/actors/featured_work_actor.rb +8 -7
- data/app/actors/hyrax/actors/file_actor.rb +83 -16
- data/app/actors/hyrax/actors/file_set_actor.rb +117 -58
- data/app/actors/hyrax/actors/initialize_workflow_actor.rb +5 -4
- data/app/actors/hyrax/actors/interpret_visibility_actor.rb +155 -163
- data/app/actors/hyrax/actors/lease_actor.rb +1 -0
- data/app/actors/hyrax/actors/model_actor.rb +12 -5
- data/app/actors/hyrax/actors/null_actor.rb +12 -0
- data/app/actors/hyrax/actors/optimistic_lock_validator.rb +12 -11
- data/app/actors/hyrax/actors/ordered_members_actor.rb +1 -1
- data/app/actors/hyrax/actors/terminator.rb +1 -0
- data/app/actors/hyrax/actors/transactional_request.rb +9 -8
- data/app/actors/hyrax/actors/transfer_request_actor.rb +8 -7
- data/app/actors/hyrax/actors/valkyrie_to_active_fedora.rb +60 -0
- data/app/assets/images/unauthorized.png +0 -0
- data/app/assets/javascripts/hyrax.js +1 -0
- data/app/assets/javascripts/hyrax/admin/admin_set/visibility.es6 +57 -0
- data/app/assets/javascripts/hyrax/autocomplete.es6 +29 -0
- data/app/assets/javascripts/hyrax/batch_select_all.js +5 -0
- data/app/assets/javascripts/hyrax/collapse.js +91 -0
- data/app/assets/javascripts/hyrax/collections.js +5 -4
- data/app/assets/javascripts/hyrax/collections/editor.es6 +1 -6
- data/app/assets/javascripts/hyrax/editor.es6 +9 -10
- data/app/assets/javascripts/hyrax/editor/controlled_vocabulary.es6 +1 -1
- data/app/assets/javascripts/hyrax/file_manager/save_manager.es6 +6 -5
- data/app/assets/javascripts/hyrax/monkey_patch_turbolinks.js +36 -0
- data/app/assets/javascripts/hyrax/nav_safety.js +23 -5
- data/app/assets/javascripts/hyrax/proxy_rights.js +8 -0
- data/app/assets/stylesheets/fileupload/jquery.fileupload-ui.scss +1 -15
- data/app/assets/stylesheets/hyrax/_collections.scss +8 -20
- data/app/assets/stylesheets/hyrax/_featured.scss +4 -0
- data/app/assets/stylesheets/hyrax/_file-listing.scss +1 -2
- data/app/assets/stylesheets/hyrax/_file_sets.scss +27 -0
- data/app/assets/stylesheets/hyrax/_forms.scss +0 -2
- data/app/assets/stylesheets/hyrax/_header.scss +1 -1
- data/app/assets/stylesheets/hyrax/_home-page.scss +23 -7
- data/app/assets/stylesheets/hyrax/_hyrax.scss +10 -10
- data/app/assets/stylesheets/hyrax/_login_signup.scss +20 -0
- data/app/assets/stylesheets/hyrax/_settings.scss +2 -2
- data/app/assets/stylesheets/hyrax/_styles.scss +10 -0
- data/app/assets/stylesheets/hyrax/_users.scss +16 -0
- data/app/assets/stylesheets/hyrax/_viewer.scss +14 -3
- data/app/assets/stylesheets/hyrax/_work-show.scss +42 -5
- data/app/assets/stylesheets/hyrax/dashboard.scss +3 -3
- data/app/authorities/qa/authorities/collections.rb +8 -7
- data/app/authorities/qa/authorities/find_works.rb +4 -3
- data/app/builders/hyrax/bootstrap_breadcrumbs_builder.rb +5 -4
- data/app/builders/hyrax/form_builder.rb +1 -0
- data/app/builders/hyrax/manifest_helper.rb +2 -1
- data/app/channels/hyrax/application_cable/channel.rb +1 -0
- data/app/channels/hyrax/application_cable/connection.rb +16 -15
- data/app/channels/hyrax/notifications_channel.rb +1 -0
- data/app/connections/hyrax/clean_connection.rb +9 -8
- data/app/controllers/concerns/hyrax/admin/stats_behavior.rb +6 -5
- data/app/controllers/concerns/hyrax/admin/users_controller_behavior.rb +4 -3
- data/app/controllers/concerns/hyrax/api.rb +23 -20
- data/app/controllers/concerns/hyrax/breadcrumbs.rb +3 -0
- data/app/controllers/concerns/hyrax/breadcrumbs_for_collections.rb +4 -3
- data/app/controllers/concerns/hyrax/breadcrumbs_for_works.rb +22 -21
- data/app/controllers/concerns/hyrax/collections.rb +1 -0
- data/app/controllers/concerns/hyrax/collections/accepts_batches.rb +26 -25
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +59 -58
- data/app/controllers/concerns/hyrax/controller.rb +57 -48
- data/app/controllers/concerns/hyrax/deny_access_override_behavior.rb +2 -1
- data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +7 -4
- data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +7 -3
- data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +69 -68
- data/app/controllers/concerns/hyrax/manages_embargoes.rb +1 -0
- data/app/controllers/concerns/hyrax/singular_subresource_controller.rb +1 -0
- data/app/controllers/concerns/hyrax/themed_layout_controller.rb +1 -0
- data/app/controllers/concerns/hyrax/works_controller_behavior.rb +242 -172
- data/app/controllers/hyrax/admin/admin_sets_controller.rb +50 -49
- data/app/controllers/hyrax/admin/appearances_controller.rb +7 -6
- data/app/controllers/hyrax/admin/collection_type_participants_controller.rb +1 -0
- data/app/controllers/hyrax/admin/collection_types_controller.rb +31 -32
- data/app/controllers/hyrax/admin/features_controller.rb +1 -0
- data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +47 -46
- data/app/controllers/hyrax/admin/permission_templates_controller.rb +63 -62
- data/app/controllers/hyrax/admin/stats_controller.rb +1 -0
- data/app/controllers/hyrax/admin/strategies_controller.rb +1 -0
- data/app/controllers/hyrax/admin/users_controller.rb +1 -0
- data/app/controllers/hyrax/admin/workflow_roles_controller.rb +4 -3
- data/app/controllers/hyrax/admin/workflows_controller.rb +4 -3
- data/app/controllers/hyrax/api/items_controller.rb +34 -33
- data/app/controllers/hyrax/api/zotero_controller.rb +39 -38
- data/app/controllers/hyrax/batch_edits_controller.rb +48 -54
- data/app/controllers/hyrax/batch_uploads_controller.rb +50 -49
- data/app/controllers/hyrax/citations_controller.rb +4 -3
- data/app/controllers/hyrax/collections_controller.rb +13 -12
- data/app/controllers/hyrax/contact_form_controller.rb +14 -10
- data/app/controllers/hyrax/content_blocks_controller.rb +13 -12
- data/app/controllers/hyrax/dashboard/collection_members_controller.rb +24 -23
- data/app/controllers/hyrax/dashboard/collections_controller.rb +226 -225
- data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +29 -28
- data/app/controllers/hyrax/dashboard/profiles_controller.rb +27 -26
- data/app/controllers/hyrax/dashboard/works_controller.rb +8 -7
- data/app/controllers/hyrax/dashboard_controller.rb +10 -0
- data/app/controllers/hyrax/depositors_controller.rb +35 -27
- data/app/controllers/hyrax/downloads_controller.rb +50 -58
- data/app/controllers/hyrax/embargoes_controller.rb +1 -0
- data/app/controllers/hyrax/featured_work_lists_controller.rb +4 -3
- data/app/controllers/hyrax/featured_works_controller.rb +1 -0
- data/app/controllers/hyrax/file_sets_controller.rb +96 -85
- data/app/controllers/hyrax/fixity_checks_controller.rb +9 -8
- data/app/controllers/hyrax/homepage_controller.rb +19 -18
- data/app/controllers/hyrax/leases_controller.rb +1 -0
- data/app/controllers/hyrax/my/collections_controller.rb +16 -15
- data/app/controllers/hyrax/my/highlights_controller.rb +22 -21
- data/app/controllers/hyrax/my/shares_controller.rb +8 -7
- data/app/controllers/hyrax/my/works_controller.rb +16 -15
- data/app/controllers/hyrax/my_controller.rb +18 -17
- data/app/controllers/hyrax/notifications_controller.rb +4 -3
- data/app/controllers/hyrax/operations_controller.rb +1 -0
- data/app/controllers/hyrax/pages_controller.rb +17 -16
- data/app/controllers/hyrax/permissions_controller.rb +2 -1
- data/app/controllers/hyrax/resource_sync_controller.rb +23 -22
- data/app/controllers/hyrax/single_use_links_controller.rb +13 -12
- data/app/controllers/hyrax/single_use_links_viewer_controller.rb +45 -44
- data/app/controllers/hyrax/static_controller.rb +1 -0
- data/app/controllers/hyrax/stats_controller.rb +11 -13
- data/app/controllers/hyrax/transfers_controller.rb +14 -13
- data/app/controllers/hyrax/trophies_controller.rb +1 -0
- data/app/controllers/hyrax/uploads_controller.rb +1 -0
- data/app/controllers/hyrax/users_controller.rb +57 -36
- data/app/controllers/hyrax/workflow_actions_controller.rb +19 -18
- data/app/conversions/power_converters.rb +1 -0
- data/app/conversions/power_converters/polymorphic_type.rb +2 -0
- data/app/conversions/power_converters/sipity_action.rb +2 -0
- data/app/conversions/power_converters/sipity_action_name.rb +2 -0
- data/app/conversions/power_converters/sipity_agent.rb +3 -0
- data/app/conversions/power_converters/sipity_entity.rb +2 -0
- data/app/conversions/power_converters/sipity_role.rb +2 -0
- data/app/conversions/power_converters/sipity_workflow_id.rb +1 -0
- data/app/conversions/power_converters/sipity_workflow_state.rb +3 -0
- data/app/forms/hyrax/forms/admin/appearance.rb +20 -19
- data/app/forms/hyrax/forms/admin/collection_type_form.rb +12 -1
- data/app/forms/hyrax/forms/admin/collection_type_participant_form.rb +1 -0
- data/app/forms/hyrax/forms/admin_set_form.rb +4 -3
- data/app/forms/hyrax/forms/batch_edit_form.rb +18 -17
- data/app/forms/hyrax/forms/batch_upload_form.rb +1 -1
- data/app/forms/hyrax/forms/collection_form.rb +25 -22
- data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +23 -22
- data/app/forms/hyrax/forms/file_manager_form.rb +4 -3
- data/app/forms/hyrax/forms/file_set_edit_form.rb +2 -1
- data/app/forms/hyrax/forms/permission_template_form.rb +178 -176
- data/app/forms/hyrax/forms/resource_form.rb +190 -0
- data/app/forms/hyrax/forms/widgets/admin_set_embargo_period.rb +1 -0
- data/app/forms/hyrax/forms/widgets/admin_set_visibility.rb +1 -0
- data/app/forms/hyrax/forms/work_form.rb +22 -22
- data/app/forms/hyrax/forms/workflow_action_form.rb +12 -5
- data/app/forms/hyrax/forms/workflow_responsibility_form.rb +1 -4
- data/app/helpers/hyrax/ability_helper.rb +5 -4
- data/app/helpers/hyrax/batch_edits_helper.rb +1 -0
- data/app/helpers/hyrax/blacklight_override.rb +1 -0
- data/app/helpers/hyrax/charts_helper.rb +1 -0
- data/app/helpers/hyrax/citations_behavior.rb +1 -0
- data/app/helpers/hyrax/citations_behaviors/common_behavior.rb +1 -0
- data/app/helpers/hyrax/citations_behaviors/formatters.rb +1 -0
- data/app/helpers/hyrax/citations_behaviors/formatters/apa_formatter.rb +40 -38
- data/app/helpers/hyrax/citations_behaviors/formatters/chicago_formatter.rb +14 -14
- data/app/helpers/hyrax/citations_behaviors/formatters/mla_formatter.rb +10 -9
- data/app/helpers/hyrax/citations_behaviors/formatters/open_url_formatter.rb +1 -0
- data/app/helpers/hyrax/citations_behaviors/name_behavior.rb +5 -4
- data/app/helpers/hyrax/citations_behaviors/publication_behavior.rb +5 -5
- data/app/helpers/hyrax/citations_behaviors/title_behavior.rb +2 -1
- data/app/helpers/hyrax/collections_helper.rb +57 -7
- data/app/helpers/hyrax/contact_form_helper.rb +24 -0
- data/app/helpers/hyrax/content_block_helper.rb +1 -0
- data/app/helpers/hyrax/content_block_helper_behavior.rb +2 -1
- data/app/helpers/hyrax/dashboard_helper_behavior.rb +1 -0
- data/app/helpers/hyrax/embargo_helper.rb +21 -0
- data/app/helpers/hyrax/file_set_helper.rb +2 -1
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +58 -49
- data/app/helpers/hyrax/iiif_helper.rb +9 -0
- data/app/helpers/hyrax/lease_helper.rb +21 -0
- data/app/helpers/hyrax/membership_helper.rb +48 -0
- data/app/helpers/hyrax/permission_levels_helper.rb +32 -0
- data/app/helpers/hyrax/permissions_helper.rb +8 -7
- data/app/helpers/hyrax/title_helper.rb +11 -5
- data/app/helpers/hyrax/trophy_helper.rb +1 -0
- data/app/helpers/hyrax/url_helper.rb +1 -0
- data/app/helpers/hyrax/work_form_helper.rb +48 -0
- data/app/indexers/concerns/hyrax/indexes_basic_metadata.rb +1 -0
- data/app/indexers/concerns/hyrax/indexes_linked_metadata.rb +1 -0
- data/app/indexers/hyrax/admin_set_indexer.rb +7 -1
- data/app/indexers/hyrax/basic_metadata_indexer.rb +37 -36
- data/app/indexers/hyrax/collection_indexer.rb +2 -1
- data/app/indexers/hyrax/collection_with_basic_metadata_indexer.rb +1 -0
- data/app/indexers/hyrax/deep_indexing_service.rb +65 -73
- data/app/indexers/hyrax/file_set_indexer.rb +21 -24
- data/app/indexers/hyrax/indexes_workflow.rb +7 -8
- data/app/indexers/hyrax/permission_indexer.rb +25 -0
- data/app/indexers/hyrax/repository_reindexer.rb +1 -0
- data/app/indexers/hyrax/resource_indexer.rb +13 -0
- data/app/indexers/hyrax/valkyrie_collection_indexer.rb +19 -0
- data/app/indexers/hyrax/valkyrie_indexer.rb +87 -0
- data/app/indexers/hyrax/valkyrie_work_indexer.rb +12 -0
- data/app/indexers/hyrax/visibility_indexer.rb +26 -0
- data/app/indexers/hyrax/work_indexer.rb +2 -1
- data/app/inputs/controlled_vocabulary_input.rb +62 -62
- data/app/inputs/multi_value_select_input.rb +31 -30
- data/app/inputs/multifile_input.rb +1 -0
- data/app/jobs/attach_files_to_work_job.rb +78 -21
- data/app/jobs/attach_files_to_work_with_ordered_members_job.rb +19 -18
- data/app/jobs/batch_create_job.rb +15 -14
- data/app/jobs/characterize_job.rb +17 -2
- data/app/jobs/concerns/hyrax/members_permission_job_behavior.rb +28 -0
- data/app/jobs/concerns/hyrax/permission_job_behavior.rb +23 -0
- data/app/jobs/content_delete_event_job.rb +1 -0
- data/app/jobs/content_deposit_event_job.rb +1 -0
- data/app/jobs/content_depositor_change_event_job.rb +1 -0
- data/app/jobs/content_event_job.rb +1 -0
- data/app/jobs/content_new_version_event_job.rb +1 -0
- data/app/jobs/content_restored_version_event_job.rb +1 -0
- data/app/jobs/content_update_event_job.rb +1 -0
- data/app/jobs/create_derivatives_job.rb +1 -0
- data/app/jobs/create_work_job.rb +4 -3
- data/app/jobs/event_job.rb +3 -1
- data/app/jobs/file_set_attached_event_job.rb +16 -15
- data/app/jobs/fixity_check_job.rb +28 -29
- data/app/jobs/hyrax/application_job.rb +6 -0
- data/app/jobs/hyrax/grant_edit_job.rb +13 -8
- data/app/jobs/hyrax/grant_edit_to_members_job.rb +5 -13
- data/app/jobs/hyrax/grant_read_job.rb +13 -8
- data/app/jobs/hyrax/grant_read_to_members_job.rb +5 -13
- data/app/jobs/hyrax/revoke_edit_from_members_job.rb +6 -13
- data/app/jobs/hyrax/revoke_edit_job.rb +13 -8
- data/app/jobs/iiif_manifest_cache_prewarm_job.rb +16 -0
- data/app/jobs/import_export_job.rb +14 -13
- data/app/jobs/import_url_job.rb +74 -63
- data/app/jobs/ingest_job.rb +1 -0
- data/app/jobs/ingest_local_file_job.rb +4 -3
- data/app/jobs/inherit_permissions_job.rb +55 -4
- data/app/jobs/resolrize_job.rb +1 -0
- data/app/jobs/stream_notifications_job.rb +1 -0
- data/app/jobs/user_edit_profile_event_job.rb +1 -0
- data/app/jobs/visibility_copy_job.rb +4 -17
- data/app/mailers/hyrax/contact_mailer.rb +2 -1
- data/app/models/admin_set.rb +44 -49
- data/app/models/batch_upload_item.rb +1 -0
- data/app/models/checksum_audit_log.rb +1 -0
- data/app/models/collection_branding_info.rb +1 -0
- data/app/models/concerns/hyrax/ability.rb +144 -132
- data/app/models/concerns/hyrax/ability/admin_set_ability.rb +1 -0
- data/app/models/concerns/hyrax/ability/collection_ability.rb +12 -11
- data/app/models/concerns/hyrax/ability/collection_type_ability.rb +1 -0
- data/app/models/concerns/hyrax/ability/permission_template_ability.rb +1 -0
- data/app/models/concerns/hyrax/ability/solr_document_ability.rb +1 -0
- data/app/models/concerns/hyrax/basic_metadata.rb +9 -2
- data/app/models/concerns/hyrax/collection_behavior.rb +52 -33
- data/app/models/concerns/hyrax/collection_nesting.rb +5 -4
- data/app/models/concerns/hyrax/core_metadata.rb +1 -0
- data/app/models/concerns/hyrax/file_set/belongs_to_works.rb +2 -1
- data/app/models/concerns/hyrax/file_set/characterization.rb +11 -3
- data/app/models/concerns/hyrax/file_set/derivatives.rb +5 -4
- data/app/models/concerns/hyrax/file_set/indexing.rb +2 -1
- data/app/models/concerns/hyrax/file_set/querying.rb +3 -2
- data/app/models/concerns/hyrax/file_set_behavior.rb +2 -1
- data/app/models/concerns/hyrax/has_rendering.rb +1 -0
- data/app/models/concerns/hyrax/has_representative.rb +1 -0
- data/app/models/concerns/hyrax/human_readable_type.rb +4 -11
- data/app/models/concerns/hyrax/in_admin_set.rb +4 -0
- data/app/models/concerns/hyrax/naming.rb +11 -2
- data/app/models/concerns/hyrax/nested_works.rb +1 -0
- data/app/models/concerns/hyrax/permissions.rb +1 -0
- data/app/models/concerns/hyrax/permissions/readable.rb +1 -0
- data/app/models/concerns/hyrax/permissions/writable.rb +1 -0
- data/app/models/concerns/hyrax/proxy_deposit.rb +1 -0
- data/app/models/concerns/hyrax/serializers.rb +2 -1
- data/app/models/concerns/hyrax/solr_document/characterization.rb +23 -22
- data/app/models/concerns/hyrax/solr_document/export.rb +24 -23
- data/app/models/concerns/hyrax/solr_document/metadata.rb +31 -31
- data/app/models/concerns/hyrax/solr_document/ordered_members.rb +44 -0
- data/app/models/concerns/hyrax/solr_document_behavior.rb +19 -12
- data/app/models/concerns/hyrax/suppressible.rb +6 -4
- data/app/models/concerns/hyrax/user.rb +12 -3
- data/app/models/concerns/hyrax/user_usage_stats.rb +1 -0
- data/app/models/concerns/hyrax/virus_check.rb +21 -0
- data/app/models/concerns/hyrax/with_events.rb +17 -7
- data/app/models/concerns/hyrax/with_file_sets.rb +6 -0
- data/app/models/concerns/hyrax/work_behavior.rb +5 -9
- data/app/models/concerns/hyrax/works/metadata.rb +1 -0
- data/app/models/content_block.rb +8 -1
- data/app/models/featured_work.rb +1 -0
- data/app/models/featured_work_list.rb +17 -16
- data/app/models/file_download_stat.rb +3 -1
- data/app/models/file_view_stat.rb +1 -0
- data/app/models/hyrax/access_control.rb +44 -0
- data/app/models/hyrax/active_job_proxy.rb +43 -0
- data/app/models/hyrax/administrative_set.rb +12 -0
- data/app/models/hyrax/avatar_validator.rb +1 -0
- data/app/models/hyrax/base.rb +18 -0
- data/app/models/hyrax/batch_create_operation.rb +3 -2
- data/app/models/hyrax/change_set.rb +45 -0
- data/app/models/hyrax/collection_type.rb +63 -49
- data/app/models/hyrax/collection_type_participant.rb +6 -5
- data/app/models/hyrax/contact_form.rb +1 -0
- data/app/models/hyrax/download.rb +1 -0
- data/app/models/hyrax/embargo.rb +21 -0
- data/app/models/hyrax/event.rb +30 -0
- data/app/models/hyrax/feature.rb +1 -0
- data/app/models/hyrax/file_metadata.rb +147 -0
- data/app/models/hyrax/file_set.rb +28 -0
- data/app/models/hyrax/group.rb +13 -6
- data/app/models/hyrax/lease.rb +21 -0
- data/app/models/hyrax/operation.rb +5 -4
- data/app/models/hyrax/orcid_validator.rb +13 -5
- data/app/models/hyrax/pageview.rb +1 -0
- data/app/models/hyrax/pcdm_collection.rb +22 -0
- data/app/models/hyrax/permission.rb +19 -0
- data/app/models/hyrax/permission_template.rb +42 -37
- data/app/models/hyrax/resource.rb +116 -0
- data/app/models/hyrax/statistic.rb +22 -17
- data/app/models/hyrax/uploaded_file.rb +11 -0
- data/app/models/hyrax/version_committer.rb +1 -0
- data/app/models/hyrax/virus_scanner.rb +57 -0
- data/app/models/hyrax/work.rb +30 -0
- data/app/models/hyrax/workflow_action_info.rb +3 -2
- data/app/models/job_io_wrapper.rb +47 -31
- data/app/models/proxy_deposit_request.rb +41 -33
- data/app/models/proxy_deposit_rights.rb +1 -0
- data/app/models/single_use_link.rb +21 -13
- data/app/models/sipity.rb +102 -0
- data/app/models/sipity/agent.rb +3 -3
- data/app/models/sipity/comment.rb +1 -0
- data/app/models/sipity/entity.rb +4 -3
- data/app/models/sipity/entity_specific_responsibility.rb +1 -0
- data/app/models/sipity/method.rb +1 -0
- data/app/models/sipity/notifiable_context.rb +2 -1
- data/app/models/sipity/notification.rb +2 -3
- data/app/models/sipity/notification_recipient.rb +1 -0
- data/app/models/sipity/role.rb +4 -4
- data/app/models/sipity/workflow.rb +19 -18
- data/app/models/sipity/workflow_action.rb +24 -0
- data/app/models/sipity/workflow_responsibility.rb +1 -0
- data/app/models/sipity/workflow_role.rb +1 -0
- data/app/models/sipity/workflow_state.rb +1 -0
- data/app/models/sipity/workflow_state_action.rb +1 -0
- data/app/models/sipity/workflow_state_action_permission.rb +1 -0
- data/app/models/solr_hit.rb +24 -0
- data/app/models/trophy.rb +1 -0
- data/app/models/user_mailbox.rb +15 -14
- data/app/models/user_stat.rb +1 -0
- data/app/models/vocab/fedora_resource_status.rb +5 -4
- data/app/models/work_view_stat.rb +1 -0
- data/app/presenters/hyrax/admin/dashboard_presenter.rb +1 -0
- data/app/presenters/hyrax/admin/repository_growth_presenter.rb +9 -8
- data/app/presenters/hyrax/admin/repository_object_presenter.rb +19 -18
- data/app/presenters/hyrax/admin/user_activity_presenter.rb +9 -8
- data/app/presenters/hyrax/admin/users_presenter.rb +5 -4
- data/app/presenters/hyrax/admin/workflow_role_presenter.rb +8 -7
- data/app/presenters/hyrax/admin/workflow_roles_presenter.rb +1 -0
- data/app/presenters/hyrax/admin_set_options_presenter.rb +37 -31
- data/app/presenters/hyrax/admin_set_presenter.rb +2 -1
- data/app/presenters/hyrax/admin_stats_presenter.rb +7 -6
- data/app/presenters/hyrax/characterization_behavior.rb +15 -14
- data/app/presenters/hyrax/collapsable_section_presenter.rb +24 -24
- data/app/presenters/hyrax/collection_presenter.rb +4 -3
- data/app/presenters/hyrax/composite_presenter_factory.rb +1 -0
- data/app/presenters/hyrax/dashboard/user_presenter.rb +11 -10
- data/app/presenters/hyrax/displays_image.rb +54 -35
- data/app/presenters/hyrax/embargo_presenter.rb +1 -0
- data/app/presenters/hyrax/file_set_presenter.rb +13 -17
- data/app/presenters/hyrax/file_usage.rb +7 -6
- data/app/presenters/hyrax/fixity_status_presenter.rb +49 -48
- data/app/presenters/hyrax/homepage_presenter.rb +5 -4
- data/app/presenters/hyrax/iiif_manifest_presenter.rb +237 -0
- data/app/presenters/hyrax/inspect_work_presenter.rb +18 -17
- data/app/presenters/hyrax/lease_presenter.rb +1 -0
- data/app/presenters/hyrax/member_presenter_factory.rb +21 -26
- data/app/presenters/hyrax/menu_presenter.rb +3 -2
- data/app/presenters/hyrax/model_icon.rb +1 -0
- data/app/presenters/hyrax/model_proxy.rb +13 -9
- data/app/presenters/hyrax/page_title_decorator.rb +30 -0
- data/app/presenters/hyrax/permission_badge.rb +14 -13
- data/app/presenters/hyrax/presenter_factory.rb +11 -23
- data/app/presenters/hyrax/presenter_renderer.rb +30 -22
- data/app/presenters/hyrax/presents_attributes.rb +22 -21
- data/app/presenters/hyrax/select_collection_type_list_presenter.rb +1 -0
- data/app/presenters/hyrax/select_collection_type_presenter.rb +1 -0
- data/app/presenters/hyrax/select_type_list_presenter.rb +4 -2
- data/app/presenters/hyrax/select_type_presenter.rb +17 -16
- data/app/presenters/hyrax/single_use_link_presenter.rb +9 -8
- data/app/presenters/hyrax/stats_usage_presenter.rb +28 -27
- data/app/presenters/hyrax/transfers_presenter.rb +9 -8
- data/app/presenters/hyrax/trophy_presenter.rb +2 -1
- data/app/presenters/hyrax/twitter_presenter.rb +1 -0
- data/app/presenters/hyrax/user_profile_presenter.rb +1 -0
- data/app/presenters/hyrax/version_list_presenter.rb +7 -6
- data/app/presenters/hyrax/version_presenter.rb +1 -0
- data/app/presenters/hyrax/work_show_presenter.rb +69 -69
- data/app/presenters/hyrax/work_usage.rb +4 -3
- data/app/presenters/hyrax/workflow_presenter.rb +10 -9
- data/app/renderers/hyrax/renderers.rb +1 -0
- data/app/renderers/hyrax/renderers/attribute_renderer.rb +38 -34
- data/app/renderers/hyrax/renderers/configured_microdata.rb +4 -3
- data/app/renderers/hyrax/renderers/date_attribute_renderer.rb +4 -3
- data/app/renderers/hyrax/renderers/external_link_attribute_renderer.rb +5 -4
- data/app/renderers/hyrax/renderers/faceted_attribute_renderer.rb +10 -9
- data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +15 -14
- data/app/renderers/hyrax/renderers/linked_attribute_renderer.rb +12 -11
- data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +16 -15
- data/app/search_builders/hyrax/abstract_type_relation.rb +1 -0
- data/app/search_builders/hyrax/admin_admin_set_member_search_builder.rb +3 -2
- data/app/search_builders/hyrax/admin_set_search_builder.rb +8 -7
- data/app/search_builders/hyrax/catalog_search_builder.rb +48 -19
- data/app/search_builders/hyrax/collection_member_search_builder.rb +9 -9
- data/app/search_builders/hyrax/collection_search_builder.rb +14 -13
- data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +6 -5
- data/app/search_builders/hyrax/dashboard/managed_search_filters.rb +1 -0
- data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +69 -68
- data/app/search_builders/hyrax/dashboard/works_search_builder.rb +1 -0
- data/app/search_builders/hyrax/deactivated_embargo_search_builder.rb +1 -0
- data/app/search_builders/hyrax/deactivated_lease_search_builder.rb +1 -0
- data/app/search_builders/hyrax/deposit_search_builder.rb +5 -4
- data/app/search_builders/hyrax/embargo_search_builder.rb +1 -0
- data/app/search_builders/hyrax/expired_embargo_search_builder.rb +1 -0
- data/app/search_builders/hyrax/expired_lease_search_builder.rb +1 -0
- data/app/search_builders/hyrax/exposed_models_relation.rb +2 -1
- data/app/search_builders/hyrax/file_set_search_builder.rb +1 -0
- data/app/search_builders/hyrax/filter_by_type.rb +40 -40
- data/app/search_builders/hyrax/filter_suppressed.rb +1 -0
- data/app/search_builders/hyrax/filter_suppressed_with_roles.rb +26 -19
- data/app/search_builders/hyrax/homepage_search_builder.rb +1 -0
- data/app/search_builders/hyrax/lease_search_builder.rb +1 -0
- data/app/search_builders/hyrax/member_with_files_search_builder.rb +4 -3
- data/app/search_builders/hyrax/my/collections_search_builder.rb +1 -0
- data/app/search_builders/hyrax/my/find_works_search_builder.rb +6 -9
- data/app/search_builders/hyrax/my/highlights_search_builder.rb +2 -3
- data/app/search_builders/hyrax/my/search_builder.rb +1 -0
- data/app/search_builders/hyrax/my/search_builder_behavior.rb +1 -0
- data/app/search_builders/hyrax/my/shares_search_builder.rb +1 -0
- data/app/search_builders/hyrax/my/works_search_builder.rb +1 -0
- data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +2 -1
- data/app/search_builders/hyrax/parent_collection_search_builder.rb +2 -1
- data/app/search_builders/hyrax/search_builder.rb +1 -0
- data/app/search_builders/hyrax/search_filters.rb +9 -8
- data/app/search_builders/hyrax/single_admin_set_search_builder.rb +1 -0
- data/app/search_builders/hyrax/single_collection_search_builder.rb +1 -0
- data/app/search_builders/hyrax/single_result.rb +1 -0
- data/app/search_builders/hyrax/single_use_link_search_builder.rb +1 -0
- data/app/search_builders/hyrax/stats/work_status_search_builder.rb +4 -3
- data/app/search_builders/hyrax/work_relation.rb +1 -0
- data/app/search_builders/hyrax/work_search_builder.rb +1 -0
- data/app/search_builders/hyrax/works_search_builder.rb +1 -0
- data/app/services/hyrax/abstract_message_service.rb +4 -3
- data/app/services/hyrax/access_control_list.rb +218 -0
- data/app/services/hyrax/adapters/nesting_index_adapter.rb +12 -11
- data/app/services/hyrax/admin_set_create_service.rb +50 -49
- data/app/services/hyrax/admin_set_member_service.rb +14 -13
- data/app/services/hyrax/admin_set_service.rb +18 -26
- data/app/services/hyrax/analytics.rb +7 -6
- data/app/services/hyrax/batch_create_failure_service.rb +3 -2
- data/app/services/hyrax/batch_create_success_service.rb +3 -2
- data/app/services/hyrax/caching_iiif_manifest_builder.rb +57 -0
- data/app/services/hyrax/change_content_depositor_service.rb +33 -1
- data/app/services/hyrax/characterization/file_set_description.rb +45 -0
- data/app/services/hyrax/characterization/model_wrapper.rb +0 -0
- data/app/services/hyrax/child_types.rb +40 -0
- data/app/services/hyrax/collection_member_service.rb +1 -0
- data/app/services/hyrax/collection_types/create_service.rb +1 -0
- data/app/services/hyrax/collection_types/permissions_service.rb +9 -5
- data/app/services/hyrax/collections/collection_member_service.rb +43 -42
- data/app/services/hyrax/collections/managed_collections_service.rb +1 -0
- data/app/services/hyrax/collections/migration_service.rb +6 -5
- data/app/services/hyrax/collections/nested_collection_persistence_service.rb +3 -2
- data/app/services/hyrax/collections/nested_collection_query_service.rb +11 -10
- data/app/services/hyrax/collections/permissions_create_service.rb +3 -2
- data/app/services/hyrax/collections/permissions_service.rb +3 -2
- data/app/services/hyrax/collections/search_service.rb +1 -0
- data/app/services/hyrax/collections_service.rb +6 -5
- data/app/services/hyrax/contextual_path.rb +1 -0
- data/app/services/hyrax/curation_concern.rb +1 -0
- data/app/services/hyrax/custom_queries/find_access_control.rb +28 -0
- data/app/services/hyrax/custom_queries/find_by_collection_type.rb +0 -0
- data/app/services/hyrax/custom_queries/find_collections_by_type.rb +38 -0
- data/app/services/hyrax/custom_queries/find_file_metadata.rb +72 -0
- data/app/services/hyrax/custom_queries/find_many_by_alternate_ids.rb +33 -0
- data/app/services/hyrax/custom_queries/navigators/child_collections_navigator.rb +35 -0
- data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +34 -0
- data/app/services/hyrax/custom_queries/navigators/child_works_navigator.rb +38 -0
- data/app/services/hyrax/custom_queries/navigators/collection_members.rb +47 -0
- data/app/services/hyrax/custom_queries/navigators/find_files.rb +88 -0
- data/app/services/hyrax/database_migrator.rb +13 -13
- data/app/services/hyrax/default_middleware_stack.rb +1 -6
- data/app/services/hyrax/derivative_path.rb +24 -23
- data/app/services/hyrax/derivative_service.rb +1 -0
- data/app/services/hyrax/embargo_manager.rb +204 -0
- data/app/services/hyrax/embargo_service.rb +4 -3
- data/app/services/hyrax/file_set_csv_service.rb +2 -0
- data/app/services/hyrax/file_set_derivatives_service.rb +61 -60
- data/app/services/hyrax/file_set_fixity_check_service.rb +39 -45
- data/app/services/hyrax/file_set_visibility_propagator.rb +41 -0
- data/app/services/hyrax/fixity/active_fedora_fixity_service.rb +20 -0
- data/app/services/hyrax/fixity/missing_content_error.rb +9 -0
- data/app/services/hyrax/fixity_check_failure_service.rb +3 -2
- data/app/services/hyrax/form_factory.rb +29 -0
- data/app/services/hyrax/form_metadata_service.rb +1 -0
- data/app/services/hyrax/graph_exporter.rb +54 -53
- data/app/services/hyrax/identifier/builder.rb +45 -0
- data/app/services/hyrax/identifier/dispatcher.rb +61 -0
- data/app/services/hyrax/identifier/registrar.rb +41 -0
- data/app/services/hyrax/iiif_authorization_service.rb +4 -3
- data/app/services/hyrax/import_url_failure_service.rb +2 -1
- data/app/services/hyrax/indexes_thumbnails.rb +2 -1
- data/app/services/hyrax/institution.rb +1 -0
- data/app/services/hyrax/lease_manager.rb +126 -0
- data/app/services/hyrax/lease_service.rb +4 -4
- data/app/services/hyrax/license_service.rb +1 -0
- data/app/services/hyrax/list_source_exporter.rb +17 -16
- data/app/services/hyrax/listeners/acl_index_listener.rb +21 -0
- data/app/services/hyrax/listeners/batch_notification_listener.rb +26 -0
- data/app/services/hyrax/listeners/file_set_lifecycle_listener.rb +22 -0
- data/app/services/hyrax/listeners/file_set_lifecycle_notification_listener.rb +34 -0
- data/app/services/hyrax/listeners/metadata_index_listener.rb +23 -0
- data/app/services/hyrax/listeners/object_lifecycle_listener.rb +27 -0
- data/app/services/hyrax/local_file_service.rb +1 -0
- data/app/services/hyrax/lock_manager.rb +1 -0
- data/app/services/hyrax/lockable.rb +1 -0
- data/app/services/hyrax/manifest_builder_service.rb +88 -0
- data/app/services/hyrax/messenger_service.rb +1 -0
- data/app/services/hyrax/microdata.rb +22 -21
- data/app/services/hyrax/multiple_membership_checker.rb +24 -23
- data/app/services/hyrax/noid.rb +4 -3
- data/app/services/hyrax/permission_manager.rb +199 -0
- data/app/services/hyrax/persist_derivatives.rb +1 -0
- data/app/services/hyrax/persist_directly_contained_output_file_service.rb +2 -1
- data/app/services/hyrax/qa_select_service.rb +2 -1
- data/app/services/hyrax/query_service.rb +0 -0
- data/app/services/hyrax/quick_classification_query.rb +21 -9
- data/app/services/hyrax/repository_fixity_check_service.rb +1 -0
- data/app/services/hyrax/resource_status.rb +60 -0
- data/app/services/hyrax/resource_types_service.rb +1 -0
- data/app/services/hyrax/resource_visibility_propagator.rb +52 -0
- data/app/services/hyrax/restriction_service.rb +14 -13
- data/app/services/hyrax/rights_statement_service.rb +1 -0
- data/app/services/hyrax/simple_schema_loader.rb +152 -0
- data/app/services/hyrax/solr_query_builder_service.rb +72 -0
- data/app/services/hyrax/solr_service.rb +154 -0
- data/app/services/hyrax/statistics/collections/over_time.rb +4 -3
- data/app/services/hyrax/statistics/depositors/summary.rb +24 -23
- data/app/services/hyrax/statistics/file_sets/by_format.rb +5 -4
- data/app/services/hyrax/statistics/over_time.rb +17 -16
- data/app/services/hyrax/statistics/query_service.rb +7 -6
- data/app/services/hyrax/statistics/system_stats.rb +9 -8
- data/app/services/hyrax/statistics/term_query.rb +8 -12
- data/app/services/hyrax/statistics/users/over_time.rb +8 -7
- data/app/services/hyrax/statistics/works/by_depositor.rb +4 -3
- data/app/services/hyrax/statistics/works/by_resource_type.rb +4 -3
- data/app/services/hyrax/statistics/works/count.rb +12 -11
- data/app/services/hyrax/statistics/works/over_time.rb +4 -3
- data/app/services/hyrax/thumbnail_path_service.rb +33 -31
- data/app/services/hyrax/time_service.rb +1 -0
- data/app/services/hyrax/user_stat_importer.rb +83 -82
- data/app/services/hyrax/versioning_service.rb +75 -19
- data/app/services/hyrax/virus_checker_service.rb +53 -0
- data/app/services/hyrax/visibility_intention.rb +78 -0
- data/app/services/hyrax/visibility_intention_applicator.rb +43 -0
- data/app/services/hyrax/visibility_map.rb +65 -0
- data/app/services/hyrax/visibility_propagator.rb +20 -0
- data/app/services/hyrax/visibility_reader.rb +47 -0
- data/app/services/hyrax/visibility_writer.rb +50 -0
- data/app/services/hyrax/work_form_service.rb +3 -0
- data/app/services/hyrax/work_query_service.rb +14 -13
- data/app/services/hyrax/work_thumbnail_path_service.rb +1 -0
- data/app/services/hyrax/workflow/abstract_notification.rb +18 -17
- data/app/services/hyrax/workflow/action_taken_service.rb +1 -0
- data/app/services/hyrax/workflow/activate_object.rb +1 -0
- data/app/services/hyrax/workflow/changes_required_notification.rb +13 -10
- data/app/services/hyrax/workflow/deactivate_object.rb +1 -0
- data/app/services/hyrax/workflow/deposited_notification.rb +12 -10
- data/app/services/hyrax/workflow/grant_edit_to_depositor.rb +1 -0
- data/app/services/hyrax/workflow/grant_read_to_depositor.rb +1 -0
- data/app/services/hyrax/workflow/invalid_state_removal_exception.rb +1 -0
- data/app/services/hyrax/workflow/method_generator.rb +18 -17
- data/app/services/hyrax/workflow/notification_configuration_parameter.rb +1 -0
- data/app/services/hyrax/workflow/notification_generator.rb +26 -25
- data/app/services/hyrax/workflow/notification_service.rb +1 -0
- data/app/services/hyrax/workflow/pending_review_notification.rb +12 -9
- data/app/services/hyrax/workflow/permission_generator.rb +41 -40
- data/app/services/hyrax/workflow/permission_query.rb +31 -18
- data/app/services/hyrax/workflow/revoke_edit_from_depositor.rb +1 -0
- data/app/services/hyrax/workflow/sipity_actions_generator.rb +47 -46
- data/app/services/hyrax/workflow/state_machine_generator.rb +53 -52
- data/app/services/hyrax/workflow/status_list_service.rb +27 -26
- data/app/services/hyrax/workflow/workflow_action_service.rb +29 -28
- data/app/services/hyrax/workflow/workflow_factory.rb +33 -27
- data/app/services/hyrax/workflow/workflow_importer.rb +58 -44
- data/app/services/hyrax/workflow/workflow_permissions_generator.rb +13 -12
- data/app/services/hyrax/workflow/workflow_schema.rb +28 -94
- data/app/services/hyrax/working_directory.rb +17 -16
- data/app/services/hyrax/works/managed_works_service.rb +1 -0
- data/app/services/hyrax/works/migration_service.rb +34 -0
- data/app/strategies/hyrax/strategies/yaml_strategy.rb +13 -12
- data/app/uploaders/hyrax/avatar_uploader.rb +1 -0
- data/app/uploaders/hyrax/uploaded_file_uploader.rb +7 -6
- data/app/validators/hyrax/has_one_title_validator.rb +1 -0
- data/app/values/hyrax/chart_data.rb +14 -13
- data/app/views/_masthead.html.erb +3 -2
- data/app/views/catalog/_index_list_default.html.erb +3 -3
- data/app/views/hyrax/admin/admin_sets/_form.html.erb +6 -5
- data/app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb +2 -2
- data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +57 -52
- data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +5 -4
- data/app/views/hyrax/admin/admin_sets/_form_workflow.erb +1 -1
- data/app/views/hyrax/admin/admin_sets/_show_actions.html.erb +3 -2
- data/app/views/hyrax/admin/admin_sets/index.json.jbuilder +1 -0
- data/app/views/hyrax/base/_attribute_rows.html.erb +4 -1
- data/app/views/hyrax/base/_attributes.html.erb +3 -3
- data/app/views/hyrax/base/_citations.html.erb +4 -4
- data/app/views/hyrax/base/_file_manager_actions.html.erb +2 -2
- data/app/views/hyrax/base/_file_manager_member_resource_options.html.erb +2 -2
- data/app/views/hyrax/base/_form.html.erb +2 -2
- data/app/views/hyrax/base/_form_child_work_relationships.html.erb +2 -2
- data/app/views/hyrax/base/_form_files.html.erb +13 -11
- data/app/views/hyrax/base/_form_member_of_collections.html.erb +2 -2
- data/app/views/hyrax/base/_form_permission.html.erb +3 -4
- data/app/views/hyrax/base/_form_progress.html.erb +6 -2
- data/app/views/hyrax/base/_form_relationships.html.erb +1 -1
- data/app/views/hyrax/base/_form_share.html.erb +17 -16
- data/app/views/hyrax/base/_form_visibility_component.html.erb +3 -3
- data/app/views/hyrax/base/_guts4form.html.erb +0 -1
- data/app/views/hyrax/base/_items.html.erb +1 -1
- data/app/views/hyrax/base/_metadata.html.erb +2 -3
- data/app/views/hyrax/base/_relationships.html.erb +1 -2
- data/app/views/hyrax/base/_show_actions.html.erb +31 -24
- data/app/views/hyrax/base/_social_media.html.erb +6 -16
- data/app/views/hyrax/base/_work_button_row.html.erb +49 -0
- data/app/views/hyrax/base/_work_title.erb +13 -18
- data/app/views/hyrax/base/_work_type.html.erb +2 -2
- data/app/views/hyrax/base/_workflow_actions.html.erb +4 -4
- data/app/views/hyrax/base/edit.html.erb +1 -1
- data/app/views/hyrax/base/file_manager.html.erb +2 -2
- data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +5 -2
- data/app/views/hyrax/base/inspect_work.html.erb +13 -13
- data/app/views/hyrax/base/new.html.erb +1 -1
- data/app/views/hyrax/base/show.html.erb +26 -12
- data/app/views/hyrax/base/show.json.jbuilder +5 -1
- data/app/views/hyrax/base/unauthorized.html.erb +4 -4
- data/app/views/hyrax/batch_edits/_check_all.html.erb +2 -2
- data/app/views/hyrax/batch_edits/_delete_selected.html.erb +1 -1
- data/app/views/hyrax/batch_edits/edit.html.erb +11 -11
- data/app/views/hyrax/batch_select/_add_button.html.erb +1 -1
- data/app/views/hyrax/batch_uploads/_form.html.erb +1 -1
- data/app/views/hyrax/citations/work.html.erb +1 -1
- data/app/views/hyrax/collections/_list_collections.html.erb +1 -1
- data/app/views/hyrax/collections/_media_display.html.erb +1 -1
- data/app/views/hyrax/collections/_search_form.html.erb +1 -1
- data/app/views/hyrax/collections/_show_descriptions.html.erb +5 -5
- data/app/views/hyrax/collections/_show_document_list.html.erb +1 -1
- data/app/views/hyrax/collections/_show_document_list_row.html.erb +2 -2
- data/app/views/hyrax/collections/_sort_and_per_page.html.erb +6 -6
- data/app/views/hyrax/collections/show.html.erb +12 -11
- data/app/views/hyrax/contact_form/new.html.erb +1 -3
- data/app/views/hyrax/dashboard/_index_partials/_transfers.html.erb +2 -2
- data/app/views/hyrax/dashboard/_sidebar.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_collection_title.html.erb +2 -2
- data/app/views/hyrax/dashboard/collections/_default_group.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_form.html.erb +6 -5
- data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +10 -10
- data/app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_form_share.html.erb +68 -70
- data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +3 -2
- data/app/views/hyrax/dashboard/collections/_list_works.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +4 -4
- data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +6 -6
- data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +5 -5
- data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +4 -5
- data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +8 -8
- data/app/views/hyrax/dashboard/collections/show.html.erb +9 -8
- data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +8 -8
- data/app/views/hyrax/dashboard/show_admin.html.erb +8 -8
- data/app/views/hyrax/dashboard/show_user.html.erb +4 -4
- data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +2 -0
- data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +4 -1
- data/app/views/hyrax/dashboard/sidebar/_menu_partials.html.erb +3 -0
- data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +4 -0
- data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +10 -4
- data/app/views/hyrax/dashboard/works/_default_group.html.erb +4 -4
- data/app/views/hyrax/dashboard/works/_list_works.html.erb +3 -3
- data/app/views/hyrax/depositors/_modal_proxy_deny.html.erb +14 -0
- data/app/views/hyrax/depositors/index.html.erb +3 -0
- data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +1 -1
- data/app/views/hyrax/file_sets/_actions.html.erb +1 -1
- data/app/views/hyrax/file_sets/_asset_deleted_flash.html.erb +1 -1
- data/app/views/hyrax/file_sets/_asset_saved_flash.html.erb +5 -6
- data/app/views/hyrax/file_sets/_asset_updated_flash.html.erb +2 -1
- data/app/views/hyrax/file_sets/_descriptions.html.erb +2 -2
- data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +3 -3
- data/app/views/hyrax/file_sets/_form.html.erb +1 -1
- data/app/views/hyrax/file_sets/_permission.html.erb +2 -1
- data/app/views/hyrax/file_sets/_permission_form.html.erb +12 -12
- data/app/views/hyrax/file_sets/_show_actions.html.erb +6 -4
- data/app/views/hyrax/file_sets/_show_details.html.erb +7 -7
- data/app/views/hyrax/file_sets/_single_use_link_rows.html.erb +1 -1
- data/app/views/hyrax/file_sets/_versioning.html.erb +56 -10
- data/app/views/hyrax/file_sets/edit.html.erb +5 -4
- data/app/views/hyrax/file_sets/media_display/_audio.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +2 -2
- data/app/views/hyrax/file_sets/proxy.html.erb +2 -2
- data/app/views/hyrax/file_sets/show.json.jbuilder +1 -0
- data/app/views/hyrax/homepage/_announcement.html.erb +2 -2
- data/app/views/hyrax/homepage/_explore_collections.html.erb +1 -1
- data/app/views/hyrax/homepage/_featured_fields.html.erb +1 -1
- data/app/views/hyrax/homepage/_home_content.html.erb +8 -8
- data/app/views/hyrax/homepage/_marketing.html.erb +1 -1
- data/app/views/hyrax/homepage/_recent_document.html.erb +1 -1
- data/app/views/hyrax/homepage/_sortable_featured.html.erb +1 -0
- data/app/views/hyrax/homepage/index.html.erb +21 -23
- data/app/views/hyrax/my/_sort_and_per_page.html.erb +1 -1
- data/app/views/hyrax/my/collections/_default_group.html.erb +1 -1
- data/app/views/hyrax/my/collections/_list_collections.html.erb +3 -2
- data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +1 -1
- data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +4 -1
- data/app/views/hyrax/my/collections/_tabs.html.erb +3 -4
- data/app/views/hyrax/my/collections/index.html.erb +1 -1
- data/app/views/hyrax/my/index.html.erb +1 -1
- data/app/views/hyrax/my/works/_default_group.html.erb +4 -4
- data/app/views/hyrax/my/works/_list_works.html.erb +5 -5
- data/app/views/hyrax/my/works/_tabs.html.erb +1 -1
- data/app/views/hyrax/my/works/index.html.erb +1 -1
- data/app/views/hyrax/notifications/index.html.erb +1 -1
- data/app/views/hyrax/operations/index.html.erb +4 -4
- data/app/views/hyrax/pages/_form.html.erb +61 -60
- data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
- data/app/views/hyrax/single_use_links_viewer/single_use_error.html.erb +3 -7
- data/app/views/hyrax/static/mendeley.html.erb +2 -4
- data/app/views/hyrax/static/zotero.html.erb +2 -4
- data/app/views/hyrax/transfers/_received.html.erb +10 -10
- data/app/views/hyrax/transfers/_sent.html.erb +6 -6
- data/app/views/hyrax/uploads/_js_templates.html.erb +7 -7
- data/app/views/hyrax/uploads/_js_templates_branding.html.erb +8 -8
- data/app/views/hyrax/uploads/_js_templates_versioning.html.erb +172 -0
- data/app/views/hyrax/uploads/create.json.jbuilder +1 -0
- data/app/views/hyrax/users/_activity_log.html.erb +25 -22
- data/app/views/hyrax/users/_left_sidebar.html.erb +1 -1
- data/app/views/hyrax/users/_profile_tabs.html.erb +1 -1
- data/app/views/hyrax/users/_proxies.html.erb +1 -1
- data/app/views/hyrax/users/_search_form.html.erb +3 -3
- data/app/views/hyrax/users/_vitals.html.erb +3 -3
- data/app/views/hyrax/users/index.html.erb +6 -6
- data/app/views/hyrax/users/index.json.jbuilder +1 -0
- data/app/views/layouts/hyrax.html.erb +17 -3
- data/app/views/records/edit_fields/_abstract.html.erb +5 -0
- data/app/views/records/edit_fields/_access_right.html.erb +5 -0
- data/app/views/records/show_fields/_based_near.html.erb +1 -1
- data/app/views/records/show_fields/_creator.html.erb +1 -1
- data/app/views/records/show_fields/_keyword.html.erb +1 -1
- data/app/views/records/show_fields/_language.html.erb +1 -1
- data/app/views/records/show_fields/_publisher.html.erb +1 -1
- data/app/views/records/show_fields/_resource_type.html.erb +1 -1
- data/app/views/records/show_fields/_subject.html.erb +1 -1
- data/app/views/shared/_citations.html.erb +17 -0
- data/app/views/shared/_nav_safety_modal.html.erb +1 -0
- data/config/features.rb +6 -5
- data/config/initializers/1_healthz.rb +33 -0
- data/config/initializers/indexing_adapter_initializer.rb +14 -0
- data/config/initializers/listeners.rb +43 -0
- data/config/initializers/{samvera-nesting_indexer_initializer.rb → nesting_indexer_initializer.rb} +5 -5
- data/config/initializers/simple_form.rb +1 -0
- data/config/initializers/valkyrie_id_equality.rb +3 -0
- data/config/locales/hyrax.de.yml +382 -50
- data/config/locales/hyrax.en.yml +387 -2
- data/config/locales/hyrax.es.yml +340 -1
- data/config/locales/hyrax.fr.yml +339 -0
- data/config/locales/hyrax.it.yml +339 -0
- data/config/locales/hyrax.pt-BR.yml +350 -11
- data/config/locales/hyrax.zh.yml +339 -0
- data/config/metadata/basic_metadata.yaml +113 -0
- data/config/metadata/core_metadata.yaml +17 -0
- data/config/routes.rb +1 -0
- data/hyrax.gemspec +21 -18
- data/lib/generators/hyrax/arkivo_api_generator.rb +1 -0
- data/lib/generators/hyrax/assets_generator.rb +4 -3
- data/lib/generators/hyrax/clamav_generator.rb +1 -0
- data/lib/generators/hyrax/collection_generator.rb +1 -0
- data/lib/generators/hyrax/config_generator.rb +7 -0
- data/lib/generators/hyrax/health_check_generator.rb +14 -0
- data/lib/generators/hyrax/install_generator.rb +11 -0
- data/lib/generators/hyrax/models_generator.rb +4 -3
- data/lib/generators/hyrax/riiif_generator.rb +3 -2
- data/lib/generators/hyrax/sample_data_generator.rb +1 -0
- data/lib/generators/hyrax/templates/app/models/collection.rb +1 -0
- data/lib/generators/hyrax/templates/app/models/file_set.rb +1 -0
- data/lib/generators/hyrax/templates/catalog_controller.rb +77 -75
- data/lib/generators/hyrax/templates/config/action_dispatch_http_upload_monkey_patch.rb +1 -0
- data/lib/generators/hyrax/templates/config/analytics.yml +5 -5
- data/lib/generators/hyrax/templates/config/arkivo_constraint.rb +1 -0
- data/lib/generators/hyrax/templates/config/clamav.rb +1 -0
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +23 -3
- data/lib/generators/hyrax/templates/config/initializers/mini_magick.rb +1 -0
- data/lib/generators/hyrax/templates/config/initializers/redis_config.rb +1 -0
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +6 -5
- data/lib/generators/hyrax/templates/config/initializers/simple_form.rb +1 -0
- data/lib/generators/hyrax/templates/config/initializers/simple_form_bootstrap.rb +1 -0
- data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +10 -10
- data/lib/generators/hyrax/templates/config/mime_types.rb +1 -0
- data/lib/generators/hyrax/templates/config/redis.yml +6 -6
- data/lib/generators/hyrax/templates/config/solr_wrapper_valkyrie_test.yml +7 -0
- data/lib/generators/hyrax/templates/config/valkyrie_index.yml +12 -0
- data/lib/generators/hyrax/templates/db/migrate/20180612002029_update_single_use_links_column_names.rb.erb +6 -0
- data/lib/generators/hyrax/templates/db/migrate/20200617002029_change_sipity_entity_specific_responsibility.rb.erb +9 -0
- data/lib/generators/hyrax/templates/db/seeds.rb +1 -0
- data/lib/generators/hyrax/templates/hyrax.scss +1 -0
- data/lib/generators/hyrax/templates/hyrax_helper.rb +1 -0
- data/lib/generators/hyrax/templates/package.json +17 -0
- data/lib/generators/hyrax/templates/spec/models/collection_spec.rb +1 -0
- data/lib/generators/hyrax/templates/spec/models/file_set_spec.rb +1 -0
- data/lib/generators/hyrax/templates/uv-config.json +3 -0
- data/lib/generators/hyrax/templates/uv.html +87 -0
- data/lib/generators/hyrax/work/USAGE +10 -5
- data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +1 -2
- data/lib/generators/hyrax/work/templates/locale.pt-BR.yml.erb +1 -1
- data/lib/generators/hyrax/work/work_generator.rb +15 -14
- data/lib/generators/hyrax/work_resource/USAGE +17 -0
- data/lib/generators/hyrax/work_resource/templates/controller.rb.erb +22 -0
- data/lib/generators/hyrax/work_resource/templates/form.rb.erb +20 -0
- data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +16 -0
- data/lib/generators/hyrax/work_resource/templates/indexer_spec.rb.erb +12 -0
- data/lib/generators/hyrax/work_resource/templates/metadata.yaml +22 -0
- data/lib/generators/hyrax/work_resource/templates/work.html.erb_spec.rb.erb +6 -0
- data/lib/generators/hyrax/work_resource/templates/work.rb.erb +8 -0
- data/lib/generators/hyrax/work_resource/templates/work_spec.rb.erb +12 -0
- data/lib/generators/hyrax/work_resource/work_resource_generator.rb +112 -0
- data/lib/hyrax.rb +60 -2
- data/lib/hyrax/arkivo.rb +1 -0
- data/lib/hyrax/arkivo/actor.rb +49 -48
- data/lib/hyrax/arkivo/config.rb +1 -0
- data/lib/hyrax/arkivo/create_subscription_job.rb +31 -30
- data/lib/hyrax/arkivo/metadata_munger.rb +20 -19
- data/lib/hyrax/arkivo/schema_validator.rb +1 -0
- data/lib/hyrax/callbacks.rb +1 -0
- data/lib/hyrax/callbacks/registry.rb +20 -3
- data/lib/hyrax/collection_name.rb +15 -0
- data/lib/hyrax/configuration.rb +124 -27
- data/lib/hyrax/controlled_vocabularies.rb +1 -0
- data/lib/hyrax/controlled_vocabularies/location.rb +1 -0
- data/lib/hyrax/controlled_vocabulary/importer/downloader.rb +1 -0
- data/lib/hyrax/controlled_vocabulary/importer/language.rb +2 -1
- data/lib/hyrax/controller_resource.rb +5 -4
- data/lib/hyrax/engine.rb +27 -15
- data/lib/hyrax/errors.rb +5 -0
- data/lib/hyrax/event_store.rb +81 -0
- data/lib/hyrax/form_fields.rb +55 -0
- data/lib/hyrax/health_checks.rb +4 -0
- data/lib/hyrax/health_checks/solr_check.rb +24 -0
- data/lib/hyrax/indexer.rb +27 -0
- data/lib/hyrax/inflections.rb +1 -0
- data/lib/hyrax/model_decorator.rb +31 -0
- data/lib/hyrax/move_all_works_to_admin_set.rb +1 -0
- data/lib/hyrax/name.rb +2 -1
- data/lib/hyrax/publisher.rb +64 -0
- data/lib/hyrax/rails/routes.rb +24 -28
- data/lib/hyrax/redis_event_store.rb +25 -12
- data/lib/hyrax/resource_name.rb +18 -0
- data/lib/hyrax/resource_sync.rb +1 -0
- data/lib/hyrax/resource_sync/capability_list_writer.rb +15 -14
- data/lib/hyrax/resource_sync/change_list_writer.rb +58 -58
- data/lib/hyrax/resource_sync/resource_list_writer.rb +46 -45
- data/lib/hyrax/resource_sync/source_description_writer.rb +11 -10
- data/lib/hyrax/role_registry.rb +7 -6
- data/lib/hyrax/schema.rb +92 -0
- data/lib/hyrax/search_state.rb +1 -0
- data/lib/hyrax/specs/shared_specs.rb +4 -0
- data/lib/hyrax/specs/shared_specs/factories/strategies/valkyrie_resource.rb +32 -0
- data/lib/hyrax/specs/shared_specs/hydra_works.rb +292 -0
- data/lib/hyrax/specs/shared_specs/identifiers.rb +27 -0
- data/lib/hyrax/specs/shared_specs/indexers.rb +175 -0
- data/lib/hyrax/specs/shared_specs/metadata.rb +30 -0
- data/lib/hyrax/specs/spy_listener.rb +39 -0
- data/lib/hyrax/transactions.rb +2 -7
- data/lib/hyrax/transactions/apply_change_set.rb +47 -0
- data/lib/hyrax/transactions/container.rb +75 -3
- data/lib/hyrax/transactions/create_work.rb +16 -1
- data/lib/hyrax/transactions/destroy_work.rb +25 -0
- data/lib/hyrax/transactions/steps/add_to_collections.rb +36 -0
- data/lib/hyrax/transactions/steps/apply_collection_permission_template.rb +32 -0
- data/lib/hyrax/transactions/steps/apply_permission_template.rb +2 -1
- data/lib/hyrax/transactions/steps/apply_visibility.rb +39 -0
- data/lib/hyrax/transactions/steps/destroy_work.rb +24 -0
- data/lib/hyrax/transactions/steps/ensure_admin_set.rb +5 -5
- data/lib/hyrax/transactions/steps/save.rb +45 -0
- data/lib/hyrax/transactions/steps/set_default_admin_set.rb +10 -9
- data/lib/hyrax/transactions/steps/set_modified_date.rb +16 -7
- data/lib/hyrax/transactions/steps/set_uploaded_date_unless_present.rb +58 -0
- data/lib/hyrax/transactions/steps/set_user_as_depositor.rb +41 -0
- data/lib/hyrax/transactions/steps/validate.rb +36 -0
- data/lib/hyrax/transactions/transaction.rb +161 -0
- data/lib/hyrax/transactions/update_work.rb +16 -0
- data/lib/hyrax/transactions/work_create.rb +24 -0
- data/lib/hyrax/valkyrie_can_can_adapter.rb +25 -0
- data/lib/hyrax/version.rb +2 -1
- data/lib/hyrax/zotero.rb +1 -0
- data/lib/hyrax/zotero/config.rb +1 -0
- data/lib/tasks/controlled_vocabularies.rake +1 -0
- data/lib/tasks/default_admin_set.rake +1 -0
- data/lib/tasks/default_collection_type.rake +1 -0
- data/lib/tasks/hyrax.rake +1 -0
- data/lib/tasks/hyrax_user.rake +1 -0
- data/lib/tasks/install.rake +1 -0
- data/lib/tasks/migrate.rake +7 -0
- data/lib/tasks/reindex.rake +1 -0
- data/lib/tasks/stats_tasks.rake +1 -0
- data/lib/tasks/universal_viewer.rake +16 -0
- data/lib/tasks/workflow.rake +1 -0
- data/lib/valkyrie/indexing/null_indexing_adapter.rb +31 -0
- data/lib/valkyrie/indexing/solr/indexing_adapter.rb +97 -0
- data/lib/valkyrie/indexing_adapter.rb +29 -0
- data/lib/wings.rb +134 -0
- data/lib/wings/active_fedora_classifier.rb +16 -0
- data/lib/wings/active_fedora_converter.rb +217 -0
- data/lib/wings/attribute_transformer.rb +30 -0
- data/lib/wings/converter_value_mapper.rb +197 -0
- data/lib/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior.rb +28 -0
- data/lib/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior.rb +28 -0
- data/lib/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior.rb +171 -0
- data/lib/wings/hydra/works/models/concerns/collection_valkyrie_behavior.rb +31 -0
- data/lib/wings/hydra/works/models/concerns/file_set_valkyrie_behavior.rb +31 -0
- data/lib/wings/hydra/works/models/concerns/work_valkyrie_behavior.rb +60 -0
- data/lib/wings/hydra/works/services/add_file_to_file_set.rb +57 -0
- data/lib/wings/model_registry.rb +54 -0
- data/lib/wings/model_transformer.rb +169 -0
- data/lib/wings/models/concerns/collection_behavior.rb +39 -0
- data/lib/wings/models/multi_checksum.rb +18 -0
- data/lib/wings/orm_converter.rb +102 -0
- data/lib/wings/services/custom_queries/find_access_control.rb +42 -0
- data/lib/wings/services/custom_queries/find_collections_by_type.rb +27 -0
- data/lib/wings/services/custom_queries/find_file_metadata.rb +90 -0
- data/lib/wings/services/custom_queries/find_many_by_alternate_ids.rb +35 -0
- data/lib/wings/services/file_converter_service.rb +68 -0
- data/lib/wings/services/file_metadata_builder.rb +90 -0
- data/lib/wings/services/id_converter_service.rb +15 -0
- data/lib/wings/setup.rb +49 -0
- data/lib/wings/transformer_value_mapper.rb +78 -0
- data/lib/wings/valkyrie/metadata_adapter.rb +29 -0
- data/lib/wings/valkyrie/persister.rb +113 -0
- data/lib/wings/valkyrie/query_service.rb +176 -0
- data/lib/wings/valkyrie/resource_factory.rb +45 -0
- data/lib/wings/valkyrie/storage/active_fedora.rb +27 -0
- data/lib/wings/valkyrizable.rb +24 -0
- data/tasks/hyrax_dev.rake +4 -1
- data/template.rb +2 -1
- metadata +332 -114
- data/app/presenters/hyrax/collection_options_presenter.rb +0 -31
- data/app/services/hyrax/collection_size_service.rb +0 -52
- data/config/initializers/hyrax_callbacks.rb +0 -43
- data/lib/hyrax/transactions/steps/set_uploaded_date.rb +0 -28
data/config/locales/hyrax.en.yml
CHANGED
@@ -18,9 +18,11 @@ en:
|
|
18
18
|
fields:
|
19
19
|
facet:
|
20
20
|
admin_set_sim: Admin Set
|
21
|
+
collection_type_gid_ssim: Collection Type
|
21
22
|
member_of_collections_ssim: Collection
|
22
23
|
resource_type_sim: Resource type
|
23
24
|
suppressed_bsi: Status
|
25
|
+
visibility_ssi: Visibility
|
24
26
|
show:
|
25
27
|
admin_set: 'In Administrative Set:'
|
26
28
|
based_near_label: Location
|
@@ -38,6 +40,7 @@ en:
|
|
38
40
|
extension_whitelist_error: 'You are not allowed to upload %{extension} files, allowed types: %{allowed_types}'
|
39
41
|
helpers:
|
40
42
|
action:
|
43
|
+
accept: Accept
|
41
44
|
add: Add
|
42
45
|
admin_set:
|
43
46
|
new: Create new administrative set
|
@@ -265,6 +268,7 @@ en:
|
|
265
268
|
collections: Collections
|
266
269
|
configuration: Configuration
|
267
270
|
content_blocks: Content Blocks
|
271
|
+
delete_all: Delete All
|
268
272
|
notifications: Notifications
|
269
273
|
pages: Pages
|
270
274
|
profile: Profile
|
@@ -279,6 +283,7 @@ en:
|
|
279
283
|
workflow_review: Review Submissions
|
280
284
|
workflow_roles: Workflow Roles
|
281
285
|
works: Works
|
286
|
+
works_listing: Works listing
|
282
287
|
stats:
|
283
288
|
deposited_form:
|
284
289
|
end_label: end [defaults to now]
|
@@ -346,11 +351,33 @@ en:
|
|
346
351
|
default: The resource you attempted to modify cannot be modified according to your request.
|
347
352
|
background_attribution_html: ''
|
348
353
|
base:
|
354
|
+
attributes:
|
355
|
+
table_attribute_name: Attribute Name
|
356
|
+
table_heading_attributes: Attributes
|
357
|
+
table_values: Value
|
358
|
+
visibility: Visibility
|
349
359
|
citations:
|
360
|
+
citations: Citations
|
361
|
+
endnote: EndNote
|
350
362
|
header: 'Citations:'
|
363
|
+
mendeley: Mendeley
|
364
|
+
zotero: Zotero
|
365
|
+
file_manager:
|
366
|
+
back_to: Back to
|
367
|
+
toolbar: Toolbar
|
368
|
+
file_manager_actions:
|
369
|
+
save: Save
|
370
|
+
sort_alphabetically: Sort alphabetically
|
371
|
+
file_manager_member_resource_options:
|
372
|
+
representative_media: Representative Media
|
373
|
+
thumbnail: Thumbnail
|
374
|
+
form:
|
375
|
+
batch_link: Batch upload
|
376
|
+
batch_upload_hint: To create a separate work for each of the files, go to
|
351
377
|
form_child_work_relationships:
|
352
378
|
actions:
|
353
379
|
remove: Remove from this work
|
380
|
+
add: Add
|
354
381
|
attach_new_work: Deposit new work as child of this work
|
355
382
|
caption: This work currently contains these child works
|
356
383
|
confirm:
|
@@ -361,6 +388,9 @@ en:
|
|
361
388
|
actions: Action
|
362
389
|
title: Work title
|
363
390
|
form_files:
|
391
|
+
add_files: Add files...
|
392
|
+
add_folder: Add folder...
|
393
|
+
cancel_upload: Cancel upload
|
364
394
|
dropzone: Drop files here.
|
365
395
|
local_upload_browse_everything_html: |
|
366
396
|
<p>You can add one or more files to associate with this work. Add files
|
@@ -373,6 +403,7 @@ en:
|
|
373
403
|
form_member_of_collections:
|
374
404
|
actions:
|
375
405
|
remove: Remove from collection
|
406
|
+
add: Add
|
376
407
|
caption: This work is currently in these collections
|
377
408
|
confirm:
|
378
409
|
cancel: Cancel
|
@@ -381,6 +412,8 @@ en:
|
|
381
412
|
header:
|
382
413
|
actions: Action
|
383
414
|
title: Collection title
|
415
|
+
form_permission:
|
416
|
+
visibility: Visibility <small>Who should be able to view or download this content?</small>
|
384
417
|
form_permission_under_embargo:
|
385
418
|
help_html: "<strong>This work is under embargo.</strong> You can change the settings of the embargo here, or you can visit the %{edit_link} to deactivate it."
|
386
419
|
legend_html: Visibility <small>Who should be able to view or download this content?</small>
|
@@ -390,10 +423,13 @@ en:
|
|
390
423
|
legend_html: Visibility <small>Who should be able to view or download this content?</small>
|
391
424
|
management_page: Lease Management Page
|
392
425
|
form_progress:
|
426
|
+
proxy_depositors: Proxy Depositors - Select the user on whose behalf you are depositing
|
393
427
|
required_agreement: Check deposit agreement
|
394
428
|
required_descriptions: Describe your work
|
395
429
|
required_files: Add files
|
396
430
|
requirements: Requirements
|
431
|
+
saving_your_work: Saving your work. This may take a few moments
|
432
|
+
yourself: Yourself
|
397
433
|
form_rendering:
|
398
434
|
help_html: Select file(s) to be offered as a download for every image in Universal Viewer, for example a PDF of the whole work.
|
399
435
|
legend_html: Rendering
|
@@ -401,12 +437,36 @@ en:
|
|
401
437
|
help_html: Select the file with media that represents this work.
|
402
438
|
legend_html: Representative Media
|
403
439
|
form_share:
|
440
|
+
access_type_to_grant: Access type to grant
|
441
|
+
account_label_without_suffix: "%{account_label} (without the %{suffix} part)"
|
404
442
|
add_sharing: Add Sharing
|
443
|
+
add_this_group_html: Add<span class="sr-only"> this group</span>
|
405
444
|
currently_sharing: Currently Shared With
|
445
|
+
depositor: Depositor
|
406
446
|
directions: Regardless of the visibility settings for this work, you can also share it with other users and groups.
|
447
|
+
group: Group
|
448
|
+
permissions_save_note_html: Permissions are <strong>not</strong> saved until the "Save" button is pressed at the bottom of the page.
|
449
|
+
use_add_button: Use the add button to give access to one %{account_label} at a time (it will be added to the list below). Select the user, by name or %{account_label} \. Then select the access level you wish to grant and click on Add this %{account_label} to complete adding the permission.
|
407
450
|
form_thumbnail:
|
408
451
|
help_html: Select the file to be used as the thumbnail for this work.
|
409
452
|
legend_html: Thumbnail
|
453
|
+
form_visibility_component:
|
454
|
+
visibility: Visibility
|
455
|
+
inspect_work:
|
456
|
+
back_to: Back to
|
457
|
+
entity_id: Entity ID
|
458
|
+
id: ID
|
459
|
+
name: Name
|
460
|
+
object_name: Object Name
|
461
|
+
persistence: Persistence
|
462
|
+
processing_entity_id: Processing Entity ID
|
463
|
+
proxy_for: Proxy for
|
464
|
+
roles: Roles
|
465
|
+
state: State
|
466
|
+
state_name: State Name
|
467
|
+
users: Users
|
468
|
+
workflow: Workflow
|
469
|
+
workflow_comments: Workflow Comments
|
410
470
|
items:
|
411
471
|
actions: Actions
|
412
472
|
date_uploaded: Date Uploaded
|
@@ -426,16 +486,66 @@ en:
|
|
426
486
|
definitions_html: "<strong>View/Download:</strong> this file (both contents and metadata) is accessible from within %{application_name}.<br /> <strong>Edit:</strong> this file (both contents and metadata) can be edited. You may only grant this permission to %{institution_name} users and/or groups."
|
427
487
|
share_with_html: You may grant "View/Download" or "Edit" access for specific users and/or groups to files. Enter a valid %{account_name}, one at a time, select the access level for that user, and click +Add.
|
428
488
|
show:
|
489
|
+
items: Items
|
429
490
|
last_modified: Last modified
|
491
|
+
relationships: Relations
|
492
|
+
show_actions:
|
493
|
+
analytics: Analytics
|
494
|
+
attach_child: Attach Child
|
495
|
+
confirm_delete: Delete this %{work_type}?
|
496
|
+
delete: Delete
|
497
|
+
edit: Edit
|
498
|
+
feature: Feature
|
499
|
+
unfeature: Unfeature
|
430
500
|
social_media:
|
431
501
|
facebook: Facebook
|
502
|
+
facebook_share: Share on Facebook
|
432
503
|
google: Google+
|
504
|
+
google_share: Share on Google+
|
433
505
|
tumblr: Tumblr
|
506
|
+
tumblr_share: Share on Tumblr
|
434
507
|
twitter: Twitter
|
508
|
+
twitter_share: Share on Twitter
|
509
|
+
unauthorized:
|
510
|
+
id: 'ID: %{id}'
|
511
|
+
is_private: The %{type} you have tried to access is private
|
512
|
+
page_is_private: The page you have tried to access is private
|
513
|
+
unauthorized: Unauthorized
|
514
|
+
work_button_row:
|
515
|
+
analytics: Analytics
|
516
|
+
attach: Attach %{type}
|
517
|
+
delete: Delete
|
518
|
+
delete_type: Delete this %{type}?
|
519
|
+
edit: Edit
|
520
|
+
feature: Feature
|
521
|
+
unfeature: Unfeature
|
522
|
+
workflow_actions:
|
523
|
+
actions: Actions
|
524
|
+
previous_comments: Previous Comments
|
525
|
+
review_comment: Review Comment
|
526
|
+
title: Review and Approval
|
527
|
+
base/unauthorized:
|
528
|
+
is_private: The %{type} you have tried to access is private
|
529
|
+
unauthorized: Unauthorized
|
435
530
|
batch:
|
436
531
|
help:
|
437
532
|
resource_type: You may select multiple types to apply to all files
|
438
533
|
title: Filename will be the default title. Please provide a more meaningful title, and filenames will still be preserved by the system.
|
534
|
+
batch_edits:
|
535
|
+
check_all:
|
536
|
+
select_to_access_selection_options: Select to access selection option
|
537
|
+
delete_selected:
|
538
|
+
button_label: Delete Selected
|
539
|
+
deleting_file_from: Deleting a file from %{application_name} is permanent. Click OK to delete this file from %{application_name}, or Cancel to cancel this operation
|
540
|
+
edit:
|
541
|
+
apply_changes_to: 'Changes will be applied to: (%{x_number_of} works)'
|
542
|
+
batch_edit_descriptions: Batch Edit Descriptions <small>Click on labels below to edit work descriptions.</small>
|
543
|
+
clear_batch: Clear Batch
|
544
|
+
descriptions: Descriptions
|
545
|
+
descriptions_title: 'Descriptions:'
|
546
|
+
permissions: Permissions
|
547
|
+
sharing: Sharing
|
548
|
+
visibility: Visibility
|
439
549
|
batch_uploads:
|
440
550
|
disabled: Feature disabled by administrator
|
441
551
|
files:
|
@@ -451,6 +561,9 @@ en:
|
|
451
561
|
header: Save Works
|
452
562
|
bread_crumb:
|
453
563
|
search_results: Back to search results
|
564
|
+
citations:
|
565
|
+
work:
|
566
|
+
citation_formats: Citation Formats
|
454
567
|
collection:
|
455
568
|
actions:
|
456
569
|
add_existing_works:
|
@@ -481,12 +594,14 @@ en:
|
|
481
594
|
desc: Add existing collections to this collection
|
482
595
|
modal_title: Add this Collection Within Another Collection
|
483
596
|
select_label: Select collection
|
597
|
+
also_belongs_to: This work also belongs to
|
484
598
|
browse_view: Browse View
|
485
599
|
document_list:
|
486
600
|
edit: Edit
|
487
601
|
no_visible_works: The collection is either empty or does not contain items to which you have access.
|
488
602
|
edit:
|
489
603
|
manage_items: Manage Items in this Collection
|
604
|
+
edit_view: Edit View
|
490
605
|
form:
|
491
606
|
additional_fields: Additional fields
|
492
607
|
description: Descriptions
|
@@ -515,6 +630,7 @@ en:
|
|
515
630
|
buttons:
|
516
631
|
remove_from_collection: Remove
|
517
632
|
remove_this_sub_collection: Remove
|
633
|
+
item_count: Item
|
518
634
|
no_visible_parent_collections: There are no visible parent collections.
|
519
635
|
no_visible_subcollections: There are no visible subcollections.
|
520
636
|
parent_collection_header: Parent Collections
|
@@ -522,6 +638,10 @@ en:
|
|
522
638
|
show_more_parent_collections: show more...
|
523
639
|
subcollection_count: Subcollections
|
524
640
|
works_in_collection: Works
|
641
|
+
sort_and_per_page:
|
642
|
+
number_of_results_to_display_per_page: Number of results to display per page
|
643
|
+
results_per_page: 'Results per page:'
|
644
|
+
sort_by_html: "<span>Sort by:</span>"
|
525
645
|
contact_form:
|
526
646
|
button_label: Send
|
527
647
|
email_label: Your Email
|
@@ -584,15 +704,22 @@ en:
|
|
584
704
|
relationships: Relationships
|
585
705
|
sharing: Sharing
|
586
706
|
form_branding:
|
707
|
+
alt_text: 'Alt Text:'
|
587
708
|
banner:
|
588
709
|
description: An image to be displayed at the top of the collection page. For best results, upload an image (JPG, GIF or PNG) that is at least 120 pixels tall and 1200 pixels wide.
|
589
710
|
label: Banner
|
590
711
|
branding:
|
591
712
|
description: Optionally, you can upload a banner image and/or logo images to associate with this collection. If uploaded, these images will be displayed at the top of the collection page to provide unique branding for the collection.
|
592
713
|
label: Branding
|
714
|
+
choose_file: Choose File
|
715
|
+
link_url: 'Link URL:'
|
593
716
|
logo:
|
594
717
|
description: One or more images to be displayed at the top of the collection page. For best results, upload an image (JPG, GIF or PNG) that is 40 pixels in height. Larger images will be resized to 40 pixels in height.
|
595
718
|
label: Logo
|
719
|
+
previous: Previous
|
720
|
+
remove: Remove
|
721
|
+
remove_current_banner: Remove Current Banner
|
722
|
+
remove_logo: Remove Logo
|
596
723
|
form_discovery:
|
597
724
|
para1: These settings determine who is able to discover and view this collection's landing page; they do not affect the visibility of items in the collection.
|
598
725
|
para2: If you chose not to make this collection open access, you can still share the collection with specific users and groups using the Sharing tab.
|
@@ -619,7 +746,13 @@ en:
|
|
619
746
|
add_sharing: Add Sharing
|
620
747
|
add_user: Add user
|
621
748
|
current_shared: Currently Shared With
|
749
|
+
depositor: Depositor
|
750
|
+
manager: Manager
|
622
751
|
note: Regardless of the visibility settings of this collection, you can share this collection with specific groups and users.
|
752
|
+
search_for_a_group: Search for a group...
|
753
|
+
search_for_a_user: Search for a user...
|
754
|
+
select_a_role: Select a role...
|
755
|
+
viewer: Viewer
|
623
756
|
form_share_table:
|
624
757
|
allow_all_registered: Allow all registered
|
625
758
|
depositors:
|
@@ -660,6 +793,32 @@ en:
|
|
660
793
|
show_less_parent_collections: "...show less"
|
661
794
|
show_more_parent_collections: show more...
|
662
795
|
subcollection_count: Subcollections
|
796
|
+
show_descriptions:
|
797
|
+
descriptions: Descriptions
|
798
|
+
show_document_list:
|
799
|
+
action: Action
|
800
|
+
date_added: Date added
|
801
|
+
list_items_in_collection: List of items in this collection
|
802
|
+
owner: Owner
|
803
|
+
title: Title
|
804
|
+
visibility: Visibility
|
805
|
+
show_document_list_menu:
|
806
|
+
select: Select
|
807
|
+
show_document_list_row:
|
808
|
+
creator: 'Creator:'
|
809
|
+
depositor: 'Depositor:'
|
810
|
+
edit_access: 'Edit Access:'
|
811
|
+
sort_and_per_page:
|
812
|
+
show_par_page_html: Show %{select} per page
|
813
|
+
sort_by: 'Sort By:'
|
814
|
+
work_action_menu:
|
815
|
+
delete_work: Delete Work
|
816
|
+
deleting_from_work: Deleting a work from %{application_name} is permanent. Click OK to delete this work from %{application_name}, or Cancel to cancel this operation
|
817
|
+
edit_work: Edit Work
|
818
|
+
press_to: Press to
|
819
|
+
remove_from_collection: Remove from collection
|
820
|
+
select_an_action: Select an action
|
821
|
+
transfer_ownership_of_work: Transfer Ownership of Work
|
663
822
|
create_work: Create Work
|
664
823
|
current_proxies: Current Proxies
|
665
824
|
delete_notification: Delete Notification
|
@@ -683,6 +842,8 @@ en:
|
|
683
842
|
collection_update_success: Collection was successfully updated.
|
684
843
|
collections_confirmation_html: Deleting <span class='pluralized'>this collection</span> will permanently remove <span class='pluralized'>this collection</span> from the repository. Items in <span class='pluralized'>this collection</span> will remain in the repository. Are you sure you want to delete <span class='pluralized'>this collection</span>?
|
685
844
|
collections_confirmation_no_items_html: Are you sure you want to delete this collection? This action cannot be undone.
|
845
|
+
collections_confirmation_plural: these collections
|
846
|
+
collections_confirmation_singular: this collection
|
686
847
|
delete_admin_set: Delete collection
|
687
848
|
delete_admin_set_deny: This collection is defined as Admin Set and is not empty. To delete this Admin Set, you must first remove (delete or move to another Admin Set collection) all items from the Admin Set.
|
688
849
|
delete_collection: Delete collection
|
@@ -725,6 +886,7 @@ en:
|
|
725
886
|
heading:
|
726
887
|
access: Access
|
727
888
|
action: Actions
|
889
|
+
caption: List of items in this collection
|
728
890
|
collection_type: Collection Type
|
729
891
|
date_modified: Last Modified
|
730
892
|
date_uploaded: Date Added
|
@@ -734,6 +896,10 @@ en:
|
|
734
896
|
title: Title
|
735
897
|
type: Type
|
736
898
|
visibility: Visibility
|
899
|
+
collection:
|
900
|
+
visibility: Visibility of Collection
|
901
|
+
work:
|
902
|
+
visibility: Visibility of Work
|
737
903
|
highlighted: My Highlights
|
738
904
|
shared: Works Shared with Me
|
739
905
|
sr:
|
@@ -741,9 +907,11 @@ en:
|
|
741
907
|
check_all_label: Select all files to be added to a collection or edited
|
742
908
|
detail_label: Display summary details of
|
743
909
|
listing: Listing of items you have deposited in
|
910
|
+
number_of_results_to_display_per_page: Number of results to display per page
|
744
911
|
press_to: Press to
|
745
912
|
results_per_page: Number of results to display per page
|
746
913
|
show_label: Display all details of
|
914
|
+
thumbnail: thumbnail
|
747
915
|
works: Works
|
748
916
|
your_collections: Your Collections
|
749
917
|
your_works: Your Works
|
@@ -756,7 +924,19 @@ en:
|
|
756
924
|
no_proxies: There are no proxies assigned
|
757
925
|
no_transfer_requests: You haven't received any work transfer requests
|
758
926
|
no_transfers: You haven't transferred any work
|
927
|
+
profiles:
|
928
|
+
edit_primary:
|
929
|
+
change_picture: <i class="glyphicon glyphicon-camera"></i> Change picture
|
930
|
+
delete_picture: Delete picture
|
931
|
+
delete_picture_data_content: If you would like to remove your picture entirely, check the box and save your profile.
|
932
|
+
delete_picture_data_original_title: Delete Picture
|
933
|
+
facebook_handle: <i class="fa fa-facebook" aria-hidden="true"></i> Facebook Handle
|
934
|
+
google_handle: <i class="fa fa-google-plus"></i> Google+ Handle
|
935
|
+
help_change_picture_type: JPG, GIF, or PNG (less than 2MB)
|
936
|
+
save_profile: <i class="glyphicon glyphicon-save"></i> Save Profile
|
937
|
+
twitter_handle: <i class="fa fa-twitter" aria-hidden="true"></i> Twitter Handle
|
759
938
|
proxy_activity: Proxy Activity
|
939
|
+
proxy_add_deny: You cannot make yourself a proxy
|
760
940
|
proxy_delete: Delete Proxy
|
761
941
|
proxy_help: Select a user who can deposit works on your behalf. Both you and your proxy will be able to make changes to these works. You can revoke a proxy by clicking the Delete Proxy button. To revoke their ability to edit a work they previously submitted, remove them from the Sharing tab on each work.
|
762
942
|
proxy_user: Proxy User
|
@@ -771,7 +951,9 @@ en:
|
|
771
951
|
subtitle: Current Status
|
772
952
|
title: Repository Objects
|
773
953
|
show_admin:
|
954
|
+
current_registered_users: Current
|
774
955
|
new_visitors: New Visitors
|
956
|
+
past_30_days: Past 30 days
|
775
957
|
registered_users: Registered Users
|
776
958
|
returning_visitors: Returning Visitors
|
777
959
|
total_visitors: Total Visitors
|
@@ -781,6 +963,7 @@ en:
|
|
781
963
|
file_views: View
|
782
964
|
files: Files deposited
|
783
965
|
heading: Your Statistics
|
966
|
+
joined_on: Joined on
|
784
967
|
works: Works created
|
785
968
|
title: Dashboard
|
786
969
|
transfer_of_ownership: Transfers of Ownership
|
@@ -820,6 +1003,7 @@ en:
|
|
820
1003
|
deactivate: Deactivate Embargo
|
821
1004
|
deactivate_selected: Deactivate Embargoes for Selected
|
822
1005
|
missing: There are no expired embargoes in effect at this time.
|
1006
|
+
select_all: Select All
|
823
1007
|
table_headers:
|
824
1008
|
release_date: Embargo Release Date
|
825
1009
|
title: Title
|
@@ -837,12 +1021,14 @@ en:
|
|
837
1021
|
download: Download the file
|
838
1022
|
downloadable_content:
|
839
1023
|
audio_link: Download audio
|
1024
|
+
audio_tag_not_supported: Your browser does not support the audio tag.
|
840
1025
|
default_link: Download file
|
841
1026
|
heading: Downloadable Content
|
842
1027
|
image_link: Download image
|
843
1028
|
office_link: Download file
|
844
1029
|
pdf_link: Download PDF
|
845
1030
|
video_link: Download video
|
1031
|
+
video_tag_not_supported: Your browser does not support the video tag.
|
846
1032
|
file_sets:
|
847
1033
|
actions:
|
848
1034
|
delete: Delete
|
@@ -853,13 +1039,28 @@ en:
|
|
853
1039
|
edit: Edit
|
854
1040
|
edit_title: Edit %{file_set}
|
855
1041
|
header: Select an action
|
1042
|
+
press_to: Press to
|
856
1043
|
versions: Versions
|
857
1044
|
versions_title: Display previous versions
|
1045
|
+
asset_deleted_flash:
|
1046
|
+
message: The file has been deleted.
|
1047
|
+
asset_saved_flash:
|
1048
|
+
message:
|
1049
|
+
one: The file %{saved_files} has been saved.
|
1050
|
+
other: The files %{saved_files} have been saved.
|
1051
|
+
asset_updated_flash:
|
1052
|
+
message: The file %{link_to_file} has been updated.
|
1053
|
+
descriptions:
|
1054
|
+
save: Save Descriptions
|
1055
|
+
title: Descriptions
|
858
1056
|
edit:
|
859
1057
|
descriptions: Descriptions
|
860
1058
|
header: Edit %{file_set}
|
861
1059
|
permissions: Permissions
|
862
1060
|
versions: Versions
|
1061
|
+
extra_fields_modal:
|
1062
|
+
additional: Additional
|
1063
|
+
label: Additional %{label}(s)
|
863
1064
|
form:
|
864
1065
|
attach_to: Attach to %{parent}
|
865
1066
|
cancel: Cancel
|
@@ -870,10 +1071,19 @@ en:
|
|
870
1071
|
permission:
|
871
1072
|
save: Save
|
872
1073
|
permission_form:
|
1074
|
+
add_new_group_skel: Add this group
|
1075
|
+
add_new_user_skel: Add this %{account_label}
|
873
1076
|
applied_to: "(applied to all files just uploaded)"
|
1077
|
+
bulk: Bulk
|
874
1078
|
depositor: Depositor
|
875
1079
|
enter: Enter %{account_label} (one at a time)
|
876
1080
|
header: Permissions
|
1081
|
+
new_group_help_text: Use the add button to give access to one group at a time (it will be added to the list below).
|
1082
|
+
new_group_name_skel: Group
|
1083
|
+
new_group_permission_skel: Access type to grant
|
1084
|
+
new_user_help_text: Use the add button to give access to one %{account_label} at a time (it will be added to the list below). Select the user, by name or %{account_label} . Then select the access level youwish to grant and click on Add this %{account_label} to complete adding the permission.
|
1085
|
+
new_user_name_skel: "%{account_label} (without the %{suffix} part)"
|
1086
|
+
new_user_permission_skel: Access type to grant
|
877
1087
|
optional: "(optional)"
|
878
1088
|
save_note_html: Permissions are <strong>not</strong> saved until the "Save" button is pressed at the bottom of the page.
|
879
1089
|
select_group: Select a group
|
@@ -881,12 +1091,33 @@ en:
|
|
881
1091
|
table_title_access: Access Level
|
882
1092
|
table_title_user: Person/Group
|
883
1093
|
user_search: Search for a user
|
1094
|
+
proxy:
|
1095
|
+
message: "%{sending_user} has deposited the file %{title} on your behalf."
|
1096
|
+
show_actions:
|
1097
|
+
analytics: Analytics
|
1098
|
+
confirm_delete_this: Delete this %{type}?
|
1099
|
+
delete_this: Delete This %{type}
|
1100
|
+
edit_this: Edit This %{type}
|
1101
|
+
show_details:
|
1102
|
+
characterization: Characterization
|
1103
|
+
date_modified: Date Modified
|
1104
|
+
date_uploaded: Date Uploaded
|
1105
|
+
depositor: Depositor
|
1106
|
+
file_details: File Details
|
1107
|
+
fixity_check: Fixity Check
|
1108
|
+
not_yet_characterized: Not Yet Characterized
|
884
1109
|
versioning:
|
1110
|
+
choose_file: Choose New Version File
|
885
1111
|
current: Current Version
|
886
1112
|
header: Versions
|
1113
|
+
previous: Previous
|
1114
|
+
remove: Remove
|
1115
|
+
remove_current_files: Remove Current Files
|
1116
|
+
remove_new_version: Remove New Version File
|
887
1117
|
restore: Restore Previous Version
|
888
1118
|
restore_from: Restore From
|
889
1119
|
save: Save Revision
|
1120
|
+
save_your_note: You must click "Save Revision" to revert a previous version of this file
|
890
1121
|
upload: Upload New Version
|
891
1122
|
help:
|
892
1123
|
header: User Support
|
@@ -896,6 +1127,7 @@ en:
|
|
896
1127
|
link: View all collections
|
897
1128
|
tab_label: Explore Collections
|
898
1129
|
title: Explore Collections
|
1130
|
+
thumbnail: thumbnail
|
899
1131
|
featured_researcher:
|
900
1132
|
missing: No researchers have been featured.
|
901
1133
|
tab_label: Featured Researcher
|
@@ -981,18 +1213,69 @@ en:
|
|
981
1213
|
single: has been saved.
|
982
1214
|
subject: Batch upload complete
|
983
1215
|
title: Files uploaded successfully
|
1216
|
+
models:
|
1217
|
+
hyrax/file_set: File Set
|
1218
|
+
hyrax/pcdm_collection: Collection
|
1219
|
+
hyrax/work: Work
|
984
1220
|
my:
|
985
1221
|
count:
|
986
1222
|
collections:
|
1223
|
+
collections_listing: Collections listing
|
987
1224
|
in_repo: "<strong>%{total_count} collections</strong> in the repository"
|
988
1225
|
you_manage: "<strong>%{total_count} collections</strong> you can manage in the repository"
|
989
1226
|
you_own: "<strong>%{total_count} collections</strong> you own in the repository"
|
990
1227
|
works:
|
991
1228
|
in_repo: "<strong>%{total_count} works</strong> in the repository"
|
1229
|
+
works_listing: Works listing
|
992
1230
|
you_manage: "<strong>%{total_count} works</strong> you can manage in the repository"
|
993
1231
|
you_own: "<strong>%{total_count} works</strong> you own in the repository"
|
1232
|
+
sort_and_per_page:
|
1233
|
+
number_of_results_to_display_per_page: Number of results to display per page
|
994
1234
|
nav_safety:
|
995
1235
|
change_tab_message: Are you sure you want to leave this tab? Any unsaved data will be lost.
|
1236
|
+
notifications:
|
1237
|
+
batch_create_failure:
|
1238
|
+
message: 'The batch create for %{user} failed: %{messages}'
|
1239
|
+
subject: Failing batch create
|
1240
|
+
batch_create_success:
|
1241
|
+
message: The batch create for %{user} passed.
|
1242
|
+
subject: Passing batch create
|
1243
|
+
fixity_check_failure:
|
1244
|
+
message: The fixity check run at %{log_date} for %{file_title} (%{uri}) failed.
|
1245
|
+
subject: Failing Fixity Check
|
1246
|
+
import_url_failure:
|
1247
|
+
subject: File Import Error
|
1248
|
+
proxy_deposit_request:
|
1249
|
+
transfer_on_create:
|
1250
|
+
message: "%{user_link} wants to transfer a work to you. Review all %{transfer_link}"
|
1251
|
+
subject: Ownership Change Request
|
1252
|
+
transfer_link_label: transfer requests
|
1253
|
+
transfer_on_update:
|
1254
|
+
comments: 'Comments: %{receiver_comment}'
|
1255
|
+
message: Your transfer request was %{status}.
|
1256
|
+
subject: Ownership Change %{status}
|
1257
|
+
proxy_depositor_added:
|
1258
|
+
grantee_message: "%{grantor} has assigned you as a proxy depositor"
|
1259
|
+
grantor_message: You have assigned %{grantee} as a proxy depositor
|
1260
|
+
subject: Proxy Depositor Added
|
1261
|
+
workflow:
|
1262
|
+
changes_required:
|
1263
|
+
message: |-
|
1264
|
+
%{title} (%{link}) requires additional changes before approval.
|
1265
|
+
'%{comment}'
|
1266
|
+
subject: Your deposit requires changes
|
1267
|
+
deposited:
|
1268
|
+
message: "%{title} (%{link}) was approved by %{user}. %{comment}"
|
1269
|
+
subject: Deposit has been approved
|
1270
|
+
pending_review:
|
1271
|
+
message: "%{title} (%{link}) was deposited by %{user} and is awaiting approval %{comment}"
|
1272
|
+
subject: Deposit needs review
|
1273
|
+
operations:
|
1274
|
+
index:
|
1275
|
+
operations_type: Operations Type
|
1276
|
+
status: Status
|
1277
|
+
title: Operations
|
1278
|
+
updated: Updated
|
996
1279
|
pages:
|
997
1280
|
cancel: Cancel
|
998
1281
|
tabs:
|
@@ -1002,6 +1285,15 @@ en:
|
|
1002
1285
|
terms_page: Terms of Use
|
1003
1286
|
updated: Pages updated.
|
1004
1287
|
passive_consent_to_agreement: By saving this work I agree to the
|
1288
|
+
permission_levels:
|
1289
|
+
edit: "Edit access"
|
1290
|
+
read: "View/Download"
|
1291
|
+
owner:
|
1292
|
+
edit: "Edit access"
|
1293
|
+
options:
|
1294
|
+
edit: "Edit"
|
1295
|
+
none: "Choose Access"
|
1296
|
+
read: "View/Download"
|
1005
1297
|
search:
|
1006
1298
|
button:
|
1007
1299
|
html: <span class="glyphicon glyphicon-search" aria-hidden="true"></span> Go
|
@@ -1048,7 +1340,21 @@ en:
|
|
1048
1340
|
link: Link
|
1049
1341
|
no_links: No links have been generated
|
1050
1342
|
title: Single-Use Links
|
1343
|
+
single_use_links_viewer:
|
1344
|
+
single_use_error:
|
1345
|
+
help: '%{application_name} could not locate the single use link. This link either expired or had been used previously. We apologize for the inconvenience. You might be interested in using <a href="/help/">the help page</a> for looking up solutions.'
|
1346
|
+
link_expired_not_found: Single Use Link Expired or Not Found
|
1347
|
+
link_not_found: Single use link Not Found
|
1051
1348
|
sort_label: Sort the listing of items
|
1349
|
+
static:
|
1350
|
+
mendeley:
|
1351
|
+
contact_form: Contact Form
|
1352
|
+
export_to_mendeley: Export to Mendeley
|
1353
|
+
export_to_mendeley_details: 'Exporting to Mendeley is supported via embedded metadata. If Mendeley does not automatically pick up metadata for deposited files, please report the issue via the '
|
1354
|
+
zotero:
|
1355
|
+
contact_form: Contact Form
|
1356
|
+
export_to_zotero: Export to Zotero
|
1357
|
+
export_to_zotero_details: 'Exporting to Zotero is supported via embedded metadata. If Zotero does not automatically pick up metadata for deposited files, please report the issue via the '
|
1052
1358
|
toolbar:
|
1053
1359
|
dashboard:
|
1054
1360
|
menu: Dashboard
|
@@ -1069,6 +1375,29 @@ en:
|
|
1069
1375
|
placeholder: Search for a user
|
1070
1376
|
sr_only_description: Select a user to transfer "%{work_title}" to, add optional comments and then press transfer.
|
1071
1377
|
title: Transfer Ownership of "%{work_title}"
|
1378
|
+
received:
|
1379
|
+
accept: Accept
|
1380
|
+
accept_the_file_and_allow_the_original_depositor_to_retain_access_and_authorize: Accept the file and allow the original depositor to retain access and authorize the original depositor as a proxy to deposit file on your behalf.
|
1381
|
+
accept_the_file_and_allow_the_original_depositor_to_retain_access_to_edit_the_file_and_metadata: Accept the file and allow the original depositor to retain access to edit the file and metadata.
|
1382
|
+
accept_the_file_remove_access_from_the_original_depositor: Accept the file remove access from the original depositor.
|
1383
|
+
allow_depositor_to_retain_edit_access: Allow depositor to retain edit access
|
1384
|
+
are_you_sure_you_want_to_reject_this_request: Are you sure you want to reject this request?
|
1385
|
+
authorize_depositor_as_proxy: Authorize depositor as proxy
|
1386
|
+
comments: Comments
|
1387
|
+
date: Date
|
1388
|
+
from: From
|
1389
|
+
reject: Reject
|
1390
|
+
remove_depositor_access: Remove depositor access
|
1391
|
+
status: Status
|
1392
|
+
title: Title
|
1393
|
+
sent:
|
1394
|
+
are_you_sure_you_want_to_cancel_this_request: Are you sure you want to cancel this request?
|
1395
|
+
cancel: Cancel
|
1396
|
+
comments: Comments
|
1397
|
+
date: Date
|
1398
|
+
from: From
|
1399
|
+
status: Status
|
1400
|
+
title: Title
|
1072
1401
|
upload:
|
1073
1402
|
alert:
|
1074
1403
|
contact_href_text: contact form
|
@@ -1084,6 +1413,7 @@ en:
|
|
1084
1413
|
change_access_flash_message: Updating file access levels. This may take a few minutes. You may want to refresh your browser or return to this record later to see the updated file access levels.
|
1085
1414
|
change_access_message_html: "<p>You have changed the access level on work <i>%{curation_concern}</i>, making it accessible to other users or groups to view or edit.</p><p>Would you like change all of the files within the work to have the same access users, groups and visibility as well?</p>"
|
1086
1415
|
change_access_no_message: No. I'll update it manually.
|
1416
|
+
change_access_title_html: Apply changes to contents?
|
1087
1417
|
change_access_yes_message: Yes please.
|
1088
1418
|
change_permissions_message_html: "<p>You have changed the permissions on this %{curation_concern_human_readable_type}, <i>%{curation_concern}</i>, making it visible to <b>%{visibility_badge}</b>.</p><p>Would you like change all of the files within the %{curation_concern_human_readable_type} to <b>%{visibility_badge}</b> as well?</p>"
|
1089
1419
|
local_ingest:
|
@@ -1094,6 +1424,34 @@ en:
|
|
1094
1424
|
tab_label: My Computer
|
1095
1425
|
permissions_message: Updating file permissions. This may take a few minutes. You may want to refresh your browser or return to this record later to see the updated file permissions.
|
1096
1426
|
processing: File is being processed; you may edit when processing has completed
|
1427
|
+
uploads:
|
1428
|
+
js_templates:
|
1429
|
+
display_label: Display label
|
1430
|
+
error: Error
|
1431
|
+
set_all_to_this_resource_type: Set all to this Resource Type
|
1432
|
+
start: Start
|
1433
|
+
js_templates_branding:
|
1434
|
+
alt_text: 'Alt Text:'
|
1435
|
+
error: Error
|
1436
|
+
link_url: 'Link URL:'
|
1437
|
+
previous: previous
|
1438
|
+
remove: Remove
|
1439
|
+
remove_new_banner: Remove New Banner
|
1440
|
+
remove_new_logo: Remove New Logo
|
1441
|
+
js_templates_versioning:
|
1442
|
+
display_label: Display label
|
1443
|
+
error: Error
|
1444
|
+
previous: previous
|
1445
|
+
remove: Remove
|
1446
|
+
remove_new_version: Remove New Version File
|
1447
|
+
set_all_to_this_resource_type: Set all to this Resource Type
|
1448
|
+
start: Start
|
1449
|
+
options:
|
1450
|
+
messages:
|
1451
|
+
accept_file_types: File type not allowed
|
1452
|
+
max_file_size: File is too large
|
1453
|
+
max_number_of_files: Maximum number of files exceeded
|
1454
|
+
min_file_size: File is too small
|
1097
1455
|
user_profile:
|
1098
1456
|
orcid:
|
1099
1457
|
alt: ORCID icon
|
@@ -1106,6 +1464,24 @@ en:
|
|
1106
1464
|
connected: Connected!
|
1107
1465
|
label: Zotero Profile
|
1108
1466
|
unlinked: Link with Zotero
|
1467
|
+
users:
|
1468
|
+
activity_log:
|
1469
|
+
date: Date
|
1470
|
+
user_activity: User Activity
|
1471
|
+
index:
|
1472
|
+
avatar: Avatar
|
1473
|
+
department: Department
|
1474
|
+
user_id: User Id
|
1475
|
+
user_name: User Name
|
1476
|
+
users: Users
|
1477
|
+
works_created: Works Created
|
1478
|
+
left_sidebar:
|
1479
|
+
view_users: View Users
|
1480
|
+
proxies:
|
1481
|
+
proxies: Proxies
|
1482
|
+
search_form:
|
1483
|
+
go: Go
|
1484
|
+
search_users: Search Users
|
1109
1485
|
visibility:
|
1110
1486
|
authenticated:
|
1111
1487
|
note_html: Restrict access to %{institution}.
|
@@ -1125,6 +1501,8 @@ en:
|
|
1125
1501
|
note_html: Keep to myself with option to share.
|
1126
1502
|
text: Private
|
1127
1503
|
restricted_title_attr: Change the visibility of this resource
|
1504
|
+
work_button_row:
|
1505
|
+
attach_child: Attach Child
|
1128
1506
|
workflow:
|
1129
1507
|
default:
|
1130
1508
|
deposit: Deposit
|
@@ -1132,6 +1510,7 @@ en:
|
|
1132
1510
|
state_error: 'The workflow: %{workflow_name} has not been updated. You are removing a state: %{state_name} with %{entity_count} entity/ies. A state may not be removed while it has active entities!'
|
1133
1511
|
unauthorized: The work is not currently available because it has not yet completed the approval process
|
1134
1512
|
works:
|
1513
|
+
missing_title: 'No Title'
|
1135
1514
|
create:
|
1136
1515
|
after_create_html: Your files are being processed by %{application_name} in the background. The metadata and access controls you specified are being applied. You may need to refresh this page to see these updates.
|
1137
1516
|
breadcrumb: Add New Work
|
@@ -1163,7 +1542,7 @@ en:
|
|
1163
1542
|
collection:
|
1164
1543
|
based_near: A place name related to the collection, such as its site of publication, or the city, state, or country the collection contents are about. Calls upon the <a href='http://www.geonames.org'>GeoNames web service</a>.
|
1165
1544
|
contributor: A person or group you want to recognize for playing a role in the creation of the collection, but not the primary role.
|
1166
|
-
creator: The person or group responsible for the collection. Usually this is the author of the content. Personal names should be entered with the last name first
|
1545
|
+
creator: 'The person or group responsible for the collection. Usually this is the author of the content. Personal names should be entered with the last name first: Smith, John'
|
1167
1546
|
date_created: The date on which the collection was created.
|
1168
1547
|
description: Free-text notes about the collection. Examples include abstracts of a paper or citation information for a journal article.
|
1169
1548
|
identifier: A unique handle identifying the collection. An example would be a DOI for a journal article, or an ISBN or OCLC number for a book.
|
@@ -1188,6 +1567,8 @@ en:
|
|
1188
1567
|
share_applies_to_new_works: When new works are created directly in the collection, grant sharing users and groups permissions for the new work according to their collection roles.
|
1189
1568
|
title: ''
|
1190
1569
|
defaults:
|
1570
|
+
abstract: A brief summary of a research article, thesis, review, conference proceeding, or any in-depth analysis of a particular subject.
|
1571
|
+
access_right: Contains information about who can access the resource or an indication of its security status.
|
1191
1572
|
based_near: A place name related to the work, such as its site of publication, or the city, state, or country the work contents are about. Calls upon the <a href='http://www.geonames.org'>GeoNames web service</a>.
|
1192
1573
|
contributor: A person or group you want to recognize for playing a role in the creation of the work, but not the primary role.
|
1193
1574
|
creator: The person or group responsible for the work. Usually this is the author of the content. Personal names should be entered with the last name first, e.g. "Smith, John.".
|
@@ -1200,6 +1581,7 @@ en:
|
|
1200
1581
|
publisher: The person or group making the work available. Generally this is the institution.
|
1201
1582
|
related_url: A link to a website or other specific content (audio, video, PDF document) related to the work. An example is the URL of a research project from which the work was derived.
|
1202
1583
|
resource_type: Pre-defined categories to describe the type of content being uploaded, such as "article" or "dataset." More than one type may be selected.
|
1584
|
+
rights_notes: Contains information about rights held in and over the resource.
|
1203
1585
|
subject: Headings or index terms describing what the work is about; these do need to conform to an existing vocabulary.
|
1204
1586
|
title: A name to aid in identifying a work.
|
1205
1587
|
labels:
|
@@ -1220,11 +1602,13 @@ en:
|
|
1220
1602
|
share_applies_to_new_works: APPLY TO NEW WORKS
|
1221
1603
|
title: Type name
|
1222
1604
|
defaults:
|
1605
|
+
abstract: Abstract
|
1606
|
+
access_right: Access Rights
|
1223
1607
|
admin_set_id: Administrative Set
|
1224
1608
|
based_near: Location
|
1225
1609
|
creator: Creator
|
1226
1610
|
date_created: Date Created
|
1227
|
-
description:
|
1611
|
+
description: Description
|
1228
1612
|
embargo_release_date: until
|
1229
1613
|
files: Upload a file
|
1230
1614
|
keyword: Keyword
|
@@ -1232,6 +1616,7 @@ en:
|
|
1232
1616
|
license: License
|
1233
1617
|
member_of_collection_ids: Add to collection
|
1234
1618
|
related_url: Related URL
|
1619
|
+
rights_notes: Rights notes
|
1235
1620
|
rights_statement: Rights statement
|
1236
1621
|
title: Title
|
1237
1622
|
visibility_after_embargo: then open it up to
|