hyrax 3.0.0.pre.beta2 → 3.0.0.pre.beta3
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 +118 -181
- data/.gitignore +3 -0
- data/.regen +1 -0
- data/.rubocop_fixme.yml +1 -1
- data/README.md +11 -15
- data/app/actors/hyrax/actors/active_fedora_to_valkyrie.rb +59 -0
- data/app/actors/hyrax/actors/add_to_work_actor.rb +28 -5
- data/app/actors/hyrax/actors/apply_order_actor.rb +2 -2
- data/app/actors/hyrax/actors/attach_members_actor.rb +50 -28
- data/app/actors/hyrax/actors/base_actor.rb +17 -2
- data/app/actors/hyrax/actors/cleanup_file_sets_actor.rb +1 -1
- data/app/actors/hyrax/actors/collections_membership_actor.rb +2 -8
- data/app/actors/hyrax/actors/create_with_files_actor.rb +16 -6
- data/app/actors/hyrax/actors/create_with_files_ordered_members_actor.rb +2 -2
- data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +2 -1
- data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +8 -6
- data/app/actors/hyrax/actors/environment.rb +8 -16
- data/app/actors/hyrax/actors/file_actor.rb +75 -13
- data/app/actors/hyrax/actors/interpret_visibility_actor.rb +6 -8
- data/app/actors/hyrax/actors/valkyrie_to_active_fedora.rb +60 -0
- data/app/assets/javascripts/hyrax/collections.js +5 -4
- data/app/assets/javascripts/hyrax/nav_safety.js +4 -2
- 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 +1 -1
- data/app/assets/stylesheets/hyrax/_home-page.scss +6 -0
- data/app/assets/stylesheets/hyrax/_users.scss +11 -0
- data/app/assets/stylesheets/hyrax/_viewer.scss +14 -3
- data/app/controllers/concerns/hyrax/breadcrumbs.rb +2 -0
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +1 -1
- data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +2 -1
- data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +2 -1
- data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +2 -1
- data/app/controllers/hyrax/batch_edits_controller.rb +3 -3
- data/app/controllers/hyrax/dashboard/collections_controller.rb +16 -5
- data/app/controllers/hyrax/dashboard_controller.rb +9 -0
- data/app/controllers/hyrax/depositors_controller.rb +4 -6
- data/app/controllers/hyrax/downloads_controller.rb +1 -1
- data/app/controllers/hyrax/file_sets_controller.rb +3 -2
- data/app/controllers/hyrax/homepage_controller.rb +1 -1
- data/app/controllers/hyrax/my/works_controller.rb +2 -2
- data/app/controllers/hyrax/my_controller.rb +2 -2
- data/app/controllers/hyrax/permissions_controller.rb +1 -1
- data/app/controllers/hyrax/single_use_links_viewer_controller.rb +1 -1
- data/app/controllers/hyrax/workflow_actions_controller.rb +1 -1
- data/app/forms/hyrax/forms/admin_set_form.rb +8 -0
- data/app/forms/hyrax/forms/batch_edit_form.rb +1 -1
- data/app/forms/hyrax/forms/collection_form.rb +34 -3
- data/app/forms/hyrax/forms/file_set_edit_form.rb +1 -1
- data/app/forms/hyrax/forms/work_form.rb +34 -7
- data/app/forms/hyrax/forms/workflow_responsibility_form.rb +0 -4
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +3 -4
- data/app/helpers/hyrax/iiif_helper.rb +8 -0
- data/app/indexers/hyrax/admin_set_indexer.rb +1 -1
- data/app/indexers/hyrax/basic_metadata_indexer.rb +1 -1
- data/app/indexers/hyrax/collection_indexer.rb +2 -2
- data/app/indexers/hyrax/file_set_indexer.rb +7 -0
- data/app/indexers/hyrax/indexes_workflow.rb +3 -5
- data/app/indexers/hyrax/valkyrie_indexers/base_indexer.rb +19 -0
- data/app/indexers/hyrax/work_indexer.rb +1 -1
- data/app/jobs/attach_files_to_work_job.rb +9 -1
- data/app/jobs/characterize_job.rb +20 -5
- data/app/jobs/import_url_job.rb +9 -16
- data/app/jobs/ingest_local_file_job.rb +4 -0
- data/app/jobs/visibility_copy_job.rb +3 -17
- data/app/models/admin_set.rb +5 -0
- data/app/models/concerns/hyrax/ability.rb +3 -3
- data/app/models/concerns/hyrax/basic_metadata.rb +6 -2
- data/app/models/concerns/hyrax/collection_behavior.rb +22 -12
- data/app/models/concerns/hyrax/collection_nesting.rb +1 -1
- data/app/models/concerns/hyrax/file_set/characterization.rb +8 -1
- data/app/models/concerns/hyrax/file_set/querying.rb +1 -1
- data/app/models/concerns/hyrax/file_set_behavior.rb +1 -1
- data/app/models/concerns/hyrax/human_readable_type.rb +2 -2
- data/app/models/concerns/hyrax/solr_document/characterization.rb +27 -23
- data/app/models/concerns/hyrax/solr_document/metadata.rb +37 -39
- data/app/models/concerns/hyrax/solr_document_behavior.rb +4 -8
- data/app/models/concerns/hyrax/virus_check.rb +20 -0
- data/app/models/concerns/hyrax/work_behavior.rb +3 -1
- data/app/models/file_download_stat.rb +2 -1
- data/app/models/hyrax/active_job_proxy.rb +43 -0
- data/app/models/hyrax/embargo.rb +21 -0
- data/app/models/hyrax/file_metadata.rb +109 -0
- data/app/models/hyrax/lease.rb +21 -0
- data/app/models/hyrax/permission_template.rb +8 -8
- data/app/models/hyrax/resource.rb +31 -0
- data/app/models/hyrax/statistic.rb +5 -1
- data/app/models/hyrax/uploaded_file.rb +0 -2
- data/app/models/hyrax/virus_scanner.rb +56 -0
- data/app/models/job_io_wrapper.rb +24 -9
- data/app/models/proxy_deposit_request.rb +1 -1
- data/app/models/solr_hit.rb +23 -0
- data/app/presenters/hyrax/admin_set_presenter.rb +1 -1
- data/app/presenters/hyrax/characterization_behavior.rb +2 -2
- data/app/presenters/hyrax/displays_image.rb +25 -7
- data/app/presenters/hyrax/file_set_presenter.rb +3 -3
- data/app/presenters/hyrax/member_presenter_factory.rb +9 -9
- data/app/presenters/hyrax/presenter_factory.rb +1 -4
- data/app/presenters/hyrax/trophy_presenter.rb +1 -1
- data/app/presenters/hyrax/work_show_presenter.rb +3 -3
- data/app/renderers/hyrax/renderers/faceted_attribute_renderer.rb +1 -1
- data/app/search_builders/hyrax/catalog_search_builder.rb +1 -1
- data/app/search_builders/hyrax/collection_search_builder.rb +1 -1
- data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +2 -2
- data/app/search_builders/hyrax/deposit_search_builder.rb +1 -1
- data/app/search_builders/hyrax/my/find_works_search_builder.rb +5 -9
- data/app/search_builders/hyrax/my/highlights_search_builder.rb +1 -3
- data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +1 -1
- data/app/search_builders/hyrax/parent_collection_search_builder.rb +1 -1
- data/app/services/hyrax/adapters/nesting_index_adapter.rb +6 -6
- data/app/services/hyrax/admin_set_service.rb +3 -11
- data/app/services/hyrax/analytics.rb +6 -6
- data/app/services/hyrax/collection_types/permissions_service.rb +5 -5
- data/app/services/hyrax/collections/permissions_service.rb +2 -2
- data/app/services/hyrax/custom_queries/navigators/child_collections_navigator.rb +39 -0
- data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +39 -0
- data/app/services/hyrax/custom_queries/navigators/child_works_navigator.rb +39 -0
- data/app/services/hyrax/custom_queries/wings.rb +34 -0
- data/app/services/hyrax/database_migrator.rb +1 -0
- data/app/services/hyrax/derivative_path.rb +1 -1
- data/app/services/hyrax/embargo_manager.rb +100 -0
- data/app/services/hyrax/file_set_csv_service.rb +2 -0
- data/app/services/hyrax/file_set_visibility_propagator.rb +41 -0
- data/app/services/hyrax/graph_exporter.rb +1 -1
- data/app/services/hyrax/lease_manager.rb +71 -0
- data/app/services/hyrax/persist_directly_contained_output_file_service.rb +1 -1
- data/app/services/hyrax/query_service.rb +0 -0
- data/app/services/hyrax/resource_visibility_propagator.rb +50 -0
- data/app/services/hyrax/solr_query_builder_service.rb +71 -0
- data/app/services/hyrax/solr_service.rb +144 -0
- data/app/services/hyrax/statistics/file_sets/by_format.rb +1 -1
- data/app/services/hyrax/statistics/term_query.rb +7 -12
- data/app/services/hyrax/statistics/works/by_resource_type.rb +1 -1
- data/app/services/hyrax/thumbnail_path_service.rb +4 -3
- data/app/services/hyrax/versioning_service.rb +74 -19
- data/app/services/hyrax/virus_checker_service.rb +52 -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 +19 -0
- data/app/services/hyrax/visibility_reader.rb +43 -0
- data/app/services/hyrax/visibility_writer.rb +43 -0
- data/app/services/hyrax/work_query_service.rb +3 -3
- data/app/services/hyrax/workflow/deposited_notification.rb +1 -1
- data/app/services/hyrax/works/migration_service.rb +33 -0
- data/app/views/hyrax/admin/admin_sets/_form.html.erb +6 -5
- data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +2 -1
- data/app/views/hyrax/admin/admin_sets/_form_workflow.erb +1 -1
- data/app/views/hyrax/base/_attribute_rows.html.erb +2 -0
- 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_child_work_relationships.html.erb +1 -1
- data/app/views/hyrax/base/_form_files.html.erb +11 -9
- data/app/views/hyrax/base/_form_member_of_collections.html.erb +1 -1
- data/app/views/hyrax/base/_form_permission.html.erb +1 -2
- data/app/views/hyrax/base/_form_progress.html.erb +2 -2
- data/app/views/hyrax/base/_form_share.html.erb +8 -11
- data/app/views/hyrax/base/_show_actions.html.erb +3 -3
- data/app/views/hyrax/base/_social_media.html.erb +0 -13
- data/app/views/hyrax/base/_work_button_row.html.erb +7 -7
- data/app/views/hyrax/base/_workflow_actions.html.erb +4 -4
- 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/unauthorized.html.erb +4 -4
- data/app/views/hyrax/batch_edits/_check_all.html.erb +1 -1
- 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/citations/work.html.erb +1 -1
- data/app/views/hyrax/collections/_show_document_list.html.erb +1 -1
- data/app/views/hyrax/collections/_sort_and_per_page.html.erb +4 -4
- 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_share.html.erb +5 -5
- data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +1 -1
- 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 +3 -3
- data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +2 -3
- data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +8 -8
- data/app/views/hyrax/dashboard/collections/edit.html.erb +2 -2
- data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +8 -8
- 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 +2 -0
- data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +2 -0
- data/app/views/hyrax/dashboard/works/_default_group.html.erb +4 -4
- data/app/views/hyrax/dashboard/works/_list_works.html.erb +1 -1
- 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 +9 -9
- data/app/views/hyrax/file_sets/_show_actions.html.erb +4 -4
- data/app/views/hyrax/file_sets/_show_details.html.erb +7 -7
- data/app/views/hyrax/file_sets/_versioning.html.erb +3 -3
- data/app/views/hyrax/file_sets/edit.html.erb +4 -3
- 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/my/_sort_and_per_page.html.erb +1 -1
- data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +4 -1
- 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 +3 -3
- 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/users/_activity_log.html.erb +25 -22
- data/app/views/hyrax/users/_left_sidebar.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 +1 -1
- data/app/views/hyrax/users/index.html.erb +6 -6
- 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/edit_fields/_alt_title.html.erb +3 -0
- data/app/views/records/edit_fields/_title.html.erb +1 -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/config/initializers/indexing_adapter_initializer.rb +16 -0
- data/config/initializers/samvera-nesting_indexer_initializer.rb +3 -3
- data/config/locales/hyrax.de.yml +303 -24
- data/config/locales/hyrax.en.yml +279 -0
- data/config/locales/hyrax.es.yml +284 -5
- data/config/locales/hyrax.fr.yml +280 -1
- data/config/locales/hyrax.it.yml +279 -0
- data/config/locales/hyrax.pt-BR.yml +279 -0
- data/config/locales/hyrax.zh.yml +279 -0
- data/hyrax.gemspec +10 -11
- data/lib/generators/hyrax/config_generator.rb +6 -0
- data/lib/generators/hyrax/install_generator.rb +5 -0
- data/lib/generators/hyrax/riiif_generator.rb +2 -2
- data/lib/generators/hyrax/templates/catalog_controller.rb +71 -71
- data/lib/generators/hyrax/templates/config/analytics.yml +5 -5
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +11 -1
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +3 -3
- 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/package.json +17 -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/templates/feature_spec.rb.erb +0 -1
- data/lib/hyrax.rb +17 -1
- data/lib/hyrax/configuration.rb +34 -20
- data/lib/hyrax/engine.rb +12 -10
- data/lib/hyrax/errors.rb +4 -0
- data/lib/hyrax/transactions/container.rb +13 -0
- data/lib/hyrax/transactions/create_work.rb +11 -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/version.rb +1 -1
- data/lib/tasks/migrate.rake +6 -0
- data/lib/tasks/universal_viewer.rake +15 -0
- data/lib/valkyrie/indexing/solr/indexing_adapter.rb +102 -0
- data/lib/valkyrie/indexing_adapter.rb +29 -0
- data/lib/wings.rb +13 -4
- data/lib/wings/active_fedora_converter.rb +129 -15
- data/lib/wings/converter_value_mapper.rb +111 -0
- data/lib/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior.rb +27 -0
- data/lib/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior.rb +27 -0
- data/lib/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior.rb +172 -0
- data/lib/wings/hydra/works/models/concerns/collection_valkyrie_behavior.rb +30 -0
- data/lib/wings/hydra/works/models/concerns/file_set_valkyrie_behavior.rb +30 -0
- data/lib/wings/hydra/works/models/concerns/work_valkyrie_behavior.rb +59 -0
- data/lib/wings/hydra/works/services/add_file_metadata_to_file_set.rb +113 -0
- data/lib/wings/model_transformer.rb +172 -47
- data/lib/wings/models/concerns/collection_behavior.rb +38 -0
- data/lib/wings/models/multi_checksum.rb +18 -0
- data/lib/wings/services/file_metadata_builder.rb +81 -0
- data/lib/wings/services/id_converter_service.rb +14 -0
- data/lib/wings/{value_mapper.rb → transformer_value_mapper.rb} +24 -5
- data/lib/wings/valkyrie/persister.rb +47 -24
- data/lib/wings/valkyrie/query_service.rb +141 -6
- data/lib/wings/valkyrie/storage/active_fedora.rb +27 -0
- data/spec/abilities/proxies_and_transfer_abilities_spec.rb +50 -10
- data/spec/actors/hyrax/actors/active_fedora_to_valkyrie_spec.rb +70 -0
- data/spec/actors/hyrax/actors/attach_members_actor_spec.rb +55 -10
- data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +14 -0
- data/spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb +22 -30
- data/spec/actors/hyrax/actors/file_actor_spec.rb +200 -84
- data/spec/actors/hyrax/actors/file_set_actor_spec.rb +1 -1
- data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +2 -6
- data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +1 -1
- data/spec/actors/hyrax/actors/ordered_members_actor_spec.rb +1 -1
- data/spec/actors/hyrax/actors/valkyrie_to_active_fedora_spec.rb +70 -0
- data/spec/controllers/catalog_controller_spec.rb +2 -2
- data/spec/controllers/hyrax/api/items_controller_spec.rb +9 -15
- data/spec/controllers/hyrax/collections_controller_spec.rb +6 -2
- data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +53 -4
- data/spec/controllers/hyrax/depositors_controller_spec.rb +3 -3
- data/spec/controllers/hyrax/downloads_controller_spec.rb +11 -2
- data/spec/controllers/hyrax/file_sets_controller_spec.rb +40 -2
- data/spec/controllers/hyrax/generic_works_controller_spec.rb +13 -3
- data/spec/controllers/hyrax/homepage_controller_spec.rb +3 -3
- data/spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb +1 -2
- data/spec/factories/admin_sets_lw.rb +1 -1
- data/spec/factories/collections.rb +1 -1
- data/spec/factories/hyrax_embargo.rb +16 -0
- data/spec/factories/hyrax_lease.rb +16 -0
- data/spec/factories/hyrax_resource.rb +16 -0
- data/spec/factory_tests/adminsets_factory_spec.rb +4 -4
- data/spec/factory_tests/collections_factory_spec.rb +3 -3
- data/spec/features/actor_stack_spec.rb +64 -0
- data/spec/features/batch_create_spec.rb +1 -2
- data/spec/features/collection_multi_membership_spec.rb +1 -0
- data/spec/features/collection_spec.rb +2 -2
- data/spec/features/collection_type_spec.rb +1 -0
- data/spec/features/create_work_spec.rb +15 -6
- data/spec/features/dashboard/collection_spec.rb +103 -14
- data/spec/features/edit_content_block_admin_spec.rb +3 -3
- data/spec/features/edit_pages_admin.spec.rb +62 -0
- data/spec/features/proxy_spec.rb +21 -0
- data/spec/features/static_pages_spec.rb +1 -1
- data/spec/features/work_show_spec.rb +7 -3
- data/spec/fixtures/sample-file.pdf +0 -0
- data/spec/fixtures/updated-file.txt +1 -0
- data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +5 -2
- data/spec/forms/hyrax/forms/collection_form_spec.rb +5 -2
- data/spec/forms/hyrax/forms/work_form_spec.rb +18 -5
- data/spec/forms/hyrax/generic_work_form_spec.rb +4 -4
- data/spec/helpers/hyrax/collections_helper_spec.rb +8 -8
- data/spec/helpers/hyrax/dashboard_helper_behavior_spec.rb +7 -8
- data/spec/helpers/hyrax/iiif_helper_spec.rb +16 -0
- data/spec/helpers/hyrax_helper_spec.rb +4 -4
- data/spec/hyrax/transactions/create_work_spec.rb +68 -0
- data/spec/hyrax/transactions/steps/apply_collection_permission_template_spec.rb +59 -0
- data/spec/hyrax/transactions/steps/apply_visibility_spec.rb +82 -0
- data/spec/indexers/hyrax/admin_set_indexer_spec.rb +15 -0
- data/spec/indexers/hyrax/file_set_indexer_spec.rb +26 -1
- data/spec/indexers/hyrax/valkyrie_indexers/base_indexer_spec.rb +16 -0
- data/spec/jobs/import_url_job_spec.rb +49 -2
- data/spec/jobs/ingest_local_file_job_spec.rb +25 -1
- data/spec/jobs/visibility_copy_job_spec.rb +46 -0
- data/spec/lib/hyrax/configuration_spec.rb +17 -11
- data/spec/lib/hyrax/redis_event_store_spec.rb +1 -1
- data/spec/matcher_tests/match_valkyrie_ids_with_af_ids_spec.rb +40 -0
- data/spec/models/file_set_spec.rb +4 -3
- data/spec/models/hyrax/embargo_spec.rb +27 -0
- data/spec/models/hyrax/file_metadata_spec.rb +110 -0
- data/spec/models/hyrax/lease_spec.rb +25 -0
- data/spec/models/hyrax/permission_template_spec.rb +2 -2
- data/spec/models/hyrax/resource_spec.rb +60 -0
- data/spec/models/hyrax/virus_scanner_spec.rb +50 -0
- data/spec/models/job_io_wrapper_spec.rb +63 -0
- data/spec/models/solr_hit_spec.rb +9 -0
- data/spec/models/user_spec.rb +1 -1
- data/spec/presenters/hyrax/file_set_presenter_spec.rb +11 -7
- data/spec/presenters/hyrax/presenter_factory_spec.rb +2 -2
- data/spec/presenters/hyrax/work_show_presenter_spec.rb +1 -1
- data/spec/requests/riiif_spec.rb +2 -2
- data/spec/search_builders/hyrax/my/find_works_search_builder_spec.rb +3 -3
- data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +5 -6
- data/spec/services/hyrax/admin_set_service_spec.rb +2 -2
- data/spec/services/hyrax/custom_queries/navigators/child_collections_navigator_spec.rb +41 -0
- data/spec/services/hyrax/custom_queries/navigators/child_filesets_navigator_spec.rb +41 -0
- data/spec/services/hyrax/custom_queries/navigators/child_works_navigator_spec.rb +79 -0
- data/spec/services/hyrax/custom_queries/wings.rb +52 -0
- data/spec/services/hyrax/embargo_manager_spec.rb +123 -0
- data/spec/services/hyrax/embargo_service_spec.rb +2 -2
- data/spec/services/hyrax/file_set_visibility_propagator_spec.rb +59 -0
- data/spec/services/hyrax/resource_visibility_propagator_spec.rb +71 -0
- data/spec/services/hyrax/solr_query_builder_service_spec.rb +17 -0
- data/spec/services/hyrax/solr_service_spec.rb +218 -0
- data/spec/services/hyrax/thumbnail_path_service_spec.rb +6 -0
- data/spec/services/hyrax/versioning_service_spec.rb +35 -15
- data/spec/services/hyrax/visibility_intention_applicator_spec.rb +69 -0
- data/spec/services/hyrax/visibility_reader_spec.rb +38 -0
- data/spec/services/hyrax/visibility_writer_spec.rb +47 -0
- data/spec/services/hyrax/workflow/status_list_service_spec.rb +1 -13
- data/spec/services/hyrax/works/migration_service_spec.rb +29 -0
- data/spec/spec_helper.rb +24 -23
- data/spec/support/clean_solr.rb +7 -0
- data/spec/support/create_for_repository.rb +25 -0
- data/spec/support/factory_helpers.rb +3 -1
- data/spec/support/fakes/fake_actor.rb +21 -0
- data/spec/support/matchers/embargo.rb +9 -0
- data/spec/support/matchers/lease.rb +9 -0
- data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +11 -0
- data/spec/support/matchers/permission.rb +22 -0
- data/spec/support/valkyrie_indexing.rb +1 -0
- data/spec/test_app_templates/Gemfile.extra +0 -2
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +5 -6
- data/spec/valkyrie/indexing/solr/indexing_adapter_spec.rb +41 -0
- data/spec/valkyrie/indexing_adapter_spec.rb +25 -0
- data/spec/views/hyrax/base/_attributes.html.erb_spec.rb +1 -1
- data/spec/views/hyrax/base/_social_media.html.erb_spec.rb +0 -1
- data/spec/views/hyrax/base/show.html.erb_spec.rb +2 -2
- data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +1 -1
- data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +39 -0
- data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +1 -1
- data/spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb +1 -0
- data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +2 -2
- data/spec/views/records/edit_fields/_alt_title.html.erb_spec.rb +26 -0
- data/spec/views/records/edit_fields/_title.html.erb_spec.rb +24 -0
- data/spec/wings/active_fedora_converter_spec.rb +136 -1
- data/spec/wings/converter_value_mapper_spec.rb +23 -0
- data/spec/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior_spec.rb +41 -0
- data/spec/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior_spec.rb +19 -0
- data/spec/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior_spec.rb +442 -0
- data/spec/wings/hydra/works/models/concerns/collection_valkyrie_behavior_spec.rb +22 -0
- data/spec/wings/hydra/works/models/concerns/file_set_valkyrie_behavior_spec.rb +90 -0
- data/spec/wings/hydra/works/models/concerns/work_valkyrie_behavior_spec.rb +218 -0
- data/spec/wings/model_transformer_spec.rb +167 -112
- data/spec/wings/models/concerns/collection_behavior_spec.rb +120 -0
- data/spec/wings/services/file_metadata_builder_spec.rb +39 -0
- data/spec/wings/services/id_converter_service_spec.rb +24 -0
- data/spec/wings/{value_mapper_spec.rb → transformer_value_mapper_spec.rb} +2 -2
- data/spec/wings/valkyrie/persister_spec.rb +544 -53
- data/spec/wings/valkyrie/query_service_spec.rb +381 -4
- data/spec/wings_helper.rb +4 -0
- data/template.rb +1 -1
- metadata +205 -49
- data/.travis.yml +0 -36
- data/lib/wings/resource_factory.rb +0 -8
data/config/locales/hyrax.fr.yml
CHANGED
@@ -18,9 +18,11 @@ fr:
|
|
18
18
|
fields:
|
19
19
|
facet:
|
20
20
|
admin_set_sim: Collection
|
21
|
+
collection_type_gid_ssim: Type de collection
|
21
22
|
member_of_collections_ssim: Collection
|
22
23
|
resource_type_sim: Type de ressource
|
23
24
|
suppressed_bsi: Statut
|
25
|
+
visibility_ssi: Visibilité
|
24
26
|
show:
|
25
27
|
admin_set: 'Dans l''ensemble administratif:'
|
26
28
|
based_near_label: Emplacement
|
@@ -38,6 +40,7 @@ fr:
|
|
38
40
|
extension_whitelist_error: 'Vous n''êtes pas autorisé à télécharger des fichiers %{extension}, types autorisés: %{allowed_types}'
|
39
41
|
helpers:
|
40
42
|
action:
|
43
|
+
accept: Acceptez
|
41
44
|
add: Ajouter
|
42
45
|
admin_set:
|
43
46
|
new: Créer un nouvel ensemble administratif
|
@@ -265,6 +268,7 @@ fr:
|
|
265
268
|
collections: Collections
|
266
269
|
configuration: Configuration
|
267
270
|
content_blocks: Blocs de contenu
|
271
|
+
delete_all: Supprimer tout
|
268
272
|
notifications: Notifications
|
269
273
|
pages: Pages
|
270
274
|
profile: Profil
|
@@ -279,6 +283,7 @@ fr:
|
|
279
283
|
workflow_review: Soumissions de révision
|
280
284
|
workflow_roles: Rôles de workflow
|
281
285
|
works: Travaux
|
286
|
+
works_listing: Liste des travaux
|
282
287
|
stats:
|
283
288
|
deposited_form:
|
284
289
|
end_label: Fin [par défaut pour maintenant]
|
@@ -346,14 +351,33 @@ fr:
|
|
346
351
|
default: La ressource que vous avez tenté de modifier ne peut pas être modifiée selon votre demande.
|
347
352
|
background_attribution_html: ''
|
348
353
|
base:
|
354
|
+
attributes:
|
355
|
+
table_attribute_name: Nom d'attribut
|
356
|
+
table_heading_attributes: Les attributs
|
357
|
+
table_values: Valeur
|
358
|
+
visibility: Visibilité
|
349
359
|
citations:
|
360
|
+
citations: Citations
|
361
|
+
endnote: EndNote
|
350
362
|
header: 'Citations:'
|
363
|
+
mendeley: Mendeley
|
364
|
+
zotero: Zotero
|
365
|
+
file_manager:
|
366
|
+
back_to: Revenir à
|
367
|
+
toolbar: Outils
|
368
|
+
file_manager_actions:
|
369
|
+
save: Enregistrer
|
370
|
+
sort_alphabetically: Trier par ordre alphabétique
|
371
|
+
file_manager_member_resource_options:
|
372
|
+
representative_media: Média représentatif
|
373
|
+
thumbnail: Miniature
|
351
374
|
form:
|
352
375
|
batch_link: Envoi par lot
|
353
376
|
batch_upload_hint: Pour créer un travail séparé pour chacun des fichiers, allez à
|
354
377
|
form_child_work_relationships:
|
355
378
|
actions:
|
356
379
|
remove: Supprimer de ce travail
|
380
|
+
add: Ajouter
|
357
381
|
attach_new_work: Déposer un nouveau travail en tant qu'enfant de ce travail
|
358
382
|
caption: Ce travail contient actuellement ces travaux d'enfants
|
359
383
|
confirm:
|
@@ -366,6 +390,7 @@ fr:
|
|
366
390
|
form_files:
|
367
391
|
add_files: Ajouter des fichiers
|
368
392
|
add_folder: Ajouter un dossier
|
393
|
+
cancel_upload: Annuler le téléchargement
|
369
394
|
dropzone: Déposez les fichiers ici.
|
370
395
|
local_upload_browse_everything_html: |
|
371
396
|
<p>Vous pouvez ajouter un ou plusieurs fichiers à associer à ce travail.</p>
|
@@ -378,6 +403,7 @@ fr:
|
|
378
403
|
form_member_of_collections:
|
379
404
|
actions:
|
380
405
|
remove: Supprimer de la collection
|
406
|
+
add: Ajouter
|
381
407
|
caption: Ce travail est actuellement dans ces collections
|
382
408
|
confirm:
|
383
409
|
cancel: Annuler
|
@@ -386,6 +412,8 @@ fr:
|
|
386
412
|
header:
|
387
413
|
actions: action
|
388
414
|
title: Titre de la collection
|
415
|
+
form_permission:
|
416
|
+
visibility: Visibilité <small> Qui devrait être en mesure d’afficher ou de télécharger ce contenu? </ Small>
|
389
417
|
form_permission_under_embargo:
|
390
418
|
help_html: "<strong>Ce travail est sous embargo.</strong> Vous pouvez modifier les paramètres de l'embargo ici, ou vous pouvez visiter le %{edit_link} pour le désactiver."
|
391
419
|
legend_html: Visibilité <small>Qui devrait pouvoir afficher ou télécharger ce contenu?</small>
|
@@ -399,6 +427,8 @@ fr:
|
|
399
427
|
required_descriptions: Décrivez votre travail
|
400
428
|
required_files: Ajouter des fichiers
|
401
429
|
requirements: Exigences
|
430
|
+
saving_your_work: Sauvegarder votre travail. Ceci peut prendre un certain temps
|
431
|
+
yourself: Vous-même
|
402
432
|
form_rendering:
|
403
433
|
help_html: Sélectionnez le (s) fichier (s) à télécharger en téléchargement pour chaque image dans Universal Viewer, par exemple un PDF de l'ensemble de l'œuvre.
|
404
434
|
legend_html: Le rendu
|
@@ -406,14 +436,36 @@ fr:
|
|
406
436
|
help_html: Sélectionnez le fichier avec le média qui représente ce travail.
|
407
437
|
legend_html: Médias représentatifs
|
408
438
|
form_share:
|
439
|
+
access_type_to_grant: Type d'accès à accorder
|
440
|
+
account_label_without_suffix: "%{account_label} (sans la partie %{suffix})"
|
409
441
|
add_sharing: Ajouter un partage
|
442
|
+
add_this_group: Ajouter <span class = "sr-only"> ce groupe </ span>
|
410
443
|
currently_sharing: Actuellement partagé avec
|
444
|
+
depositor: Déposant
|
411
445
|
directions: Indépendamment des paramètres de visibilité pour ce travail, vous pouvez également le partager avec d'autres utilisateurs et groupes.
|
446
|
+
group: Groupe
|
447
|
+
permissions_save_note: Les autorisations ne sont <strong> pas </ strong> enregistrées tant que le & quot; Enregistrer & quot; bouton est enfoncé en bas de la page.
|
448
|
+
use_add_button: Utilisez le bouton Ajouter pour donner accès à un %{account_label} à la fois (il sera ajouté à la liste ci-dessous). Sélectionnez l'utilisateur, par son nom ou par %{account_label} \. Ensuite, sélectionnez le niveau d'accès que vous souhaitez accorder et cliquez sur Ajouter ce %{account_label} pour terminer l'ajout de l'autorisation.
|
412
449
|
form_thumbnail:
|
413
450
|
help_html: Sélectionnez le fichier à utiliser comme vignette pour ce travail.
|
414
451
|
legend_html: La vignette
|
415
452
|
form_visibility_component:
|
416
453
|
visibility: Visibilité
|
454
|
+
inspect_work:
|
455
|
+
back_to: Retour à
|
456
|
+
entity_id: ID d'entité
|
457
|
+
id: ID
|
458
|
+
name: prénom
|
459
|
+
object_name: Nom d'objet
|
460
|
+
persistence: Persistance
|
461
|
+
processing_entity_id: ID de l'entité de traitement
|
462
|
+
proxy_for: Procuration pour
|
463
|
+
roles: Rôles
|
464
|
+
state: Etat
|
465
|
+
state_name: Nom d'état
|
466
|
+
users: Utilisateurs
|
467
|
+
workflow: Flux de travail
|
468
|
+
workflow_comments: Commentaires sur le workflow
|
417
469
|
items:
|
418
470
|
actions: actes
|
419
471
|
date_uploaded: Date de téléchargement
|
@@ -439,6 +491,7 @@ fr:
|
|
439
491
|
show_actions:
|
440
492
|
analytics: Statistiques
|
441
493
|
attach_child: Insérer un travail enfant
|
494
|
+
confirm_delete: Supprimer ce %{work_type} ?
|
442
495
|
delete: Supprimer
|
443
496
|
edit: Modifier
|
444
497
|
feature: Mettre à la une
|
@@ -448,13 +501,46 @@ fr:
|
|
448
501
|
google: Google+
|
449
502
|
tumblr: Tumblr
|
450
503
|
twitter: Gazouillement
|
504
|
+
unauthorized:
|
505
|
+
id: 'ID: %{id}'
|
506
|
+
is_private: Le %{type} auquel vous avez essayé d'accéder est privé
|
507
|
+
page_is_private: La page à laquelle vous avez essayé d'accéder est privée
|
508
|
+
unauthorized: Non autorisé
|
509
|
+
work_button_row:
|
510
|
+
analytics: Analytique
|
511
|
+
attach: Joindre %{type}
|
512
|
+
delete: Effacer
|
513
|
+
delete_type: Supprimer ce %{type}?
|
514
|
+
edit: modifier
|
515
|
+
feature: Fonctionnalité
|
516
|
+
unfeature: Manque de fonctionnalité
|
517
|
+
workflow_actions:
|
518
|
+
actions: actes
|
519
|
+
previous_comments: Commentaires précédents
|
520
|
+
review_comment: Commentaire d'examen
|
521
|
+
title: Révision et approbation
|
522
|
+
base/unauthorized:
|
523
|
+
is_private: Le %{type} auquel vous avez essayé d'accéder est privé
|
524
|
+
unauthorized: Non autorisé
|
451
525
|
batch:
|
452
526
|
help:
|
453
527
|
resource_type: Vous pouvez sélectionner plusieurs types à appliquer à tous les fichiers
|
454
528
|
title: Nom de fichier sera le titre par défaut. Veuillez fournir un titre plus significatif et les noms de fichiers seront conservés par le système.
|
455
529
|
batch_edits:
|
530
|
+
check_all:
|
531
|
+
select_to_access_selection_options: Sélectionner pour accéder à l'option de sélection
|
456
532
|
delete_selected:
|
457
533
|
button_label: Supprimer la sélection
|
534
|
+
deleting_file_from: La suppression d'un fichier de %{application_name} est permanente. Cliquez sur OK pour supprimer ce fichier de %{application_name} ou sur Annuler pour annuler cette opération.
|
535
|
+
edit:
|
536
|
+
apply_changes_to: 'Les modifications seront appliquées à: (%{x_number_of} fonctionne)'
|
537
|
+
batch_edit_descriptions: Modifier les descriptions par lots & nbsp; & nbsp; & nbsp; <small> Cliquez sur les étiquettes ci-dessous pour modifier les descriptions de travail. </ Small>
|
538
|
+
clear_batch: Lot clair
|
539
|
+
descriptions: Descriptions
|
540
|
+
descriptions_title: 'Descriptions:'
|
541
|
+
permissions: Les permissions
|
542
|
+
sharing: Partage
|
543
|
+
visibility: Visibilité
|
458
544
|
batch_uploads:
|
459
545
|
disabled: Fonction désactivée par l'administrateur
|
460
546
|
files:
|
@@ -470,6 +556,9 @@ fr:
|
|
470
556
|
header: Sauvegarder les travaux
|
471
557
|
bread_crumb:
|
472
558
|
search_results: Retour aux résultats de recherche
|
559
|
+
citations:
|
560
|
+
work:
|
561
|
+
citation_formats: Formats de citation
|
473
562
|
collection:
|
474
563
|
actions:
|
475
564
|
add_existing_works:
|
@@ -542,6 +631,10 @@ fr:
|
|
542
631
|
show_more_parent_collections: montre plus...
|
543
632
|
subcollection_count: Sous-collections
|
544
633
|
works_in_collection: Fonctionne dans cette collection
|
634
|
+
sort_and_per_page:
|
635
|
+
number_of_results_to_display_per_page: Nombre de résultats à afficher par page
|
636
|
+
results_per_page: 'Résultats par page:'
|
637
|
+
sort_by_html: "<span>Trier par:</span>"
|
545
638
|
contact_form:
|
546
639
|
button_label: Envoyer
|
547
640
|
email_label: Votre Email
|
@@ -604,15 +697,22 @@ fr:
|
|
604
697
|
relationships: Des relations
|
605
698
|
sharing: Partage
|
606
699
|
form_branding:
|
700
|
+
alt_text: 'Texte alternatif:'
|
607
701
|
banner:
|
608
702
|
description: Une image à afficher en haut de la page de collection. Pour de meilleurs résultats, téléchargez une image (JPG, GIF ou PNG) d'une hauteur d'au moins 120 pixels et d'une largeur de 1200 pixels.
|
609
703
|
label: Bannière
|
610
704
|
branding:
|
611
705
|
description: En option, vous pouvez télécharger une image de bannière et / ou des images de logo à associer à cette collection. Si elles sont téléchargées, ces images seront affichées en haut de la page de collection afin de fournir une image de marque unique pour la collection.
|
612
706
|
label: l'image de marque
|
707
|
+
choose_file: Choisissez un fichier
|
708
|
+
link_url: URL du lien
|
613
709
|
logo:
|
614
710
|
description: Une ou plusieurs images à afficher en haut de la page de collection. Pour de meilleurs résultats, téléchargez une image (JPG, GIF ou PNG) de 40 pixels de hauteur. Les images plus grandes seront redimensionnées à 40 pixels de hauteur.
|
615
711
|
label: Logo
|
712
|
+
previous: Précédente
|
713
|
+
remove: Supprimer
|
714
|
+
remove_current_banner: Supprimer la bannière actuelle
|
715
|
+
remove_logo: Supprimer le logo
|
616
716
|
form_discovery:
|
617
717
|
para1: Ces paramètres déterminent qui peut découvrir et afficher la page de destination de cette collection. ils n'affectent pas la visibilité des éléments de la collection.
|
618
718
|
para2: Si vous choisissez de ne pas autoriser l'accès en accès libre à cette collection, vous pouvez toujours partager la collection avec des utilisateurs et des groupes spécifiques à l'aide de l'onglet Partage.
|
@@ -639,7 +739,13 @@ fr:
|
|
639
739
|
add_sharing: Ajouter un partage
|
640
740
|
add_user: Ajouter un utilisateur
|
641
741
|
current_shared: Actuellement partagé avec
|
742
|
+
depositor: Déposer
|
743
|
+
manager: Gérer
|
642
744
|
note: Indépendamment des paramètres de visibilité de cette collection, vous pouvez partager cette collection avec des groupes et des utilisateurs spécifiques.
|
745
|
+
search_for_a_group: Rechercher un groupe...
|
746
|
+
search_for_a_user: Recherchez un utilisateur...
|
747
|
+
select_a_role: Choisissez un rôle...
|
748
|
+
viewer: Consulter
|
643
749
|
form_share_table:
|
644
750
|
allow_all_registered: Autoriser tous les inscrits
|
645
751
|
depositors:
|
@@ -680,6 +786,32 @@ fr:
|
|
680
786
|
show_less_parent_collections: "...montre moins"
|
681
787
|
show_more_parent_collections: montre plus...
|
682
788
|
subcollection_count: Sous-collections
|
789
|
+
show_descriptions:
|
790
|
+
descriptions: Descriptions
|
791
|
+
show_document_list:
|
792
|
+
action: action
|
793
|
+
date_added: Date ajoutée
|
794
|
+
list_items_in_collection: Liste des articles de cette collection
|
795
|
+
owner: Propriétaire
|
796
|
+
title: Titre
|
797
|
+
visibility: Visibilité
|
798
|
+
show_document_list_menu:
|
799
|
+
select: Sélectionner
|
800
|
+
show_document_list_row:
|
801
|
+
creator: 'Créateur:'
|
802
|
+
depositor: 'Déposant:'
|
803
|
+
edit_access: 'Modifier l''accès:'
|
804
|
+
sort_and_per_page:
|
805
|
+
show_par_page_html: Afficher %{select} collections par page
|
806
|
+
sort_by: 'Trier par:'
|
807
|
+
work_action_menu:
|
808
|
+
delete_work: Supprimer le travail
|
809
|
+
deleting_from_work: Supprimer un travail de %{application_name} est permanent. Cliquez sur OK pour supprimer ce travail de %{application_name} ou sur Annuler pour annuler cette opération.
|
810
|
+
edit_work: Modifier le travail
|
811
|
+
press_to: Appuyez sur pour
|
812
|
+
remove_from_collection: Retirer de la collection
|
813
|
+
select_an_action: Sélectionnez une action
|
814
|
+
transfer_ownership_of_work: Transfert de la propriété du travail
|
683
815
|
create_work: Créer un travail
|
684
816
|
current_proxies: Proxies actuelles
|
685
817
|
delete_notification: Supprimer la notification
|
@@ -703,6 +835,8 @@ fr:
|
|
703
835
|
collection_update_success: La collection a été mise à jour avec succès.
|
704
836
|
collections_confirmation_html: La suppression de <span class='pluralized'>cette collection</span> supprimera définitivement <span class='pluralized'>cette collection</span> du référentiel. Les éléments de <span class='pluralized'>cette collection</span> resteront dans le référentiel. Êtes-vous sûr de vouloir supprimer <span class='pluralized'>cette collection</span> ?
|
705
837
|
collections_confirmation_no_items_html: Êtes-vous sûr de vouloir supprimer cette collection? Cette action ne peut pas être annulée.
|
838
|
+
collections_confirmation_plural: ces collections
|
839
|
+
collections_confirmation_singular: cette collection
|
706
840
|
delete_admin_set: Supprimer la collection
|
707
841
|
delete_admin_set_deny: Cette collection est définie en tant que jeu d'administration et n'est pas vide. Pour supprimer cet ensemble d'administration, vous devez d'abord supprimer (supprimer ou déplacer vers une autre collection d'ensembles d'administration) tous les éléments du jeu d'administration.
|
708
842
|
delete_collection: Supprimer la collection
|
@@ -745,6 +879,7 @@ fr:
|
|
745
879
|
heading:
|
746
880
|
access: Accès
|
747
881
|
action: Actes
|
882
|
+
caption: Liste des articles de cette collection
|
748
883
|
collection_type: Type de collection
|
749
884
|
date_modified: Dernière modification
|
750
885
|
date_uploaded: Date Ajoutée
|
@@ -761,6 +896,7 @@ fr:
|
|
761
896
|
check_all_label: Sélectionnez tous les fichiers à ajouter à une collection ou édités
|
762
897
|
detail_label: Afficher les détails sommaires de
|
763
898
|
listing: Liste des éléments que vous avez déposés dans
|
899
|
+
number_of_results_to_display_per_page: Nombre de résultats à afficher par page
|
764
900
|
press_to: Appuyez sur pour
|
765
901
|
results_per_page: Nombre de résultats à afficher par page
|
766
902
|
show_label: Afficher tous les détails de
|
@@ -776,7 +912,19 @@ fr:
|
|
776
912
|
no_proxies: Il n'y a pas de proxy attribués
|
777
913
|
no_transfer_requests: Vous n'avez reçu aucune demande de transfert de travail
|
778
914
|
no_transfers: Vous n'avez transféré aucun travail
|
915
|
+
profiles:
|
916
|
+
edit_primary:
|
917
|
+
change_picture: <i class = "glyphicon glyphicon-camera"> </ i> Changer photo
|
918
|
+
delete_picture: Supprimer la photo
|
919
|
+
delete_picture_data_content: Si vous souhaitez supprimer entièrement votre image, cochez la case et enregistrez votre profil.
|
920
|
+
delete_picture_data_original_title: Supprimer l'image
|
921
|
+
facebook_handle: <i class = "fa fa-facebook" aria-hidden = "true"> </ i> Poignée Facebook
|
922
|
+
google_handle: <i class = "fa fa-google-plus"> </ i> Poignée Google+
|
923
|
+
help_change_picture_type: JPG, GIF ou PNG (moins de 2 Mo)
|
924
|
+
save_profile: <i class = "glyphicon glyphicon-save"> </ i> Enregistrer le profil
|
925
|
+
twitter_handle: <i class = "fa fa-twitter" aria-hidden = "true"> </ i> Poignée Twitter
|
779
926
|
proxy_activity: Activité de procuration
|
927
|
+
proxy_add_deny: Vous ne pouvez pas vous faire un proxy
|
780
928
|
proxy_delete: Supprimer le proxy
|
781
929
|
proxy_help: Sélectionnez un utilisateur qui peut déposer des œuvres en votre nom. Vous serez le propriétaire des œuvres que cet utilisateur dépose pour vous. Vous pouvez révoquer un proxy en cliquant sur le bouton Supprimer le proxy.
|
782
930
|
proxy_user: Utilisateur proxy
|
@@ -803,6 +951,7 @@ fr:
|
|
803
951
|
file_views: Vue
|
804
952
|
files: Fichiers déposés
|
805
953
|
heading: Vos statistiques
|
954
|
+
joined_on: Créé le
|
806
955
|
works: Travaux créés
|
807
956
|
title: Mon tableau de bord
|
808
957
|
transfer_of_ownership: Transfert de propriété
|
@@ -842,6 +991,7 @@ fr:
|
|
842
991
|
deactivate: Désactiver Embargo
|
843
992
|
deactivate_selected: Désactiver les embargos pour la sélection
|
844
993
|
missing: Il n'y a pas d'embargos expirés en vigueur en ce moment.
|
994
|
+
select_all: Tout sélectionner
|
845
995
|
table_headers:
|
846
996
|
release_date: Date de sortie de l'embargo
|
847
997
|
title: Titre
|
@@ -859,12 +1009,14 @@ fr:
|
|
859
1009
|
download: Télécharger le fichier
|
860
1010
|
downloadable_content:
|
861
1011
|
audio_link: Télécharger l'audio
|
1012
|
+
audio_tag_not_supported: Votre navigateur ne supporte pas la balise audio.
|
862
1013
|
default_link: Télécharger un fichier
|
863
1014
|
heading: Contenu téléchargeable
|
864
1015
|
image_link: Télécharger l'image
|
865
1016
|
office_link: Télécharger un fichier
|
866
1017
|
pdf_link: Télécharger le fichier PDF
|
867
1018
|
video_link: Télécharger la video
|
1019
|
+
video_tag_not_supported: Votre navigateur ne supporte pas le tag vidéo.
|
868
1020
|
file_sets:
|
869
1021
|
actions:
|
870
1022
|
delete: Effacer
|
@@ -875,13 +1027,28 @@ fr:
|
|
875
1027
|
edit: modifier
|
876
1028
|
edit_title: Modifier %{file_set}
|
877
1029
|
header: Sélectionnez une action
|
1030
|
+
press_to: Appuyez sur pour
|
878
1031
|
versions: Versions
|
879
1032
|
versions_title: Afficher les versions précédentes
|
1033
|
+
asset_deleted_flash:
|
1034
|
+
message: Le fichier a été supprimé.
|
1035
|
+
asset_saved_flash:
|
1036
|
+
message:
|
1037
|
+
one: Le fichier %{saved_files} a été enregistré.
|
1038
|
+
other: Les fichiers %{saved_files} ont été enregistrés.
|
1039
|
+
asset_updated_flash:
|
1040
|
+
message: Le fichier %{link_to_file} a été mis à jour.
|
1041
|
+
descriptions:
|
1042
|
+
save: Sauvegarder les descriptions
|
1043
|
+
title: Descriptions
|
880
1044
|
edit:
|
881
1045
|
descriptions: Les descriptions
|
882
1046
|
header: Modifier %{file_set}
|
883
1047
|
permissions: Autorisations
|
884
1048
|
versions: Des versions
|
1049
|
+
extra_fields_modal:
|
1050
|
+
additional: Additionnel
|
1051
|
+
label: "%{label} supplémentaire (s)"
|
885
1052
|
form:
|
886
1053
|
attach_to: Joindre à %{parent}
|
887
1054
|
cancel: Annuler
|
@@ -892,10 +1059,19 @@ fr:
|
|
892
1059
|
permission:
|
893
1060
|
save: sauvegarder
|
894
1061
|
permission_form:
|
1062
|
+
add_new_group_skel: Ajouter ce groupe
|
1063
|
+
add_new_user_skel: Ajouter cette %{account_label}
|
895
1064
|
applied_to: "(appliqué à tous les fichiers que vous venez de télécharger)"
|
1065
|
+
bulk: Masse
|
896
1066
|
depositor: Déposant
|
897
1067
|
enter: Entrez %{account_label} (un à la fois)
|
898
1068
|
header: Autorisations
|
1069
|
+
new_group_help_text: Utilisez le bouton Ajouter pour donner accès à un groupe à la fois (il sera ajouté à la liste ci-dessous).
|
1070
|
+
new_group_name_skel: Groupe
|
1071
|
+
new_group_permission_skel: Type d'accès à accorder
|
1072
|
+
new_user_help_text: Utilisez le bouton Ajouter pour donner accès à un %{account_label} à la fois (il sera ajouté à la liste ci-dessous). Sélectionnez l'utilisateur, par son nom ou par %{account_label}. Ensuite, sélectionnez le niveau d'accès que vous souhaitez accorder et cliquez sur Ajouter ce %{account_label} pour terminer l'ajout de l'autorisation.
|
1073
|
+
new_user_name_skel: "%{account_label} (sans la partie %{suffix})"
|
1074
|
+
new_user_permission_skel: Type d'accès à accorder
|
899
1075
|
optional: "(optionnel)"
|
900
1076
|
save_note_html: Les autorisations <strong>ne</strong> sont <strong>pas</strong> enregistrées tant que le bouton "Enregistrer" n'est pas enfoncé en bas de la page.
|
901
1077
|
select_group: Sélectionnez un groupe
|
@@ -903,12 +1079,28 @@ fr:
|
|
903
1079
|
table_title_access: Niveau d'accès
|
904
1080
|
table_title_user: Personne / groupe
|
905
1081
|
user_search: Rechercher un utilisateur
|
1082
|
+
proxy:
|
1083
|
+
message: "%{sending_user} a déposé le fichier %{title} en votre nom."
|
1084
|
+
show_actions:
|
1085
|
+
analytics: Statistiques
|
1086
|
+
confirm_delete_this: Supprimer ce %{type}?
|
1087
|
+
delete_this: Supprimer ce %{type}
|
1088
|
+
edit_this: Modifier ce %{type}
|
1089
|
+
show_details:
|
1090
|
+
characterization: Caractérisation
|
1091
|
+
date_modified: Modifié le
|
1092
|
+
date_uploaded: Déposé le
|
1093
|
+
depositor: Déposé par
|
1094
|
+
file_details: Description du fichier
|
1095
|
+
fixity_check: Vérification de la fixité
|
1096
|
+
not_yet_characterized: Pas encore caractérisé
|
906
1097
|
versioning:
|
907
1098
|
current: Version actuelle
|
908
1099
|
header: Des versions
|
909
1100
|
restore: Restaurer la version précédente
|
910
1101
|
restore_from: Restauration à partir de
|
911
1102
|
save: Enregistrer la révision
|
1103
|
+
save_your_note: Vous devez cliquer sur "Enregistrer la révision". pour revenir à une version précédente de ce fichier
|
912
1104
|
upload: Télécharger une nouvelle version
|
913
1105
|
help:
|
914
1106
|
header: Support utilisateur
|
@@ -1006,13 +1198,17 @@ fr:
|
|
1006
1198
|
my:
|
1007
1199
|
count:
|
1008
1200
|
collections:
|
1201
|
+
collections_listing: Liste des collections
|
1009
1202
|
in_repo: "<strong> Collections %{total_count} </ strong> dans le référentiel"
|
1010
1203
|
you_manage: "<strong> collections %{total_count} </ strong> que vous pouvez gérer dans le référentiel"
|
1011
1204
|
you_own: "<strong> collections %{total_count} </ strong> que vous possédez dans le référentiel"
|
1012
1205
|
works:
|
1013
1206
|
in_repo: "<strong> %{total_count} fonctionne </ strong> dans le référentiel"
|
1207
|
+
works_listing: Liste des travaux
|
1014
1208
|
you_manage: "<strong> %{total_count} fonctionne </ strong> vous pouvez gérer dans le référentiel"
|
1015
1209
|
you_own: "<strong> %{total_count} fonctionne </ strong> que vous possédez dans le référentiel"
|
1210
|
+
sort_and_per_page:
|
1211
|
+
number_of_results_to_display_per_page: Nombre de résultats à afficher par page
|
1016
1212
|
nav_safety:
|
1017
1213
|
change_tab_message: Êtes-vous sûr de vouloir quitter cet onglet? Toutes les données non enregistrées seront perdues.
|
1018
1214
|
notifications:
|
@@ -1029,8 +1225,9 @@ fr:
|
|
1029
1225
|
subject: Erreur d'importation de fichier
|
1030
1226
|
proxy_deposit_request:
|
1031
1227
|
transfer_on_create:
|
1032
|
-
message: "%{user_link} souhaite vous transférer une œuvre. Voir
|
1228
|
+
message: "%{user_link} souhaite vous transférer une œuvre. Voir toutes les %{transfer_link}"
|
1033
1229
|
subject: Demande de changement de propriété
|
1230
|
+
transfer_link_label: les demandes de transfert
|
1034
1231
|
transfer_on_update:
|
1035
1232
|
comments: 'Commentaires: %{receiver_comment}'
|
1036
1233
|
message: Votre demande de transfert était %{status}.
|
@@ -1051,6 +1248,12 @@ fr:
|
|
1051
1248
|
pending_review:
|
1052
1249
|
message: "%{title} (%{link}) a été déposé par %{user} et est en attente d'approbation. %{comment}"
|
1053
1250
|
subject: Examen des besoins de dépôt
|
1251
|
+
operations:
|
1252
|
+
index:
|
1253
|
+
operations_type: Type d'opération
|
1254
|
+
status: Statut
|
1255
|
+
title: Opérations
|
1256
|
+
updated: Mis à jour
|
1054
1257
|
pages:
|
1055
1258
|
cancel: Annuler
|
1056
1259
|
tabs:
|
@@ -1106,7 +1309,21 @@ fr:
|
|
1106
1309
|
link: Lien
|
1107
1310
|
no_links: Aucun lien n'a été généré
|
1108
1311
|
title: Liens à usage unique
|
1312
|
+
single_use_links_viewer:
|
1313
|
+
single_use_error:
|
1314
|
+
help: '%{application_name} n''a pas pu localiser le lien à usage unique. Ce lien a expiré ou a déjà été utilisé. Nous nous excusons pour le dérangement. Vous pouvez être intéressé par <a href="/help/"> la page d''aide </a> pour rechercher des solutions.'
|
1315
|
+
link_expired_not_found: Lien à usage unique expiré ou introuvable
|
1316
|
+
link_not_found: Lien à usage unique introuvable
|
1109
1317
|
sort_label: Trier la liste des articles
|
1318
|
+
static:
|
1319
|
+
mendeley:
|
1320
|
+
contact_form: Formulaire de contact
|
1321
|
+
export_to_mendeley: Exporter vers Mendeley
|
1322
|
+
export_to_mendeley_details: L'exportation vers Mendeley est prise en charge via des métadonnées intégrées. Si Mendeley ne récupère pas automatiquement les métadonnées des fichiers déposés, veuillez signaler le problème via le
|
1323
|
+
zotero:
|
1324
|
+
contact_form: Formulaire de contact
|
1325
|
+
export_to_zotero: Exporter vers Zotero
|
1326
|
+
export_to_zotero_details: L'exportation vers Zotero est prise en charge via des métadonnées intégrées. Si Zotero ne récupère pas automatiquement les métadonnées des fichiers déposés, veuillez signaler le problème via le
|
1110
1327
|
toolbar:
|
1111
1328
|
dashboard:
|
1112
1329
|
menu: Tableau de bord
|
@@ -1127,6 +1344,29 @@ fr:
|
|
1127
1344
|
placeholder: Rechercher un utilisateur
|
1128
1345
|
sr_only_description: Sélectionnez un utilisateur pour transférer "% {work_title}" à, ajoutez des commentaires facultatifs, puis appuyez sur transférer.
|
1129
1346
|
title: Propriété de transfert de "%{work_title}"
|
1347
|
+
received:
|
1348
|
+
accept: Acceptez
|
1349
|
+
accept_the_file_and_allow_the_original_depositor_to_retain_access_and_authorize: Acceptez le fichier et permettez au déposant initial de conserver l'accès et autorisez le déposant original en tant que mandataire à déposer le fichier en votre nom.
|
1350
|
+
accept_the_file_and_allow_the_original_depositor_to_retain_access_to_edit_the_file_and_metadata: Acceptez le fichier et autorisez le déposant d'origine à conserver l'accès pour éditer le fichier et les métadonnées.
|
1351
|
+
accept_the_file_remove_access_from_the_original_depositor: Accepter le fichier supprimer l'accès du déposant d'origine.
|
1352
|
+
allow_depositor_to_retain_edit_access: Autoriser le déposant à conserver l'accès en édition
|
1353
|
+
are_you_sure_you_want_to_reject_this_request: Êtes-vous sûr de vouloir rejeter cette demande?
|
1354
|
+
authorize_depositor_as_proxy: Autoriser le déposant en tant que mandataire
|
1355
|
+
comments: commentaires
|
1356
|
+
date: Rendez-vous amoureux
|
1357
|
+
from: De
|
1358
|
+
reject: Rejeter
|
1359
|
+
remove_depositor_access: Supprimer l'accès des déposants
|
1360
|
+
status: Statut
|
1361
|
+
title: Titre
|
1362
|
+
sent:
|
1363
|
+
are_you_sure_you_want_to_cancel_this_request: Êtes-vous sûr de vouloir annuler cette demande?
|
1364
|
+
cancel: Annuler
|
1365
|
+
comments: commentaires
|
1366
|
+
date: Rendez-vous amoureux
|
1367
|
+
from: De
|
1368
|
+
status: Statut
|
1369
|
+
title: Titre
|
1130
1370
|
upload:
|
1131
1371
|
alert:
|
1132
1372
|
contact_href_text: Formulaire de contact
|
@@ -1142,6 +1382,7 @@ fr:
|
|
1142
1382
|
change_access_flash_message: Mise à jour des niveaux d'accès aux fichiers. Cela peut prendre quelques minutes. Vous voudrez peut-être rafraîchir votre navigateur ou revenir à cet enregistrement plus tard pour voir les niveaux d'accès aux fichiers mis à jour.
|
1143
1383
|
change_access_message_html: "<p> Vous avez modifié le niveau d'accès au travail <i>%{curation_concern}</i> , ce qui le rend accessible à d'autres utilisateurs ou groupes pour afficher ou modifier. </p><p> Voulez-vous changer tous les fichiers dans le travail pour avoir le même accès utilisateurs, groupes et visibilité? </p>"
|
1144
1384
|
change_access_no_message: Non. Je vais le mettre à jour manuellement.
|
1385
|
+
change_access_title_html: Appliquer les modifications au contenu ?
|
1145
1386
|
change_access_yes_message: Oui s'il vous plaît.
|
1146
1387
|
change_permissions_message_html: "<p> Vous avez modifié les autorisations sur ce %{curation_concern_human_readable_type}, <i>%{curation_concern}</i> , ce qui le rend visible pour <b>%{visibility_badge}</b> . </p><p> Voulez-vous changer tous les fichiers dans %{curation_concern_human_readable_type} à <b>%{visibility_badge}</b> aussi? </p>"
|
1147
1388
|
local_ingest:
|
@@ -1152,6 +1393,20 @@ fr:
|
|
1152
1393
|
tab_label: Mon ordinateur
|
1153
1394
|
permissions_message: Mise à jour des autorisations de fichier. Cela peut prendre quelques minutes. Vous pouvez actualiser votre navigateur ou revenir à cet enregistrement plus tard pour voir les autorisations de fichier mises à jour.
|
1154
1395
|
processing: Le fichier est en cours de traitement; Vous pouvez modifier lorsque le traitement est terminé
|
1396
|
+
uploads:
|
1397
|
+
js_templates:
|
1398
|
+
display_label: Étiquette d'affichage
|
1399
|
+
error: Erreur
|
1400
|
+
set_all_to_this_resource_type: Définir tout pour ce type de ressource
|
1401
|
+
start: Début
|
1402
|
+
js_templates_branding:
|
1403
|
+
alt_text: 'Texte alternatif:'
|
1404
|
+
error: Erreur
|
1405
|
+
link_url: 'URL du lien:'
|
1406
|
+
previous: précédent
|
1407
|
+
remove: Retirer
|
1408
|
+
remove_new_banner: Supprimer la nouvelle bannière
|
1409
|
+
remove_new_logo: Supprimer le nouveau logo
|
1155
1410
|
user_profile:
|
1156
1411
|
orcid:
|
1157
1412
|
alt: Icône ORCID
|
@@ -1164,6 +1419,24 @@ fr:
|
|
1164
1419
|
connected: Connecté!
|
1165
1420
|
label: Profil de Zotero
|
1166
1421
|
unlinked: Lien avec Zotero
|
1422
|
+
users:
|
1423
|
+
activity_log:
|
1424
|
+
date: Rendez-vous amoureux
|
1425
|
+
user_activity: Activité de l'utilisateur
|
1426
|
+
index:
|
1427
|
+
avatar: Avatar
|
1428
|
+
department: département
|
1429
|
+
user_id: Identifiant d'utilisateur
|
1430
|
+
user_name: Nom d'utilisateur
|
1431
|
+
users: Utilisateurs
|
1432
|
+
works_created: Œuvres créées
|
1433
|
+
left_sidebar:
|
1434
|
+
view_users: Afficher les utilisateurs
|
1435
|
+
proxies:
|
1436
|
+
proxies: Les procurations
|
1437
|
+
search_form:
|
1438
|
+
go: Aller
|
1439
|
+
search_users: Rechercher des utilisateurs
|
1167
1440
|
visibility:
|
1168
1441
|
authenticated:
|
1169
1442
|
note_html: Limiter l'accès aux utilisateurs et / ou groupes exclus de %{institution}
|
@@ -1183,6 +1456,8 @@ fr:
|
|
1183
1456
|
note_html: Seuls les utilisateurs et / ou les groupes ayant reçu un accès spécifique dans la section "Partager avec".
|
1184
1457
|
text: Privé
|
1185
1458
|
restricted_title_attr: Modifier la visibilité de cette ressource
|
1459
|
+
work_button_row:
|
1460
|
+
attach_child: Attacher l'enfant
|
1186
1461
|
workflow:
|
1187
1462
|
default:
|
1188
1463
|
deposit: Dépôt
|
@@ -1246,6 +1521,8 @@ fr:
|
|
1246
1521
|
share_applies_to_new_works: Lorsque de nouveaux travaux sont créés directement dans la collection, accordez aux utilisateurs et aux groupes des autorisations de partage pour le nouveau travail en fonction de leurs rôles de collection.
|
1247
1522
|
title: ''
|
1248
1523
|
defaults:
|
1524
|
+
abstract: Un bref résumé d'un article de recherche, d'une thèse, d'un compte rendu, d'une procédure de conférence ou de toute analyse approfondie d'un sujet particulier.
|
1525
|
+
access_right: Contient des informations sur les personnes pouvant accéder à la ressource ou une indication de son statut de sécurité.
|
1249
1526
|
based_near: Un nom de lieu lié au travail, tel que son site de publication, ou la ville, l'état ou le pays sur lequel se trouvent les contenus du travail. Appelle le <a href='http://www.geonames.org'> service web GeoNames </a>.
|
1250
1527
|
contributor: Une personne ou un groupe que vous souhaitez reconnaître pour avoir joué un rôle dans la création du travail, mais pas le rôle principal.
|
1251
1528
|
creator: La personne ou le groupe responsable du travail. Habituellement, c'est l'auteur du contenu. Les noms personnels doivent être saisis d'abord avec le nom de famille, par ex. "Smith, John".
|
@@ -1279,6 +1556,8 @@ fr:
|
|
1279
1556
|
share_applies_to_new_works: APPLIQUEZ AUX NOUVEAUX TRAVAUX
|
1280
1557
|
title: Nom du type
|
1281
1558
|
defaults:
|
1559
|
+
abstract: Abstrait
|
1560
|
+
access_right: Des droits d'accès
|
1282
1561
|
admin_set_id: L'ensemble Administratif
|
1283
1562
|
based_near: Emplacement
|
1284
1563
|
creator: Créateur
|