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.it.yml
CHANGED
@@ -18,9 +18,11 @@ it:
|
|
18
18
|
fields:
|
19
19
|
facet:
|
20
20
|
admin_set_sim: Collezione
|
21
|
+
collection_type_gid_ssim: Tipo di raccolta
|
21
22
|
member_of_collections_ssim: Collezione
|
22
23
|
resource_type_sim: Tipo di risorsa
|
23
24
|
suppressed_bsi: Stato
|
25
|
+
visibility_ssi: Visibilità
|
24
26
|
show:
|
25
27
|
admin_set: 'In Impostazione amministrativa:'
|
26
28
|
based_near_label: luogo
|
@@ -38,6 +40,7 @@ it:
|
|
38
40
|
extension_whitelist_error: 'Non è consentito caricare i file %{extension}, i tipi consentiti: %{allowed_types}'
|
39
41
|
helpers:
|
40
42
|
action:
|
43
|
+
accept: Accettare
|
41
44
|
add: Inserisci
|
42
45
|
admin_set:
|
43
46
|
new: Crea nuovo set amministrativo
|
@@ -265,6 +268,7 @@ it:
|
|
265
268
|
collections: collezioni
|
266
269
|
configuration: Configurazione
|
267
270
|
content_blocks: Blocchi di contenuti
|
271
|
+
delete_all: Cancella tutto
|
268
272
|
notifications: notifiche
|
269
273
|
pages: pagine
|
270
274
|
profile: Profilo
|
@@ -279,6 +283,7 @@ it:
|
|
279
283
|
workflow_review: Revisione degli inviti
|
280
284
|
workflow_roles: Ruoli di flusso di lavoro
|
281
285
|
works: Lavori
|
286
|
+
works_listing: Elenco delle opere
|
282
287
|
stats:
|
283
288
|
deposited_form:
|
284
289
|
end_label: Fine [impostazione predefinita]
|
@@ -346,11 +351,33 @@ it:
|
|
346
351
|
default: La risorsa che hai tentato di modificare non può essere modificata in base alla tua richiesta.
|
347
352
|
background_attribution_html: ''
|
348
353
|
base:
|
354
|
+
attributes:
|
355
|
+
table_attribute_name: nome attributo
|
356
|
+
table_heading_attributes: attributi
|
357
|
+
table_values: Valore
|
358
|
+
visibility: Visibilità
|
349
359
|
citations:
|
360
|
+
citations: citazioni
|
361
|
+
endnote: EndNote
|
350
362
|
header: 'citazioni:'
|
363
|
+
mendeley: Mendeley
|
364
|
+
zotero: Zotero
|
365
|
+
file_manager:
|
366
|
+
back_to: Torna alla
|
367
|
+
toolbar: Barra degli strumenti
|
368
|
+
file_manager_actions:
|
369
|
+
save: Salva
|
370
|
+
sort_alphabetically: Ordinare in ordine alfabetico
|
371
|
+
file_manager_member_resource_options:
|
372
|
+
representative_media: Rappresentante Dei Media
|
373
|
+
thumbnail: Miniatura
|
374
|
+
form:
|
375
|
+
batch_link: Caricamento in batch
|
376
|
+
batch_upload_hint: Per creare un'opera separata per ciascuno dei file, vai a
|
351
377
|
form_child_work_relationships:
|
352
378
|
actions:
|
353
379
|
remove: Rimuovi da questo lavoro
|
380
|
+
add: Inserisci
|
354
381
|
attach_new_work: Deposita un nuovo lavoro come figlio di questo lavoro
|
355
382
|
caption: Attualmente questo lavoro contiene queste opere per bambini
|
356
383
|
confirm:
|
@@ -361,6 +388,9 @@ it:
|
|
361
388
|
actions: Azione
|
362
389
|
title: Titolo del lavoro
|
363
390
|
form_files:
|
391
|
+
add_files: Aggiungi file
|
392
|
+
add_folder: Aggiungi cartella
|
393
|
+
cancel_upload: Annulla caricamento
|
364
394
|
dropzone: Drop file qui.
|
365
395
|
local_upload_browse_everything_html: |
|
366
396
|
<p>È possibile aggiungere uno o più file da associare a questo lavoro.</p>
|
@@ -372,6 +402,7 @@ it:
|
|
372
402
|
form_member_of_collections:
|
373
403
|
actions:
|
374
404
|
remove: Rimuovi dalla raccolta
|
405
|
+
add: Inserisci
|
375
406
|
caption: Questo lavoro è attualmente in queste raccolte
|
376
407
|
confirm:
|
377
408
|
cancel: Annulla
|
@@ -380,6 +411,8 @@ it:
|
|
380
411
|
header:
|
381
412
|
actions: Azione
|
382
413
|
title: Titolo della collezione
|
414
|
+
form_permission:
|
415
|
+
visibility: Visibilità <small> Chi dovrebbe essere in grado di visualizzare o scaricare questo contenuto? </small>
|
383
416
|
form_permission_under_embargo:
|
384
417
|
help_html: "<strong>Questo lavoro è sotto embargo.</strong> È possibile modificare le impostazioni dell'embargo qui oppure è possibile visitare lo %{edit_link} per disattivarlo."
|
385
418
|
legend_html: Visibilità <small>Chi dovrebbe essere in grado di visualizzare o scaricare questo contenuto?</small>
|
@@ -393,6 +426,8 @@ it:
|
|
393
426
|
required_descriptions: Descrivi il tuo lavoro
|
394
427
|
required_files: Aggiungere i file
|
395
428
|
requirements: Requisiti
|
429
|
+
saving_your_work: Salvare il tuo lavoro. Questo potrebbe richiedere alcuni minuti
|
430
|
+
yourself: Te
|
396
431
|
form_rendering:
|
397
432
|
help_html: Selezionare i file da offrire come download per ogni immagine in Universal Viewer, ad esempio un PDF dell'intero lavoro.
|
398
433
|
legend_html: Rendering
|
@@ -400,12 +435,36 @@ it:
|
|
400
435
|
help_html: Seleziona il file con il supporto che rappresenta questo lavoro.
|
401
436
|
legend_html: Media rappresentativo
|
402
437
|
form_share:
|
438
|
+
access_type_to_grant: Tipo di accesso da concedere
|
439
|
+
account_label_without_suffix: "%{account_label} (senza la parte %{suffix})"
|
403
440
|
add_sharing: Aggiungi condivisione
|
441
|
+
add_this_group_html: Aggiungi <span class = "sr-only"> questo gruppo </span>
|
404
442
|
currently_sharing: Attualmente condiviso con
|
443
|
+
depositor: Depositante
|
405
444
|
directions: Indipendentemente dalle impostazioni di visibilità per questo lavoro, puoi anche condividerlo con altri utenti e gruppi.
|
445
|
+
group: Gruppo
|
446
|
+
permissions_save_note_html: Le autorizzazioni <strong> non </strong> vengono salvate fino a quando & quot; Salva & quot; il pulsante viene premuto nella parte inferiore della pagina.
|
447
|
+
use_add_button: Utilizzare il pulsante Aggiungi per dare accesso a uno %{account_label} alla volta (verrà aggiunto all'elenco seguente). Seleziona l'utente, per nome o %{account_label} \. Quindi selezionare il livello di accesso che si desidera concedere e fare clic su Aggiungi questo %{account_label} per completare l'aggiunta dell'autorizzazione.
|
406
448
|
form_thumbnail:
|
407
449
|
help_html: Seleziona il file da utilizzare come anteprima per questo lavoro.
|
408
450
|
legend_html: Thumbnail
|
451
|
+
form_visibility_component:
|
452
|
+
visibility: Visibilità
|
453
|
+
inspect_work:
|
454
|
+
back_to: Torna a
|
455
|
+
entity_id: ID entità
|
456
|
+
id: ID
|
457
|
+
name: Nome
|
458
|
+
object_name: Nome oggetto
|
459
|
+
persistence: Persistenza
|
460
|
+
processing_entity_id: ID entità di elaborazione
|
461
|
+
proxy_for: Proxy per
|
462
|
+
roles: ruoli
|
463
|
+
state: Stato
|
464
|
+
state_name: Nome dello stato
|
465
|
+
users: utenti
|
466
|
+
workflow: Flusso di lavoro
|
467
|
+
workflow_comments: Commenti sul flusso di lavoro
|
409
468
|
items:
|
410
469
|
actions: Azioni
|
411
470
|
date_uploaded: Data caricata
|
@@ -425,16 +484,62 @@ it:
|
|
425
484
|
definitions_html: "<strong>Visualizza / Scarica:</strong> questo file (sia i contenuti che i metadati) è accessibile dall'interno di %{application_name}. <br /> <strong>Modifica:</strong> questo file (sia i contenuti che i metadati) può essere modificato. È possibile concedere questa autorizzazione solo agli utenti e / o ai gruppi %{institution_name}."
|
426
485
|
share_with_html: È possibile concedere l'accesso "Visualizza / Scarica" o "Modifica" per utenti specifici e / o gruppi ai file. Immettere uno %{account_name} valido, uno alla volta, selezionare il livello di accesso per quell'utente e fare clic su + Aggiungi.
|
427
486
|
show:
|
487
|
+
items: Articoli
|
428
488
|
last_modified: Ultima modifica
|
489
|
+
relationships: Relazioni
|
490
|
+
show_actions:
|
491
|
+
analytics: Analytics
|
492
|
+
attach_child: Allegare Bambino
|
493
|
+
confirm_delete: Eliminare questo %{work_type} ?
|
494
|
+
delete: Eliminare
|
495
|
+
edit: Modifica
|
496
|
+
feature: Funzione
|
497
|
+
unfeature: Unfeature
|
429
498
|
social_media:
|
430
499
|
facebook: Facebook
|
431
500
|
google: Google+
|
432
501
|
tumblr: Tumblr
|
433
502
|
twitter: cinguettio
|
503
|
+
unauthorized:
|
504
|
+
id: 'ID: %{id}'
|
505
|
+
is_private: Lo %{type} a cui hai provato ad accedere è privato
|
506
|
+
page_is_private: La pagina a cui hai tentato di accedere è privata
|
507
|
+
unauthorized: non autorizzato
|
508
|
+
work_button_row:
|
509
|
+
analytics: analitica
|
510
|
+
attach: Allega %{type}
|
511
|
+
delete: Elimina
|
512
|
+
delete_type: Eliminare questo %{type}?
|
513
|
+
edit: modificare
|
514
|
+
feature: caratteristica
|
515
|
+
unfeature: Unfeature
|
516
|
+
workflow_actions:
|
517
|
+
actions: Azioni
|
518
|
+
previous_comments: Commenti precedenti
|
519
|
+
review_comment: Commento di revisione
|
520
|
+
title: Revisione e approvazione
|
521
|
+
base/unauthorized:
|
522
|
+
is_private: Lo %{type} a cui hai provato ad accedere è privato
|
523
|
+
unauthorized: non autorizzato
|
434
524
|
batch:
|
435
525
|
help:
|
436
526
|
resource_type: È possibile selezionare più tipi da applicare a tutti i file
|
437
527
|
title: Il nome del file sarà il titolo predefinito. Fornire un titolo più significativo e i nomi dei file saranno ancora conservati dal sistema.
|
528
|
+
batch_edits:
|
529
|
+
check_all:
|
530
|
+
select_to_access_selection_options: Selezionare per accedere all'opzione di selezione
|
531
|
+
delete_selected:
|
532
|
+
button_label: Elimina Selezionato
|
533
|
+
deleting_file_from: L'eliminazione di un file da %{application_name} è permanente. Fare clic su OK per eliminare questo file da %{application_name} o Annulla per annullare questa operazione
|
534
|
+
edit:
|
535
|
+
apply_changes_to: 'Le modifiche verranno applicate a: (funziona %{x_number_of})'
|
536
|
+
batch_edit_descriptions: Descrizioni modifica batch & nbsp; & nbsp; & nbsp; <small> Fai clic sulle etichette sottostanti per modificare le descrizioni dei lavori. </small>
|
537
|
+
clear_batch: Cancella batch
|
538
|
+
descriptions: descrizioni
|
539
|
+
descriptions_title: 'descrizioni:'
|
540
|
+
permissions: permessi
|
541
|
+
sharing: compartecipazione
|
542
|
+
visibility: Visibilità
|
438
543
|
batch_uploads:
|
439
544
|
disabled: Caratteristica disabilitata dall'amministratore
|
440
545
|
files:
|
@@ -450,6 +555,9 @@ it:
|
|
450
555
|
header: Salva lavori
|
451
556
|
bread_crumb:
|
452
557
|
search_results: Torna ai risultati della ricerca
|
558
|
+
citations:
|
559
|
+
work:
|
560
|
+
citation_formats: Formati di citazione
|
453
561
|
collection:
|
454
562
|
actions:
|
455
563
|
add_existing_works:
|
@@ -480,6 +588,7 @@ it:
|
|
480
588
|
desc: Aggiungi raccolte esistenti a questa raccolta
|
481
589
|
modal_title: Aggiungi questa collezione in un'altra raccolta
|
482
590
|
select_label: Seleziona raccolta
|
591
|
+
also_belongs_to: Anche questo lavoro appartiene a
|
483
592
|
browse_view: Sfoglia la vista
|
484
593
|
document_list:
|
485
594
|
edit: Modifica
|
@@ -521,6 +630,10 @@ it:
|
|
521
630
|
show_more_parent_collections: mostra di più...
|
522
631
|
subcollection_count: sottoraccolte
|
523
632
|
works_in_collection: Funziona in questa collezione
|
633
|
+
sort_and_per_page:
|
634
|
+
number_of_results_to_display_per_page: Numero di risultati da visualizzare per pagina
|
635
|
+
results_per_page: 'Risultati per la pagina:'
|
636
|
+
sort_by_html: "<span>Ordina per:</span>"
|
524
637
|
contact_form:
|
525
638
|
button_label: Inviare
|
526
639
|
email_label: La tua email
|
@@ -583,15 +696,22 @@ it:
|
|
583
696
|
relationships: Le relazioni
|
584
697
|
sharing: compartecipazione
|
585
698
|
form_branding:
|
699
|
+
alt_text: 'Il Testo Alt:'
|
586
700
|
banner:
|
587
701
|
description: Un'immagine da visualizzare nella parte superiore della pagina di raccolta. Per risultati ottimali, carica un'immagine (JPG, GIF o PNG) di almeno 120 pixel di altezza e 1200 pixel di larghezza.
|
588
702
|
label: bandiera
|
589
703
|
branding:
|
590
704
|
description: Facoltativamente, puoi caricare un'immagine banner e / o immagini logo da associare a questa raccolta. Se caricate, queste immagini verranno visualizzate nella parte superiore della pagina di raccolta per fornire un marchio univoco per la raccolta.
|
591
705
|
label: Branding
|
706
|
+
choose_file: Scegliere File
|
707
|
+
link_url: 'URL del Link:'
|
592
708
|
logo:
|
593
709
|
description: Una o più immagini da visualizzare nella parte superiore della pagina di raccolta. Per risultati ottimali, carica un'immagine (JPG, GIF o PNG) di altezza pari a 40 pixel. Le immagini più grandi verranno ridimensionate a 40 pixel in altezza.
|
594
710
|
label: Logo
|
711
|
+
previous: Precedente
|
712
|
+
remove: Rimuovere
|
713
|
+
remove_current_banner: Rimuovere Corrente Banner
|
714
|
+
remove_logo: Rimuovere Il Logo
|
595
715
|
form_discovery:
|
596
716
|
para1: Queste impostazioni determinano chi è in grado di scoprire e visualizzare la pagina di destinazione di questa raccolta; non influenzano la visibilità degli oggetti nella collezione.
|
597
717
|
para2: Se hai scelto di non rendere questa raccolta accessibile, puoi comunque condividere la raccolta con utenti e gruppi specifici utilizzando la scheda Condivisione.
|
@@ -618,7 +738,13 @@ it:
|
|
618
738
|
add_sharing: Aggiungi condivisione
|
619
739
|
add_user: Aggiungi utente
|
620
740
|
current_shared: Attualmente condiviso con
|
741
|
+
depositor: Depositante
|
742
|
+
manager: Manager
|
621
743
|
note: Indipendentemente dalle impostazioni di visibilità di questa raccolta, puoi condividere questa raccolta con gruppi e utenti specifici.
|
744
|
+
search_for_a_group: La ricerca di un gruppo...
|
745
|
+
search_for_a_user: Cercare un utente...
|
746
|
+
select_a_role: Selezionare un ruolo...
|
747
|
+
viewer: Visualizzatore
|
622
748
|
form_share_table:
|
623
749
|
allow_all_registered: Consenti tutti registrati
|
624
750
|
depositors:
|
@@ -659,6 +785,32 @@ it:
|
|
659
785
|
show_less_parent_collections: "...mostra meno"
|
660
786
|
show_more_parent_collections: mostra di più...
|
661
787
|
subcollection_count: sottoraccolte
|
788
|
+
show_descriptions:
|
789
|
+
descriptions: descrizioni
|
790
|
+
show_document_list:
|
791
|
+
action: Azione
|
792
|
+
date_added: Data aggiunta
|
793
|
+
list_items_in_collection: Elenco di articoli in questa raccolta
|
794
|
+
owner: Proprietario
|
795
|
+
title: Titolo
|
796
|
+
visibility: Visibilità
|
797
|
+
show_document_list_menu:
|
798
|
+
select: Selezionare
|
799
|
+
show_document_list_row:
|
800
|
+
creator: 'Creatore:'
|
801
|
+
depositor: 'Depositante:'
|
802
|
+
edit_access: 'Modifica accesso:'
|
803
|
+
sort_and_per_page:
|
804
|
+
show_par_page_html: Mostra %{select} per pagina
|
805
|
+
sort_by: 'Ordina Per:'
|
806
|
+
work_action_menu:
|
807
|
+
delete_work: Elimina lavoro
|
808
|
+
deleting_from_work: L'eliminazione di un'opera da %{application_name} è permanente. Fai clic su OK per eliminare quest'opera da %{application_name} o Annulla per annullare questa operazione
|
809
|
+
edit_work: Modifica lavoro
|
810
|
+
press_to: Premere per
|
811
|
+
remove_from_collection: Rimuovi dalla raccolta
|
812
|
+
select_an_action: Seleziona un'azione
|
813
|
+
transfer_ownership_of_work: Trasferimento della proprietà del lavoro
|
662
814
|
create_work: Crea lavoro
|
663
815
|
current_proxies: Proxy attuali
|
664
816
|
delete_notification: Elimina notifica
|
@@ -682,6 +834,8 @@ it:
|
|
682
834
|
collection_update_success: La raccolta è stata aggiornata con successo.
|
683
835
|
collections_confirmation_html: L'eliminazione di <span class='pluralized'>questa raccolta</span> rimuove definitivamente <span class='pluralized'>questa raccolta</span> dal repository. Gli articoli di <span class='pluralized'>questa raccolta</span> rimarranno nel repository. Sei sicuro di voler eliminare <span class='pluralized'>questa raccolta</span> ?
|
684
836
|
collections_confirmation_no_items_html: Sei sicuro di voler eliminare questa raccolta? Questa azione non può essere annullata.
|
837
|
+
collections_confirmation_plural: queste collezioni
|
838
|
+
collections_confirmation_singular: questa collezione
|
685
839
|
delete_admin_set: Elimina raccolta
|
686
840
|
delete_admin_set_deny: Questa raccolta è definita come Imposta amministratore e non è vuota. Per eliminare questo set di amministrazione, devi prima rimuovere (eliminare o spostare in un'altra raccolta di un gruppo di amministratori) tutti gli elementi dal set di amministrazione.
|
687
841
|
delete_collection: Elimina raccolta
|
@@ -724,6 +878,7 @@ it:
|
|
724
878
|
heading:
|
725
879
|
access: Accesso
|
726
880
|
action: Azioni
|
881
|
+
caption: Elenco di articoli in questa raccolta
|
727
882
|
collection_type: Tipo di raccolta
|
728
883
|
date_modified: Ultima modifica
|
729
884
|
date_uploaded: Data aggiunta
|
@@ -740,6 +895,7 @@ it:
|
|
740
895
|
check_all_label: Seleziona tutti i file da aggiungere a una raccolta o modificati
|
741
896
|
detail_label: Visualizza dettagli riepilogo di
|
742
897
|
listing: Elenco di articoli che hai depositato
|
898
|
+
number_of_results_to_display_per_page: Numero di risultati da visualizzare per pagina
|
743
899
|
press_to: Premere per
|
744
900
|
results_per_page: Numero di risultati da visualizzare per pagina
|
745
901
|
show_label: Visualizza tutti i dettagli di
|
@@ -755,7 +911,19 @@ it:
|
|
755
911
|
no_proxies: Non ci sono proxy assegnati
|
756
912
|
no_transfer_requests: Non hai ricevuto richieste di trasferimento di lavoro
|
757
913
|
no_transfers: Non hai trasferito alcun lavoro
|
914
|
+
profiles:
|
915
|
+
edit_primary:
|
916
|
+
change_picture: <i class = "glyphicon glyphicon-camera"> </i> Cambia immagine
|
917
|
+
delete_picture: Elimina foto
|
918
|
+
delete_picture_data_content: Se desideri rimuovere completamente la tua foto, seleziona la casella e salva il tuo profilo.
|
919
|
+
delete_picture_data_original_title: Elimina immagine
|
920
|
+
facebook_handle: <i class = "fa fa-facebook" aria-hidden = "true"> </i> Handle di Facebook
|
921
|
+
google_handle: <i class = "fa fa-google-plus"> </i> Handle di Google+
|
922
|
+
help_change_picture_type: JPG, GIF o PNG (meno di 2 MB)
|
923
|
+
save_profile: <i class = "glyphicon glyphicon-save"> </i> Salva profilo
|
924
|
+
twitter_handle: <i class = "fa fa-twitter" aria-hidden = "true"> </i> Handle di Twitter
|
758
925
|
proxy_activity: Attività proxy
|
926
|
+
proxy_add_deny: Non puoi renderti un proxy
|
759
927
|
proxy_delete: Elimina proxy
|
760
928
|
proxy_help: Seleziona un utente che può depositare opere per tuo conto. Sarai il proprietario delle opere che questo utente deposita per te. È possibile revocare un proxy facendo clic sul pulsante Elimina proxy.
|
761
929
|
proxy_user: Utente Proxy
|
@@ -770,7 +938,9 @@ it:
|
|
770
938
|
subtitle: Stato attuale
|
771
939
|
title: Oggetti del repository
|
772
940
|
show_admin:
|
941
|
+
current_registered_users: Corrente
|
773
942
|
new_visitors: Nuovi visitatori
|
943
|
+
past_30_days: Ultimi 30 giorni
|
774
944
|
registered_users: Utente registrato
|
775
945
|
returning_visitors: Visitatori di ritorno
|
776
946
|
total_visitors: Totale visitatori
|
@@ -780,6 +950,7 @@ it:
|
|
780
950
|
file_views: vista
|
781
951
|
files: File depositati
|
782
952
|
heading: Le tue statistiche
|
953
|
+
joined_on: Unito
|
783
954
|
works: Opere create
|
784
955
|
title: la mia scrivania
|
785
956
|
transfer_of_ownership: Trasferimenti di proprietà
|
@@ -819,6 +990,7 @@ it:
|
|
819
990
|
deactivate: Disattiva Embargo
|
820
991
|
deactivate_selected: Disattiva gli embarghi per la selezione
|
821
992
|
missing: Attualmente non esistono embarghi scaduti.
|
993
|
+
select_all: Seleziona tutto
|
822
994
|
table_headers:
|
823
995
|
release_date: Data di rilascio embargo
|
824
996
|
title: Titolo
|
@@ -836,12 +1008,14 @@ it:
|
|
836
1008
|
download: Scarica il file
|
837
1009
|
downloadable_content:
|
838
1010
|
audio_link: Scarica audio
|
1011
|
+
audio_tag_not_supported: Il tuo browser non supporta il tag audio.
|
839
1012
|
default_link: Download file
|
840
1013
|
heading: Contenuto scaricabile
|
841
1014
|
image_link: Scarica l'immagine
|
842
1015
|
office_link: Download file
|
843
1016
|
pdf_link: Scarica il pdf
|
844
1017
|
video_link: Scarica video
|
1018
|
+
video_tag_not_supported: Il tuo browser non supporta il tag video.
|
845
1019
|
file_sets:
|
846
1020
|
actions:
|
847
1021
|
delete: Elimina
|
@@ -852,13 +1026,28 @@ it:
|
|
852
1026
|
edit: modificare
|
853
1027
|
edit_title: Modifica %{file_set}
|
854
1028
|
header: Seleziona un'azione
|
1029
|
+
press_to: Premere per
|
855
1030
|
versions: versioni
|
856
1031
|
versions_title: Mostra le versioni precedenti
|
1032
|
+
asset_deleted_flash:
|
1033
|
+
message: Il file è stato eliminato.
|
1034
|
+
asset_saved_flash:
|
1035
|
+
message:
|
1036
|
+
one: Il file %{saved_files} è stato salvato.
|
1037
|
+
other: Il file %{saved_files} sono stati salvati.
|
1038
|
+
asset_updated_flash:
|
1039
|
+
message: Il file %{link_to_file} è stata aggiornata.
|
1040
|
+
descriptions:
|
1041
|
+
save: Salva descrizioni
|
1042
|
+
title: descrizioni
|
857
1043
|
edit:
|
858
1044
|
descriptions: descrizioni
|
859
1045
|
header: Modifica %{file_set}
|
860
1046
|
permissions: permessi
|
861
1047
|
versions: versioni
|
1048
|
+
extra_fields_modal:
|
1049
|
+
additional: addizionale
|
1050
|
+
label: "%{label} aggiuntivi"
|
862
1051
|
form:
|
863
1052
|
attach_to: Allegare a %{parent}
|
864
1053
|
cancel: Annulla
|
@@ -869,10 +1058,19 @@ it:
|
|
869
1058
|
permission:
|
870
1059
|
save: Salvare
|
871
1060
|
permission_form:
|
1061
|
+
add_new_group_skel: Aggiungi questo gruppo
|
1062
|
+
add_new_user_skel: Aggiungi questo %{account_label}
|
872
1063
|
applied_to: "(applicato a tutti i file appena caricati)"
|
1064
|
+
bulk: Massa
|
873
1065
|
depositor: Depositante
|
874
1066
|
enter: Inserisci %{account_label} (uno alla volta)
|
875
1067
|
header: permessi
|
1068
|
+
new_group_help_text: Utilizzare il pulsante Aggiungi per consentire l'accesso a un gruppo alla volta (verrà aggiunto all'elenco seguente).
|
1069
|
+
new_group_name_skel: Gruppo
|
1070
|
+
new_group_permission_skel: Tipo di accesso da concedere
|
1071
|
+
new_user_help_text: Utilizzare il pulsante Aggiungi per dare accesso a uno %{account_label} alla volta (verrà aggiunto all'elenco seguente). Seleziona l'utente, per nome o %{account_label}. Quindi selezionare il livello di accesso che si desidera concedere e fare clic su Aggiungi questo %{account_label} per completare l'aggiunta dell'autorizzazione.
|
1072
|
+
new_user_name_skel: "%{account_label} (senza la parte %{suffix})"
|
1073
|
+
new_user_permission_skel: Tipo di accesso da concedere
|
876
1074
|
optional: "(opzionale)"
|
877
1075
|
save_note_html: Le autorizzazioni <strong>non</strong> vengono salvate finché <strong>non</strong> viene premuto il pulsante "Salva" nella parte inferiore della pagina.
|
878
1076
|
select_group: Seleziona un gruppo
|
@@ -880,12 +1078,28 @@ it:
|
|
880
1078
|
table_title_access: Livello di accesso
|
881
1079
|
table_title_user: Persona / Gruppo
|
882
1080
|
user_search: Cerca un utente
|
1081
|
+
proxy:
|
1082
|
+
message: "%{sending_user} ha depositato il file %{title} per tuo conto."
|
1083
|
+
show_actions:
|
1084
|
+
analytics: Analytics
|
1085
|
+
confirm_delete_this: Delete %{type}?
|
1086
|
+
delete_this: Delete %{type}
|
1087
|
+
edit_this: Modificare questo %{type}
|
1088
|
+
show_details:
|
1089
|
+
characterization: Caratterizzazione
|
1090
|
+
date_modified: La Data Di Modifica
|
1091
|
+
date_uploaded: Data Caricato
|
1092
|
+
depositor: Depositante
|
1093
|
+
file_details: Dettagli File
|
1094
|
+
fixity_check: Fissità Di Controllo
|
1095
|
+
not_yet_characterized: Non Ancora Caratterizzati
|
883
1096
|
versioning:
|
884
1097
|
current: Versione attuale
|
885
1098
|
header: versioni
|
886
1099
|
restore: Ripristina la versione precedente
|
887
1100
|
restore_from: Ripristina da
|
888
1101
|
save: Salva revisione
|
1102
|
+
save_your_note: Devi fare clic su & quot; Salva revisione & quot; per ripristinare una versione precedente di questo file
|
889
1103
|
upload: Carica nuova versione
|
890
1104
|
help:
|
891
1105
|
header: Supporto utente
|
@@ -983,15 +1197,62 @@ it:
|
|
983
1197
|
my:
|
984
1198
|
count:
|
985
1199
|
collections:
|
1200
|
+
collections_listing: Elenco delle collezioni
|
986
1201
|
in_repo: "<strong> collezioni %{total_count} </ strong> nel repository"
|
987
1202
|
you_manage: "<strong> collezioni %{total_count} </ strong> che puoi gestire nel repository"
|
988
1203
|
you_own: "<strong> collezioni %{total_count} </ strong> che possiedi nel repository"
|
989
1204
|
works:
|
990
1205
|
in_repo: "<strong> %{total_count} funziona </ strong> nel repository"
|
1206
|
+
works_listing: Elenco delle opere
|
991
1207
|
you_manage: "<strong> %{total_count} funziona </ strong> che puoi gestire nel repository"
|
992
1208
|
you_own: "<strong> %{total_count} funziona </ strong> nel repository"
|
1209
|
+
sort_and_per_page:
|
1210
|
+
number_of_results_to_display_per_page: Numero di risultati da visualizzare per pagina
|
993
1211
|
nav_safety:
|
994
1212
|
change_tab_message: Sei sicuro di voler lasciare questa scheda? Tutti i dati non salvati andranno persi.
|
1213
|
+
notifications:
|
1214
|
+
batch_create_failure:
|
1215
|
+
message: 'Il batch creato per %{user} non è riuscito: %{messages}'
|
1216
|
+
subject: Creazione batch fallita
|
1217
|
+
batch_create_success:
|
1218
|
+
message: Il batch creato per %{user} è passato.
|
1219
|
+
subject: Passando creare batch
|
1220
|
+
fixity_check_failure:
|
1221
|
+
message: Il controllo di fissità eseguito su %{log_date} per %{file_title} (%{uri}) non è riuscito.
|
1222
|
+
subject: Verifica di Fixing non riuscita
|
1223
|
+
import_url_failure:
|
1224
|
+
subject: Errore di importazione del file
|
1225
|
+
proxy_deposit_request:
|
1226
|
+
transfer_on_create:
|
1227
|
+
message: "%{user_link} vuole trasferirti un lavoro. Revisione di tutto %{transfer_link}"
|
1228
|
+
subject: Richiesta di modifica della proprietà
|
1229
|
+
transfer_link_label: le richieste di trasferimento
|
1230
|
+
transfer_on_update:
|
1231
|
+
comments: 'Commenti: %{receiver_comment}'
|
1232
|
+
message: La tua richiesta di trasferimento era %{status}.
|
1233
|
+
subject: Modifica proprietà %{status}
|
1234
|
+
proxy_depositor_added:
|
1235
|
+
grantee_message: "%{grantor} ti ha assegnato come depositante proxy"
|
1236
|
+
grantor_message: Hai assegnato %{grantee} come depositante proxy
|
1237
|
+
subject: Depositor proxy aggiunto
|
1238
|
+
workflow:
|
1239
|
+
changes_required:
|
1240
|
+
message: |-
|
1241
|
+
%{title} (%{link}) richiede ulteriori modifiche prima dell'approvazione.
|
1242
|
+
'%{comment}'
|
1243
|
+
subject: Il tuo deposito richiede modifiche
|
1244
|
+
deposited:
|
1245
|
+
message: "%{title} (%{link}) è stato approvato da %{user}. %{comment}"
|
1246
|
+
subject: Il deposito è stato approvato
|
1247
|
+
pending_review:
|
1248
|
+
message: "%{title} (%{link}) è stato depositato da %{user} ed è in attesa di approvazione %{comment}"
|
1249
|
+
subject: Il deposito richiede una revisione
|
1250
|
+
operations:
|
1251
|
+
index:
|
1252
|
+
operations_type: Tipo di operazioni
|
1253
|
+
status: Stato
|
1254
|
+
title: operazioni
|
1255
|
+
updated: aggiornato
|
995
1256
|
pages:
|
996
1257
|
cancel: Annulla
|
997
1258
|
tabs:
|
@@ -1047,7 +1308,21 @@ it:
|
|
1047
1308
|
link: collegamento
|
1048
1309
|
no_links: Nessun link è stato generato
|
1049
1310
|
title: Collegamenti monouso
|
1311
|
+
single_use_links_viewer:
|
1312
|
+
single_use_error:
|
1313
|
+
help: '%{application_name} non è stato in grado di individuare il collegamento monouso. Questo link è scaduto o era stato utilizzato in precedenza. Ci scusiamo per il disagio. Potresti essere interessato a utilizzare <a href="/help/"> la pagina di aiuto </a> per cercare soluzioni.'
|
1314
|
+
link_expired_not_found: Link monouso scaduto o non trovato
|
1315
|
+
link_not_found: Link monouso non trovato
|
1050
1316
|
sort_label: Ordina l'elenco degli articoli
|
1317
|
+
static:
|
1318
|
+
mendeley:
|
1319
|
+
contact_form: Modulo di Contatto
|
1320
|
+
export_to_mendeley: Esporta in Mendeley
|
1321
|
+
export_to_mendeley_details: L'esportazione in Mendeley è supportata tramite metadati incorporati. Se Mendeley non raccoglie automaticamente i metadati per i file depositati, segnala il problema tramite il
|
1322
|
+
zotero:
|
1323
|
+
contact_form: Modulo di Contatto
|
1324
|
+
export_to_zotero: Esporta in Zotero
|
1325
|
+
export_to_zotero_details: L'esportazione in Zotero è supportata tramite metadati incorporati. Se Zotero non raccoglie automaticamente i metadati per i file depositati, segnala il problema tramite il
|
1051
1326
|
toolbar:
|
1052
1327
|
dashboard:
|
1053
1328
|
menu: Cruscotto
|
@@ -1068,6 +1343,29 @@ it:
|
|
1068
1343
|
placeholder: Cerca un utente
|
1069
1344
|
sr_only_description: Seleziona un utente per trasferire "%{work_title}", aggiungere commenti opzionali e quindi premere il trasferimento.
|
1070
1345
|
title: Trasferimento di proprietà di "%{work_title}"
|
1346
|
+
received:
|
1347
|
+
accept: Accettare
|
1348
|
+
accept_the_file_and_allow_the_original_depositor_to_retain_access_and_authorize: Accetta il file e consenti al depositante originale di conservare l'accesso e autorizza il depositante originale come proxy a depositare il file per tuo conto.
|
1349
|
+
accept_the_file_and_allow_the_original_depositor_to_retain_access_to_edit_the_file_and_metadata: Accetta il file e consenti al depositante originale di conservare l'accesso per modificare il file e i metadati.
|
1350
|
+
accept_the_file_remove_access_from_the_original_depositor: Accetta il file rimuovi l'accesso dal depositante originale.
|
1351
|
+
allow_depositor_to_retain_edit_access: Consenti al depositante di conservare l'accesso in modifica
|
1352
|
+
are_you_sure_you_want_to_reject_this_request: Sei sicuro di voler rifiutare questa richiesta?
|
1353
|
+
authorize_depositor_as_proxy: Autorizza il depositante come procuratore
|
1354
|
+
comments: Commenti
|
1355
|
+
date: Data
|
1356
|
+
from: A partire dal
|
1357
|
+
reject: Rifiutare
|
1358
|
+
remove_depositor_access: Rimuovere l'accesso del depositante
|
1359
|
+
status: Stato
|
1360
|
+
title: Titolo
|
1361
|
+
sent:
|
1362
|
+
are_you_sure_you_want_to_cancel_this_request: Sei sicuro di voler annullare questa richiesta?
|
1363
|
+
cancel: Annulla
|
1364
|
+
comments: Commenti
|
1365
|
+
date: Data
|
1366
|
+
from: A partire dal
|
1367
|
+
status: Stato
|
1368
|
+
title: Titolo
|
1071
1369
|
upload:
|
1072
1370
|
alert:
|
1073
1371
|
contact_href_text: Modulo di Contatto
|
@@ -1083,6 +1381,7 @@ it:
|
|
1083
1381
|
change_access_flash_message: Aggiornamento dei livelli di accesso ai file. Questo potrebbe richiedere alcuni minuti. Potresti voler aggiornare il tuo browser o tornare a questo disco in un secondo momento per vedere i livelli di accesso ai file aggiornati.
|
1084
1382
|
change_access_message_html: "<p> Hai <i>modificato</i> il livello di accesso sul lavoro <i>%{curation_concern}</i> , rendendolo accessibile ad altri utenti o gruppi per visualizzare o modificare. </p><p> Vuoi cambiare tutti i file all'interno del lavoro per avere gli stessi utenti di accesso, i gruppi e la visibilità? </p>"
|
1085
1383
|
change_access_no_message: No. Lo aggiornerò manualmente.
|
1384
|
+
change_access_title_html: Applicare le modifiche al contenuto?
|
1086
1385
|
change_access_yes_message: Sì grazie.
|
1087
1386
|
change_permissions_message_html: "<p> Hai modificato le autorizzazioni di questo %{curation_concern_human_readable_type}, <i>%{curation_concern}</i> , <i>rendendolo</i> visibile a <b>%{visibility_badge}</b> . </p><p> Vuoi cambiare tutti i file all'interno di <b>%{curation_concern_human_readable_type}</b> anche <b>%{visibility_badge}</b> ? </p>"
|
1088
1387
|
local_ingest:
|
@@ -1093,6 +1392,20 @@ it:
|
|
1093
1392
|
tab_label: Il mio computer
|
1094
1393
|
permissions_message: Aggiornamento delle autorizzazioni di file. Questo potrebbe richiedere alcuni minuti. Potresti voler aggiornare il tuo browser o tornare a questo disco in seguito per vedere le autorizzazioni di file aggiornate.
|
1095
1394
|
processing: Il file è in fase di elaborazione; Puoi modificare quando l'elaborazione è terminata
|
1395
|
+
uploads:
|
1396
|
+
js_templates:
|
1397
|
+
display_label: Etichetta di visualizzazione
|
1398
|
+
error: Errore
|
1399
|
+
set_all_to_this_resource_type: Impostare tutto su questo tipo di risorsa
|
1400
|
+
start: Inizio
|
1401
|
+
js_templates_branding:
|
1402
|
+
alt_text: 'Testo alternativo:'
|
1403
|
+
error: Errore
|
1404
|
+
link_url: 'URL del link:'
|
1405
|
+
previous: precedente
|
1406
|
+
remove: Rimuovere
|
1407
|
+
remove_new_banner: Rimuovi nuovo banner
|
1408
|
+
remove_new_logo: Rimuovi nuovo logo
|
1096
1409
|
user_profile:
|
1097
1410
|
orcid:
|
1098
1411
|
alt: Icona ORCID
|
@@ -1105,6 +1418,24 @@ it:
|
|
1105
1418
|
connected: Collegato!
|
1106
1419
|
label: Profilo di Zotero
|
1107
1420
|
unlinked: Link con Zotero
|
1421
|
+
users:
|
1422
|
+
activity_log:
|
1423
|
+
date: Data
|
1424
|
+
user_activity: Attività dell'utente
|
1425
|
+
index:
|
1426
|
+
avatar: Avatar
|
1427
|
+
department: Dipartimento
|
1428
|
+
user_id: ID utente
|
1429
|
+
user_name: Nome utente
|
1430
|
+
users: utenti
|
1431
|
+
works_created: Opere create
|
1432
|
+
left_sidebar:
|
1433
|
+
view_users: Visualizza utenti
|
1434
|
+
proxies:
|
1435
|
+
proxies: Proxy
|
1436
|
+
search_form:
|
1437
|
+
go: Partire
|
1438
|
+
search_users: Cerca utenti
|
1108
1439
|
visibility:
|
1109
1440
|
authenticated:
|
1110
1441
|
note_html: Limitare l'accesso a soli utenti e / o gruppi da %{institution}
|
@@ -1124,6 +1455,8 @@ it:
|
|
1124
1455
|
note_html: Solo utenti e / o gruppi che hanno ricevuto l'accesso specifico nella sezione "Condividi con".
|
1125
1456
|
text: Privato
|
1126
1457
|
restricted_title_attr: Cambiare la visibilità di questa risorsa
|
1458
|
+
work_button_row:
|
1459
|
+
attach_child: Allega bambino
|
1127
1460
|
workflow:
|
1128
1461
|
default:
|
1129
1462
|
deposit: Depositare
|
@@ -1187,6 +1520,8 @@ it:
|
|
1187
1520
|
share_applies_to_new_works: Quando vengono creati nuovi lavori direttamente nella raccolta, concedere la condivisione di autorizzazioni di utenti e gruppi per il nuovo lavoro in base ai rispettivi ruoli di raccolta.
|
1188
1521
|
title: ''
|
1189
1522
|
defaults:
|
1523
|
+
abstract: Un breve riassunto di un articolo di ricerca, tesi, revisione, atti del convegno o qualsiasi analisi approfondita di un particolare argomento.
|
1524
|
+
access_right: Contiene informazioni su chi può accedere alla risorsa o un'indicazione del suo stato di sicurezza.
|
1190
1525
|
based_near: Un nome di posto relativo al lavoro, come il suo sito di pubblicazione, o la città, lo stato o il paese sono i contenuti del lavoro. Chiama il <a href='http://www.geonames.org'> servizio Web di GeoNames </a>.
|
1191
1526
|
contributor: Una persona o un gruppo che si desidera riconoscere per svolgere un ruolo nella creazione del lavoro, ma non il ruolo primario.
|
1192
1527
|
creator: La persona o il gruppo responsabile del lavoro. Di solito questo è l'autore del contenuto. Devono essere inseriti i nomi personali con l'ultimo nome, ad esempio & Quot; Smith, John. & Quot ;.
|
@@ -1199,6 +1534,7 @@ it:
|
|
1199
1534
|
publisher: La persona o il gruppo che rende disponibile il lavoro. Generalmente questa è l'istituzione.
|
1200
1535
|
related_url: Un collegamento a un sito web o ad altri contenuti specifici (audio, video, documento PDF) correlati al lavoro. Un esempio è l'URL di un progetto di ricerca da cui è stato derivato il lavoro.
|
1201
1536
|
resource_type: Categorie predefinite per descrivere il tipo di contenuto che viene caricato, ad esempio "articolo" O "set di dati". Possono essere selezionati più di un tipo.
|
1537
|
+
rights_notes: Contiene informazioni sui diritti detenuti all'interno e sulla risorsa.
|
1202
1538
|
subject: Intestazioni o termini dell'indice che descrivono ciò che il lavoro riguarda; Questi devono essere conformi a un vocabolario esistente.
|
1203
1539
|
title: Un nome per aiutare a identificare un lavoro.
|
1204
1540
|
labels:
|
@@ -1219,6 +1555,8 @@ it:
|
|
1219
1555
|
share_applies_to_new_works: SI APPLICA A NUOVE OPERE
|
1220
1556
|
title: Digita il nome
|
1221
1557
|
defaults:
|
1558
|
+
abstract: Astratto
|
1559
|
+
access_right: Diritti di accesso
|
1222
1560
|
admin_set_id: Set Amministrativo
|
1223
1561
|
based_near: luogo
|
1224
1562
|
creator: Creatore
|
@@ -1231,6 +1569,7 @@ it:
|
|
1231
1569
|
license: Licenza
|
1232
1570
|
member_of_collection_ids: Aggiungere alla collezione
|
1233
1571
|
related_url: URL correlato
|
1572
|
+
rights_notes: Note sui diritti
|
1234
1573
|
rights_statement: Dichiarazione dei diritti
|
1235
1574
|
title: Titolo
|
1236
1575
|
visibility_after_embargo: Poi aprila fino a
|