hyrax 5.1.0 → 5.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.dassie/.env +5 -1
- data/.dassie/Gemfile +5 -3
- data/.dassie/app/assets/images/bulkrax/removed.png +0 -0
- data/.dassie/app/assets/javascripts/application.js +2 -0
- data/.dassie/app/assets/stylesheets/application.css +1 -0
- data/.dassie/app/controllers/catalog_controller.rb +1 -0
- data/.dassie/app/forms/admin_set_resource_form.rb +6 -0
- data/.dassie/app/forms/collection_resource_form.rb +5 -2
- data/.dassie/app/forms/generic_work_resource_form.rb +5 -2
- data/.dassie/app/forms/monograph_form.rb +5 -3
- data/.dassie/app/indexers/admin_set_resource_indexer.rb +5 -0
- data/.dassie/app/indexers/collection_resource_indexer.rb +3 -3
- data/.dassie/app/indexers/generic_work_resource_indexer.rb +6 -3
- data/.dassie/app/indexers/monograph_indexer.rb +6 -2
- data/.dassie/app/models/ability.rb +8 -0
- data/.dassie/app/models/collection_resource.rb +4 -2
- data/.dassie/app/models/concerns/bulkrax/has_local_processing.rb +8 -0
- data/.dassie/app/models/generic_work_resource.rb +5 -2
- data/.dassie/app/models/monograph.rb +5 -2
- data/.dassie/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder +22 -0
- data/.dassie/bin/importer +142 -0
- data/.dassie/bin/web +4 -0
- data/.dassie/config/application.rb +1 -1
- data/.dassie/config/browse_everything_providers.yml +1 -1
- data/.dassie/config/bulkrax_api.yml +86 -0
- data/.dassie/config/initializers/bulkrax.rb +92 -0
- data/.dassie/config/initializers/clamav.rb +2 -0
- data/.dassie/config/initializers/devise.rb +1 -0
- data/.dassie/config/initializers/hyrax.rb +7 -1
- data/.dassie/config/initializers/riiif.rb +4 -80
- data/.dassie/config/initializers/wings.rb +1 -1
- data/.dassie/config/metadata_profiles/m3_profile.yaml +929 -0
- data/.dassie/config/puma.rb +4 -2
- data/.dassie/config/routes.rb +7 -0
- data/.dassie/config/sidekiq.yml +17 -0
- data/.dassie/config/uv/uv.html +63 -81
- data/.dassie/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb +9 -0
- data/.dassie/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb +5 -0
- data/.dassie/db/migrate/20250826142438_create_bulkrax_importers.bulkrax.rb +19 -0
- data/.dassie/db/migrate/20250826142439_create_bulkrax_importer_runs.bulkrax.rb +17 -0
- data/.dassie/db/migrate/20250826142440_create_bulkrax_entries.bulkrax.rb +17 -0
- data/.dassie/db/migrate/20250826142441_add_status_to_entry.bulkrax.rb +10 -0
- data/.dassie/db/migrate/20250826142442_add_collections_to_importer_runs.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142443_change_collection_ids_on_entries.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142444_create_bulkrax_exporters.bulkrax.rb +20 -0
- data/.dassie/db/migrate/20250826142445_create_bulkrax_exporter_runs.bulkrax.rb +15 -0
- data/.dassie/db/migrate/20250826142446_change_importer_and_exporter_to_polymorphic.bulkrax.rb +19 -0
- data/.dassie/db/migrate/20250826142447_add_total_collection_records_to_importer_runs.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142448_add_children_to_importer_runs.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142449_change_total_records_to_total_work_entries.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142450_change_entry_last_error.bulkrax.rb +20 -0
- data/.dassie/db/migrate/20250826142451_add_validate_only_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142452_add_status_to_importers.bulkrax.rb +10 -0
- data/.dassie/db/migrate/20250826142453_remove_foreign_key_from_bulkrax_entries.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142454_add_status_to_exporters.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142455_add_invalid_record_to_importer_run.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142456_create_bulkrax_statuses.bulkrax.rb +19 -0
- data/.dassie/db/migrate/20250826142457_move_to_statuses.bulkrax.rb +31 -0
- data/.dassie/db/migrate/20250826142458_add_date_filter_and_status_to_bulkrax_exporters.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142459_add_workflow_status_to_bulkrax_exporter.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142460_remove_unused_last_error.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142461_increase_text_sizes.bulkrax.rb +13 -0
- data/.dassie/db/migrate/20250826142462_change_bulkrax_statuses_error_message_column_type_to_text.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142463_rename_children_counters_to_relationships.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142464_add_file_set_counters_to_importer_runs.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142465_add_import_attempts_to_entries.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142466_add_work_counters_to_importer_runs.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142467_create_bulkrax_pending_relationships.bulkrax.rb +14 -0
- data/.dassie/db/migrate/20250826142468_add_order_to_bulkrax_pending_relationships.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142469_add_include_thumbnails_to_bulkrax_exporters.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142470_add_generated_metadata_to_bulkrax_exporters.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142471_rename_bulkrax_importer_run_to_importer_run.bulkrax.rb +18 -0
- data/.dassie/db/migrate/20250826142472_add_indices_to_bulkrax.bulkrax.rb +26 -0
- data/.dassie/db/migrate/20250826142473_denormalize_status_message.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142474_update_identifier_index.bulkrax.rb +7 -0
- data/.dassie/db/migrate/20250826142475_add_index_to_metadata_bulkrax_identifier.bulkrax.rb +19 -0
- data/.dassie/db/migrate/20250826142476_add_file_name_to_uploaded_files.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142477_add_error_tracking_to_pending_relationships.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142478_add_last_imported_at_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142479_add_next_import_at_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.dassie/db/migrate/20250826142480_entry_error_denormalization.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20250826142481_faster_first_entry.bulkrax.rb +8 -0
- data/.dassie/db/migrate/20260430000001_create_hyrax_redirect_paths.hyrax.rb +13 -0
- data/.dassie/db/migrate/20260521003627_add_additional_redirect_info.hyrax.rb +32 -0
- data/.dassie/db/schema.rb +263 -109
- data/.dassie/package.json +1 -1
- data/.dassie/rspec_split_configuration.json +835 -0
- data/.dassie/solr/conf/solrconfig.xml +21 -5
- data/.github/{ISSUE_TEMPLATE.md → ISSUE_TEMPLATE/issue_template.md} +5 -0
- data/.github/workflows/lint-build-test.yml +6 -2
- data/.github/workflows/release-charts.yml +48 -0
- data/.gitignore +6 -0
- data/.koppie/.env +5 -1
- data/.koppie/Gemfile +3 -1
- data/.koppie/app/assets/images/bulkrax/removed.png +0 -0
- data/.koppie/app/assets/javascripts/application.js +2 -0
- data/.koppie/app/assets/stylesheets/application.css +1 -0
- data/.koppie/app/controllers/catalog_controller.rb +1 -1
- data/.koppie/app/forms/collection_resource_form.rb +5 -2
- data/.koppie/app/forms/file_set_form.rb +5 -0
- data/.koppie/app/forms/generic_work_form.rb +5 -3
- data/.koppie/app/forms/monograph_form.rb +5 -3
- data/.koppie/app/indexers/collection_resource_indexer.rb +5 -2
- data/.koppie/app/indexers/file_set_indexer.rb +7 -0
- data/.koppie/app/indexers/generic_work_indexer.rb +6 -3
- data/.koppie/app/indexers/monograph_indexer.rb +6 -2
- data/.koppie/app/models/ability.rb +8 -0
- data/.koppie/app/models/collection_resource.rb +4 -2
- data/.koppie/app/models/concerns/bulkrax/has_local_processing.rb +8 -0
- data/.koppie/app/models/generic_work.rb +5 -2
- data/.koppie/app/models/monograph.rb +5 -2
- data/.koppie/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder +22 -0
- data/.koppie/bin/importer +142 -0
- data/.koppie/bin/web +4 -0
- data/.koppie/config/browse_everything_providers.yml +2 -0
- data/.koppie/config/bulkrax_api.yml +86 -0
- data/.koppie/config/initializers/bulkrax.rb +92 -0
- data/.koppie/config/initializers/clamav.rb +2 -0
- data/.koppie/config/initializers/devise.rb +1 -1
- data/.koppie/config/initializers/hyrax.rb +11 -3
- data/.koppie/config/initializers/riiif.rb +4 -82
- data/.koppie/config/metadata_profiles/m3_profile.yaml +930 -0
- data/.koppie/config/routes.rb +7 -0
- data/.koppie/config/sidekiq.yml +2 -0
- data/.koppie/config/uv/uv.html +63 -81
- data/.koppie/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb +9 -0
- data/.koppie/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb +5 -0
- data/.koppie/db/migrate/20250826142438_create_bulkrax_importers.bulkrax.rb +19 -0
- data/.koppie/db/migrate/20250826142439_create_bulkrax_importer_runs.bulkrax.rb +17 -0
- data/.koppie/db/migrate/20250826142440_create_bulkrax_entries.bulkrax.rb +17 -0
- data/.koppie/db/migrate/20250826142441_add_status_to_entry.bulkrax.rb +10 -0
- data/.koppie/db/migrate/20250826142442_add_collections_to_importer_runs.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142443_change_collection_ids_on_entries.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142444_create_bulkrax_exporters.bulkrax.rb +20 -0
- data/.koppie/db/migrate/20250826142445_create_bulkrax_exporter_runs.bulkrax.rb +15 -0
- data/.koppie/db/migrate/20250826142446_change_importer_and_exporter_to_polymorphic.bulkrax.rb +19 -0
- data/.koppie/db/migrate/20250826142447_add_total_collection_records_to_importer_runs.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142448_add_children_to_importer_runs.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142449_change_total_records_to_total_work_entries.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142450_change_entry_last_error.bulkrax.rb +20 -0
- data/.koppie/db/migrate/20250826142451_add_validate_only_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142452_add_status_to_importers.bulkrax.rb +10 -0
- data/.koppie/db/migrate/20250826142453_remove_foreign_key_from_bulkrax_entries.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142454_add_status_to_exporters.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142455_add_invalid_record_to_importer_run.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142456_create_bulkrax_statuses.bulkrax.rb +19 -0
- data/.koppie/db/migrate/20250826142457_move_to_statuses.bulkrax.rb +31 -0
- data/.koppie/db/migrate/20250826142458_add_date_filter_and_status_to_bulkrax_exporters.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142459_add_workflow_status_to_bulkrax_exporter.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142460_remove_unused_last_error.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142461_increase_text_sizes.bulkrax.rb +13 -0
- data/.koppie/db/migrate/20250826142462_change_bulkrax_statuses_error_message_column_type_to_text.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142463_rename_children_counters_to_relationships.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142464_add_file_set_counters_to_importer_runs.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142465_add_import_attempts_to_entries.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142466_add_work_counters_to_importer_runs.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142467_create_bulkrax_pending_relationships.bulkrax.rb +14 -0
- data/.koppie/db/migrate/20250826142468_add_order_to_bulkrax_pending_relationships.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142469_add_include_thumbnails_to_bulkrax_exporters.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142470_add_generated_metadata_to_bulkrax_exporters.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142471_rename_bulkrax_importer_run_to_importer_run.bulkrax.rb +18 -0
- data/.koppie/db/migrate/20250826142472_add_indices_to_bulkrax.bulkrax.rb +26 -0
- data/.koppie/db/migrate/20250826142473_denormalize_status_message.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142474_update_identifier_index.bulkrax.rb +7 -0
- data/.koppie/db/migrate/20250826142475_add_index_to_metadata_bulkrax_identifier.bulkrax.rb +19 -0
- data/.koppie/db/migrate/20250826142476_add_file_name_to_uploaded_files.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142477_add_error_tracking_to_pending_relationships.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142478_add_last_imported_at_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142479_add_next_import_at_to_bulkrax_importers.bulkrax.rb +6 -0
- data/.koppie/db/migrate/20250826142480_entry_error_denormalization.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20250826142481_faster_first_entry.bulkrax.rb +8 -0
- data/.koppie/db/migrate/20260430000001_create_hyrax_redirect_paths.hyrax.rb +13 -0
- data/.koppie/db/migrate/20260521003627_add_additional_redirect_info.hyrax.rb +32 -0
- data/.koppie/db/schema.rb +154 -1
- data/.koppie/package.json +1 -1
- data/.koppie/rspec_split_configuration.json +835 -0
- data/.koppie/solr/conf/solrconfig.xml +0 -5
- data/.koppie/yarn.lock +5587 -752
- data/.rubocop.yml +1 -0
- data/CONTAINERS.md +12 -10
- data/Dockerfile +9 -22
- data/Gemfile +1 -1
- data/Gemfile.allinson +2 -0
- data/README.md +1 -2
- data/app/actors/hyrax/actors/file_actor.rb +2 -0
- data/app/actors/hyrax/actors/file_set_actor.rb +1 -1
- data/app/assets/javascripts/hyrax/app.js.erb +143 -10
- data/app/assets/javascripts/hyrax/collection_select.js +68 -0
- data/app/assets/javascripts/hyrax/copy_permalink_button.js +28 -0
- data/app/assets/javascripts/hyrax/redirects.js +45 -0
- data/app/assets/javascripts/hyrax/relationships/control.es6 +21 -1
- data/app/assets/javascripts/hyrax/select_work_type.es6 +7 -2
- data/app/assets/javascripts/hyrax.js +3 -1
- data/app/assets/stylesheets/hyrax/_file-show.scss +1 -0
- data/app/assets/stylesheets/hyrax/_viewer.scss +8 -0
- data/app/assets/stylesheets/hyrax/dashboard.scss +22 -1
- data/app/assets/stylesheets/hyrax/sidebar.scss +98 -3
- data/app/authorities/qa/authorities/collections.rb +9 -9
- data/app/controllers/concerns/hyrax/analytics_error_handling.rb +97 -0
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +3 -1
- data/app/controllers/concerns/hyrax/ensure_migrated_behavior.rb +50 -0
- data/app/controllers/concerns/hyrax/flexible_catalog_behavior.rb +206 -0
- data/app/controllers/concerns/hyrax/flexible_schema_behavior.rb +17 -0
- data/app/controllers/concerns/hyrax/redirect_to_display_url.rb +54 -0
- data/app/controllers/concerns/hyrax/valkyrie_downloads_controller_behavior.rb +1 -0
- data/app/controllers/concerns/hyrax/works_controller_behavior.rb +54 -11
- data/app/controllers/hyrax/admin/admin_sets_controller.rb +21 -13
- data/app/controllers/hyrax/admin/analytics/collection_reports_controller.rb +2 -0
- data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +5 -4
- data/app/controllers/hyrax/admin/metadata_profiles_controller.rb +66 -0
- data/app/controllers/hyrax/batch_uploads_controller.rb +2 -0
- data/app/controllers/hyrax/dashboard/collections_controller.rb +27 -6
- data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +2 -1
- data/app/controllers/hyrax/dashboard_controller.rb +2 -1
- data/app/controllers/hyrax/file_sets_controller.rb +20 -2
- data/app/controllers/hyrax/homepage_controller.rb +7 -0
- data/app/controllers/hyrax/my/works_controller.rb +2 -21
- data/app/controllers/hyrax/permissions_controller.rb +4 -2
- data/app/controllers/hyrax/redirects_controller.rb +56 -0
- data/app/controllers/hyrax/single_use_links_viewer_controller.rb +2 -1
- data/app/controllers/hyrax/transcripts_controller.rb +31 -0
- data/app/controllers/hyrax/uploads_controller.rb +18 -9
- data/app/forms/concerns/hyrax/based_near_field_behavior.rb +77 -0
- data/app/forms/concerns/hyrax/flexible_form_behavior.rb +37 -0
- data/app/forms/concerns/hyrax/redirects_field_behavior.rb +95 -0
- data/app/forms/concerns/hyrax/transcripts_behavior.rb +40 -0
- data/app/forms/hyrax/forms/admin_set_form.rb +1 -1
- data/app/forms/hyrax/forms/administrative_set_form.rb +3 -0
- data/app/forms/hyrax/forms/batch_edit_form.rb +1 -3
- data/app/forms/hyrax/forms/batch_upload_form.rb +14 -0
- data/app/forms/hyrax/forms/file_set_edit_form.rb +1 -1
- data/app/forms/hyrax/forms/file_set_form.rb +6 -7
- data/app/forms/hyrax/forms/pcdm_collection_form.rb +17 -5
- data/app/forms/hyrax/forms/pcdm_object_form.rb +11 -3
- data/app/forms/hyrax/forms/resource_batch_edit_form.rb +8 -22
- data/app/forms/hyrax/forms/resource_form.rb +110 -10
- data/app/forms/hyrax/forms.rb +1 -0
- data/app/helpers/hyrax/attributes_helper.rb +109 -0
- data/app/helpers/hyrax/blacklight_override.rb +26 -0
- data/app/helpers/hyrax/collections_helper.rb +2 -0
- data/app/helpers/hyrax/file_set_form_helper.rb +24 -0
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +53 -4
- data/app/helpers/hyrax/iiif_helper.rb +11 -1
- data/app/helpers/hyrax/permalink_helper.rb +37 -0
- data/app/helpers/hyrax/redirects_tab_helper.rb +29 -0
- data/app/helpers/hyrax/trophy_helper.rb +1 -1
- data/app/helpers/hyrax/work_form_helper.rb +9 -5
- data/app/helpers/hyrax/works_helper.rb +14 -0
- data/app/indexers/concerns/hyrax/workflow_indexer.rb +30 -0
- data/app/indexers/hyrax/file_set_indexer.rb +1 -0
- data/app/indexers/hyrax/indexers/administrative_set_indexer.rb +2 -1
- data/app/indexers/hyrax/indexers/file_set_indexer.rb +6 -2
- data/app/indexers/hyrax/indexers/pcdm_collection_indexer.rb +11 -1
- data/app/indexers/hyrax/indexers/pcdm_object_indexer.rb +25 -4
- data/app/indexers/hyrax/indexers/redirects_indexer.rb +29 -0
- data/app/indexers/hyrax/indexers/resource_indexer.rb +4 -0
- data/app/indexers/hyrax/indexers.rb +2 -0
- data/app/inputs/controlled_vocabulary_input.rb +7 -1
- data/app/jobs/concerns/hyrax/queued_job_behavior.rb +22 -0
- data/app/jobs/content_deposit_error_event_job.rb +14 -0
- data/app/jobs/create_work_job.rb +2 -0
- data/app/jobs/hyrax/propagate_change_depositor_job.rb +1 -1
- data/app/jobs/hyrax/queued_delete_job.rb +11 -0
- data/app/jobs/hyrax/queued_indexing_job.rb +11 -0
- data/app/jobs/migrate_files_to_valkyrie_job.rb +39 -21
- data/app/jobs/migrate_sipity_entity_job.rb +21 -0
- data/app/models/batch_upload_item.rb +4 -0
- data/app/models/concerns/hyrax/ability/flexible_metadata_ability.rb +10 -0
- data/app/models/concerns/hyrax/ability.rb +7 -3
- data/app/models/concerns/hyrax/collection_behavior.rb +4 -0
- data/app/models/concerns/hyrax/file_set/transcripts.rb +16 -0
- data/app/models/concerns/hyrax/file_set_behavior.rb +9 -0
- data/app/models/concerns/hyrax/flexibility.rb +107 -0
- data/app/models/concerns/hyrax/redirects_normalization.rb +38 -0
- data/app/models/concerns/hyrax/solr_document/characterization.rb +1 -1
- data/app/models/concerns/hyrax/solr_document/metadata.rb +9 -0
- data/app/models/concerns/hyrax/solr_document/ordered_members.rb +4 -0
- data/app/models/concerns/hyrax/solr_document_behavior.rb +28 -3
- data/app/models/concerns/hyrax/suppressible.rb +1 -1
- data/app/models/concerns/hyrax/valkyrie_lazy_migration.rb +1 -1
- data/app/models/concerns/hyrax/with_embargoes_and_leases.rb +30 -0
- data/app/models/concerns/hyrax/work_behavior.rb +8 -0
- data/app/models/hyrax/administrative_set.rb +1 -1
- data/app/models/hyrax/change_set.rb +3 -1
- data/app/models/hyrax/embargo.rb +3 -1
- data/app/models/hyrax/file_metadata.rb +22 -7
- data/app/models/hyrax/file_set.rb +4 -2
- data/app/models/hyrax/flexible_schema.rb +219 -0
- data/app/models/hyrax/lease.rb +3 -1
- data/app/models/hyrax/pcdm_collection.rb +4 -1
- data/app/models/hyrax/redirect.rb +64 -0
- data/app/models/hyrax/redirect_path.rb +14 -0
- data/app/models/hyrax/resource.rb +22 -25
- data/app/models/hyrax/riiif/file.rb +43 -0
- data/app/models/hyrax/riiif/file_resolver.rb +65 -0
- data/app/models/hyrax/uploaded_file.rb +9 -0
- data/app/models/hyrax/virus_scanner.rb +16 -3
- data/app/models/hyrax/work.rb +4 -1
- data/app/models/job_io_wrapper.rb +12 -3
- data/app/models/user_mailbox.rb +3 -1
- data/app/presenters/hyrax/admin_set_presenter.rb +11 -0
- data/app/presenters/hyrax/annotates_content.rb +35 -0
- data/app/presenters/hyrax/collection_presenter.rb +5 -1
- data/app/presenters/hyrax/displays_content.rb +133 -0
- data/app/presenters/hyrax/displays_image.rb +11 -4
- data/app/presenters/hyrax/displays_transcripts.rb +59 -0
- data/app/presenters/hyrax/file_set_presenter.rb +8 -18
- data/app/presenters/hyrax/google_scholar_presenter.rb +39 -0
- data/app/presenters/hyrax/iiif_manifest_presenter.rb +22 -4
- data/app/presenters/hyrax/missing_method_behavior.rb +15 -0
- data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +2 -4
- data/app/presenters/hyrax/work_show_presenter.rb +56 -14
- data/app/renderers/hyrax/renderers/attribute_renderer.rb +6 -2
- data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +10 -10
- data/app/renderers/hyrax/renderers/redirects_label_attribute_renderer.rb +25 -0
- data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +10 -11
- data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +1 -5
- data/app/search_builders/hyrax/filter_by_type.rb +1 -1
- data/app/services/hyrax/action/create_valkyrie_work.rb +3 -2
- data/app/services/hyrax/analytics/ga4/base.rb +1 -1
- data/app/services/hyrax/analytics/ga4.rb +5 -1
- data/app/services/hyrax/authority_rendering_helper.rb +28 -0
- data/app/services/hyrax/authority_service.rb +107 -0
- data/app/services/hyrax/callbacks.rb +2 -2
- data/app/services/hyrax/change_depositor_service.rb +1 -1
- data/app/services/hyrax/characterization/valkyrie_characterization_service.rb +21 -13
- data/app/services/hyrax/collections/nested_collection_query_service.rb +9 -3
- data/app/services/hyrax/collections_service.rb +17 -0
- data/app/services/hyrax/custom_queries/find_by_property_value.rb +89 -0
- data/app/services/hyrax/custom_queries/find_ids_by_model.rb +31 -6
- data/app/services/hyrax/edit_permissions_service.rb +11 -10
- data/app/services/hyrax/file_set_type_service.rb +12 -4
- data/app/services/hyrax/flexible_schema_validator_service.rb +153 -0
- data/app/services/hyrax/flexible_schema_validators/class_validator.rb +123 -0
- data/app/services/hyrax/flexible_schema_validators/core_metadata_validator.rb +211 -0
- data/app/services/hyrax/flexible_schema_validators/existing_records_validator.rb +83 -0
- data/app/services/hyrax/flexible_schema_validators/redirects_validator.rb +116 -0
- data/app/services/hyrax/flexible_schema_validators/schema_validator.rb +34 -0
- data/app/services/hyrax/flexible_schema_validators/sort_properties_validator.rb +54 -0
- data/app/services/hyrax/license_service.rb +1 -1
- data/app/services/hyrax/listeners/metadata_index_listener.rb +11 -0
- data/app/services/hyrax/m3_profile_editor.rb +32 -0
- data/app/services/hyrax/m3_schema_loader.rb +119 -0
- data/app/services/hyrax/manifest_builder_service.rb +18 -24
- data/app/services/hyrax/permalink_path.rb +25 -0
- data/app/services/hyrax/qa_select_service.rb +9 -5
- data/app/services/hyrax/redirect_path_normalizer.rb +58 -0
- data/app/services/hyrax/redirects_lookup.rb +59 -0
- data/app/services/hyrax/resource_permissions_visibility_propagator.rb +54 -0
- data/app/services/hyrax/resource_types_service.rb +3 -20
- data/app/services/hyrax/rights_statement_service.rb +1 -1
- data/app/services/hyrax/schema_loader.rb +205 -0
- data/app/services/hyrax/search_service.rb +1 -1
- data/app/services/hyrax/simple_schema_loader.rb +28 -127
- data/app/services/hyrax/solr_service.rb +39 -2
- data/app/services/hyrax/tolerant_select_service.rb +5 -3
- data/app/services/hyrax/valkyrie_upload.rb +2 -2
- data/app/services/hyrax/visibility_propagator.rb +4 -1
- data/app/services/hyrax/work_uploads_handler.rb +17 -9
- data/app/services/hyrax/workflow/workflow_factory.rb +5 -4
- data/app/services/migrate_resource_service.rb +8 -2
- data/app/uploaders/hyrax/uploaded_file_uploader.rb +2 -2
- data/app/utils/hyrax/data_destroyers/collection_branding_destroyer.rb +1 -1
- data/app/utils/hyrax/required_data_seeder.rb +1 -0
- data/app/utils/hyrax/required_data_seeders/collection_type_seeder.rb +1 -1
- data/app/utils/hyrax/required_data_seeders/flexible_profile_seeder.rb +28 -0
- data/app/validators/hyrax/controlled_vocabulary_validator.rb +64 -0
- data/app/validators/hyrax/redirect_validator.rb +128 -0
- data/app/views/_user_util_links.html.erb +2 -1
- data/app/views/catalog/_thumbnail_list_default.html.erb +2 -2
- data/app/views/collections/edit_fields/_schema_version.html.erb +1 -0
- data/app/views/hyrax/admin/admin_sets/_form_metadata.html.erb +24 -2
- data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +1 -1
- data/app/views/hyrax/admin/admin_sets/show.html.erb +1 -1
- data/app/views/hyrax/admin/analytics/_analytics_error.html.erb +42 -0
- data/app/views/hyrax/admin/analytics/collection_reports/_top_collections.html.erb +3 -7
- data/app/views/hyrax/admin/analytics/collection_reports/index.html.erb +11 -9
- data/app/views/hyrax/admin/analytics/work_reports/_top_file_set_downloads.html.erb +3 -6
- data/app/views/hyrax/admin/analytics/work_reports/_top_works.html.erb +2 -3
- data/app/views/hyrax/admin/analytics/work_reports/_work_files.html.erb +1 -6
- data/app/views/hyrax/admin/analytics/work_reports/index.html.erb +60 -57
- data/app/views/hyrax/admin/features/index.html.erb +1 -1
- data/app/views/hyrax/admin/metadata_profiles/_import_modal.html.erb +20 -0
- data/app/views/hyrax/admin/metadata_profiles/index.html.erb +54 -0
- data/app/views/hyrax/base/_attribute_rows.html.erb +4 -21
- data/app/views/hyrax/base/_citations.html.erb +1 -0
- data/app/views/hyrax/base/_currently_shared.html.erb +2 -1
- data/app/views/hyrax/base/_file_manager_thumbnail.html.erb +1 -1
- data/app/views/hyrax/base/_form_member_of_collections.html.erb +6 -6
- data/app/views/hyrax/base/_form_redirects.html.erb +125 -0
- data/app/views/hyrax/base/_form_share.html.erb +7 -2
- data/app/views/hyrax/base/_member.html.erb +1 -1
- data/app/views/hyrax/base/_social_media.html.erb +3 -1
- data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +1 -1
- data/app/views/hyrax/base/show.html.erb +3 -0
- data/app/views/hyrax/collections/_default_group.html.erb +3 -0
- data/app/views/hyrax/collections/_list_collections.html.erb +3 -0
- data/app/views/hyrax/collections/_list_works.html.erb +1 -1
- data/app/views/hyrax/collections/_show_document_list_row.html.erb +1 -1
- data/app/views/hyrax/collections/show.html.erb +4 -0
- data/app/views/hyrax/dashboard/_sidebar.html.erb +4 -2
- data/app/views/hyrax/dashboard/collections/_button_for_update_collection.html.erb +2 -1
- data/app/views/hyrax/dashboard/collections/_default_group.html.erb +3 -0
- data/app/views/hyrax/dashboard/collections/_form.html.erb +17 -0
- data/app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb +7 -10
- data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +3 -0
- data/app/views/hyrax/dashboard/collections/_list_works.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +13 -12
- data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +1 -1
- data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +1 -8
- data/app/views/hyrax/dashboard/profiles/_trophy_edit.html.erb +1 -1
- data/app/views/hyrax/dashboard/profiles/show.html.erb +5 -5
- data/app/views/hyrax/dashboard/sidebar/_metadata.html.erb +11 -0
- data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +1 -0
- data/app/views/hyrax/dashboard/works/_default_group.html.erb +3 -0
- data/app/views/hyrax/dashboard/works/_list_works.html.erb +4 -2
- data/app/views/hyrax/file_sets/_form.html.erb +16 -3
- data/app/views/hyrax/file_sets/_metadata.html.erb +35 -0
- data/app/views/hyrax/file_sets/_valkyrie_form.html.erb +37 -0
- data/app/views/hyrax/file_sets/edit.html.erb +14 -8
- data/app/views/hyrax/file_sets/media_display/_audio.html.erb +4 -0
- data/app/views/hyrax/file_sets/media_display/_image.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +4 -0
- 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/_recent_document.html.erb +1 -1
- data/app/views/hyrax/homepage/robots.text.erb +17 -0
- data/app/views/hyrax/my/_admin_set_action_menu.html.erb +31 -27
- data/app/views/hyrax/my/_collection_action_menu.html.erb +40 -35
- data/app/views/hyrax/my/_work_action_menu.html.erb +23 -22
- data/app/views/hyrax/my/collections/_default_group.html.erb +3 -0
- data/app/views/hyrax/my/collections/_list_collections.html.erb +3 -0
- data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +2 -2
- data/app/views/hyrax/my/collections/_modal_add_to_collection.html.erb +2 -2
- data/app/views/hyrax/my/works/_default_group.html.erb +3 -0
- data/app/views/hyrax/my/works/_list_works.html.erb +5 -2
- data/app/views/hyrax/shared/_copy_permalink.html.erb +10 -0
- data/app/views/hyrax/users/_user_info.html.erb +1 -6
- data/app/views/layouts/_head_tag_content.html.erb +2 -0
- data/app/views/layouts/hyrax/dashboard.html.erb +2 -1
- data/app/views/records/edit_fields/_contexts.html.erb +1 -0
- data/app/views/records/edit_fields/_license.html.erb +17 -5
- data/app/views/records/edit_fields/_resource_type.html.erb +16 -2
- data/app/views/records/edit_fields/_rights_statement.html.erb +17 -5
- data/app/views/records/edit_fields/_schema_version.html.erb +1 -0
- data/app/views/records/edit_fields/_transcript_ids.html.erb +18 -0
- data/app/views/records/show_fields/_rights.html.erb +1 -1
- data/app/views/shared/_citations.html.erb +46 -31
- data/app/views/shared/_schema_version.html.erb +38 -0
- data/bin/dev-entrypoint.sh +14 -4
- data/chart/hyrax/Chart.yaml +4 -4
- data/chart/hyrax/templates/ingress.yaml +3 -0
- data/chart/hyrax/values.yaml +10 -8
- data/config/features.rb +77 -40
- data/config/initializers/blacklight_dynamic_sitemap.rb +43 -0
- data/config/initializers/deprecation_patch.rb +27 -0
- data/config/initializers/hydra_works.rb +3 -0
- data/config/initializers/i18n_extensions.rb +197 -0
- data/config/initializers/indexing_adapter_initializer.rb +4 -0
- data/config/initializers/new_framework_defaults_7_2.rb +6 -4
- data/config/initializers/reform_rails_6_1_monkey_patch.rb +29 -0
- data/config/initializers/storage_adapter_initializer.rb +15 -9
- data/config/locales/hyrax.de.yml +172 -54
- data/config/locales/hyrax.en.yml +183 -66
- data/config/locales/hyrax.es.yml +174 -49
- data/config/locales/hyrax.fr.yml +169 -45
- data/config/locales/hyrax.it.yml +172 -48
- data/config/locales/hyrax.pt-BR.yml +172 -54
- data/config/locales/hyrax.zh.yml +145 -21
- data/config/metadata/basic_metadata.yaml +66 -0
- data/config/metadata/batch_edit_metadata.yaml +119 -0
- data/config/metadata/core_metadata.yaml +1 -0
- data/config/metadata/file_set_metadata.yaml +19 -0
- data/config/metadata/redirects.yaml +15 -0
- data/config/metadata_profiles/m3_json_schema.json +487 -0
- data/config/metadata_profiles/m3_profile.yaml +954 -0
- data/config/routes.rb +9 -0
- data/docker-compose-allinson.yml +176 -0
- data/docker-compose-dassie.yml +18 -10
- data/docker-compose-koppie.yml +18 -10
- data/docker-compose-sirenia.yml +20 -10
- data/documentation/copy_permalink.md +29 -0
- data/documentation/developing-your-hyrax-based-app.md +2 -2
- data/documentation/file-ingest-characterization.md +763 -0
- data/documentation/flexible_metadata.md +113 -0
- data/documentation/forms/field_behaviors.md +297 -0
- data/documentation/redirects.md +428 -0
- data/hyrax.gemspec +9 -4
- data/lib/freyja/metadata_adapter.rb +1 -1
- data/lib/freyja/persister.rb +36 -5
- data/lib/generators/hyrax/collection_resource/collection_resource_generator.rb +2 -2
- data/lib/generators/hyrax/collection_resource/templates/collection.rb.erb +5 -1
- data/lib/generators/hyrax/collection_resource/templates/collection_form.rb.erb +5 -1
- data/lib/generators/hyrax/collection_resource/templates/collection_indexer.rb.erb +6 -1
- data/lib/generators/hyrax/iiif_viewer/USAGE +22 -0
- data/lib/generators/hyrax/iiif_viewer/iiif_viewer_generator.rb +49 -0
- data/lib/generators/hyrax/iiif_viewer/templates/_clover.html.erb +7 -0
- data/lib/generators/hyrax/iiif_viewer/templates/clover/clover.css +3328 -0
- data/lib/generators/hyrax/iiif_viewer/templates/clover/clover.html +16 -0
- data/lib/generators/hyrax/iiif_viewer/templates/clover/clover.js +237 -0
- data/lib/generators/hyrax/install_generator.rb +25 -1
- data/lib/generators/hyrax/riiif_generator.rb +1 -1
- data/lib/generators/hyrax/templates/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder +22 -0
- data/lib/generators/hyrax/templates/config/clamav.rb +2 -0
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +4 -80
- data/lib/generators/hyrax/templates/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb.erb +9 -0
- data/lib/generators/hyrax/templates/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb.erb +5 -0
- data/lib/generators/hyrax/templates/db/migrate/20260430000001_create_hyrax_redirect_paths.rb.erb +22 -0
- data/lib/generators/hyrax/templates/db/migrate/20260521003627_add_additional_redirect_info.rb.erb +39 -0
- data/lib/generators/hyrax/templates/package.json +1 -1
- data/lib/generators/hyrax/templates/uv.html +60 -82
- data/lib/generators/hyrax/work/templates/indexer.rb.erb +1 -1
- data/lib/generators/hyrax/work/templates/model.rb.erb +5 -1
- data/lib/generators/hyrax/work_resource/templates/form.rb.erb +5 -2
- data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +6 -2
- data/lib/generators/hyrax/work_resource/templates/work.rb.erb +5 -2
- data/lib/generators/hyrax/work_resource/work_resource_generator.rb +1 -0
- data/lib/hyrax/active_fedora_dummy_model.rb +6 -0
- data/lib/hyrax/configuration.rb +219 -10
- data/lib/hyrax/controlled_vocabulary/importer/language.rb +5 -1
- data/lib/hyrax/deprecation.rb +31 -0
- data/lib/hyrax/engine.rb +2 -0
- data/lib/hyrax/form_fields.rb +17 -5
- data/lib/hyrax/indexer.rb +31 -2
- data/lib/hyrax/resource_sync/resource_list_writer.rb +3 -0
- data/lib/hyrax/schema.rb +15 -4
- data/lib/hyrax/specs/shared_specs/factories/administrative_sets.rb +12 -0
- data/lib/hyrax/specs/shared_specs/factories/hyrax_embargo.rb +1 -1
- data/lib/hyrax/specs/shared_specs/factories/hyrax_file_set.rb +13 -0
- data/lib/hyrax/specs/shared_specs/factories/hyrax_lease.rb +5 -1
- data/lib/hyrax/specs/shared_specs/factories/hyrax_work.rb +14 -0
- data/lib/hyrax/specs/shared_specs/simple_work.rb +41 -0
- data/lib/hyrax/specs/shared_specs.rb +1 -0
- data/lib/hyrax/transactions/collection_create.rb +2 -1
- data/lib/hyrax/transactions/collection_destroy.rb +1 -0
- data/lib/hyrax/transactions/collection_update.rb +2 -1
- data/lib/hyrax/transactions/container.rb +28 -0
- data/lib/hyrax/transactions/steps/add_file_sets.rb +2 -1
- data/lib/hyrax/transactions/steps/apply_permission_template_on_update.rb +65 -0
- data/lib/hyrax/transactions/steps/apply_workflow_on_admin_set_change.rb +97 -0
- data/lib/hyrax/transactions/steps/ensure_admin_set.rb +1 -1
- data/lib/hyrax/transactions/steps/remove_redirect_paths.rb +35 -0
- data/lib/hyrax/transactions/steps/save.rb +10 -0
- data/lib/hyrax/transactions/steps/set_default_admin_set.rb +1 -1
- data/lib/hyrax/transactions/steps/sync_redirect_paths.rb +141 -0
- data/lib/hyrax/transactions/work_create.rb +2 -1
- data/lib/hyrax/transactions/work_destroy.rb +1 -0
- data/lib/hyrax/transactions/work_update.rb +4 -1
- data/lib/hyrax/version.rb +1 -1
- data/lib/hyrax.rb +62 -0
- data/lib/tasks/m3_profile_cleanup.rake +35 -0
- data/lib/valkyrie/indexing/redis_queue/indexing_adapter.rb +144 -0
- data/lib/wings/valkyrie/query_service.rb +3 -4
- data/template.rb +4 -1
- metadata +327 -25
- data/.dassie/public/robots.txt +0 -1
- data/.github/workflows/main.yml +0 -17
- data/.koppie/public/robots.txt +0 -1
- data/app/forms/concerns/hyrax/basic_metadata_form_fields_behavior.rb +0 -39
- data/app/views/catalog/_thumbnail_list_collection.html.erb +0 -4
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hyrax
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.
|
|
4
|
+
version: 5.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Coyne
|
|
@@ -13,15 +13,15 @@ authors:
|
|
|
13
13
|
- Esmé Cowles
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
|
-
date:
|
|
16
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
17
17
|
dependencies:
|
|
18
18
|
- !ruby/object:Gem::Dependency
|
|
19
19
|
name: rails
|
|
20
20
|
requirement: !ruby/object:Gem::Requirement
|
|
21
21
|
requirements:
|
|
22
|
-
- - "
|
|
22
|
+
- - ">"
|
|
23
23
|
- !ruby/object:Gem::Version
|
|
24
|
-
version: '
|
|
24
|
+
version: '6.1'
|
|
25
25
|
- - "<"
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
version: '8.0'
|
|
@@ -29,9 +29,9 @@ dependencies:
|
|
|
29
29
|
prerelease: false
|
|
30
30
|
version_requirements: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
|
-
- - "
|
|
32
|
+
- - ">"
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: '
|
|
34
|
+
version: '6.1'
|
|
35
35
|
- - "<"
|
|
36
36
|
- !ruby/object:Gem::Version
|
|
37
37
|
version: '8.0'
|
|
@@ -91,6 +91,20 @@ dependencies:
|
|
|
91
91
|
- - "~>"
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
93
|
version: '7.29'
|
|
94
|
+
- !ruby/object:Gem::Dependency
|
|
95
|
+
name: blacklight_dynamic_sitemap
|
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
|
97
|
+
requirements:
|
|
98
|
+
- - "~>"
|
|
99
|
+
- !ruby/object:Gem::Version
|
|
100
|
+
version: '1.0'
|
|
101
|
+
type: :runtime
|
|
102
|
+
prerelease: false
|
|
103
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
104
|
+
requirements:
|
|
105
|
+
- - "~>"
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: '1.0'
|
|
94
108
|
- !ruby/object:Gem::Dependency
|
|
95
109
|
name: blacklight-gallery
|
|
96
110
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -445,6 +459,20 @@ dependencies:
|
|
|
445
459
|
- - ">="
|
|
446
460
|
- !ruby/object:Gem::Version
|
|
447
461
|
version: '0'
|
|
462
|
+
- !ruby/object:Gem::Dependency
|
|
463
|
+
name: json_schemer
|
|
464
|
+
requirement: !ruby/object:Gem::Requirement
|
|
465
|
+
requirements:
|
|
466
|
+
- - ">="
|
|
467
|
+
- !ruby/object:Gem::Version
|
|
468
|
+
version: '0'
|
|
469
|
+
type: :runtime
|
|
470
|
+
prerelease: false
|
|
471
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
472
|
+
requirements:
|
|
473
|
+
- - ">="
|
|
474
|
+
- !ruby/object:Gem::Version
|
|
475
|
+
version: '0'
|
|
448
476
|
- !ruby/object:Gem::Dependency
|
|
449
477
|
name: legato
|
|
450
478
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -501,6 +529,20 @@ dependencies:
|
|
|
501
529
|
- - "~>"
|
|
502
530
|
- !ruby/object:Gem::Version
|
|
503
531
|
version: '0.12'
|
|
532
|
+
- !ruby/object:Gem::Dependency
|
|
533
|
+
name: multi_json
|
|
534
|
+
requirement: !ruby/object:Gem::Requirement
|
|
535
|
+
requirements:
|
|
536
|
+
- - '='
|
|
537
|
+
- !ruby/object:Gem::Version
|
|
538
|
+
version: 1.18.0
|
|
539
|
+
type: :runtime
|
|
540
|
+
prerelease: false
|
|
541
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
542
|
+
requirements:
|
|
543
|
+
- - '='
|
|
544
|
+
- !ruby/object:Gem::Version
|
|
545
|
+
version: 1.18.0
|
|
504
546
|
- !ruby/object:Gem::Dependency
|
|
505
547
|
name: nest
|
|
506
548
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -827,6 +869,20 @@ dependencies:
|
|
|
827
869
|
- - "~>"
|
|
828
870
|
- !ruby/object:Gem::Version
|
|
829
871
|
version: '3.5'
|
|
872
|
+
- !ruby/object:Gem::Dependency
|
|
873
|
+
name: language_list
|
|
874
|
+
requirement: !ruby/object:Gem::Requirement
|
|
875
|
+
requirements:
|
|
876
|
+
- - ">="
|
|
877
|
+
- !ruby/object:Gem::Version
|
|
878
|
+
version: '0'
|
|
879
|
+
type: :runtime
|
|
880
|
+
prerelease: false
|
|
881
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
882
|
+
requirements:
|
|
883
|
+
- - ">="
|
|
884
|
+
- !ruby/object:Gem::Version
|
|
885
|
+
version: '0'
|
|
830
886
|
- !ruby/object:Gem::Dependency
|
|
831
887
|
name: capybara
|
|
832
888
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -971,16 +1027,16 @@ dependencies:
|
|
|
971
1027
|
name: rspec-rails
|
|
972
1028
|
requirement: !ruby/object:Gem::Requirement
|
|
973
1029
|
requirements:
|
|
974
|
-
- - "
|
|
1030
|
+
- - ">"
|
|
975
1031
|
- !ruby/object:Gem::Version
|
|
976
|
-
version: '
|
|
1032
|
+
version: '6.1'
|
|
977
1033
|
type: :development
|
|
978
1034
|
prerelease: false
|
|
979
1035
|
version_requirements: !ruby/object:Gem::Requirement
|
|
980
1036
|
requirements:
|
|
981
|
-
- - "
|
|
1037
|
+
- - ">"
|
|
982
1038
|
- !ruby/object:Gem::Version
|
|
983
|
-
version: '
|
|
1039
|
+
version: '6.1'
|
|
984
1040
|
- !ruby/object:Gem::Dependency
|
|
985
1041
|
name: rspec_junit_formatter
|
|
986
1042
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1071,34 +1127,54 @@ dependencies:
|
|
|
1071
1127
|
- - ">="
|
|
1072
1128
|
- !ruby/object:Gem::Version
|
|
1073
1129
|
version: 5.0.2
|
|
1130
|
+
- !ruby/object:Gem::Dependency
|
|
1131
|
+
name: rubocop-ast
|
|
1132
|
+
requirement: !ruby/object:Gem::Requirement
|
|
1133
|
+
requirements:
|
|
1134
|
+
- - ">="
|
|
1135
|
+
- !ruby/object:Gem::Version
|
|
1136
|
+
version: 1.17.0
|
|
1137
|
+
- - "<"
|
|
1138
|
+
- !ruby/object:Gem::Version
|
|
1139
|
+
version: '1.30'
|
|
1140
|
+
type: :development
|
|
1141
|
+
prerelease: false
|
|
1142
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
1143
|
+
requirements:
|
|
1144
|
+
- - ">="
|
|
1145
|
+
- !ruby/object:Gem::Version
|
|
1146
|
+
version: 1.17.0
|
|
1147
|
+
- - "<"
|
|
1148
|
+
- !ruby/object:Gem::Version
|
|
1149
|
+
version: '1.30'
|
|
1074
1150
|
- !ruby/object:Gem::Dependency
|
|
1075
1151
|
name: shoulda-callback-matchers
|
|
1076
1152
|
requirement: !ruby/object:Gem::Requirement
|
|
1077
1153
|
requirements:
|
|
1078
|
-
- - "
|
|
1154
|
+
- - ">="
|
|
1079
1155
|
- !ruby/object:Gem::Version
|
|
1080
|
-
version:
|
|
1156
|
+
version: '0'
|
|
1081
1157
|
type: :development
|
|
1082
1158
|
prerelease: false
|
|
1083
1159
|
version_requirements: !ruby/object:Gem::Requirement
|
|
1084
1160
|
requirements:
|
|
1085
|
-
- - "
|
|
1161
|
+
- - ">="
|
|
1086
1162
|
- !ruby/object:Gem::Version
|
|
1087
|
-
version:
|
|
1163
|
+
version: '0'
|
|
1088
1164
|
- !ruby/object:Gem::Dependency
|
|
1089
1165
|
name: shoulda-matchers
|
|
1090
1166
|
requirement: !ruby/object:Gem::Requirement
|
|
1091
1167
|
requirements:
|
|
1092
|
-
- - "
|
|
1168
|
+
- - ">="
|
|
1093
1169
|
- !ruby/object:Gem::Version
|
|
1094
|
-
version: '
|
|
1170
|
+
version: '0'
|
|
1095
1171
|
type: :development
|
|
1096
1172
|
prerelease: false
|
|
1097
1173
|
version_requirements: !ruby/object:Gem::Requirement
|
|
1098
1174
|
requirements:
|
|
1099
|
-
- - "
|
|
1175
|
+
- - ">="
|
|
1100
1176
|
- !ruby/object:Gem::Version
|
|
1101
|
-
version: '
|
|
1177
|
+
version: '0'
|
|
1102
1178
|
- !ruby/object:Gem::Dependency
|
|
1103
1179
|
name: webmock
|
|
1104
1180
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1146,6 +1222,7 @@ files:
|
|
|
1146
1222
|
- ".dassie/app/actors/hyrax/actors/namespaced_works/nested_work_actor.rb"
|
|
1147
1223
|
- ".dassie/app/assets/config/manifest.js"
|
|
1148
1224
|
- ".dassie/app/assets/images/.keep"
|
|
1225
|
+
- ".dassie/app/assets/images/bulkrax/removed.png"
|
|
1149
1226
|
- ".dassie/app/assets/images/unauthorized.png"
|
|
1150
1227
|
- ".dassie/app/assets/images/us_404.svg"
|
|
1151
1228
|
- ".dassie/app/assets/javascripts/application.js"
|
|
@@ -1165,6 +1242,7 @@ files:
|
|
|
1165
1242
|
- ".dassie/app/controllers/hyrax/generic_works_controller.rb"
|
|
1166
1243
|
- ".dassie/app/controllers/hyrax/monographs_controller.rb"
|
|
1167
1244
|
- ".dassie/app/controllers/hyrax/namespaced_works/nested_works_controller.rb"
|
|
1245
|
+
- ".dassie/app/forms/admin_set_resource_form.rb"
|
|
1168
1246
|
- ".dassie/app/forms/collection_resource_form.rb"
|
|
1169
1247
|
- ".dassie/app/forms/generic_work_resource_form.rb"
|
|
1170
1248
|
- ".dassie/app/forms/hyrax/generic_work_form.rb"
|
|
@@ -1172,6 +1250,7 @@ files:
|
|
|
1172
1250
|
- ".dassie/app/forms/monograph_form.rb"
|
|
1173
1251
|
- ".dassie/app/helpers/application_helper.rb"
|
|
1174
1252
|
- ".dassie/app/helpers/hyrax_helper.rb"
|
|
1253
|
+
- ".dassie/app/indexers/admin_set_resource_indexer.rb"
|
|
1175
1254
|
- ".dassie/app/indexers/collection_resource_indexer.rb"
|
|
1176
1255
|
- ".dassie/app/indexers/generic_work_indexer.rb"
|
|
1177
1256
|
- ".dassie/app/indexers/generic_work_resource_indexer.rb"
|
|
@@ -1186,6 +1265,7 @@ files:
|
|
|
1186
1265
|
- ".dassie/app/models/collection.rb"
|
|
1187
1266
|
- ".dassie/app/models/collection_resource.rb"
|
|
1188
1267
|
- ".dassie/app/models/concerns/.keep"
|
|
1268
|
+
- ".dassie/app/models/concerns/bulkrax/has_local_processing.rb"
|
|
1189
1269
|
- ".dassie/app/models/file_set.rb"
|
|
1190
1270
|
- ".dassie/app/models/generic_work.rb"
|
|
1191
1271
|
- ".dassie/app/models/generic_work_resource.rb"
|
|
@@ -1200,6 +1280,7 @@ files:
|
|
|
1200
1280
|
- ".dassie/app/models/user.rb"
|
|
1201
1281
|
- ".dassie/app/presenters/hyrax/generic_work_presenter.rb"
|
|
1202
1282
|
- ".dassie/app/presenters/hyrax/namespaced_works/nested_work_presenter.rb"
|
|
1283
|
+
- ".dassie/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder"
|
|
1203
1284
|
- ".dassie/app/views/hyrax/generic_work_resources/_generic_work_resource.html.erb"
|
|
1204
1285
|
- ".dassie/app/views/hyrax/generic_works/_generic_work.html.erb"
|
|
1205
1286
|
- ".dassie/app/views/hyrax/monographs/_monograph.html.erb"
|
|
@@ -1209,10 +1290,12 @@ files:
|
|
|
1209
1290
|
- ".dassie/app/views/layouts/mailer.text.erb"
|
|
1210
1291
|
- ".dassie/app/views/shared/_footer.html.erb"
|
|
1211
1292
|
- ".dassie/bin/bundle"
|
|
1293
|
+
- ".dassie/bin/importer"
|
|
1212
1294
|
- ".dassie/bin/rails"
|
|
1213
1295
|
- ".dassie/bin/rake"
|
|
1214
1296
|
- ".dassie/bin/setup"
|
|
1215
1297
|
- ".dassie/bin/update"
|
|
1298
|
+
- ".dassie/bin/web"
|
|
1216
1299
|
- ".dassie/bin/yarn"
|
|
1217
1300
|
- ".dassie/config.ru"
|
|
1218
1301
|
- ".dassie/config/analytics.yml"
|
|
@@ -1224,6 +1307,7 @@ files:
|
|
|
1224
1307
|
- ".dassie/config/blacklight.yml"
|
|
1225
1308
|
- ".dassie/config/boot.rb"
|
|
1226
1309
|
- ".dassie/config/browse_everything_providers.yml"
|
|
1310
|
+
- ".dassie/config/bulkrax_api.yml"
|
|
1227
1311
|
- ".dassie/config/cable.yml"
|
|
1228
1312
|
- ".dassie/config/credentials.yml.enc"
|
|
1229
1313
|
- ".dassie/config/database.yml"
|
|
@@ -1234,6 +1318,7 @@ files:
|
|
|
1234
1318
|
- ".dassie/config/fedora.yml"
|
|
1235
1319
|
- ".dassie/config/initializers/arkivo_constraint.rb"
|
|
1236
1320
|
- ".dassie/config/initializers/assets.rb"
|
|
1321
|
+
- ".dassie/config/initializers/bulkrax.rb"
|
|
1237
1322
|
- ".dassie/config/initializers/clamav.rb"
|
|
1238
1323
|
- ".dassie/config/initializers/cookies_serializer.rb"
|
|
1239
1324
|
- ".dassie/config/initializers/devise.rb"
|
|
@@ -1278,10 +1363,12 @@ files:
|
|
|
1278
1363
|
- ".dassie/config/metadata/generic_work_resource.yaml"
|
|
1279
1364
|
- ".dassie/config/metadata/monograph.yaml"
|
|
1280
1365
|
- ".dassie/config/metadata/sample_metadata.yaml"
|
|
1366
|
+
- ".dassie/config/metadata_profiles/m3_profile.yaml"
|
|
1281
1367
|
- ".dassie/config/puma.rb"
|
|
1282
1368
|
- ".dassie/config/redis.yml"
|
|
1283
1369
|
- ".dassie/config/role_map.yml"
|
|
1284
1370
|
- ".dassie/config/routes.rb"
|
|
1371
|
+
- ".dassie/config/sidekiq.yml"
|
|
1285
1372
|
- ".dassie/config/solr.yml"
|
|
1286
1373
|
- ".dassie/config/storage.yml"
|
|
1287
1374
|
- ".dassie/config/tinymce.yml"
|
|
@@ -1370,7 +1457,55 @@ files:
|
|
|
1370
1457
|
- ".dassie/db/migrate/20230808102105_add_indices_to_hyrax_counter_metrics.hyrax.rb"
|
|
1371
1458
|
- ".dassie/db/migrate/20230821153635_add_fields_to_counter_metric.rb"
|
|
1372
1459
|
- ".dassie/db/migrate/20240506070809_valkyrie_id_to_string.rb"
|
|
1460
|
+
- ".dassie/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb"
|
|
1461
|
+
- ".dassie/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb"
|
|
1373
1462
|
- ".dassie/db/migrate/20250328100249_user_roles.rb"
|
|
1463
|
+
- ".dassie/db/migrate/20250826142438_create_bulkrax_importers.bulkrax.rb"
|
|
1464
|
+
- ".dassie/db/migrate/20250826142439_create_bulkrax_importer_runs.bulkrax.rb"
|
|
1465
|
+
- ".dassie/db/migrate/20250826142440_create_bulkrax_entries.bulkrax.rb"
|
|
1466
|
+
- ".dassie/db/migrate/20250826142441_add_status_to_entry.bulkrax.rb"
|
|
1467
|
+
- ".dassie/db/migrate/20250826142442_add_collections_to_importer_runs.bulkrax.rb"
|
|
1468
|
+
- ".dassie/db/migrate/20250826142443_change_collection_ids_on_entries.bulkrax.rb"
|
|
1469
|
+
- ".dassie/db/migrate/20250826142444_create_bulkrax_exporters.bulkrax.rb"
|
|
1470
|
+
- ".dassie/db/migrate/20250826142445_create_bulkrax_exporter_runs.bulkrax.rb"
|
|
1471
|
+
- ".dassie/db/migrate/20250826142446_change_importer_and_exporter_to_polymorphic.bulkrax.rb"
|
|
1472
|
+
- ".dassie/db/migrate/20250826142447_add_total_collection_records_to_importer_runs.bulkrax.rb"
|
|
1473
|
+
- ".dassie/db/migrate/20250826142448_add_children_to_importer_runs.bulkrax.rb"
|
|
1474
|
+
- ".dassie/db/migrate/20250826142449_change_total_records_to_total_work_entries.bulkrax.rb"
|
|
1475
|
+
- ".dassie/db/migrate/20250826142450_change_entry_last_error.bulkrax.rb"
|
|
1476
|
+
- ".dassie/db/migrate/20250826142451_add_validate_only_to_bulkrax_importers.bulkrax.rb"
|
|
1477
|
+
- ".dassie/db/migrate/20250826142452_add_status_to_importers.bulkrax.rb"
|
|
1478
|
+
- ".dassie/db/migrate/20250826142453_remove_foreign_key_from_bulkrax_entries.bulkrax.rb"
|
|
1479
|
+
- ".dassie/db/migrate/20250826142454_add_status_to_exporters.bulkrax.rb"
|
|
1480
|
+
- ".dassie/db/migrate/20250826142455_add_invalid_record_to_importer_run.bulkrax.rb"
|
|
1481
|
+
- ".dassie/db/migrate/20250826142456_create_bulkrax_statuses.bulkrax.rb"
|
|
1482
|
+
- ".dassie/db/migrate/20250826142457_move_to_statuses.bulkrax.rb"
|
|
1483
|
+
- ".dassie/db/migrate/20250826142458_add_date_filter_and_status_to_bulkrax_exporters.bulkrax.rb"
|
|
1484
|
+
- ".dassie/db/migrate/20250826142459_add_workflow_status_to_bulkrax_exporter.bulkrax.rb"
|
|
1485
|
+
- ".dassie/db/migrate/20250826142460_remove_unused_last_error.bulkrax.rb"
|
|
1486
|
+
- ".dassie/db/migrate/20250826142461_increase_text_sizes.bulkrax.rb"
|
|
1487
|
+
- ".dassie/db/migrate/20250826142462_change_bulkrax_statuses_error_message_column_type_to_text.bulkrax.rb"
|
|
1488
|
+
- ".dassie/db/migrate/20250826142463_rename_children_counters_to_relationships.bulkrax.rb"
|
|
1489
|
+
- ".dassie/db/migrate/20250826142464_add_file_set_counters_to_importer_runs.bulkrax.rb"
|
|
1490
|
+
- ".dassie/db/migrate/20250826142465_add_import_attempts_to_entries.bulkrax.rb"
|
|
1491
|
+
- ".dassie/db/migrate/20250826142466_add_work_counters_to_importer_runs.bulkrax.rb"
|
|
1492
|
+
- ".dassie/db/migrate/20250826142467_create_bulkrax_pending_relationships.bulkrax.rb"
|
|
1493
|
+
- ".dassie/db/migrate/20250826142468_add_order_to_bulkrax_pending_relationships.bulkrax.rb"
|
|
1494
|
+
- ".dassie/db/migrate/20250826142469_add_include_thumbnails_to_bulkrax_exporters.bulkrax.rb"
|
|
1495
|
+
- ".dassie/db/migrate/20250826142470_add_generated_metadata_to_bulkrax_exporters.bulkrax.rb"
|
|
1496
|
+
- ".dassie/db/migrate/20250826142471_rename_bulkrax_importer_run_to_importer_run.bulkrax.rb"
|
|
1497
|
+
- ".dassie/db/migrate/20250826142472_add_indices_to_bulkrax.bulkrax.rb"
|
|
1498
|
+
- ".dassie/db/migrate/20250826142473_denormalize_status_message.bulkrax.rb"
|
|
1499
|
+
- ".dassie/db/migrate/20250826142474_update_identifier_index.bulkrax.rb"
|
|
1500
|
+
- ".dassie/db/migrate/20250826142475_add_index_to_metadata_bulkrax_identifier.bulkrax.rb"
|
|
1501
|
+
- ".dassie/db/migrate/20250826142476_add_file_name_to_uploaded_files.bulkrax.rb"
|
|
1502
|
+
- ".dassie/db/migrate/20250826142477_add_error_tracking_to_pending_relationships.bulkrax.rb"
|
|
1503
|
+
- ".dassie/db/migrate/20250826142478_add_last_imported_at_to_bulkrax_importers.bulkrax.rb"
|
|
1504
|
+
- ".dassie/db/migrate/20250826142479_add_next_import_at_to_bulkrax_importers.bulkrax.rb"
|
|
1505
|
+
- ".dassie/db/migrate/20250826142480_entry_error_denormalization.bulkrax.rb"
|
|
1506
|
+
- ".dassie/db/migrate/20250826142481_faster_first_entry.bulkrax.rb"
|
|
1507
|
+
- ".dassie/db/migrate/20260430000001_create_hyrax_redirect_paths.hyrax.rb"
|
|
1508
|
+
- ".dassie/db/migrate/20260521003627_add_additional_redirect_info.hyrax.rb"
|
|
1374
1509
|
- ".dassie/db/schema.rb"
|
|
1375
1510
|
- ".dassie/db/seeds.rb"
|
|
1376
1511
|
- ".dassie/lib/assets/.keep"
|
|
@@ -1383,7 +1518,7 @@ files:
|
|
|
1383
1518
|
- ".dassie/public/apple-touch-icon-precomposed.png"
|
|
1384
1519
|
- ".dassie/public/apple-touch-icon.png"
|
|
1385
1520
|
- ".dassie/public/favicon.ico"
|
|
1386
|
-
- ".dassie/
|
|
1521
|
+
- ".dassie/rspec_split_configuration.json"
|
|
1387
1522
|
- ".dassie/solr/conf/_rest_managed.json"
|
|
1388
1523
|
- ".dassie/solr/conf/mapping-ISOLatin1Accent.txt"
|
|
1389
1524
|
- ".dassie/solr/conf/schema.xml"
|
|
@@ -1413,14 +1548,14 @@ files:
|
|
|
1413
1548
|
- ".fcrepo_wrapper"
|
|
1414
1549
|
- ".github/CODE_OF_CONDUCT.md"
|
|
1415
1550
|
- ".github/CONTRIBUTING.md"
|
|
1416
|
-
- ".github/ISSUE_TEMPLATE.md"
|
|
1551
|
+
- ".github/ISSUE_TEMPLATE/issue_template.md"
|
|
1417
1552
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
1418
1553
|
- ".github/SUPPORT.md"
|
|
1419
1554
|
- ".github/release.yml"
|
|
1420
1555
|
- ".github/stale.yml"
|
|
1421
1556
|
- ".github/workflows/build.yml"
|
|
1422
1557
|
- ".github/workflows/lint-build-test.yml"
|
|
1423
|
-
- ".github/workflows/
|
|
1558
|
+
- ".github/workflows/release-charts.yml"
|
|
1424
1559
|
- ".github/workflows/release.yml"
|
|
1425
1560
|
- ".github/workflows/test-results.yml"
|
|
1426
1561
|
- ".gitignore"
|
|
@@ -1437,6 +1572,7 @@ files:
|
|
|
1437
1572
|
- ".koppie/Rakefile"
|
|
1438
1573
|
- ".koppie/app/assets/config/manifest.js"
|
|
1439
1574
|
- ".koppie/app/assets/images/.keep"
|
|
1575
|
+
- ".koppie/app/assets/images/bulkrax/removed.png"
|
|
1440
1576
|
- ".koppie/app/assets/images/unauthorized.png"
|
|
1441
1577
|
- ".koppie/app/assets/images/us_404.svg"
|
|
1442
1578
|
- ".koppie/app/assets/javascripts/application.js"
|
|
@@ -1455,11 +1591,13 @@ files:
|
|
|
1455
1591
|
- ".koppie/app/controllers/hyrax/generic_works_controller.rb"
|
|
1456
1592
|
- ".koppie/app/controllers/hyrax/monographs_controller.rb"
|
|
1457
1593
|
- ".koppie/app/forms/collection_resource_form.rb"
|
|
1594
|
+
- ".koppie/app/forms/file_set_form.rb"
|
|
1458
1595
|
- ".koppie/app/forms/generic_work_form.rb"
|
|
1459
1596
|
- ".koppie/app/forms/monograph_form.rb"
|
|
1460
1597
|
- ".koppie/app/helpers/application_helper.rb"
|
|
1461
1598
|
- ".koppie/app/helpers/hyrax_helper.rb"
|
|
1462
1599
|
- ".koppie/app/indexers/collection_resource_indexer.rb"
|
|
1600
|
+
- ".koppie/app/indexers/file_set_indexer.rb"
|
|
1463
1601
|
- ".koppie/app/indexers/generic_work_indexer.rb"
|
|
1464
1602
|
- ".koppie/app/indexers/monograph_indexer.rb"
|
|
1465
1603
|
- ".koppie/app/jobs/application_job.rb"
|
|
@@ -1470,6 +1608,7 @@ files:
|
|
|
1470
1608
|
- ".koppie/app/models/collection.rb"
|
|
1471
1609
|
- ".koppie/app/models/collection_resource.rb"
|
|
1472
1610
|
- ".koppie/app/models/concerns/.keep"
|
|
1611
|
+
- ".koppie/app/models/concerns/bulkrax/has_local_processing.rb"
|
|
1473
1612
|
- ".koppie/app/models/file_set.rb"
|
|
1474
1613
|
- ".koppie/app/models/generic_work.rb"
|
|
1475
1614
|
- ".koppie/app/models/monograph.rb"
|
|
@@ -1479,6 +1618,7 @@ files:
|
|
|
1479
1618
|
- ".koppie/app/models/search_builder.rb"
|
|
1480
1619
|
- ".koppie/app/models/solr_document.rb"
|
|
1481
1620
|
- ".koppie/app/models/user.rb"
|
|
1621
|
+
- ".koppie/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder"
|
|
1482
1622
|
- ".koppie/app/views/hyrax/generic_works/_generic_work.html.erb"
|
|
1483
1623
|
- ".koppie/app/views/hyrax/monographs/_monograph.html.erb"
|
|
1484
1624
|
- ".koppie/app/views/layouts/application.html.erb"
|
|
@@ -1486,10 +1626,12 @@ files:
|
|
|
1486
1626
|
- ".koppie/app/views/layouts/mailer.text.erb"
|
|
1487
1627
|
- ".koppie/app/views/shared/_footer.html.erb"
|
|
1488
1628
|
- ".koppie/bin/bundle"
|
|
1629
|
+
- ".koppie/bin/importer"
|
|
1489
1630
|
- ".koppie/bin/rails"
|
|
1490
1631
|
- ".koppie/bin/rake"
|
|
1491
1632
|
- ".koppie/bin/setup"
|
|
1492
1633
|
- ".koppie/bin/update"
|
|
1634
|
+
- ".koppie/bin/web"
|
|
1493
1635
|
- ".koppie/bin/yarn"
|
|
1494
1636
|
- ".koppie/config.ru"
|
|
1495
1637
|
- ".koppie/config/analytics.yml"
|
|
@@ -1501,6 +1643,7 @@ files:
|
|
|
1501
1643
|
- ".koppie/config/blacklight.yml"
|
|
1502
1644
|
- ".koppie/config/boot.rb"
|
|
1503
1645
|
- ".koppie/config/browse_everything_providers.yml"
|
|
1646
|
+
- ".koppie/config/bulkrax_api.yml"
|
|
1504
1647
|
- ".koppie/config/cable.yml"
|
|
1505
1648
|
- ".koppie/config/credentials.yml.enc"
|
|
1506
1649
|
- ".koppie/config/database.yml"
|
|
@@ -1514,6 +1657,7 @@ files:
|
|
|
1514
1657
|
- ".koppie/config/initializers/arkivo_constraint.rb"
|
|
1515
1658
|
- ".koppie/config/initializers/assets.rb"
|
|
1516
1659
|
- ".koppie/config/initializers/backtrace_silencers.rb"
|
|
1660
|
+
- ".koppie/config/initializers/bulkrax.rb"
|
|
1517
1661
|
- ".koppie/config/initializers/clamav.rb"
|
|
1518
1662
|
- ".koppie/config/initializers/content_security_policy.rb"
|
|
1519
1663
|
- ".koppie/config/initializers/cookies_serializer.rb"
|
|
@@ -1546,6 +1690,7 @@ files:
|
|
|
1546
1690
|
- ".koppie/config/metadata/generic_work.yaml"
|
|
1547
1691
|
- ".koppie/config/metadata/monograph.yaml"
|
|
1548
1692
|
- ".koppie/config/metadata/sample_metadata.yaml"
|
|
1693
|
+
- ".koppie/config/metadata_profiles/m3_profile.yaml"
|
|
1549
1694
|
- ".koppie/config/puma.rb"
|
|
1550
1695
|
- ".koppie/config/redis.yml"
|
|
1551
1696
|
- ".koppie/config/role_map.yml"
|
|
@@ -1637,6 +1782,54 @@ files:
|
|
|
1637
1782
|
- ".koppie/db/migrate/20211207172259_create_default_administrative_set.hyrax.rb"
|
|
1638
1783
|
- ".koppie/db/migrate/20230725222727_create_hyrax_counter_metrics.hyrax.rb"
|
|
1639
1784
|
- ".koppie/db/migrate/20230803165135_change_work_id_to_string.rb"
|
|
1785
|
+
- ".koppie/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb"
|
|
1786
|
+
- ".koppie/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb"
|
|
1787
|
+
- ".koppie/db/migrate/20250826142438_create_bulkrax_importers.bulkrax.rb"
|
|
1788
|
+
- ".koppie/db/migrate/20250826142439_create_bulkrax_importer_runs.bulkrax.rb"
|
|
1789
|
+
- ".koppie/db/migrate/20250826142440_create_bulkrax_entries.bulkrax.rb"
|
|
1790
|
+
- ".koppie/db/migrate/20250826142441_add_status_to_entry.bulkrax.rb"
|
|
1791
|
+
- ".koppie/db/migrate/20250826142442_add_collections_to_importer_runs.bulkrax.rb"
|
|
1792
|
+
- ".koppie/db/migrate/20250826142443_change_collection_ids_on_entries.bulkrax.rb"
|
|
1793
|
+
- ".koppie/db/migrate/20250826142444_create_bulkrax_exporters.bulkrax.rb"
|
|
1794
|
+
- ".koppie/db/migrate/20250826142445_create_bulkrax_exporter_runs.bulkrax.rb"
|
|
1795
|
+
- ".koppie/db/migrate/20250826142446_change_importer_and_exporter_to_polymorphic.bulkrax.rb"
|
|
1796
|
+
- ".koppie/db/migrate/20250826142447_add_total_collection_records_to_importer_runs.bulkrax.rb"
|
|
1797
|
+
- ".koppie/db/migrate/20250826142448_add_children_to_importer_runs.bulkrax.rb"
|
|
1798
|
+
- ".koppie/db/migrate/20250826142449_change_total_records_to_total_work_entries.bulkrax.rb"
|
|
1799
|
+
- ".koppie/db/migrate/20250826142450_change_entry_last_error.bulkrax.rb"
|
|
1800
|
+
- ".koppie/db/migrate/20250826142451_add_validate_only_to_bulkrax_importers.bulkrax.rb"
|
|
1801
|
+
- ".koppie/db/migrate/20250826142452_add_status_to_importers.bulkrax.rb"
|
|
1802
|
+
- ".koppie/db/migrate/20250826142453_remove_foreign_key_from_bulkrax_entries.bulkrax.rb"
|
|
1803
|
+
- ".koppie/db/migrate/20250826142454_add_status_to_exporters.bulkrax.rb"
|
|
1804
|
+
- ".koppie/db/migrate/20250826142455_add_invalid_record_to_importer_run.bulkrax.rb"
|
|
1805
|
+
- ".koppie/db/migrate/20250826142456_create_bulkrax_statuses.bulkrax.rb"
|
|
1806
|
+
- ".koppie/db/migrate/20250826142457_move_to_statuses.bulkrax.rb"
|
|
1807
|
+
- ".koppie/db/migrate/20250826142458_add_date_filter_and_status_to_bulkrax_exporters.bulkrax.rb"
|
|
1808
|
+
- ".koppie/db/migrate/20250826142459_add_workflow_status_to_bulkrax_exporter.bulkrax.rb"
|
|
1809
|
+
- ".koppie/db/migrate/20250826142460_remove_unused_last_error.bulkrax.rb"
|
|
1810
|
+
- ".koppie/db/migrate/20250826142461_increase_text_sizes.bulkrax.rb"
|
|
1811
|
+
- ".koppie/db/migrate/20250826142462_change_bulkrax_statuses_error_message_column_type_to_text.bulkrax.rb"
|
|
1812
|
+
- ".koppie/db/migrate/20250826142463_rename_children_counters_to_relationships.bulkrax.rb"
|
|
1813
|
+
- ".koppie/db/migrate/20250826142464_add_file_set_counters_to_importer_runs.bulkrax.rb"
|
|
1814
|
+
- ".koppie/db/migrate/20250826142465_add_import_attempts_to_entries.bulkrax.rb"
|
|
1815
|
+
- ".koppie/db/migrate/20250826142466_add_work_counters_to_importer_runs.bulkrax.rb"
|
|
1816
|
+
- ".koppie/db/migrate/20250826142467_create_bulkrax_pending_relationships.bulkrax.rb"
|
|
1817
|
+
- ".koppie/db/migrate/20250826142468_add_order_to_bulkrax_pending_relationships.bulkrax.rb"
|
|
1818
|
+
- ".koppie/db/migrate/20250826142469_add_include_thumbnails_to_bulkrax_exporters.bulkrax.rb"
|
|
1819
|
+
- ".koppie/db/migrate/20250826142470_add_generated_metadata_to_bulkrax_exporters.bulkrax.rb"
|
|
1820
|
+
- ".koppie/db/migrate/20250826142471_rename_bulkrax_importer_run_to_importer_run.bulkrax.rb"
|
|
1821
|
+
- ".koppie/db/migrate/20250826142472_add_indices_to_bulkrax.bulkrax.rb"
|
|
1822
|
+
- ".koppie/db/migrate/20250826142473_denormalize_status_message.bulkrax.rb"
|
|
1823
|
+
- ".koppie/db/migrate/20250826142474_update_identifier_index.bulkrax.rb"
|
|
1824
|
+
- ".koppie/db/migrate/20250826142475_add_index_to_metadata_bulkrax_identifier.bulkrax.rb"
|
|
1825
|
+
- ".koppie/db/migrate/20250826142476_add_file_name_to_uploaded_files.bulkrax.rb"
|
|
1826
|
+
- ".koppie/db/migrate/20250826142477_add_error_tracking_to_pending_relationships.bulkrax.rb"
|
|
1827
|
+
- ".koppie/db/migrate/20250826142478_add_last_imported_at_to_bulkrax_importers.bulkrax.rb"
|
|
1828
|
+
- ".koppie/db/migrate/20250826142479_add_next_import_at_to_bulkrax_importers.bulkrax.rb"
|
|
1829
|
+
- ".koppie/db/migrate/20250826142480_entry_error_denormalization.bulkrax.rb"
|
|
1830
|
+
- ".koppie/db/migrate/20250826142481_faster_first_entry.bulkrax.rb"
|
|
1831
|
+
- ".koppie/db/migrate/20260430000001_create_hyrax_redirect_paths.hyrax.rb"
|
|
1832
|
+
- ".koppie/db/migrate/20260521003627_add_additional_redirect_info.hyrax.rb"
|
|
1640
1833
|
- ".koppie/db/schema.rb"
|
|
1641
1834
|
- ".koppie/db/seeds.rb"
|
|
1642
1835
|
- ".koppie/lib/assets/.keep"
|
|
@@ -1650,7 +1843,7 @@ files:
|
|
|
1650
1843
|
- ".koppie/public/apple-touch-icon.png"
|
|
1651
1844
|
- ".koppie/public/branding/.keep"
|
|
1652
1845
|
- ".koppie/public/favicon.ico"
|
|
1653
|
-
- ".koppie/
|
|
1846
|
+
- ".koppie/rspec_split_configuration.json"
|
|
1654
1847
|
- ".koppie/solr/conf/_rest_managed.json"
|
|
1655
1848
|
- ".koppie/solr/conf/admin-extra.html"
|
|
1656
1849
|
- ".koppie/solr/conf/elevate.xml"
|
|
@@ -1696,6 +1889,7 @@ files:
|
|
|
1696
1889
|
- CONTRIBUTING.md
|
|
1697
1890
|
- Dockerfile
|
|
1698
1891
|
- Gemfile
|
|
1892
|
+
- Gemfile.allinson
|
|
1699
1893
|
- Gemfile.dassie
|
|
1700
1894
|
- Gemfile.koppie
|
|
1701
1895
|
- LICENSE
|
|
@@ -1767,6 +1961,7 @@ files:
|
|
|
1767
1961
|
- app/assets/javascripts/hyrax/batch_select_all.js
|
|
1768
1962
|
- app/assets/javascripts/hyrax/browse_everything.js
|
|
1769
1963
|
- app/assets/javascripts/hyrax/collapse.js
|
|
1964
|
+
- app/assets/javascripts/hyrax/collection_select.js
|
|
1770
1965
|
- app/assets/javascripts/hyrax/collection_types.es6
|
|
1771
1966
|
- app/assets/javascripts/hyrax/collections.js
|
|
1772
1967
|
- app/assets/javascripts/hyrax/collections/editor.es6
|
|
@@ -1774,6 +1969,7 @@ files:
|
|
|
1774
1969
|
- app/assets/javascripts/hyrax/collections_v2.es6
|
|
1775
1970
|
- app/assets/javascripts/hyrax/config.js.erb
|
|
1776
1971
|
- app/assets/javascripts/hyrax/content_blocks.js
|
|
1972
|
+
- app/assets/javascripts/hyrax/copy_permalink_button.js
|
|
1777
1973
|
- app/assets/javascripts/hyrax/dashboard_actions.js
|
|
1778
1974
|
- app/assets/javascripts/hyrax/editor.es6
|
|
1779
1975
|
- app/assets/javascripts/hyrax/editor/admin_set_widget.es6
|
|
@@ -1803,6 +1999,7 @@ files:
|
|
|
1803
1999
|
- app/assets/javascripts/hyrax/permissions/registry_entry.es6
|
|
1804
2000
|
- app/assets/javascripts/hyrax/permissions/user_controls.es6
|
|
1805
2001
|
- app/assets/javascripts/hyrax/proxy_rights.js
|
|
2002
|
+
- app/assets/javascripts/hyrax/redirects.js
|
|
1806
2003
|
- app/assets/javascripts/hyrax/relationships.js
|
|
1807
2004
|
- app/assets/javascripts/hyrax/relationships/confirm_remove_dialog.es6
|
|
1808
2005
|
- app/assets/javascripts/hyrax/relationships/control.es6
|
|
@@ -1895,6 +2092,7 @@ files:
|
|
|
1895
2092
|
- app/connections/hyrax/clean_connection.rb
|
|
1896
2093
|
- app/controllers/concerns/hyrax/admin/stats_behavior.rb
|
|
1897
2094
|
- app/controllers/concerns/hyrax/admin/users_controller_behavior.rb
|
|
2095
|
+
- app/controllers/concerns/hyrax/analytics_error_handling.rb
|
|
1898
2096
|
- app/controllers/concerns/hyrax/api.rb
|
|
1899
2097
|
- app/controllers/concerns/hyrax/breadcrumbs.rb
|
|
1900
2098
|
- app/controllers/concerns/hyrax/breadcrumbs_for_collection_analytics.rb
|
|
@@ -1907,9 +2105,13 @@ files:
|
|
|
1907
2105
|
- app/controllers/concerns/hyrax/controller.rb
|
|
1908
2106
|
- app/controllers/concerns/hyrax/deny_access_override_behavior.rb
|
|
1909
2107
|
- app/controllers/concerns/hyrax/embargoes_controller_behavior.rb
|
|
2108
|
+
- app/controllers/concerns/hyrax/ensure_migrated_behavior.rb
|
|
2109
|
+
- app/controllers/concerns/hyrax/flexible_catalog_behavior.rb
|
|
2110
|
+
- app/controllers/concerns/hyrax/flexible_schema_behavior.rb
|
|
1910
2111
|
- app/controllers/concerns/hyrax/leases_controller_behavior.rb
|
|
1911
2112
|
- app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb
|
|
1912
2113
|
- app/controllers/concerns/hyrax/manages_embargoes.rb
|
|
2114
|
+
- app/controllers/concerns/hyrax/redirect_to_display_url.rb
|
|
1913
2115
|
- app/controllers/concerns/hyrax/singular_subresource_controller.rb
|
|
1914
2116
|
- app/controllers/concerns/hyrax/stream_file_downloads_controller_behavior.rb
|
|
1915
2117
|
- app/controllers/concerns/hyrax/themed_layout_controller.rb
|
|
@@ -1923,6 +2125,7 @@ files:
|
|
|
1923
2125
|
- app/controllers/hyrax/admin/collection_type_participants_controller.rb
|
|
1924
2126
|
- app/controllers/hyrax/admin/collection_types_controller.rb
|
|
1925
2127
|
- app/controllers/hyrax/admin/features_controller.rb
|
|
2128
|
+
- app/controllers/hyrax/admin/metadata_profiles_controller.rb
|
|
1926
2129
|
- app/controllers/hyrax/admin/permission_template_accesses_controller.rb
|
|
1927
2130
|
- app/controllers/hyrax/admin/permission_templates_controller.rb
|
|
1928
2131
|
- app/controllers/hyrax/admin/stats_controller.rb
|
|
@@ -1962,21 +2165,26 @@ files:
|
|
|
1962
2165
|
- app/controllers/hyrax/operations_controller.rb
|
|
1963
2166
|
- app/controllers/hyrax/pages_controller.rb
|
|
1964
2167
|
- app/controllers/hyrax/permissions_controller.rb
|
|
2168
|
+
- app/controllers/hyrax/redirects_controller.rb
|
|
1965
2169
|
- app/controllers/hyrax/resource_sync_controller.rb
|
|
1966
2170
|
- app/controllers/hyrax/single_use_links_controller.rb
|
|
1967
2171
|
- app/controllers/hyrax/single_use_links_viewer_controller.rb
|
|
1968
2172
|
- app/controllers/hyrax/static_controller.rb
|
|
1969
2173
|
- app/controllers/hyrax/stats_controller.rb
|
|
2174
|
+
- app/controllers/hyrax/transcripts_controller.rb
|
|
1970
2175
|
- app/controllers/hyrax/transfers_controller.rb
|
|
1971
2176
|
- app/controllers/hyrax/trophies_controller.rb
|
|
1972
2177
|
- app/controllers/hyrax/uploads_controller.rb
|
|
1973
2178
|
- app/controllers/hyrax/users_controller.rb
|
|
1974
2179
|
- app/controllers/hyrax/workflow_actions_controller.rb
|
|
1975
|
-
- app/forms/concerns/hyrax/
|
|
2180
|
+
- app/forms/concerns/hyrax/based_near_field_behavior.rb
|
|
1976
2181
|
- app/forms/concerns/hyrax/contained_in_works_behavior.rb
|
|
1977
2182
|
- app/forms/concerns/hyrax/deposit_agreement_behavior.rb
|
|
2183
|
+
- app/forms/concerns/hyrax/flexible_form_behavior.rb
|
|
1978
2184
|
- app/forms/concerns/hyrax/leaseability_behavior.rb
|
|
1979
2185
|
- app/forms/concerns/hyrax/permission_behavior.rb
|
|
2186
|
+
- app/forms/concerns/hyrax/redirects_field_behavior.rb
|
|
2187
|
+
- app/forms/concerns/hyrax/transcripts_behavior.rb
|
|
1980
2188
|
- app/forms/hyrax/forms.rb
|
|
1981
2189
|
- app/forms/hyrax/forms/admin/appearance.rb
|
|
1982
2190
|
- app/forms/hyrax/forms/admin/collection_type_form.rb
|
|
@@ -2006,6 +2214,7 @@ files:
|
|
|
2006
2214
|
- app/forms/hyrax/forms/workflow_action_form.rb
|
|
2007
2215
|
- app/forms/hyrax/forms/workflow_responsibility_form.rb
|
|
2008
2216
|
- app/helpers/hyrax/ability_helper.rb
|
|
2217
|
+
- app/helpers/hyrax/attributes_helper.rb
|
|
2009
2218
|
- app/helpers/hyrax/batch_edits_helper.rb
|
|
2010
2219
|
- app/helpers/hyrax/blacklight_override.rb
|
|
2011
2220
|
- app/helpers/hyrax/charts_helper.rb
|
|
@@ -2026,23 +2235,28 @@ files:
|
|
|
2026
2235
|
- app/helpers/hyrax/dashboard_helper_behavior.rb
|
|
2027
2236
|
- app/helpers/hyrax/embargo_helper.rb
|
|
2028
2237
|
- app/helpers/hyrax/facets_helper.rb
|
|
2238
|
+
- app/helpers/hyrax/file_set_form_helper.rb
|
|
2029
2239
|
- app/helpers/hyrax/file_set_helper.rb
|
|
2030
2240
|
- app/helpers/hyrax/hyrax_helper_behavior.rb
|
|
2031
2241
|
- app/helpers/hyrax/iiif_helper.rb
|
|
2032
2242
|
- app/helpers/hyrax/lease_helper.rb
|
|
2033
2243
|
- app/helpers/hyrax/membership_helper.rb
|
|
2244
|
+
- app/helpers/hyrax/permalink_helper.rb
|
|
2034
2245
|
- app/helpers/hyrax/permission_levels_helper.rb
|
|
2035
2246
|
- app/helpers/hyrax/permissions_helper.rb
|
|
2247
|
+
- app/helpers/hyrax/redirects_tab_helper.rb
|
|
2036
2248
|
- app/helpers/hyrax/title_helper.rb
|
|
2037
2249
|
- app/helpers/hyrax/trophy_helper.rb
|
|
2038
2250
|
- app/helpers/hyrax/work_form_helper.rb
|
|
2039
2251
|
- app/helpers/hyrax/workflows_helper.rb
|
|
2252
|
+
- app/helpers/hyrax/works_helper.rb
|
|
2040
2253
|
- app/indexers/concerns/hyrax/indexes_basic_metadata.rb
|
|
2041
2254
|
- app/indexers/concerns/hyrax/indexes_linked_metadata.rb
|
|
2042
2255
|
- app/indexers/concerns/hyrax/location_indexer.rb
|
|
2043
2256
|
- app/indexers/concerns/hyrax/permission_indexer.rb
|
|
2044
2257
|
- app/indexers/concerns/hyrax/thumbnail_indexer.rb
|
|
2045
2258
|
- app/indexers/concerns/hyrax/visibility_indexer.rb
|
|
2259
|
+
- app/indexers/concerns/hyrax/workflow_indexer.rb
|
|
2046
2260
|
- app/indexers/hyrax/admin_set_indexer.rb
|
|
2047
2261
|
- app/indexers/hyrax/administrative_set_indexer.rb
|
|
2048
2262
|
- app/indexers/hyrax/basic_metadata_indexer.rb
|
|
@@ -2055,6 +2269,7 @@ files:
|
|
|
2055
2269
|
- app/indexers/hyrax/indexers/file_set_indexer.rb
|
|
2056
2270
|
- app/indexers/hyrax/indexers/pcdm_collection_indexer.rb
|
|
2057
2271
|
- app/indexers/hyrax/indexers/pcdm_object_indexer.rb
|
|
2272
|
+
- app/indexers/hyrax/indexers/redirects_indexer.rb
|
|
2058
2273
|
- app/indexers/hyrax/indexers/resource_indexer.rb
|
|
2059
2274
|
- app/indexers/hyrax/indexes_workflow.rb
|
|
2060
2275
|
- app/indexers/hyrax/pcdm_collection_indexer.rb
|
|
@@ -2073,7 +2288,9 @@ files:
|
|
|
2073
2288
|
- app/jobs/characterize_job.rb
|
|
2074
2289
|
- app/jobs/concerns/hyrax/members_permission_job_behavior.rb
|
|
2075
2290
|
- app/jobs/concerns/hyrax/permission_job_behavior.rb
|
|
2291
|
+
- app/jobs/concerns/hyrax/queued_job_behavior.rb
|
|
2076
2292
|
- app/jobs/content_delete_event_job.rb
|
|
2293
|
+
- app/jobs/content_deposit_error_event_job.rb
|
|
2077
2294
|
- app/jobs/content_deposit_event_job.rb
|
|
2078
2295
|
- app/jobs/content_event_job.rb
|
|
2079
2296
|
- app/jobs/content_new_version_event_job.rb
|
|
@@ -2091,6 +2308,8 @@ files:
|
|
|
2091
2308
|
- app/jobs/hyrax/grant_read_job.rb
|
|
2092
2309
|
- app/jobs/hyrax/grant_read_to_members_job.rb
|
|
2093
2310
|
- app/jobs/hyrax/propagate_change_depositor_job.rb
|
|
2311
|
+
- app/jobs/hyrax/queued_delete_job.rb
|
|
2312
|
+
- app/jobs/hyrax/queued_indexing_job.rb
|
|
2094
2313
|
- app/jobs/hyrax/revoke_edit_from_members_job.rb
|
|
2095
2314
|
- app/jobs/hyrax/revoke_edit_job.rb
|
|
2096
2315
|
- app/jobs/iiif_manifest_cache_prewarm_job.rb
|
|
@@ -2102,6 +2321,7 @@ files:
|
|
|
2102
2321
|
- app/jobs/lease_expiry_job.rb
|
|
2103
2322
|
- app/jobs/migrate_files_to_valkyrie_job.rb
|
|
2104
2323
|
- app/jobs/migrate_resources_job.rb
|
|
2324
|
+
- app/jobs/migrate_sipity_entity_job.rb
|
|
2105
2325
|
- app/jobs/resolrize_job.rb
|
|
2106
2326
|
- app/jobs/stream_notifications_job.rb
|
|
2107
2327
|
- app/jobs/user_edit_profile_event_job.rb
|
|
@@ -2119,6 +2339,7 @@ files:
|
|
|
2119
2339
|
- app/models/concerns/hyrax/ability/admin_set_ability.rb
|
|
2120
2340
|
- app/models/concerns/hyrax/ability/collection_ability.rb
|
|
2121
2341
|
- app/models/concerns/hyrax/ability/collection_type_ability.rb
|
|
2342
|
+
- app/models/concerns/hyrax/ability/flexible_metadata_ability.rb
|
|
2122
2343
|
- app/models/concerns/hyrax/ability/permission_template_ability.rb
|
|
2123
2344
|
- app/models/concerns/hyrax/ability/resource_ability.rb
|
|
2124
2345
|
- app/models/concerns/hyrax/ability/solr_document_ability.rb
|
|
@@ -2132,7 +2353,9 @@ files:
|
|
|
2132
2353
|
- app/models/concerns/hyrax/file_set/derivatives.rb
|
|
2133
2354
|
- app/models/concerns/hyrax/file_set/indexing.rb
|
|
2134
2355
|
- app/models/concerns/hyrax/file_set/querying.rb
|
|
2356
|
+
- app/models/concerns/hyrax/file_set/transcripts.rb
|
|
2135
2357
|
- app/models/concerns/hyrax/file_set_behavior.rb
|
|
2358
|
+
- app/models/concerns/hyrax/flexibility.rb
|
|
2136
2359
|
- app/models/concerns/hyrax/has_rendering.rb
|
|
2137
2360
|
- app/models/concerns/hyrax/has_representative.rb
|
|
2138
2361
|
- app/models/concerns/hyrax/human_readable_type.rb
|
|
@@ -2143,6 +2366,7 @@ files:
|
|
|
2143
2366
|
- app/models/concerns/hyrax/permissions/readable.rb
|
|
2144
2367
|
- app/models/concerns/hyrax/permissions/writable.rb
|
|
2145
2368
|
- app/models/concerns/hyrax/proxy_deposit.rb
|
|
2369
|
+
- app/models/concerns/hyrax/redirects_normalization.rb
|
|
2146
2370
|
- app/models/concerns/hyrax/serializers.rb
|
|
2147
2371
|
- app/models/concerns/hyrax/solr_document/characterization.rb
|
|
2148
2372
|
- app/models/concerns/hyrax/solr_document/export.rb
|
|
@@ -2154,6 +2378,7 @@ files:
|
|
|
2154
2378
|
- app/models/concerns/hyrax/user_usage_stats.rb
|
|
2155
2379
|
- app/models/concerns/hyrax/valkyrie_lazy_migration.rb
|
|
2156
2380
|
- app/models/concerns/hyrax/virus_check.rb
|
|
2381
|
+
- app/models/concerns/hyrax/with_embargoes_and_leases.rb
|
|
2157
2382
|
- app/models/concerns/hyrax/with_events.rb
|
|
2158
2383
|
- app/models/concerns/hyrax/work_behavior.rb
|
|
2159
2384
|
- app/models/concerns/hyrax/works/metadata.rb
|
|
@@ -2180,6 +2405,7 @@ files:
|
|
|
2180
2405
|
- app/models/hyrax/feature.rb
|
|
2181
2406
|
- app/models/hyrax/file_metadata.rb
|
|
2182
2407
|
- app/models/hyrax/file_set.rb
|
|
2408
|
+
- app/models/hyrax/flexible_schema.rb
|
|
2183
2409
|
- app/models/hyrax/group.rb
|
|
2184
2410
|
- app/models/hyrax/group_behavior.rb
|
|
2185
2411
|
- app/models/hyrax/lease.rb
|
|
@@ -2191,7 +2417,11 @@ files:
|
|
|
2191
2417
|
- app/models/hyrax/permission.rb
|
|
2192
2418
|
- app/models/hyrax/permission_template.rb
|
|
2193
2419
|
- app/models/hyrax/permission_template_access.rb
|
|
2420
|
+
- app/models/hyrax/redirect.rb
|
|
2421
|
+
- app/models/hyrax/redirect_path.rb
|
|
2194
2422
|
- app/models/hyrax/resource.rb
|
|
2423
|
+
- app/models/hyrax/riiif/file.rb
|
|
2424
|
+
- app/models/hyrax/riiif/file_resolver.rb
|
|
2195
2425
|
- app/models/hyrax/statistic.rb
|
|
2196
2426
|
- app/models/hyrax/uploaded_file.rb
|
|
2197
2427
|
- app/models/hyrax/valkyrie_global_id_proxy.rb
|
|
@@ -2237,12 +2467,15 @@ files:
|
|
|
2237
2467
|
- app/presenters/hyrax/admin_set_presenter.rb
|
|
2238
2468
|
- app/presenters/hyrax/admin_set_selection_presenter.rb
|
|
2239
2469
|
- app/presenters/hyrax/admin_stats_presenter.rb
|
|
2470
|
+
- app/presenters/hyrax/annotates_content.rb
|
|
2240
2471
|
- app/presenters/hyrax/characterization_behavior.rb
|
|
2241
2472
|
- app/presenters/hyrax/collapsable_section_presenter.rb
|
|
2242
2473
|
- app/presenters/hyrax/collection_presenter.rb
|
|
2243
2474
|
- app/presenters/hyrax/composite_presenter_factory.rb
|
|
2244
2475
|
- app/presenters/hyrax/dashboard/user_presenter.rb
|
|
2476
|
+
- app/presenters/hyrax/displays_content.rb
|
|
2245
2477
|
- app/presenters/hyrax/displays_image.rb
|
|
2478
|
+
- app/presenters/hyrax/displays_transcripts.rb
|
|
2246
2479
|
- app/presenters/hyrax/embargo_presenter.rb
|
|
2247
2480
|
- app/presenters/hyrax/file_set_presenter.rb
|
|
2248
2481
|
- app/presenters/hyrax/file_usage.rb
|
|
@@ -2254,6 +2487,7 @@ files:
|
|
|
2254
2487
|
- app/presenters/hyrax/lease_presenter.rb
|
|
2255
2488
|
- app/presenters/hyrax/member_presenter_factory.rb
|
|
2256
2489
|
- app/presenters/hyrax/menu_presenter.rb
|
|
2490
|
+
- app/presenters/hyrax/missing_method_behavior.rb
|
|
2257
2491
|
- app/presenters/hyrax/model_icon.rb
|
|
2258
2492
|
- app/presenters/hyrax/model_proxy.rb
|
|
2259
2493
|
- app/presenters/hyrax/page_title_decorator.rb
|
|
@@ -2285,6 +2519,7 @@ files:
|
|
|
2285
2519
|
- app/renderers/hyrax/renderers/faceted_attribute_renderer.rb
|
|
2286
2520
|
- app/renderers/hyrax/renderers/license_attribute_renderer.rb
|
|
2287
2521
|
- app/renderers/hyrax/renderers/linked_attribute_renderer.rb
|
|
2522
|
+
- app/renderers/hyrax/renderers/redirects_label_attribute_renderer.rb
|
|
2288
2523
|
- app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb
|
|
2289
2524
|
- app/search_builders/hyrax/README.md
|
|
2290
2525
|
- app/search_builders/hyrax/abstract_type_relation.rb
|
|
@@ -2352,6 +2587,8 @@ files:
|
|
|
2352
2587
|
- app/services/hyrax/analytics/google/visits_daily.rb
|
|
2353
2588
|
- app/services/hyrax/analytics/matomo.rb
|
|
2354
2589
|
- app/services/hyrax/analytics/results.rb
|
|
2590
|
+
- app/services/hyrax/authority_rendering_helper.rb
|
|
2591
|
+
- app/services/hyrax/authority_service.rb
|
|
2355
2592
|
- app/services/hyrax/batch_create_failure_service.rb
|
|
2356
2593
|
- app/services/hyrax/batch_create_success_service.rb
|
|
2357
2594
|
- app/services/hyrax/caching_iiif_manifest_builder.rb
|
|
@@ -2379,6 +2616,7 @@ files:
|
|
|
2379
2616
|
- app/services/hyrax/custom_queries.rb
|
|
2380
2617
|
- app/services/hyrax/custom_queries/find_access_control.rb
|
|
2381
2618
|
- app/services/hyrax/custom_queries/find_by_date_range.rb
|
|
2619
|
+
- app/services/hyrax/custom_queries/find_by_property_value.rb
|
|
2382
2620
|
- app/services/hyrax/custom_queries/find_collections_by_type.rb
|
|
2383
2621
|
- app/services/hyrax/custom_queries/find_count_by.rb
|
|
2384
2622
|
- app/services/hyrax/custom_queries/find_file_metadata.rb
|
|
@@ -2412,6 +2650,13 @@ files:
|
|
|
2412
2650
|
- app/services/hyrax/fixity/active_fedora_fixity_service.rb
|
|
2413
2651
|
- app/services/hyrax/fixity/missing_content_error.rb
|
|
2414
2652
|
- app/services/hyrax/fixity_check_failure_service.rb
|
|
2653
|
+
- app/services/hyrax/flexible_schema_validator_service.rb
|
|
2654
|
+
- app/services/hyrax/flexible_schema_validators/class_validator.rb
|
|
2655
|
+
- app/services/hyrax/flexible_schema_validators/core_metadata_validator.rb
|
|
2656
|
+
- app/services/hyrax/flexible_schema_validators/existing_records_validator.rb
|
|
2657
|
+
- app/services/hyrax/flexible_schema_validators/redirects_validator.rb
|
|
2658
|
+
- app/services/hyrax/flexible_schema_validators/schema_validator.rb
|
|
2659
|
+
- app/services/hyrax/flexible_schema_validators/sort_properties_validator.rb
|
|
2415
2660
|
- app/services/hyrax/form_factory.rb
|
|
2416
2661
|
- app/services/hyrax/form_metadata_service.rb
|
|
2417
2662
|
- app/services/hyrax/graph_exporter.rb
|
|
@@ -2444,23 +2689,30 @@ files:
|
|
|
2444
2689
|
- app/services/hyrax/location_service.rb
|
|
2445
2690
|
- app/services/hyrax/lock_manager.rb
|
|
2446
2691
|
- app/services/hyrax/lockable.rb
|
|
2692
|
+
- app/services/hyrax/m3_profile_editor.rb
|
|
2693
|
+
- app/services/hyrax/m3_schema_loader.rb
|
|
2447
2694
|
- app/services/hyrax/manifest_builder_service.rb
|
|
2448
2695
|
- app/services/hyrax/messenger_service.rb
|
|
2449
2696
|
- app/services/hyrax/microdata.rb
|
|
2450
2697
|
- app/services/hyrax/multiple_membership_checker.rb
|
|
2451
2698
|
- app/services/hyrax/noid.rb
|
|
2699
|
+
- app/services/hyrax/permalink_path.rb
|
|
2452
2700
|
- app/services/hyrax/permission_manager.rb
|
|
2453
2701
|
- app/services/hyrax/permission_template_applicator.rb
|
|
2454
2702
|
- app/services/hyrax/persist_derivatives.rb
|
|
2455
2703
|
- app/services/hyrax/persist_directly_contained_output_file_service.rb
|
|
2456
2704
|
- app/services/hyrax/qa_select_service.rb
|
|
2457
2705
|
- app/services/hyrax/quick_classification_query.rb
|
|
2706
|
+
- app/services/hyrax/redirect_path_normalizer.rb
|
|
2707
|
+
- app/services/hyrax/redirects_lookup.rb
|
|
2458
2708
|
- app/services/hyrax/repository_fixity_check_service.rb
|
|
2709
|
+
- app/services/hyrax/resource_permissions_visibility_propagator.rb
|
|
2459
2710
|
- app/services/hyrax/resource_status.rb
|
|
2460
2711
|
- app/services/hyrax/resource_types_service.rb
|
|
2461
2712
|
- app/services/hyrax/resource_visibility_propagator.rb
|
|
2462
2713
|
- app/services/hyrax/restriction_service.rb
|
|
2463
2714
|
- app/services/hyrax/rights_statement_service.rb
|
|
2715
|
+
- app/services/hyrax/schema_loader.rb
|
|
2464
2716
|
- app/services/hyrax/search_service.rb
|
|
2465
2717
|
- app/services/hyrax/simple_schema_loader.rb
|
|
2466
2718
|
- app/services/hyrax/solr_query_builder_service.rb
|
|
@@ -2544,12 +2796,15 @@ files:
|
|
|
2544
2796
|
- app/utils/hyrax/required_data_seeder.rb
|
|
2545
2797
|
- app/utils/hyrax/required_data_seeders/collection_seeder.rb
|
|
2546
2798
|
- app/utils/hyrax/required_data_seeders/collection_type_seeder.rb
|
|
2799
|
+
- app/utils/hyrax/required_data_seeders/flexible_profile_seeder.rb
|
|
2547
2800
|
- app/utils/hyrax/test_data_seeder.rb
|
|
2548
2801
|
- app/utils/hyrax/test_data_seeders/collection_seeder.rb
|
|
2549
2802
|
- app/utils/hyrax/test_data_seeders/collection_type_seeder.rb
|
|
2550
2803
|
- app/utils/hyrax/test_data_seeders/user_seeder.rb
|
|
2551
2804
|
- app/validators/hyrax/collection_membership_validator.rb
|
|
2805
|
+
- app/validators/hyrax/controlled_vocabulary_validator.rb
|
|
2552
2806
|
- app/validators/hyrax/has_one_title_validator.rb
|
|
2807
|
+
- app/validators/hyrax/redirect_validator.rb
|
|
2553
2808
|
- app/values/hyrax/chart_data.rb
|
|
2554
2809
|
- app/views/_controls.html.erb
|
|
2555
2810
|
- app/views/_flash_msg.html.erb
|
|
@@ -2566,12 +2821,12 @@ files:
|
|
|
2566
2821
|
- app/views/catalog/_index_header_list_default.html.erb
|
|
2567
2822
|
- app/views/catalog/_index_list_default.html.erb
|
|
2568
2823
|
- app/views/catalog/_search_form.html.erb
|
|
2569
|
-
- app/views/catalog/_thumbnail_list_collection.html.erb
|
|
2570
2824
|
- app/views/catalog/_thumbnail_list_default.html.erb
|
|
2571
2825
|
- app/views/catalog/facet.html.erb
|
|
2572
2826
|
- app/views/catalog/index.html.erb
|
|
2573
2827
|
- app/views/catalog/recent.js.erb
|
|
2574
2828
|
- app/views/collections/edit_fields/_based_near.html.erb
|
|
2829
|
+
- app/views/collections/edit_fields/_schema_version.html.erb
|
|
2575
2830
|
- app/views/hyrax/admin/admin_sets/_form.html.erb
|
|
2576
2831
|
- app/views/hyrax/admin/admin_sets/_form_metadata.html.erb
|
|
2577
2832
|
- app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb
|
|
@@ -2587,6 +2842,7 @@ files:
|
|
|
2587
2842
|
- app/views/hyrax/admin/admin_sets/index.json.jbuilder
|
|
2588
2843
|
- app/views/hyrax/admin/admin_sets/new.html.erb
|
|
2589
2844
|
- app/views/hyrax/admin/admin_sets/show.html.erb
|
|
2845
|
+
- app/views/hyrax/admin/analytics/_analytics_error.html.erb
|
|
2590
2846
|
- app/views/hyrax/admin/analytics/_date_range_form.html.erb
|
|
2591
2847
|
- app/views/hyrax/admin/analytics/collection_reports/_custom_range.html.erb
|
|
2592
2848
|
- app/views/hyrax/admin/analytics/collection_reports/_monthly_summary.html.erb
|
|
@@ -2615,6 +2871,8 @@ files:
|
|
|
2615
2871
|
- app/views/hyrax/admin/collection_types/index.html.erb
|
|
2616
2872
|
- app/views/hyrax/admin/collection_types/new.html.erb
|
|
2617
2873
|
- app/views/hyrax/admin/features/index.html.erb
|
|
2874
|
+
- app/views/hyrax/admin/metadata_profiles/_import_modal.html.erb
|
|
2875
|
+
- app/views/hyrax/admin/metadata_profiles/index.html.erb
|
|
2618
2876
|
- app/views/hyrax/admin/stats/_date_form.html.erb
|
|
2619
2877
|
- app/views/hyrax/admin/stats/_deposits.html.erb
|
|
2620
2878
|
- app/views/hyrax/admin/stats/_new_users.html.erb
|
|
@@ -2653,6 +2911,7 @@ files:
|
|
|
2653
2911
|
- app/views/hyrax/base/_form_permission_under_embargo.html.erb
|
|
2654
2912
|
- app/views/hyrax/base/_form_permission_under_lease.html.erb
|
|
2655
2913
|
- app/views/hyrax/base/_form_progress.html.erb
|
|
2914
|
+
- app/views/hyrax/base/_form_redirects.html.erb
|
|
2656
2915
|
- app/views/hyrax/base/_form_relationships.html.erb
|
|
2657
2916
|
- app/views/hyrax/base/_form_rendering.html.erb
|
|
2658
2917
|
- app/views/hyrax/base/_form_representative.html.erb
|
|
@@ -2787,6 +3046,7 @@ files:
|
|
|
2787
3046
|
- app/views/hyrax/dashboard/sidebar/_activity.html.erb
|
|
2788
3047
|
- app/views/hyrax/dashboard/sidebar/_configuration.html.erb
|
|
2789
3048
|
- app/views/hyrax/dashboard/sidebar/_menu_partials.html.erb
|
|
3049
|
+
- app/views/hyrax/dashboard/sidebar/_metadata.html.erb
|
|
2790
3050
|
- app/views/hyrax/dashboard/sidebar/_repository_content.html.erb
|
|
2791
3051
|
- app/views/hyrax/dashboard/sidebar/_tasks.html.erb
|
|
2792
3052
|
- app/views/hyrax/dashboard/works/_default_group.html.erb
|
|
@@ -2810,6 +3070,7 @@ files:
|
|
|
2810
3070
|
- app/views/hyrax/file_sets/_file_set_title.erb
|
|
2811
3071
|
- app/views/hyrax/file_sets/_form.html.erb
|
|
2812
3072
|
- app/views/hyrax/file_sets/_groups_description.html.erb
|
|
3073
|
+
- app/views/hyrax/file_sets/_metadata.html.erb
|
|
2813
3074
|
- app/views/hyrax/file_sets/_permission.html.erb
|
|
2814
3075
|
- app/views/hyrax/file_sets/_permission_form.html.erb
|
|
2815
3076
|
- app/views/hyrax/file_sets/_show_actions.html.erb
|
|
@@ -2817,6 +3078,7 @@ files:
|
|
|
2817
3078
|
- app/views/hyrax/file_sets/_show_details.html.erb
|
|
2818
3079
|
- app/views/hyrax/file_sets/_single_use_link_rows.html.erb
|
|
2819
3080
|
- app/views/hyrax/file_sets/_single_use_links.html.erb
|
|
3081
|
+
- app/views/hyrax/file_sets/_valkyrie_form.html.erb
|
|
2820
3082
|
- app/views/hyrax/file_sets/_versioning.html.erb
|
|
2821
3083
|
- app/views/hyrax/file_sets/edit.html.erb
|
|
2822
3084
|
- app/views/hyrax/file_sets/media_display/_audio.html.erb
|
|
@@ -2840,6 +3102,7 @@ files:
|
|
|
2840
3102
|
- app/views/hyrax/homepage/_recently_uploaded.html.erb
|
|
2841
3103
|
- app/views/hyrax/homepage/_sortable_featured.html.erb
|
|
2842
3104
|
- app/views/hyrax/homepage/index.html.erb
|
|
3105
|
+
- app/views/hyrax/homepage/robots.text.erb
|
|
2843
3106
|
- app/views/hyrax/leases/_lease_history.html.erb
|
|
2844
3107
|
- app/views/hyrax/leases/_list_active_leases.html.erb
|
|
2845
3108
|
- app/views/hyrax/leases/_list_deactivated_leases.html.erb
|
|
@@ -2897,6 +3160,7 @@ files:
|
|
|
2897
3160
|
- app/views/hyrax/pages/show.html.erb
|
|
2898
3161
|
- app/views/hyrax/permissions/confirm.html.erb
|
|
2899
3162
|
- app/views/hyrax/permissions/confirm_access.html.erb
|
|
3163
|
+
- app/views/hyrax/shared/_copy_permalink.html.erb
|
|
2900
3164
|
- app/views/hyrax/single_use_links/index.html.erb
|
|
2901
3165
|
- app/views/hyrax/single_use_links_viewer/show.html.erb
|
|
2902
3166
|
- app/views/hyrax/single_use_links_viewer/single_use_error.html.erb
|
|
@@ -2937,12 +3201,15 @@ files:
|
|
|
2937
3201
|
- app/views/records/edit_fields/_abstract.html.erb
|
|
2938
3202
|
- app/views/records/edit_fields/_access_right.html.erb
|
|
2939
3203
|
- app/views/records/edit_fields/_based_near.html.erb
|
|
3204
|
+
- app/views/records/edit_fields/_contexts.html.erb
|
|
2940
3205
|
- app/views/records/edit_fields/_description.html.erb
|
|
2941
3206
|
- app/views/records/edit_fields/_language.html.erb
|
|
2942
3207
|
- app/views/records/edit_fields/_license.html.erb
|
|
2943
3208
|
- app/views/records/edit_fields/_resource_type.html.erb
|
|
2944
3209
|
- app/views/records/edit_fields/_rights_statement.html.erb
|
|
3210
|
+
- app/views/records/edit_fields/_schema_version.html.erb
|
|
2945
3211
|
- app/views/records/edit_fields/_subject.html.erb
|
|
3212
|
+
- app/views/records/edit_fields/_transcript_ids.html.erb
|
|
2946
3213
|
- app/views/records/show_fields/_based_near.html.erb
|
|
2947
3214
|
- app/views/records/show_fields/_contributor.html.erb
|
|
2948
3215
|
- app/views/records/show_fields/_creator.html.erb
|
|
@@ -2967,6 +3234,7 @@ files:
|
|
|
2967
3234
|
- app/views/shared/_matomo.html.erb
|
|
2968
3235
|
- app/views/shared/_nav_safety_modal.html.erb
|
|
2969
3236
|
- app/views/shared/_read_only.html.erb
|
|
3237
|
+
- app/views/shared/_schema_version.html.erb
|
|
2970
3238
|
- app/views/shared/_select_work_type_modal.html.erb
|
|
2971
3239
|
- artifacts/entity-relationship-diagram.dot
|
|
2972
3240
|
- artifacts/entity-relationship-diagram.pdf
|
|
@@ -3006,11 +3274,16 @@ files:
|
|
|
3006
3274
|
- config/initializers/1_healthz.rb
|
|
3007
3275
|
- config/initializers/ar_test_fixture_monkey_patch.rb
|
|
3008
3276
|
- config/initializers/arel_rails_7_2_monkey_patch.rb
|
|
3277
|
+
- config/initializers/blacklight_dynamic_sitemap.rb
|
|
3278
|
+
- config/initializers/deprecation_patch.rb
|
|
3009
3279
|
- config/initializers/file_length_patch.rb
|
|
3280
|
+
- config/initializers/hydra_works.rb
|
|
3281
|
+
- config/initializers/i18n_extensions.rb
|
|
3010
3282
|
- config/initializers/indexing_adapter_initializer.rb
|
|
3011
3283
|
- config/initializers/kaminari_engine_patch.rb
|
|
3012
3284
|
- config/initializers/listeners.rb
|
|
3013
3285
|
- config/initializers/new_framework_defaults_7_2.rb
|
|
3286
|
+
- config/initializers/reform_rails_6_1_monkey_patch.rb
|
|
3014
3287
|
- config/initializers/simple_form.rb
|
|
3015
3288
|
- config/initializers/storage_adapter_initializer.rb
|
|
3016
3289
|
- config/initializers/valkyrie_id_equality.rb
|
|
@@ -3029,20 +3302,30 @@ files:
|
|
|
3029
3302
|
- config/locales/simple_form.pt-BR.yml
|
|
3030
3303
|
- config/locales/simple_form.zh.yml
|
|
3031
3304
|
- config/metadata/basic_metadata.yaml
|
|
3305
|
+
- config/metadata/batch_edit_metadata.yaml
|
|
3032
3306
|
- config/metadata/core_metadata.yaml
|
|
3033
3307
|
- config/metadata/file_set_metadata.yaml
|
|
3034
3308
|
- config/metadata/hyrax_internal_metadata.yaml
|
|
3309
|
+
- config/metadata/redirects.yaml
|
|
3310
|
+
- config/metadata_profiles/m3_json_schema.json
|
|
3311
|
+
- config/metadata_profiles/m3_profile.yaml
|
|
3035
3312
|
- config/routes.rb
|
|
3036
3313
|
- config/schema_org.yml
|
|
3037
3314
|
- db/seeds.rb
|
|
3315
|
+
- docker-compose-allinson.yml
|
|
3038
3316
|
- docker-compose-dassie.yml
|
|
3039
3317
|
- docker-compose-koppie.yml
|
|
3040
3318
|
- docker-compose-sirenia.yml
|
|
3041
3319
|
- docker-compose.yml
|
|
3042
3320
|
- documentation/MAINTENANCE.md
|
|
3321
|
+
- documentation/copy_permalink.md
|
|
3043
3322
|
- documentation/developing-your-hyrax-based-app.md
|
|
3323
|
+
- documentation/file-ingest-characterization.md
|
|
3324
|
+
- documentation/flexible_metadata.md
|
|
3325
|
+
- documentation/forms/field_behaviors.md
|
|
3044
3326
|
- documentation/legacyREADME.md
|
|
3045
3327
|
- documentation/note-about-versions.md
|
|
3328
|
+
- documentation/redirects.md
|
|
3046
3329
|
- hyrax.gemspec
|
|
3047
3330
|
- karma.conf.js
|
|
3048
3331
|
- lib/freyja.rb
|
|
@@ -3071,6 +3354,12 @@ files:
|
|
|
3071
3354
|
- lib/generators/hyrax/collection_resource/templates/collection_spec.rb.erb
|
|
3072
3355
|
- lib/generators/hyrax/config_generator.rb
|
|
3073
3356
|
- lib/generators/hyrax/health_check_generator.rb
|
|
3357
|
+
- lib/generators/hyrax/iiif_viewer/USAGE
|
|
3358
|
+
- lib/generators/hyrax/iiif_viewer/iiif_viewer_generator.rb
|
|
3359
|
+
- lib/generators/hyrax/iiif_viewer/templates/_clover.html.erb
|
|
3360
|
+
- lib/generators/hyrax/iiif_viewer/templates/clover/clover.css
|
|
3361
|
+
- lib/generators/hyrax/iiif_viewer/templates/clover/clover.html
|
|
3362
|
+
- lib/generators/hyrax/iiif_viewer/templates/clover/clover.js
|
|
3074
3363
|
- lib/generators/hyrax/install_generator.rb
|
|
3075
3364
|
- lib/generators/hyrax/listeners_generator.rb
|
|
3076
3365
|
- lib/generators/hyrax/models_generator.rb
|
|
@@ -3083,6 +3372,7 @@ files:
|
|
|
3083
3372
|
- lib/generators/hyrax/templates/app/listeners/hyrax_listener.rb
|
|
3084
3373
|
- lib/generators/hyrax/templates/app/models/collection.rb
|
|
3085
3374
|
- lib/generators/hyrax/templates/app/models/file_set.rb
|
|
3375
|
+
- lib/generators/hyrax/templates/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder
|
|
3086
3376
|
- lib/generators/hyrax/templates/catalog_controller.rb
|
|
3087
3377
|
- lib/generators/hyrax/templates/config/action_dispatch_http_upload_monkey_patch.rb
|
|
3088
3378
|
- lib/generators/hyrax/templates/config/analytics.yml
|
|
@@ -3170,6 +3460,10 @@ files:
|
|
|
3170
3460
|
- lib/generators/hyrax/templates/db/migrate/20230803165135_change_work_id_to_string.rb.erb
|
|
3171
3461
|
- lib/generators/hyrax/templates/db/migrate/20230808102105_add_indices_to_hyrax_counter_metrics.rb.erb
|
|
3172
3462
|
- lib/generators/hyrax/templates/db/migrate/20230821153635_add_fields_to_counter_metric.rb.erb
|
|
3463
|
+
- lib/generators/hyrax/templates/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb.erb
|
|
3464
|
+
- lib/generators/hyrax/templates/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb.erb
|
|
3465
|
+
- lib/generators/hyrax/templates/db/migrate/20260430000001_create_hyrax_redirect_paths.rb.erb
|
|
3466
|
+
- lib/generators/hyrax/templates/db/migrate/20260521003627_add_additional_redirect_info.rb.erb
|
|
3173
3467
|
- lib/generators/hyrax/templates/db/seeds.rb
|
|
3174
3468
|
- lib/generators/hyrax/templates/hyrax.scss
|
|
3175
3469
|
- lib/generators/hyrax/templates/hyrax_helper.rb
|
|
@@ -3232,6 +3526,7 @@ files:
|
|
|
3232
3526
|
- lib/hyrax/controlled_vocabulary/importer/downloader.rb
|
|
3233
3527
|
- lib/hyrax/controlled_vocabulary/importer/language.rb
|
|
3234
3528
|
- lib/hyrax/controller_resource.rb
|
|
3529
|
+
- lib/hyrax/deprecation.rb
|
|
3235
3530
|
- lib/hyrax/engine.rb
|
|
3236
3531
|
- lib/hyrax/errors.rb
|
|
3237
3532
|
- lib/hyrax/event_store.rb
|
|
@@ -3304,6 +3599,7 @@ files:
|
|
|
3304
3599
|
- lib/hyrax/specs/shared_specs/identifiers.rb
|
|
3305
3600
|
- lib/hyrax/specs/shared_specs/indexers.rb
|
|
3306
3601
|
- lib/hyrax/specs/shared_specs/metadata.rb
|
|
3602
|
+
- lib/hyrax/specs/shared_specs/simple_work.rb
|
|
3307
3603
|
- lib/hyrax/specs/shared_specs/workflow_method.rb
|
|
3308
3604
|
- lib/hyrax/specs/spy_listener.rb
|
|
3309
3605
|
- lib/hyrax/transactions.rb
|
|
@@ -3323,6 +3619,8 @@ files:
|
|
|
3323
3619
|
- lib/hyrax/transactions/steps/add_to_parent.rb
|
|
3324
3620
|
- lib/hyrax/transactions/steps/apply_collection_type_permissions.rb
|
|
3325
3621
|
- lib/hyrax/transactions/steps/apply_permission_template.rb
|
|
3622
|
+
- lib/hyrax/transactions/steps/apply_permission_template_on_update.rb
|
|
3623
|
+
- lib/hyrax/transactions/steps/apply_workflow_on_admin_set_change.rb
|
|
3326
3624
|
- lib/hyrax/transactions/steps/change_depositor.rb
|
|
3327
3625
|
- lib/hyrax/transactions/steps/check_for_default_admin_set.rb
|
|
3328
3626
|
- lib/hyrax/transactions/steps/check_for_empty_admin_set.rb
|
|
@@ -3335,6 +3633,7 @@ files:
|
|
|
3335
3633
|
- lib/hyrax/transactions/steps/file_metadata_delete.rb
|
|
3336
3634
|
- lib/hyrax/transactions/steps/remove_file_set_from_work.rb
|
|
3337
3635
|
- lib/hyrax/transactions/steps/remove_from_membership.rb
|
|
3636
|
+
- lib/hyrax/transactions/steps/remove_redirect_paths.rb
|
|
3338
3637
|
- lib/hyrax/transactions/steps/save.rb
|
|
3339
3638
|
- lib/hyrax/transactions/steps/save_access_control.rb
|
|
3340
3639
|
- lib/hyrax/transactions/steps/save_collection_banner.rb
|
|
@@ -3345,6 +3644,7 @@ files:
|
|
|
3345
3644
|
- lib/hyrax/transactions/steps/set_uploaded_date_unless_present.rb
|
|
3346
3645
|
- lib/hyrax/transactions/steps/set_user_as_creator.rb
|
|
3347
3646
|
- lib/hyrax/transactions/steps/set_user_as_depositor.rb
|
|
3647
|
+
- lib/hyrax/transactions/steps/sync_redirect_paths.rb
|
|
3348
3648
|
- lib/hyrax/transactions/steps/update_work_members.rb
|
|
3349
3649
|
- lib/hyrax/transactions/steps/validate.rb
|
|
3350
3650
|
- lib/hyrax/transactions/transaction.rb
|
|
@@ -3364,6 +3664,7 @@ files:
|
|
|
3364
3664
|
- lib/tasks/hyrax.rake
|
|
3365
3665
|
- lib/tasks/hyrax_user.rake
|
|
3366
3666
|
- lib/tasks/install.rake
|
|
3667
|
+
- lib/tasks/m3_profile_cleanup.rake
|
|
3367
3668
|
- lib/tasks/migrate.rake
|
|
3368
3669
|
- lib/tasks/regenerate_derivatives.rake
|
|
3369
3670
|
- lib/tasks/reindex.rake
|
|
@@ -3371,6 +3672,7 @@ files:
|
|
|
3371
3672
|
- lib/tasks/universal_viewer.rake
|
|
3372
3673
|
- lib/tasks/workflow.rake
|
|
3373
3674
|
- lib/valkyrie/indexing/null_indexing_adapter.rb
|
|
3675
|
+
- lib/valkyrie/indexing/redis_queue/indexing_adapter.rb
|
|
3374
3676
|
- lib/valkyrie/indexing/solr/indexing_adapter.rb
|
|
3375
3677
|
- lib/valkyrie/indexing_adapter.rb
|
|
3376
3678
|
- lib/wings.rb
|
|
@@ -3446,7 +3748,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
3446
3748
|
- !ruby/object:Gem::Version
|
|
3447
3749
|
version: '0'
|
|
3448
3750
|
requirements: []
|
|
3449
|
-
rubygems_version: 3.6.
|
|
3751
|
+
rubygems_version: 3.6.8
|
|
3450
3752
|
specification_version: 4
|
|
3451
3753
|
summary: Hyrax is a front-end based on the robust Samvera framework, providing a user
|
|
3452
3754
|
interface for common repository features. Hyrax offers the ability to create repository
|