├── .circleci ├── Dockerfile └── config.yml ├── .ctags ├── .envrc ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bad-tiff.md │ ├── standard-issue-template-for-devs.md │ ├── standard-issue-template-for-pos.md │ └── ui-change.md └── workflows │ ├── build-ci-docker.yml │ └── prune-containers.yml ├── .gitignore ├── .irbrc ├── .lando.yml ├── .rspec ├── .rubocop.yml ├── .solr_wrapper ├── .tool-versions ├── Capfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app ├── adapters │ ├── bagit │ │ ├── bag_exporter.rb │ │ ├── bag_factory.rb │ │ ├── bag_importer.rb │ │ ├── bag_loader.rb │ │ ├── metadata_adapter.rb │ │ ├── persister.rb │ │ ├── query_service.rb │ │ ├── storage_adapter.rb │ │ └── templates │ │ │ ├── bag-info.txt.erb │ │ │ └── bagit.txt.erb │ ├── fallback_disk_adapter.rb │ ├── gcs_fake │ │ └── storage.rb │ ├── indexing_adapter.rb │ ├── read_only_adapter.rb │ ├── retrying_disk_adapter.rb │ ├── shrine │ │ ├── null_verifier.rb │ │ └── storage │ │ │ └── versioned_google_cloud_storage.rb │ └── transaction_composite_persister.rb ├── assets │ ├── config │ │ └── manifest.js │ ├── fonts │ │ ├── Dejavu │ │ │ ├── DejaVuSansCondensed-webfont.eot │ │ │ ├── DejaVuSansCondensed-webfont.svg │ │ │ ├── DejaVuSansCondensed-webfont.ttf │ │ │ ├── DejaVuSansCondensed-webfont.woff │ │ │ ├── DejaVuSerif-webfont.eot │ │ │ ├── DejaVuSerif-webfont.svg │ │ │ ├── DejaVuSerif-webfont.ttf │ │ │ └── DejaVuSerif-webfont.woff │ │ ├── Droid_Serif │ │ │ ├── LICENSE.txt │ │ │ ├── droidserif-webfont.eot │ │ │ ├── droidserif-webfont.svg │ │ │ ├── droidserif-webfont.ttf │ │ │ ├── droidserif-webfont.woff │ │ │ └── droidserif-webfont.woff2 │ │ ├── NotoNaskhArabic │ │ │ ├── LICENSE_OFL.txt │ │ │ ├── NotoNaskhArabic-Bold.ttf │ │ │ └── NotoNaskhArabic-Regular.ttf │ │ ├── NotoSansCJK │ │ │ ├── LICENSE_OFL.txt │ │ │ ├── NotoSansCJKtc-Bold.ttf │ │ │ └── NotoSansCJKtc-Regular.ttf │ │ ├── amiri │ │ │ ├── OFL.txt │ │ │ ├── amiri-bold.ttf │ │ │ └── amiri-regular.ttf │ │ ├── glyphicons │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── icons │ │ │ ├── pul-icons.eot │ │ │ ├── pul-icons.svg │ │ │ ├── pul-icons.ttf │ │ │ └── pul-icons.woff │ │ └── work-icons │ │ │ ├── work-icons.eot │ │ │ ├── work-icons.svg │ │ │ ├── work-icons.ttf │ │ │ └── work-icons.woff │ ├── images │ │ ├── .keep │ │ ├── authenticated_visibility.png │ │ ├── authenticated_visibility_white.png │ │ ├── default.png │ │ ├── default_thumbnail.png │ │ ├── default_vol.png │ │ ├── down-arrow.svg │ │ ├── facebook.png │ │ ├── facebook.svg │ │ ├── favicon.ico │ │ ├── folder.png │ │ ├── friends.png │ │ ├── friends.svg │ │ ├── govdocs.png │ │ ├── govdocs.svg │ │ ├── health-report-graphic.svg │ │ ├── library_full_logo.png │ │ ├── library_full_logo.svg │ │ ├── nope.png │ │ ├── open_visibility.png │ │ ├── pu.png │ │ ├── pu.svg │ │ ├── pul_logo_long.png │ │ ├── restricted_visibility.png │ │ ├── twitter.png │ │ └── twitter.svg │ ├── javascripts │ │ ├── application.js │ │ ├── bootstrap_select_dropdown.js │ │ ├── cable.js │ │ ├── channels │ │ │ └── .keep │ │ ├── datatables.js │ │ ├── ephemera_sort_title.js │ │ ├── form │ │ │ └── mutex.js │ │ └── rights_note.js │ └── stylesheets │ │ ├── abstractions │ │ └── mixins.scss │ │ ├── application.scss │ │ ├── base │ │ └── typography.scss │ │ ├── components │ │ ├── alert_inline.scss │ │ ├── badge.scss │ │ ├── batch_upload.scss │ │ ├── bounding_box.scss │ │ ├── breadcrumb.scss │ │ ├── bulk_edit.scss │ │ ├── bulk_ingest.scss │ │ ├── catalog.scss │ │ ├── datepicker.scss │ │ ├── facets.scss │ │ ├── file_manager.scss │ │ ├── fileupload.scss │ │ ├── flash.scss │ │ ├── font-face.scss │ │ ├── footer.scss │ │ ├── form.scss │ │ ├── header.scss │ │ ├── inputs.scss │ │ ├── pagination.scss │ │ ├── pdf.scss │ │ ├── positioning.scss │ │ ├── problematic_resources.scss │ │ ├── rtl.scss │ │ ├── select_box.scss │ │ ├── show.scss │ │ ├── sorting.scss │ │ ├── structure_editor.scss │ │ ├── tabs.scss │ │ ├── thumbnail.scss │ │ ├── viewer.scss │ │ ├── vocab.scss │ │ ├── vue_select.scss │ │ └── welcome_page.scss │ │ ├── icons │ │ ├── glyphicons.scss │ │ ├── icons.scss │ │ └── variables.scss │ │ ├── variables │ │ ├── bootstrap.scss │ │ ├── breaks.scss │ │ ├── colors.scss │ │ ├── typography.scss │ │ └── visibility_widget.scss │ │ └── viewer.scss ├── change_set_persisters │ ├── change_set_persister.rb │ └── change_set_persister │ │ ├── append_to_collection.rb │ │ ├── append_to_parent.rb │ │ ├── apply_auth_token.rb │ │ ├── apply_remote_metadata.rb │ │ ├── apply_visibility_by_date.rb │ │ ├── cache_parent_id.rb │ │ ├── characterize.rb │ │ ├── cleanup_deleted_files.rb │ │ ├── cleanup_files.rb │ │ ├── cleanup_membership.rb │ │ ├── cleanup_mosaic.rb │ │ ├── cleanup_pdf_derivatives.rb │ │ ├── cleanup_pdfs.rb │ │ ├── cleanup_preservation.rb │ │ ├── cleanup_structure.rb │ │ ├── cleanup_terms.rb │ │ ├── clear_remote_metadata.rb │ │ ├── create_deletion_marker.rb │ │ ├── create_file.rb │ │ ├── create_file │ │ └── factory.rb │ │ ├── create_proxy_file_sets.rb │ │ ├── delete_auth_token.rb │ │ ├── delete_members.rb │ │ ├── delete_referenced.rb │ │ ├── extract_archival_collection_code.rb │ │ ├── generate_mosaic.rb │ │ ├── ingest_bag.rb │ │ ├── mint_identifier.rb │ │ ├── populate_published_at.rb │ │ ├── preserve_resource.rb │ │ ├── propagate_ocr_language.rb │ │ ├── propagate_visibility_and_state.rb │ │ ├── publish_message.rb │ │ ├── reindex_children_on_state.rb │ │ ├── reindex_collection_members.rb │ │ ├── remove_file_metadata.rb │ │ ├── remove_from_collection.rb │ │ ├── reorganize_collection.rb │ │ ├── restore_from_deletion_markers.rb │ │ ├── sync_resource.rb │ │ ├── update_aspace_dao.rb │ │ ├── update_auth_token.rb │ │ ├── update_cloud_file_permissions.rb │ │ └── update_ocr.rb ├── change_sets │ ├── archival_media_collection_change_set.rb │ ├── boxless_ephemera_folder_change_set.rb │ ├── caption_change_set.rb │ ├── cdl │ │ ├── resource_change_set.rb │ │ └── resource_charge_list_change_set.rb │ ├── change_set.rb │ ├── change_set_workflow.rb │ ├── collection_change_set.rb │ ├── concerns │ │ ├── date_range_property.rb │ │ ├── geo_change_set_properties.rb │ │ ├── remote_metadata_property.rb │ │ └── visibility_property.rb │ ├── date_range_change_set.rb │ ├── deletion_marker_change_set.rb │ ├── ephemera_box_change_set.rb │ ├── ephemera_field_change_set.rb │ ├── ephemera_folder_change_set.rb │ ├── ephemera_folder_change_set_base.rb │ ├── ephemera_project_change_set.rb │ ├── ephemera_term_change_set.rb │ ├── ephemera_vocabulary_change_set.rb │ ├── event_change_set.rb │ ├── file_set_change_set.rb │ ├── numismatics │ │ ├── accession_change_set.rb │ │ ├── artist_change_set.rb │ │ ├── attribute_change_set.rb │ │ ├── citation_change_set.rb │ │ ├── coin_change_set.rb │ │ ├── firm_change_set.rb │ │ ├── issue_change_set.rb │ │ ├── loan_change_set.rb │ │ ├── monogram_change_set.rb │ │ ├── note_change_set.rb │ │ ├── person_change_set.rb │ │ ├── place_change_set.rb │ │ ├── provenance_change_set.rb │ │ ├── reference_change_set.rb │ │ └── subject_change_set.rb │ ├── playlist_change_set.rb │ ├── preservation_object_change_set.rb │ ├── proxy_file_set_change_set.rb │ ├── raster_resource_change_set.rb │ ├── recording_change_set.rb │ ├── scanned_map_change_set.rb │ ├── scanned_resource_change_set.rb │ ├── selene_resource_change_set.rb │ ├── simple_change_set.rb │ ├── template_change_set.rb │ ├── vector_resource_change_set.rb │ ├── video_file_set_change_set.rb │ └── workflow_note_change_set.rb ├── channels │ ├── application_cable │ │ ├── channel.rb │ │ └── connection.rb │ └── generate_file_notification_channel.rb ├── characterization_services │ ├── default_characterization_service.rb │ ├── external_metadata_characterization_service.rb │ ├── gdal_characterization_service.rb │ ├── geo_characterization_service.rb │ ├── imagemagick_characterization_service.rb │ ├── mediainfo_characterization_service.rb │ ├── null_characterization_service.rb │ ├── pdf_characterization_service.rb │ ├── scanned_map_characterization_service.rb │ └── tika_file_characterization_service.rb ├── components │ ├── breadcrumb_component.html.erb │ └── breadcrumb_component.rb ├── controllers │ ├── application_controller.rb │ ├── auth_tokens_controller.rb │ ├── bulk_edit_controller.rb │ ├── bulk_ingest_controller.rb │ ├── catalog_controller.rb │ ├── cdl │ │ └── cdl_controller.rb │ ├── collections_controller.rb │ ├── concerns │ │ ├── geo_resource_controller.rb │ │ ├── geoblacklight_document_controller.rb │ │ ├── orangelight_document_controller.rb │ │ ├── pdfable.rb │ │ └── token_auth.rb │ ├── deletion_markers_controller.rb │ ├── downloads_controller.rb │ ├── ephemera_boxes_controller.rb │ ├── ephemera_fields_controller.rb │ ├── ephemera_folders_controller.rb │ ├── ephemera_projects_controller.rb │ ├── ephemera_terms_controller.rb │ ├── ephemera_vocabularies_controller.rb │ ├── file_browser │ │ └── disk_controller.rb │ ├── file_metadata_controller.rb │ ├── file_sets_controller.rb │ ├── fixity_dashboard_controller.rb │ ├── graphql_controller.rb │ ├── manifests_controller.rb │ ├── nomisma_documents_controller.rb │ ├── numismatics │ │ ├── accessions_controller.rb │ │ ├── coins_controller.rb │ │ ├── firms_controller.rb │ │ ├── issues_controller.rb │ │ ├── monograms_controller.rb │ │ ├── people_controller.rb │ │ ├── places_controller.rb │ │ └── references_controller.rb │ ├── numismatics_dashboard_controller.rb │ ├── oai_controller.rb │ ├── ocr_requests_controller.rb │ ├── playlists_controller.rb │ ├── proxy_file_sets_controller.rb │ ├── raster_resources_controller.rb │ ├── reports_controller.rb │ ├── resources_controller.rb │ ├── scanned_maps_controller.rb │ ├── scanned_resources_controller.rb │ ├── search_history_controller.rb │ ├── templates_controller.rb │ ├── tile_metadata_controller.rb │ ├── users │ │ └── omniauth_callbacks_controller.rb │ ├── users_controller.rb │ ├── vector_resources_controller.rb │ └── viewer_controller.rb ├── decorators │ ├── application_decorator.rb │ ├── archival_media_collection_decorator.rb │ ├── collection_decorator.rb │ ├── date_range_decorator.rb │ ├── deletion_marker_decorator.rb │ ├── ephemera_box_decorator.rb │ ├── ephemera_field_decorator.rb │ ├── ephemera_folder_decorator.rb │ ├── ephemera_project_decorator.rb │ ├── ephemera_term_decorator.rb │ ├── ephemera_vocabulary_decorator.rb │ ├── event_decorator.rb │ ├── file_set_decorator.rb │ ├── geoblacklight_metadata_decorator.rb │ ├── index_collection_decorator.rb │ ├── media_info_tracks_decorator.rb │ ├── numismatics │ │ ├── accession_decorator.rb │ │ ├── artist_decorator.rb │ │ ├── attribute_decorator.rb │ │ ├── citation_decorator.rb │ │ ├── coin_decorator.rb │ │ ├── firm_decorator.rb │ │ ├── issue_decorator.rb │ │ ├── loan_decorator.rb │ │ ├── monogram_decorator.rb │ │ ├── note_decorator.rb │ │ ├── person_decorator.rb │ │ ├── place_decorator.rb │ │ ├── provenance_decorator.rb │ │ ├── reference_decorator.rb │ │ └── subject_decorator.rb │ ├── playlist_decorator.rb │ ├── preservation_object_decorator.rb │ ├── proxy_file_set_decorator.rb │ ├── raster_resource_decorator.rb │ ├── scanned_map_decorator.rb │ ├── scanned_resource_decorator.rb │ ├── structure_decorator.rb │ ├── template_decorator.rb │ ├── valkyrie │ │ └── resource_decorator.rb │ ├── vector_resource_decorator.rb │ └── workflow_note_decorator.rb ├── derivative_services │ ├── av_derivative_service.rb │ ├── default_derivative_service.rb │ ├── external_metadata_derivative_service.rb │ ├── geo_derivatives.rb │ ├── geo_derivatives │ │ ├── processors │ │ │ ├── base_geo_processor.rb │ │ │ ├── gdal.rb │ │ │ ├── image.rb │ │ │ ├── ogr.rb │ │ │ ├── raster.rb │ │ │ ├── raster │ │ │ │ ├── aig.rb │ │ │ │ ├── base.rb │ │ │ │ ├── dem.rb │ │ │ │ └── info.rb │ │ │ ├── rendering.rb │ │ │ ├── tippecanoe.rb │ │ │ ├── vector.rb │ │ │ ├── vector │ │ │ │ ├── base.rb │ │ │ │ ├── info.rb │ │ │ │ └── shapefile.rb │ │ │ └── zip.rb │ │ └── runners │ │ │ ├── raster_derivatives.rb │ │ │ └── vector_derivatives.rb │ ├── hocr_derivative_service.rb │ ├── image_derivative_service.rb │ ├── jp2_creator.rb │ ├── pdf_derivative_service.rb │ ├── raster_resource_derivative_service.rb │ ├── scanned_map_derivative_service.rb │ ├── thumbnail_derivative_service.rb │ ├── vector_resource_derivative_service.rb │ └── vips_derivative_service.rb ├── document_presenters │ ├── figgy_index_presenter.rb │ └── valkyrie_show_presenter.rb ├── exporters │ └── hathi │ │ ├── content_package.rb │ │ ├── submission_information_package.rb │ │ └── templates │ │ └── meta.yml.erb ├── graphql │ ├── figgy_schema.rb │ ├── mutations │ │ ├── .keep │ │ ├── base_mutation.rb │ │ └── update_resource.rb │ └── types │ │ ├── base_enum.rb │ │ ├── base_input_object.rb │ │ ├── base_interface.rb │ │ ├── base_object.rb │ │ ├── base_union.rb │ │ ├── embed_type.rb │ │ ├── ephemera_folder_type.rb │ │ ├── file_set_type.rb │ │ ├── mutation_type.rb │ │ ├── notice_type.rb │ │ ├── numismatics │ │ ├── coin_type.rb │ │ ├── issue_type.rb │ │ └── monogram_type.rb │ │ ├── playlist_type.rb │ │ ├── proxy_file_set_type.rb │ │ ├── query_type.rb │ │ ├── raster_resource_type.rb │ │ ├── resource.rb │ │ ├── scanned_map_type.rb │ │ ├── scanned_resource_type.rb │ │ ├── thumbnail.rb │ │ ├── vector_resource_type.rb │ │ └── viewing_direction_enum.rb ├── helpers │ ├── application_helper.rb │ ├── bounding_box_helper.rb │ ├── catalog_helper.rb │ ├── edit_field_helper.rb │ ├── embargo_date_helper.rb │ ├── file_manager_helper.rb │ ├── file_proxy_helper.rb │ ├── fixity_dashboard_helper.rb │ ├── metadata_form_helper.rb │ ├── osd_modal_helper.rb │ ├── structure_helper.rb │ └── thumbnail_helper.rb ├── indexers │ ├── coin_indexer.rb │ ├── collection_indexer.rb │ ├── composite_indexer.rb │ ├── deletion_marker_indexer.rb │ ├── ephemera_box_indexer.rb │ ├── ephemera_folder_indexer.rb │ ├── facet_indexer.rb │ ├── human_readable_type_indexer.rb │ ├── imported_metadata_indexer.rb │ ├── member_of_indexer.rb │ ├── parallel_test_indexer.rb │ ├── project_indexer.rb │ ├── rights_label_indexer.rb │ ├── sorting_indexer.rb │ ├── title_indexer.rb │ └── track_indexer.rb ├── inputs │ ├── dpul_url_input.rb │ └── multi_value_input.rb ├── javascript │ ├── channels │ │ └── consumer.js │ ├── components │ │ ├── DeepZoom.vue │ │ ├── IconEndNode.vue │ │ ├── OrderManager.vue │ │ ├── OrderManagerControls.vue │ │ ├── OrderManagerFilesetForm.vue │ │ ├── OrderManagerFilesetsForm.vue │ │ ├── OrderManagerGallery.vue │ │ ├── OrderManagerResourceForm.vue │ │ ├── OrderManagerToolbar.vue │ │ ├── StructGallery.vue │ │ ├── StructManager.vue │ │ ├── StructManagerToolbar.vue │ │ ├── Tree.vue │ │ ├── ajax-select.vue │ │ ├── document_adder.vue │ │ ├── file-uploader.vue │ │ ├── file_browser │ │ │ ├── directory_contents.vue │ │ │ ├── directory_picker.vue │ │ │ ├── embedded_file_browser.vue │ │ │ ├── file_browser.vue │ │ │ └── input_path_selector.vue │ │ ├── issue_monogram.vue │ │ ├── issue_monograms.vue │ │ ├── local_uploader.vue │ │ ├── playlist_member.vue │ │ ├── playlist_members.vue │ │ └── structMixins.js │ ├── entrypoints │ │ ├── application.js │ │ └── viewer.js │ ├── figgy │ │ ├── auth_link_clipboard.js │ │ ├── auto_ingest_handler.js │ │ ├── bounding_box_selector.js │ │ ├── bulk_labeler │ │ │ ├── bulk_label.js │ │ │ ├── label_generator.js │ │ │ └── labeler_actions_manager.js │ │ ├── datatables │ │ │ └── index.js │ │ ├── derivative_form.js │ │ ├── download_notifier.js │ │ ├── field_manager.js │ │ ├── figgy_boot.js │ │ ├── file_set_form.js │ │ ├── flash.js │ │ ├── form │ │ │ ├── checklist_item.js │ │ │ ├── detect_duplicates.js │ │ │ ├── required_fields.js │ │ │ └── save_work_control.js │ │ ├── metadata_form.js │ │ ├── modal_viewer.js │ │ ├── relationships │ │ │ ├── member_resources_table.js │ │ │ └── parent_resources_table.js │ │ ├── save_and_ingest_handler.js │ │ ├── shift_selecting.js │ │ ├── structure_manager.js │ │ ├── structure_parser.js │ │ └── universal_viewer.js │ ├── helpers │ │ ├── apolloClient.js │ │ ├── mutationBuilder.js │ │ ├── resource-store-config.js │ │ └── setup_ajax_select.js │ ├── images │ │ ├── copyright.svg │ │ ├── iiif-logo.svg │ │ └── statement.png │ ├── store │ │ ├── gallery │ │ │ └── index.js │ │ ├── index.js │ │ ├── resource │ │ │ └── index.js │ │ ├── tree │ │ │ └── index.js │ │ ├── vuex │ │ │ └── actions.js │ │ └── zoom │ │ │ └── index.js │ ├── test │ │ ├── __snapshots__ │ │ │ ├── orderManager.spec.js.snap │ │ │ ├── orderManagerControls.spec.js.snap │ │ │ ├── orderManagerFilesetForm.spec.js.snap │ │ │ ├── orderManagerFilesetsForm.spec.js.snap │ │ │ ├── orderManagerResourceForm.spec.js.snap │ │ │ └── orderManagerToolbar.spec.js.snap │ │ ├── deepZoom.js │ │ ├── download_notifier.spec.js │ │ ├── file_browser │ │ │ ├── directory_contents.spec.js │ │ │ ├── directory_picker.spec.js │ │ │ ├── embedded_file_browser.spec.js │ │ │ ├── file_browser.spec.js │ │ │ └── input_path_selector.spec.js │ │ ├── local_uploader.spec.js │ │ ├── orderManager.spec.js │ │ ├── orderManagerControls.spec.js │ │ ├── orderManagerFilesetForm.spec.js │ │ ├── orderManagerFilesetsForm.spec.js │ │ ├── orderManagerResourceForm.spec.js │ │ ├── orderManagerToolbar.spec.js │ │ ├── resource.spec.js │ │ ├── setup.js │ │ ├── structManager.spec.js │ │ ├── structManagerToolbar.spec.js │ │ ├── tree.spec.js │ │ └── viewer │ │ │ ├── cdl_timer.spec.js │ │ │ ├── leaflet_viewer.spec.js │ │ │ └── uv_manager.spec.js │ ├── utils │ │ └── page-label-generator │ │ │ └── index.js │ └── viewer │ │ ├── cdl_timer.js │ │ ├── leaflet_viewer.js │ │ ├── tab_manager.js │ │ └── uv_manager.js ├── jobs │ ├── add_ephemera_to_collection_job.rb │ ├── application_job.rb │ ├── box_boxless_folders_job.rb │ ├── bulk_update_job.rb │ ├── catalog_update_job.rb │ ├── cdl │ │ └── pdf_ingest_job.rb │ ├── characterization_job.rb │ ├── clean_dead_queues_job.rb │ ├── clean_deleted_subject_job.rb │ ├── clean_guest_users_job.rb │ ├── clean_searches_job.rb │ ├── cleanup_files_job.rb │ ├── cloud_fixity_job.rb │ ├── create_derivatives_job.rb │ ├── create_ocr_request_job.rb │ ├── delete_archival_collection_job.rb │ ├── delete_member_job.rb │ ├── delete_resource_job.rb │ ├── export_bag_job.rb │ ├── export_collection_pdf_job.rb │ ├── export_files_job.rb │ ├── export_hathi_sip_job.rb │ ├── export_pdf_job.rb │ ├── extract_archival_collection_code_job.rb │ ├── generate_checksum_job.rb │ ├── generate_pdf_job.rb │ ├── generate_pyramidal_tiff_job.rb │ ├── import_bag_job.rb │ ├── ingest_archival_media_bag_job.rb │ ├── ingest_ephemera_csv_job.rb │ ├── ingest_ephemera_job.rb │ ├── ingest_folder_job.rb │ ├── ingest_folders_job.rb │ ├── ingest_gnib_mods_job.rb │ ├── ingest_intermediate_file_job.rb │ ├── ingest_map_folder_job.rb │ ├── ingest_mets_job.rb │ ├── ingest_moscow_mods_job.rb │ ├── ingest_ukrainian_ephemera_mods_job.rb │ ├── local_fixity_job.rb │ ├── missing_thumbnail_job.rb │ ├── mosaic_job.rb │ ├── nomisma_job.rb │ ├── pdf_ocr_job.rb │ ├── poster_ingester_job.rb │ ├── preserve_children_job.rb │ ├── preserve_resource_job.rb │ ├── recharacterize_job.rb │ ├── refresh_archival_collection_job.rb │ ├── refresh_remote_metadata_job.rb │ ├── regenerate_derivatives_job.rb │ ├── repair_cloud_fixity_job.rb │ ├── repair_local_fixity_job.rb │ ├── reprocess_mets_job.rb │ ├── restore_from_deletion_marker_job.rb │ ├── run_ocr_job.rb │ ├── server_upload_job.rb │ ├── update_cico_ids_job.rb │ └── update_dao_job.rb ├── mailers │ ├── application_mailer.rb │ ├── bulk_update_mailer.rb │ ├── cdl │ │ ├── complete_mailer.rb │ │ └── hold_mailer.rb │ └── collections_mailer.rb ├── models │ ├── ability.rb │ ├── access_controls │ │ └── access_right.rb │ ├── application_record.rb │ ├── archival_media_bag_parser.rb │ ├── auth_token.rb │ ├── base_workflow.rb │ ├── blacklight_iiif_search │ │ └── iiif_search.rb │ ├── book_workflow.rb │ ├── box_workflow.rb │ ├── cdl │ │ ├── charged_item.rb │ │ ├── hold.rb │ │ └── resource_charge_list.rb │ ├── collection.rb │ ├── concerns │ │ ├── blacklight_iiif_search │ │ │ └── annotation_behavior.rb │ │ ├── linked_data.rb │ │ └── linked_data │ │ │ ├── linked_collection.rb │ │ │ ├── linked_date_range.rb │ │ │ ├── linked_ephemera_folder.rb │ │ │ ├── linked_ephemera_term.rb │ │ │ ├── linked_ephemera_vocabulary.rb │ │ │ ├── linked_imported_resource.rb │ │ │ ├── linked_resource.rb │ │ │ ├── linked_simple_resource.rb │ │ │ ├── linked_vocabulary_base.rb │ │ │ └── literal.rb │ ├── controlled_vocabulary.rb │ ├── date_range.rb │ ├── deletion_marker.rb │ ├── draft_complete_workflow.rb │ ├── ephemera_box.rb │ ├── ephemera_field.rb │ ├── ephemera_folder.rb │ ├── ephemera_project.rb │ ├── ephemera_term.rb │ ├── ephemera_vocabulary.rb │ ├── event.rb │ ├── file_set.rb │ ├── folder_data_source.rb │ ├── folder_workflow.rb │ ├── geo_workflow.rb │ ├── iiif_search_builder.rb │ ├── index_collection.rb │ ├── ingestable_audio_file.rb │ ├── ingestable_file.rb │ ├── mets_document.rb │ ├── mets_document │ │ ├── factory.rb │ │ └── mods_document.rb │ ├── mets_structure.rb │ ├── name_with_place.rb │ ├── nomisma_document.rb │ ├── numismatics │ │ ├── accession.rb │ │ ├── artist.rb │ │ ├── attribute.rb │ │ ├── citation.rb │ │ ├── coin.rb │ │ ├── firm.rb │ │ ├── issue.rb │ │ ├── loan.rb │ │ ├── monogram.rb │ │ ├── note.rb │ │ ├── person.rb │ │ ├── place.rb │ │ ├── provenance.rb │ │ ├── reference.rb │ │ └── subject.rb │ ├── oai │ │ └── figgy │ │ │ ├── marc21.rb │ │ │ ├── oai_wrapper.rb │ │ │ ├── provider.rb │ │ │ └── valkyrie_provider_model.rb │ ├── ocr_request.rb │ ├── orangelight_coin_builder.rb │ ├── pending_upload.rb │ ├── playlist.rb │ ├── preservation_object.rb │ ├── proxy_file_set.rb │ ├── pudl3_mvw_mets_document.rb │ ├── raster_resource.rb │ ├── remote_record.rb │ ├── remote_record │ │ ├── catalog_record.rb │ │ └── pulfa_record.rb │ ├── report.rb │ ├── resource.rb │ ├── scanned_map.rb │ ├── scanned_resource.rb │ ├── schema │ │ ├── common.rb │ │ ├── geo.rb │ │ ├── iiif.rb │ │ └── marc_relators.rb │ ├── search_builder.rb │ ├── solr_document.rb │ ├── template.rb │ ├── user.rb │ ├── vector_resource.rb │ ├── workflow_note.rb │ └── workflow_registry.rb ├── monitors │ ├── check_overrides │ │ └── redis.rb │ ├── file_watcher_status.rb │ ├── mount_status.rb │ ├── rabbit_mq_status.rb │ ├── smtp_status.rb │ └── solr_status.rb ├── nested_resources │ ├── ark_with_title.rb │ ├── file_metadata.rb │ ├── grouping.rb │ ├── imported_metadata.rb │ ├── labeled_uri.rb │ ├── multi_checksum.rb │ ├── structure.rb │ ├── structure_node.rb │ └── title_with_subtitle.rb ├── presenters │ ├── permission_badge.rb │ └── workflow_actions_presenter.rb ├── queries │ ├── all_mms_resources_query.rb │ ├── count_all_of_model.rb │ ├── count_inverse_relationship.rb │ ├── count_members.rb │ ├── deep_cloud_fixity_count.rb │ ├── deep_local_fixity_count.rb │ ├── file_sets_sorted_by_updated.rb │ ├── find_by_local_identifier.rb │ ├── find_by_property.rb │ ├── find_by_source_metadata_identifier.rb │ ├── find_deep_children_with_property.rb │ ├── find_deep_errored_file_sets.rb │ ├── find_deep_preservation_object_count.rb │ ├── find_ephemera_term_by_label.rb │ ├── find_ephemera_vocabulary_by_label.rb │ ├── find_facet_values.rb │ ├── find_fixity_events.rb │ ├── find_highest_value.rb │ ├── find_id_usage_by_model.rb │ ├── find_identifiers_to_reconcile.rb │ ├── find_ids_with_property_not_empty.rb │ ├── find_invalid_thumbnail_resources.rb │ ├── find_many_by_property.rb │ ├── find_members_with_relationship.rb │ ├── find_missing_thumbnail_resources.rb │ ├── find_never_preserved_child_ids.rb │ ├── find_persisted_member_ids.rb │ ├── find_project_folders.rb │ ├── find_random_resources_by_model.rb │ ├── find_resources_without_members.rb │ ├── find_saved_ids.rb │ ├── find_uncaptioned_members.rb │ ├── find_video_members.rb │ ├── latest_member_timestamp.rb │ ├── memory_efficient_all_query.rb │ ├── mosaic_file_set_query.rb │ ├── mosaic_fingerprint_query.rb │ ├── paged_all_query.rb │ ├── playlists_from_recording.rb │ ├── pluck_earliest_updated_at.rb │ └── updated_archival_resources.rb ├── services │ ├── add_ephemera_to_collection.rb │ ├── ark_mismatch_reporter.rb │ ├── aspace │ │ ├── archival_object.rb │ │ ├── client.rb │ │ └── digital_object.rb │ ├── auto_completer.rb │ ├── box_mover.rb │ ├── bulk_edit_service.rb │ ├── bulk_ingest_intermediate_service.rb │ ├── bulk_ingest_service.rb │ ├── bulk_ingest_service │ │ ├── bulk_file_path_converter.rb │ │ └── bulk_file_path_converter │ │ │ └── bulk_ingest_file.rb │ ├── bulk_update_remote_metadata_service.rb │ ├── cdl │ │ ├── automatic_completer.rb │ │ ├── automatic_ingester.rb │ │ ├── bulk_hold_processor.rb │ │ ├── charge_manager.rb │ │ ├── eligible_item_service.rb │ │ ├── event_logging.rb │ │ └── status.rb │ ├── cicognara_csv.rb │ ├── cicognara_marc.rb │ ├── cloud_file_permissions_service.rb │ ├── cloud_fixity.rb │ ├── dao_updater.rb │ ├── deletion_marker_service.rb │ ├── dpul_success_dashboard_report_generator.rb │ ├── embed.rb │ ├── event_generator.rb │ ├── event_generator │ │ ├── composite_generator.rb │ │ ├── geoblacklight_event_generator.rb │ │ ├── manifest_event_generator.rb │ │ └── orangelight_event_generator.rb │ ├── export_service.rb │ ├── fgdc_update_service.rb │ ├── file_appender.rb │ ├── file_browser_disk_provider.rb │ ├── file_set_service.rb │ ├── fileset_fallback_repository.rb │ ├── finding_aid_id_migrator.rb │ ├── folder_json_importer.rb │ ├── geo_discovery │ │ ├── abstract_document.rb │ │ ├── document_builder.rb │ │ ├── document_builder │ │ │ ├── basic_metadata_builder.rb │ │ │ ├── composite_builder.rb │ │ │ ├── date_builder.rb │ │ │ ├── document_path.rb │ │ │ ├── iiif_builder.rb │ │ │ ├── layer_info_builder.rb │ │ │ ├── references_builder.rb │ │ │ ├── relationship_builder.rb │ │ │ ├── rights_builder.rb │ │ │ ├── slug_builder.rb │ │ │ ├── spatial_builder.rb │ │ │ └── wxs.rb │ │ └── geoblacklight_document.rb │ ├── geo_metadata_extractor.rb │ ├── geo_metadata_extractor │ │ ├── fgdc.rb │ │ └── iso19139.rb │ ├── geo_resource_reindexer.rb │ ├── geoblacklight_messaging_client.rb │ ├── identifier_service.rb │ ├── image_report_generator.rb │ ├── image_report_generator │ │ └── collection_report.rb │ ├── ingest_ephemera_csv.rb │ ├── ingest_ephemera_mods.rb │ ├── ingest_ephemera_service.rb │ ├── ingest_folder_locator.rb │ ├── ingest_vocab_service.rb │ ├── json_ingester.rb │ ├── local_fixity.rb │ ├── local_ingester.rb │ ├── manifest_builder.rb │ ├── manifest_builder │ │ ├── canvas_builder.rb │ │ ├── canvas_rendering_builder.rb │ │ ├── child_record_property_builder.rb │ │ ├── collection_manifest_service_locator.rb │ │ ├── iiif_search_builder.rb │ │ ├── image_builder.rb │ │ ├── license_builder.rb │ │ ├── logo_builder.rb │ │ ├── manifest_service_locator.rb │ │ ├── media_sequence_builder.rb │ │ ├── record_property_builder.rb │ │ ├── rendering_builder.rb │ │ ├── see_also_builder.rb │ │ ├── sequence_builder.rb │ │ ├── start_canvas_builder.rb │ │ └── thumbnail_builder.rb │ ├── manifest_builder_v3.rb │ ├── manifest_builder_v3 │ │ ├── accompanying_canvas_builder.rb │ │ ├── canvas_builder.rb │ │ ├── canvas_rendering_builder.rb │ │ ├── iiif_search_builder.rb │ │ ├── leaf_node.rb │ │ ├── leaf_structure_node.rb │ │ ├── manifest_helper.rb │ │ ├── manifest_service_locator.rb │ │ ├── nav_place_builder.rb │ │ ├── poster_canvas_builder.rb │ │ ├── provider_builder.rb │ │ ├── record_property_builder.rb │ │ ├── rendering_builder.rb │ │ ├── rights_builder.rb │ │ ├── root_node.rb │ │ ├── scanned_map_node.rb │ │ ├── see_also_builder.rb │ │ ├── structure_builder.rb │ │ ├── thumbnail_builder.rb │ │ └── top_structure.rb │ ├── marc_record_enhancer.rb │ ├── messaging_client.rb │ ├── migrations │ │ ├── accession_date_migrator.rb │ │ ├── add_cached_parent_ids_migrator.rb │ │ ├── add_preservation_object_ids_migrator.rb │ │ ├── add_published_at_migrator.rb │ │ ├── add_service_target_migrator.rb │ │ ├── cast_numismatics_integers_migrator.rb │ │ ├── child_resource_collection_migrator.rb │ │ ├── dao_migrator.rb │ │ ├── map_copyright_migrator.rb │ │ ├── metadata_represerver.rb │ │ ├── preservation_file_preserver.rb │ │ ├── remove_extra_derivatives.rb │ │ └── reset_box_thumbnails.rb │ ├── mms_report_generator.rb │ ├── mms_report_generator │ │ └── report_resource.rb │ ├── mosaic_generator.rb │ ├── nomisma.rb │ ├── nomisma │ │ └── void.rb │ ├── orangelight_document.rb │ ├── orangelight_messaging_client.rb │ ├── orangelight_reindexer.rb │ ├── pdf_generator.rb │ ├── pdf_generator │ │ ├── canvas.rb │ │ ├── canvas_downloader.rb │ │ └── cover_page_generator.rb │ ├── pdf_service.rb │ ├── persistence_adapter.rb │ ├── preservation_status_reporter.rb │ ├── preserver.rb │ ├── preserver │ │ ├── blind_importer.rb │ │ ├── blind_importer │ │ │ ├── file_metadata_adapter.rb │ │ │ └── file_metadata_adapter │ │ │ │ ├── query_service.rb │ │ │ │ └── query_service │ │ │ │ ├── blind_importer_metadata_wayfinder.rb │ │ │ │ └── file_metadata_resource.rb │ │ ├── importer.rb │ │ ├── nested_storage_path.rb │ │ └── preservation_checker.rb │ ├── recording_downloadable_migrator.rb │ ├── reindexer.rb │ ├── repair_cloud_fixity.rb │ ├── repair_local_fixity.rb │ ├── riiif_resolver.rb │ ├── tesseract.rb │ ├── tile_metadata_service.rb │ ├── valkyrie1_migrator.rb │ ├── vocabulary_service.rb │ └── with_proxy_for_object.rb ├── types │ └── types.rb ├── utils │ ├── data_seeder.rb │ ├── figgy_utils.rb │ └── user_utils.rb ├── validators │ ├── accession_date_validator.rb │ ├── auto_increment_validator.rb │ ├── bag_path_validator.rb │ ├── collection_validator.rb │ ├── deleted_file_metadata_validator.rb │ ├── embargo_date_validator.rb │ ├── member_validator.rb │ ├── parent_validator.rb │ ├── processed_validator.rb │ ├── rights_statement_validator.rb │ ├── source_metadata_identifier_or_title_validator.rb │ ├── source_metadata_identifier_validator.rb │ ├── state_validator.rb │ ├── title_validator.rb │ ├── unique_archival_media_barcode_validator.rb │ ├── unique_archival_media_component_id_validator.rb │ ├── unique_slug_validator.rb │ ├── viewing_direction_validator.rb │ ├── viewing_hint_validator.rb │ ├── vocabulary_validator.rb │ └── year_validator.rb ├── values │ ├── ark.rb │ ├── barcode.rb │ ├── coverage_point.rb │ ├── csv_report.rb │ ├── exhibit_viewer_configuration.rb │ ├── facet_item.rb │ ├── geo_coverage.rb │ ├── health_report.rb │ ├── health_report │ │ ├── cloud_fixity_check.rb │ │ ├── derivative_check.rb │ │ ├── local_fixity_check.rb │ │ └── video_caption_check.rb │ ├── hls_manifest.rb │ ├── hls_manifest │ │ ├── caption.rb │ │ └── primary.rb │ ├── in_process_or_pending.rb │ ├── manifest_key.rb │ ├── pcdm_use.rb │ ├── rights_statements.rb │ ├── slug.rb │ ├── tile_path.rb │ ├── time_period.rb │ └── viewer_configuration.rb ├── views │ ├── _members_collection_archival_media_collection.html.erb │ ├── application │ │ ├── _css_overrides.html.erb │ │ ├── _flashes.html.erb │ │ └── _javascript.html.erb │ ├── auth_tokens │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── base │ │ ├── _file_manager_actions.html.erb │ │ ├── _file_manager_derivatives.html.erb │ │ ├── _file_manager_extra_tools.html.erb │ │ ├── _file_manager_member.html.erb │ │ ├── _file_manager_members.html.erb │ │ ├── _file_manager_thumbnail.html.erb │ │ ├── _form.html.erb │ │ ├── _form_metadata.html.erb │ │ ├── _form_metadata_inner.html.erb │ │ ├── _form_progress.html.erb │ │ ├── _form_visibility_component.html.erb │ │ ├── _local_upload.html.erb │ │ ├── _pending_uploads.html.erb │ │ ├── _server_upload.html.erb │ │ ├── _structure_node.html.erb │ │ ├── edit.html.erb │ │ ├── file_manager.html.erb │ │ ├── new.html.erb │ │ ├── order_manager.html.erb │ │ ├── pdf.html.erb │ │ ├── struct_manager.html.erb │ │ └── structure.html.erb │ ├── bulk_edit │ │ ├── _start_over.html.erb │ │ └── resources_edit.html.erb │ ├── bulk_ingest │ │ └── show.html.erb │ ├── bulk_update_mailer │ │ └── update_status.html.erb │ ├── catalog │ │ ├── _admin_controls.html.erb │ │ ├── _admin_controls_default.html.erb │ │ ├── _admin_controls_deletion_marker.html.erb │ │ ├── _admin_controls_ephemera_box.html.erb │ │ ├── _admin_controls_ephemera_folder.html.erb │ │ ├── _admin_controls_ephemera_term.html.erb │ │ ├── _admin_controls_numismatic_issue.html.erb │ │ ├── _admin_controls_raster_resource.html.erb │ │ ├── _admin_controls_raster_set.html.erb │ │ ├── _admin_controls_recording.html.erb │ │ ├── _admin_controls_scanned_resource.html.erb │ │ ├── _admin_controls_vector_resource.html.erb │ │ ├── _attach_child_default.html.erb │ │ ├── _auth_link_default.html.erb │ │ ├── _bulk_edit_button.html.erb │ │ ├── _categories_default.html.erb │ │ ├── _categories_ephemera_vocabulary.html.erb │ │ ├── _deleted_resources_home.html.erb │ │ ├── _display_children_widget.html.erb │ │ ├── _display_order_manager_button.html.erb │ │ ├── _ephemera_box_home.html.erb │ │ ├── _file_detail.html.erb │ │ ├── _fixity_dashboard_home.html.erb │ │ ├── _folder_actions.html.erb │ │ ├── _health_status.html.erb │ │ ├── _health_status_check.html.erb │ │ ├── _home_text.html.erb │ │ ├── _in_process_notification_default.html.erb │ │ ├── _media_html5_player_default.html.erb │ │ ├── _member_reference_resources.html.erb │ │ ├── _member_resources.html.erb │ │ ├── _members_collection.html.erb │ │ ├── _members_default.html.erb │ │ ├── _members_ephemera_box.html.erb │ │ ├── _members_ephemera_project.html.erb │ │ ├── _members_file_set.html.erb │ │ ├── _members_issue.html.erb │ │ ├── _members_map_set.html.erb │ │ ├── _members_media_resource.html.erb │ │ ├── _members_multi_volume_work.html.erb │ │ ├── _members_playlist.html.erb │ │ ├── _members_raster_resource.html.erb │ │ ├── _members_raster_set.html.erb │ │ ├── _members_recording.html.erb │ │ ├── _members_reference.html.erb │ │ ├── _members_scanned_map.html.erb │ │ ├── _members_scanned_resource.html.erb │ │ ├── _members_simple_resource.html.erb │ │ ├── _members_vector_resource.html.erb │ │ ├── _numismatics_home.html.erb │ │ ├── _parent_breadcrumb_default.html.erb │ │ ├── _parent_breadcrumb_ephemera_term.html.erb │ │ ├── _parent_breadcrumb_ephemera_vocabulary.html.erb │ │ ├── _parent_resources_raster_resource.html.erb │ │ ├── _parent_resources_raster_set.html.erb │ │ ├── _parent_resources_scanned_map.html.erb │ │ ├── _parent_resources_vector_resource.html.erb │ │ ├── _playlists_default.html.erb │ │ ├── _related_resources.html.erb │ │ ├── _report_home.html.erb │ │ ├── _resource_attributes_default.html.erb │ │ ├── _resource_attributes_ephemera_box.html.erb │ │ ├── _resource_attributes_ephemera_project.html.erb │ │ ├── _resource_attributes_ephemera_term.html.erb │ │ ├── _resource_attributes_ephemera_vocabulary.erb │ │ ├── _resource_imported_attributes.html.erb │ │ ├── _show_header_default.html.erb │ │ ├── _show_tools.html.erb │ │ ├── _terms_default.html.erb │ │ ├── _terms_ephemera_vocabulary.html.erb │ │ ├── _thumbnail_list_default.html.erb │ │ ├── _universal_viewer_default.html.erb │ │ ├── _universal_viewer_issue.html.erb │ │ ├── _vocabulary_nav_default.html.erb │ │ ├── _vocabulary_nav_ephemera_vocabulary.html.erb │ │ ├── _work_card.html.erb │ │ ├── _work_types.html.erb │ │ ├── _work_types_archival_media_collections.html.erb │ │ ├── _work_types_collections.html.erb │ │ ├── _work_types_media_reserves.html.erb │ │ ├── _workflow_controls_default.html.erb │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── cdl │ │ ├── complete_mailer │ │ │ └── resources_completed.html.erb │ │ └── hold_mailer │ │ │ ├── _header.html.erb │ │ │ ├── hold_activated.html.erb │ │ │ └── hold_expired.html.erb │ ├── collections │ │ ├── ark_report.html.erb │ │ └── edit_fields │ │ │ └── _bag_path.html.erb │ ├── collections_mailer │ │ └── owner_report.html.erb │ ├── ephemera_boxes │ │ └── attach_drive.html.erb │ ├── ephemera_folders │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ └── edit_fields │ │ │ └── _append_id.html.erb │ ├── ephemera_projects │ │ └── index.html.erb │ ├── ephemera_terms │ │ └── index.html.erb │ ├── ephemera_vocabularies │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── errors │ │ └── not_found.html.erb │ ├── file_metadata │ │ └── _form.html.erb │ ├── fixity_dashboard │ │ ├── _cloud_fixity_table.html.erb │ │ ├── _fixity_table.html.erb │ │ └── show.html.erb │ ├── layouts │ │ ├── application.html.erb │ │ ├── blacklight │ │ │ └── base.html.erb │ │ ├── download.html.erb │ │ ├── holds │ │ │ └── mailer.html.erb │ │ ├── mailer.html.erb │ │ ├── mailer.text.erb │ │ └── viewer_layout.html.erb │ ├── nomisma_documents │ │ └── index.html.erb │ ├── numismatics │ │ ├── _form_buttons.html.erb │ │ ├── _form_metadata.html.erb │ │ ├── _form_metadata_inner.html.erb │ │ ├── _form_metadata_inner_two_fields_one_line.html.erb │ │ ├── _form_metadata_numismatics.html.erb │ │ ├── accessions │ │ │ ├── _form.html.erb │ │ │ ├── _numismatic_citation_fields.html.erb │ │ │ ├── edit_fields │ │ │ │ ├── _firm_id.html.erb │ │ │ │ └── _person_id.html.erb │ │ │ └── index.html.erb │ │ ├── coins │ │ │ ├── _file_manager_extra_tools.html.erb │ │ │ ├── _form.html.erb │ │ │ ├── _loan_fields.html.erb │ │ │ ├── _provenance_fields.html.erb │ │ │ └── edit_fields │ │ │ │ ├── _append_id.html.erb │ │ │ │ ├── _find_place_id.html.erb │ │ │ │ ├── _loan.html.erb │ │ │ │ ├── _numismatic_citation.html.erb │ │ │ │ ├── _numismatic_citation_fields.html.erb │ │ │ │ ├── _numismatic_collection.html.erb │ │ │ │ └── _provenance.html.erb │ │ ├── finds │ │ │ └── index.html.erb │ │ ├── firms │ │ │ └── index.html.erb │ │ ├── issues │ │ │ ├── _form.html.erb │ │ │ ├── _numismatic_artist_fields.html.erb │ │ │ ├── _numismatic_note_fields.html.erb │ │ │ ├── _numismatic_subject_fields.html.erb │ │ │ ├── _obverse_attribute_fields.html.erb │ │ │ ├── _reverse_attribute_fields.html.erb │ │ │ └── edit_fields │ │ │ │ ├── _color.html.erb │ │ │ │ ├── _denomination.html.erb │ │ │ │ ├── _edge.html.erb │ │ │ │ ├── _master_id.html.erb │ │ │ │ ├── _metal.html.erb │ │ │ │ ├── _numismatic_artist.html.erb │ │ │ │ ├── _numismatic_note.html.erb │ │ │ │ ├── _numismatic_place_id.html.erb │ │ │ │ ├── _numismatic_subject.html.erb │ │ │ │ ├── _object_type.html.erb │ │ │ │ ├── _obverse_attribute.html.erb │ │ │ │ ├── _reverse_attribute.html.erb │ │ │ │ ├── _ruler_id.html.erb │ │ │ │ └── _shape.html.erb │ │ ├── monograms │ │ │ └── index.html.erb │ │ ├── people │ │ │ └── index.html.erb │ │ ├── places │ │ │ └── index.html.erb │ │ └── references │ │ │ ├── edit_fields │ │ │ └── _author_id.html.erb │ │ │ └── index.html.erb │ ├── numismatics_dashboard │ │ ├── _issues_row.html.erb │ │ ├── _managed_row.html.erb │ │ └── show.html.erb │ ├── ocr_requests │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── records │ │ └── edit_fields │ │ │ ├── _append_id.html.erb │ │ │ ├── _barcode.html.erb │ │ │ ├── _caption_language.html.erb │ │ │ ├── _captions_required.html.erb │ │ │ ├── _change_set.html.erb │ │ │ ├── _content_warning.html.erb │ │ │ ├── _contributor_uids.html.erb │ │ │ ├── _coverage.html.erb │ │ │ ├── _date_range_form.html.erb │ │ │ ├── _default.html.erb │ │ │ ├── _description.html.erb │ │ │ ├── _downloadable.html.erb │ │ │ ├── _embargo_date.html.erb │ │ │ ├── _favorite_term_ids.html.erb │ │ │ ├── _featurable.html.erb │ │ │ ├── _field_name.html.erb │ │ │ ├── _file.html.erb │ │ │ ├── _firm_id.html.erb │ │ │ ├── _gbl_suppressed_override.html.erb │ │ │ ├── _genre.html.erb │ │ │ ├── _geo_state.html.erb │ │ │ ├── _geo_subject.html.erb │ │ │ ├── _geographic_origin.html.erb │ │ │ ├── _height.html.erb │ │ │ ├── _holding_location.html.erb │ │ │ ├── _language.html.erb │ │ │ ├── _master_id.html.erb │ │ │ ├── _member_of_collection_ids.html.erb │ │ │ ├── _member_of_vocabulary_id.html.erb │ │ │ ├── _nav_date.html.erb │ │ │ ├── _notice_type.html.erb │ │ │ ├── _numismatic_accession_id.html.erb │ │ │ ├── _numismatic_citation.html.erb │ │ │ ├── _numismatic_citation_fields.html.erb │ │ │ ├── _numismatic_monogram_ids.html.erb │ │ │ ├── _numismatic_place_id.html.erb │ │ │ ├── _numismatic_reference_id.html.erb │ │ │ ├── _obverse_figure.html.erb │ │ │ ├── _obverse_orientation.html.erb │ │ │ ├── _obverse_part.html.erb │ │ │ ├── _ocr_language.html.erb │ │ │ ├── _original_language_caption.html.erb │ │ │ ├── _owners.html.erb │ │ │ ├── _pdf_type.html.erb │ │ │ ├── _preservation_policy.html.erb │ │ │ ├── _publish.html.erb │ │ │ ├── _rarely_used_term_ids.html.erb │ │ │ ├── _received_date.html.erb │ │ │ ├── _recipient.html.erb │ │ │ ├── _reorganize.html.erb │ │ │ ├── _reverse_figure.html.erb │ │ │ ├── _reverse_orientation.html.erb │ │ │ ├── _reverse_part.html.erb │ │ │ ├── _rights_note.html.erb │ │ │ ├── _rights_statement.html.erb │ │ │ ├── _ruler_id.html.erb │ │ │ ├── _sender.html.erb │ │ │ ├── _service_targets.html.erb │ │ │ ├── _shipped_date.html.erb │ │ │ ├── _size.html.erb │ │ │ ├── _slug.html.erb │ │ │ ├── _source_metadata_identifier.html.erb │ │ │ ├── _spatial.html.erb │ │ │ ├── _subject.html.erb │ │ │ ├── _thumbnail_id.html.erb │ │ │ ├── _title.html.erb │ │ │ ├── _top_language.html.erb │ │ │ ├── _weight.html.erb │ │ │ └── _width.html.erb │ ├── reports │ │ ├── collection_item_and_image_count.html.erb │ │ ├── dpul_success_dashboard.html.erb │ │ ├── ephemera_data.html.erb │ │ ├── identifiers_to_reconcile.html.erb │ │ └── pulfa_ark_report.html.erb │ ├── roles │ │ └── edit.html.erb │ ├── scanned_resources │ │ ├── _recipient_fields.html.erb │ │ └── _sender_fields.html.erb │ ├── shared │ │ ├── _add_works.html.erb │ │ ├── _analytics.html.erb │ │ ├── _analytics_noscript.html.erb │ │ ├── _brand_bar.html.erb │ │ ├── _confetti.html.erb │ │ ├── _flash_message.html.erb │ │ ├── _footer.html.erb │ │ ├── _header.html.erb │ │ ├── _osd_modal.html.erb │ │ ├── _site_actions.html.erb │ │ ├── _site_search.html.erb │ │ └── _title_bar.html.erb │ ├── templates │ │ └── new.html.erb │ ├── users │ │ └── index.html.erb │ └── viewer │ │ ├── auth.html.erb │ │ ├── cdl_checkout.html.erb │ │ └── index.html.erb ├── vocabs │ └── pul_store.rb └── wayfinders │ ├── base_wayfinder.rb │ ├── collection_wayfinder.rb │ ├── ephemera_box_wayfinder.rb │ ├── ephemera_field_wayfinder.rb │ ├── ephemera_folder_wayfinder.rb │ ├── ephemera_project_wayfinder.rb │ ├── ephemera_term_wayfinder.rb │ ├── ephemera_vocabulary_wayfinder.rb │ ├── event_wayfinder.rb │ ├── file_set_wayfinder.rb │ ├── numismatics │ ├── accession_wayfinder.rb │ ├── artist_wayfinder.rb │ ├── citation_wayfinder.rb │ ├── coin_wayfinder.rb │ ├── firm_wayfinder.rb │ ├── issue_wayfinder.rb │ ├── loan_wayfinder.rb │ ├── monogram_wayfinder.rb │ ├── person_wayfinder.rb │ ├── place_wayfinder.rb │ ├── provenance_wayfinder.rb │ └── reference_wayfinder.rb │ ├── playlist_wayfinder.rb │ ├── preservation_object_wayfinder.rb │ ├── raster_resource_wayfinder.rb │ ├── scanned_map_wayfinder.rb │ ├── scanned_resource_wayfinder.rb │ ├── vector_resource_wayfinder.rb │ └── wayfinder.rb ├── architecture-decisions ├── 0001-document-architecture-decisions.md ├── 0002-queues.md ├── 0003-preservation.md ├── 0004-preservation-fixity.md ├── 0005-data-migrations.md ├── 0006-preservation-deletion-markers.md ├── 0007-pyramidal-tiffs.md ├── 0008-jpeg2000-ingest.md ├── 0009-unlinked-files.md ├── 0010-titiler-aws.md ├── 0011-resource-autocomplete.md ├── 0012-pmtiles.md └── 0013-captions-attach.md ├── babel.config.js ├── bin ├── bundle ├── ci_check_release_notes.sh ├── ci_free_tds_install.sh ├── ci_mediainfo_install.sh ├── ci_openjpeg_install.sh ├── ci_tippecanoe_install.sh ├── ci_vips_install.sh ├── delayed_job ├── first-time-setup.sh ├── fixture_regenerator ├── jetty_wait ├── mapnik_thumbnail ├── parallel_rspec_coverage ├── pdf_watcher ├── rails ├── rake ├── repo-mediaarea_1.0-20_all.deb ├── rspec ├── setup ├── setup_asdf ├── setup_credentials ├── setup_lando ├── setup_review_app ├── spring ├── update └── vite ├── browserslist ├── browserstack-logo.svg ├── cloud_fixity ├── .gcloudignore ├── .tool-versions ├── index.js ├── package.json ├── test │ ├── fixtures │ │ └── example.tif │ └── index.test.js ├── vitest.config.ts └── yarn.lock ├── config.ru ├── config ├── application.rb ├── audio_reserves │ └── recordings_course_names_massaged.csv ├── authorities │ ├── ephemera_field_name.yml │ ├── ephemera_vocabulary.yml │ ├── geo_image_formats.yml │ ├── geo_metadata_formats.yml │ ├── geo_raster_formats.yml │ ├── geo_vector_formats.yml │ ├── notices.yml │ ├── rights_statement.yml │ └── visibility.yml ├── blacklight.yml ├── boot.rb ├── cable.yml ├── config.yml ├── database.yml ├── deploy.rb ├── deploy │ ├── production.rb │ └── staging.rb ├── discovery │ └── geoblacklight-schema.json ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── fedora.yml ├── initializers │ ├── analyze_job.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── datadog.rb │ ├── devise.rb │ ├── errors.rb │ ├── ezid.rb │ ├── figgy.rb │ ├── filter_parameter_logging.rb │ ├── health_monitor.rb │ ├── honeybadger.rb │ ├── honeybadger_downtime_hook.rb │ ├── hydra_config.rb │ ├── inflections.rb │ ├── json_encoding.rb │ ├── lograge.rb │ ├── mime_types.rb │ ├── monkeypatches │ │ ├── iiif_language_map_patch.rb │ │ └── solr_adapter_parallel_tests.rb │ ├── new_framework_defaults.rb │ ├── rack_profiler.rb │ ├── redis_config.rb │ ├── riiif_initializer.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── simple_form_bootstrap.rb │ ├── tus.rb │ ├── valkyrie.rb │ └── wrap_parameters.rb ├── lando_env.rb ├── locales │ ├── blacklight.en.yml │ ├── devise.en.yml │ ├── en.yml │ └── simple_form.en.yml ├── mapnik.xml ├── puma.rb ├── read_only_mode.rb ├── redis.yml ├── role_map.yml ├── routes.rb ├── schedule.rb ├── solr.yml ├── spring.rb ├── storage.yml ├── tika-config.xml ├── valkyrie.yml ├── vite.json └── vocab │ ├── iso639-1.csv │ ├── iso639-2.csv │ ├── lae_areas.csv │ ├── lae_genres.csv │ ├── lae_subjects.csv │ ├── loc_countries.csv │ └── sae_subjects.csv ├── db ├── migrate │ ├── 20170724182739_create_delayed_jobs.rb │ ├── 20170724185401_create_searches.blacklight.rb │ ├── 20170724185402_create_bookmarks.blacklight.rb │ ├── 20170724185403_add_polymorphic_type_to_bookmarks.blacklight.rb │ ├── 20170724191226_enable_uuid_extension.valkyrie_engine.rb │ ├── 20170724191227_create_orm_resources.valkyrie_engine.rb │ ├── 20170724191228_add_model_type_to_orm_resources.valkyrie_engine.rb │ ├── 20170724191229_change_model_type_to_internal_model.valkyrie_engine.rb │ ├── 20170724191955_devise_create_users.rb │ ├── 20170724192309_add_devise_guests_to_users.rb │ ├── 20170731174240_add_cas_to_users.rb │ ├── 20170807201421_user_roles.rb │ ├── 20170831233259_create_auth_tokens.rb │ ├── 20171025174720_create_path_gin_index.valkyrie_engine.rb │ ├── 20171107160259_email_not_unique.rb │ ├── 20171204142457_create_internal_resource_index.valkyrie_engine.rb │ ├── 20180212161728_create_updated_at_index.valkyrie_engine.rb │ ├── 20180306193020_migrate_to_valkyrie1.rb │ ├── 20180810215750_add_optimistic_locking_to_orm_resources.valkyrie_engine.rb │ ├── 20181030210350_add_resource_id_to_auth_tokens.rb │ ├── 20181115195544_index_helper_function.rb │ ├── 20190102173711_auto_increment_validator_index.rb │ ├── 20200106182149_add_preservation_object_indexes.rb │ ├── 20200225213132_create_browse_everything_session_models.browse_everything_engine.rb │ ├── 20200225213133_create_browse_everything_authorization_models.browse_everything_engine.rb │ ├── 20200225213134_create_browse_everything_upload_models.browse_everything_engine.rb │ ├── 20200225213135_create_browse_everything_upload_files.browse_everything_engine.rb │ ├── 20200422192849_create_active_storage_tables.active_storage.rb │ ├── 20200423183539_add_file_attrs_upload_files.browse_everything_engine.rb │ ├── 20200608160046_create_ocr_requests.rb │ ├── 20211025213822_add_varchar_id_index_to_orm_resources.rb │ ├── 20220727213332_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20220727213333_create_active_storage_variant_records.active_storage.rb │ ├── 20221214184110_add_unique_preservation_object_index.rb │ ├── 20230119155402_add_unique_current_event_index.rb │ ├── 20230802152303_add_unique_metadata_event_index.rb │ ├── 20250123183528_substring_mms_idx.rb │ ├── 20251007184231_create_nomisma_documents.rb │ └── 20251117211722_delete_old_tables.rb ├── seeds.rb └── structure.sql ├── devbox.json ├── devbox.lock ├── docs ├── general │ ├── interesting_objects.md │ └── milestones.md ├── qa.md ├── technical │ ├── arks.md │ ├── aspace_identifiers.md │ ├── background_ingest.md │ ├── cdl.md │ ├── change_sets.md │ ├── changing_collection_slug.md │ ├── decorators.md │ ├── harvesting-figgy.md │ ├── images │ │ └── ingest-process.png │ ├── incident_scenarios │ │ ├── isilon_failure.md │ │ └── tigerdata_freeze.md │ ├── linked_data.md │ ├── migrate-lae-vocabs.md │ ├── mosaic.md │ ├── pmtiles.md │ ├── preservation │ │ ├── audits.md │ │ ├── deletion.md │ │ ├── file_repair.md │ │ ├── google_cloud_storage.md │ │ ├── google_pub_sub.md │ │ ├── implementation_diagram.md │ │ └── pub_sub.md │ ├── storage-locations.md │ ├── troubleshooting.md │ └── viewer-flow.md ├── titiler.md ├── titiler_sequence_diagram.png └── ux │ ├── use_cases.md │ └── workflows.md ├── eslint.config.mjs ├── lib ├── assets │ └── .keep ├── tasks │ ├── .keep │ ├── auto_complete.rake │ ├── bulk.rake │ ├── bundler_audit.rake │ ├── cache.rake │ ├── cdl.rake │ ├── clean.rake │ ├── csv.rake │ ├── demo.rake │ ├── dev.rake │ ├── export.rake │ ├── figgy.rake │ ├── file_sets.rake │ ├── fixity_worker.rake │ ├── geniza.rake │ ├── import.rake │ ├── keys.rake │ ├── lae.rake │ ├── maps_add_copyright.rake │ ├── migrate.rake │ ├── music_reserves.rake │ ├── numismatics.rake │ ├── performance.rake │ ├── preservation.rake │ ├── reindex.rake │ ├── report.rake │ ├── sync.rake │ └── vocab.rake └── templates │ └── erb │ └── scaffold │ └── _form.html.erb ├── package.json ├── public ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico ├── pul_logo_icon.png ├── robots.txt ├── uv │ ├── build.js.map │ ├── favicon.ico │ ├── helpers.js │ ├── img │ │ └── pixel.gif │ ├── info.json │ ├── lib │ │ ├── AVComponent.js │ │ ├── Detector.js │ │ ├── GLTFLoader.js │ │ ├── GalleryComponent.js │ │ ├── MTLLoader.js │ │ ├── MetadataComponent.js │ │ ├── OBJLoader.js │ │ ├── PLYLoader.js │ │ ├── TreeComponent.js │ │ ├── VRControls.js │ │ ├── VREffect.js │ │ ├── WebVR.js │ │ ├── dash.all.min.js │ │ ├── hls.min.js │ │ ├── iiifgallery.proxy.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.binarytransport.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── mediaelement-and-player.js │ │ ├── offline.js │ │ ├── openseadragon.min.js │ │ ├── pdf.combined.js │ │ ├── pdfobject.js │ │ ├── stats.min.js │ │ ├── three.min.js │ │ ├── uv-av-extension-dependencies.js │ │ ├── uv-av-extension.cy-GB.config.json │ │ ├── uv-av-extension.en-GB.config.json │ │ ├── uv-av-extension.fr-FR.config.json │ │ ├── uv-av-extension.sv-SE.config.json │ │ ├── uv-default-extension-dependencies.js │ │ ├── uv-default-extension.cy-GB.config.json │ │ ├── uv-default-extension.en-GB.config.json │ │ ├── uv-default-extension.fr-FR.config.json │ │ ├── uv-default-extension.sv-SE.config.json │ │ ├── uv-mediaelement-extension-dependencies.js │ │ ├── uv-mediaelement-extension.cy-GB.config.json │ │ ├── uv-mediaelement-extension.en-GB.config.json │ │ ├── uv-mediaelement-extension.fr-FR.config.json │ │ ├── uv-mediaelement-extension.sv-SE.config.json │ │ ├── uv-pdf-extension-dependencies.js │ │ ├── uv-pdf-extension.cy-GB.config.json │ │ ├── uv-pdf-extension.en-GB.config.json │ │ ├── uv-pdf-extension.fr-FR.config.json │ │ ├── uv-pdf-extension.sv-SE.config.json │ │ ├── uv-seadragon-extension-dependencies.js │ │ ├── uv-seadragon-extension.cy-GB.config.json │ │ ├── uv-seadragon-extension.en-GB.config.json │ │ ├── uv-seadragon-extension.fr-FR.config.json │ │ ├── uv-seadragon-extension.sv-SE.config.json │ │ ├── uv-seadragon-extension.xx-XX.config.json │ │ ├── uv-virtex-extension-dependencies.js │ │ ├── uv-virtex-extension.cy-GB.config.json │ │ ├── uv-virtex-extension.en-GB.config.json │ │ ├── uv-virtex-extension.fr-FR.config.json │ │ ├── uv-virtex-extension.sv-SE.config.json │ │ ├── virtex.js │ │ └── waveform-data.js │ ├── themes │ │ ├── uv-cy-gb-theme │ │ │ ├── assets │ │ │ │ └── uv-mediaelementcenterpanel-module │ │ │ │ │ └── mejs-controls.svg │ │ │ └── css │ │ │ │ ├── uv-av-extension │ │ │ │ └── theme.css │ │ │ │ ├── uv-default-extension │ │ │ │ └── theme.css │ │ │ │ ├── uv-mediaelement-extension │ │ │ │ └── theme.css │ │ │ │ ├── uv-pdf-extension │ │ │ │ └── theme.css │ │ │ │ ├── uv-seadragon-extension │ │ │ │ └── theme.css │ │ │ │ └── uv-virtex-extension │ │ │ │ └── theme.css │ │ └── uv-en-gb-theme │ │ │ ├── assets │ │ │ ├── hamburger.png │ │ │ └── uv-mediaelementcenterpanel-module │ │ │ │ └── mejs-controls.svg │ │ │ └── css │ │ │ ├── uv-av-extension │ │ │ └── theme.css │ │ │ ├── uv-default-extension │ │ │ └── theme.css │ │ │ ├── uv-mediaelement-extension │ │ │ └── theme.css │ │ │ ├── uv-pdf-extension │ │ │ └── theme.css │ │ │ ├── uv-seadragon-extension │ │ │ └── theme.css │ │ │ └── uv-virtex-extension │ │ │ └── theme.css │ ├── uv.css │ ├── uv.html │ ├── uv.js │ ├── uv.zip │ ├── uv_config.json │ └── uv_config_downloads_disabled.json └── vatican.png ├── rspec_examples.txt ├── scripts ├── benchmark_conversion.rb ├── combine_coverage.rb └── fixity_demo.rb ├── solr ├── config │ ├── _rest_managed.json │ ├── admin-extra.html │ ├── elevate.xml │ ├── mapping-ISOLatin1Accent.txt │ ├── protwords.txt │ ├── schema.xml │ ├── scripts.conf │ ├── solrconfig.xml │ ├── spellings.txt │ ├── stopwords.txt │ ├── stopwords_en.txt │ ├── synonyms.txt │ └── xslt │ │ ├── example.xsl │ │ ├── example_atom.xsl │ │ ├── example_rss.xsl │ │ └── luke.xsl ├── sample_solr_documents.yml └── solr.xml ├── spec ├── adapters │ ├── bagit │ │ ├── bag_exporter_spec.rb │ │ ├── bag_factory_spec.rb │ │ ├── bag_importer_spec.rb │ │ ├── bag_roundtrip_spec.rb │ │ ├── metadata_adapter_spec.rb │ │ ├── persister_spec.rb │ │ ├── query_service_spec.rb │ │ └── storage_adapter_spec.rb │ ├── fallback_disk_adapter_spec.rb │ ├── indexing_adapter_spec.rb │ ├── read_only_adapter_spec.rb │ ├── retrying_disk_adapter_spec.rb │ ├── shrine │ │ ├── null_verifier_spec.rb │ │ └── storage │ │ │ └── versioned_google_cloud_storage_spec.rb │ └── transaction_composite_persister_spec.rb ├── change_set_persisters │ ├── change_set_persister │ │ ├── append_to_collection_spec.rb │ │ ├── append_to_parent_spec.rb │ │ ├── apply_remote_metadata_spec.rb │ │ ├── cleanup_mosaic_spec.rb │ │ ├── cleanup_pdf_derivatives_spec.rb │ │ ├── cleanup_pdfs_spec.rb │ │ ├── cleanup_terms_spec.rb │ │ ├── extract_archival_collection_code_spec.rb │ │ ├── generate_mosaic_spec.rb │ │ ├── mint_identifier_spec.rb │ │ ├── populate_published_at_spec.rb │ │ ├── preserve_resource_spec.rb │ │ ├── propagate_ocr_language_spec.rb │ │ ├── publish_message │ │ │ └── factory_spec.rb │ │ ├── remove_from_collection_spec.rb │ │ ├── update_aspace_dao_spec.rb │ │ └── update_cloud_file_permissions_spec.rb │ └── change_set_persister_spec.rb ├── change_sets │ ├── archival_media_collection_change_set_spec.rb │ ├── boxless_ephemera_folder_change_set_spec.rb │ ├── cdl │ │ └── resource_change_set_spec.rb │ ├── change_set_spec.rb │ ├── collection_change_set_spec.rb │ ├── concerns │ │ ├── date_range_property_spec.rb │ │ └── visibility_property_spec.rb │ ├── deletion_marker_change_set.rb_spec.rb │ ├── ephemera_box_change_set_spec.rb │ ├── ephemera_folder_change_set_spec.rb │ ├── ephemera_project_change_set_spec.rb │ ├── ephemera_term_change_set_spec.rb │ ├── ephemera_vocabulary_change_set_spec.rb │ ├── event_change_set_spec.rb │ ├── file_set_change_set_spec.rb │ ├── numismatics │ │ ├── accession_change_set_spec.rb │ │ ├── artist_change_set_spec.rb │ │ ├── attribute_change_set_spec.rb │ │ ├── citation_change_set_spec.rb │ │ ├── coin_change_set_spec.rb │ │ ├── firm_change_set_spec.rb │ │ ├── issue_change_set_spec.rb │ │ ├── loan_change_set_spec.rb │ │ ├── monogram_change_set_spec.rb │ │ ├── note_change_set_spec.rb │ │ ├── person_change_set_spec.rb │ │ ├── place_change_set_spec.rb │ │ ├── provenance_change_set_spec.rb │ │ ├── reference_change_set_spec.rb │ │ └── subject_change_set_spec.rb │ ├── playlist_change_set_spec.rb │ ├── preservation_object_change_set_spec.rb │ ├── proxy_file_set_change_set_spec.rb │ ├── raster_resource_change_set_spec.rb │ ├── recording_change_set_spec.rb │ ├── scanned_map_change_set_spec.rb │ ├── scanned_resource_change_set_spec.rb │ ├── selene_resource_change_set_spec.rb │ ├── simple_change_set_spec.rb │ ├── template_change_set_spec.rb │ └── vector_resource_change_set_spec.rb ├── channels │ ├── application_cable │ │ ├── channel_spec.rb │ │ └── connection_spec.rb │ └── generate_file_notification_channel_spec.rb ├── characterization_services │ ├── default_characterization_service_spec.rb │ ├── external_metadata_characterization_service_spec.rb │ ├── gdal_characterization_service │ │ ├── raster_spec.rb │ │ └── vector_spec.rb │ ├── geo_characterization_service_spec.rb │ ├── imagemagick_characterization_service_spec.rb │ ├── mediainfo_characterization_service_spec.rb │ ├── null_characterization_service_spec.rb │ ├── pdf_characterization_service_spec.rb │ └── tika_file_characterization_service_spec.rb ├── controllers │ ├── application_controller_spec.rb │ ├── auth_tokens_controller_spec.rb │ ├── bulk_edit_controller_spec.rb │ ├── bulk_ingest_controller_spec.rb │ ├── catalog_controller_spec.rb │ ├── cdl │ │ └── cdl_controller_spec.rb │ ├── collections_controller_spec.rb │ ├── deletion_markers_controller_spec.rb │ ├── downloads_controller_spec.rb │ ├── ephemera_boxes_controller_spec.rb │ ├── ephemera_fields_controller_spec.rb │ ├── ephemera_folders_controller_spec.rb │ ├── ephemera_projects_controller_spec.rb │ ├── ephemera_terms_controller_spec.rb │ ├── ephemera_vocabularies_controller_spec.rb │ ├── file_metadata_controller_spec.rb │ ├── file_sets_controller_spec.rb │ ├── fixity_dashboard_controller_spec.rb │ ├── graphql_controller_spec.rb │ ├── manifests_controller_spec.rb │ ├── numismatics │ │ ├── accessions_controller_spec.rb │ │ ├── coins_controller_spec.rb │ │ ├── firms_controller_spec.rb │ │ ├── issues_controller_spec.rb │ │ ├── monograms_controller_spec.rb │ │ ├── people_controller_spec.rb │ │ ├── places_controller_spec.rb │ │ └── references_controller_spec.rb │ ├── numismatics_dashboard_controller_spec.rb │ ├── oai_controller_spec.rb │ ├── ocr_requests_controller_spec.rb │ ├── playlists_controller_spec.rb │ ├── proxy_file_sets_controller_spec.rb │ ├── raster_resources_controller_spec.rb │ ├── reports_controller_spec.rb │ ├── resources_controller_spec.rb │ ├── scanned_maps_controller_spec.rb │ ├── scanned_resources_controller_spec.rb │ ├── search_history_controller_spec.rb │ ├── templates_controller_spec.rb │ ├── tile_metadata_controller_spec.rb │ ├── users_controller_spec.rb │ ├── vector_resources_controller_spec.rb │ └── viewer_controller_spec.rb ├── decorators │ ├── application_decorator_spec.rb │ ├── archival_media_collection_decorator_spec.rb │ ├── collection_decorator_spec.rb │ ├── date_range_decorator_spec.rb │ ├── ephemera_box_decorator_spec.rb │ ├── ephemera_field_decorator_spec.rb │ ├── ephemera_folder_decorator_spec.rb │ ├── ephemera_project_decorator_spec.rb │ ├── ephemera_term_decorator_spec.rb │ ├── ephemera_vocabulary_decorator_spec.rb │ ├── event_decorator_spec.rb │ ├── file_set_decorator_spec.rb │ ├── numismatics │ │ ├── accession_decorator_spec.rb │ │ ├── artist_decorator_spec.rb │ │ ├── attribute_decorator_spec.rb │ │ ├── citation_decorator_spec.rb │ │ ├── coin_decorator_spec.rb │ │ ├── firm_decorator_spec.rb │ │ ├── issue_decorator_spec.rb │ │ ├── loan_decorator_spec.rb │ │ ├── monogram_decorator_spec.rb │ │ ├── note_decorator_spec.rb │ │ ├── person_decorator_spec.rb │ │ ├── place_decorator_spec.rb │ │ ├── provenance_decorator_spec.rb │ │ ├── reference_decorator_spec.rb │ │ └── subject_decorator_spec.rb │ ├── playlist_decorator_spec.rb │ ├── preservation_object_decorator_spec.rb │ ├── proxy_file_set_decorator_spec.rb │ ├── raster_resource_decorator_spec.rb │ ├── scanned_map_decorator_spec.rb │ ├── scanned_resource_decorator_spec.rb │ ├── valkyrie │ │ ├── resource_decorator │ │ │ └── metadata_object_spec.rb │ │ └── resource_decorator_spec.rb │ └── vector_resource_decorator_spec.rb ├── derivative_services │ ├── av_derivative_service_spec.rb │ ├── default_derivative_service_spec.rb │ ├── external_metadata_derivative_service_spec.rb │ ├── geo_derivatives │ │ ├── processors │ │ │ ├── base_geo_processor_spec.rb │ │ │ ├── raster │ │ │ │ └── info_spec.rb │ │ │ └── vector │ │ │ │ └── info_spec.rb │ │ └── runners │ │ │ ├── raster_derivatives_spec.rb │ │ │ └── vector_derivatives_spec.rb │ ├── hocr_derivative_service_spec.rb │ ├── image_derivative_service_spec.rb │ ├── jp2_creator_spec.rb │ ├── pdf_derivative_service_spec.rb │ ├── raster_resource_derivative_service_spec.rb │ ├── scanned_map_derivative_service_spec.rb │ ├── thumbnail_derivative_service_spec.rb │ ├── vector_resource_derivative_service_spec.rb │ └── vips_derivative_service_spec.rb ├── document_presenters │ └── figgy_index_presenter_spec.rb ├── exporters │ └── hathi │ │ ├── content_package_spec.rb │ │ └── submission_information_package_spec.rb ├── factories │ ├── cdl │ │ ├── charged_item.rb │ │ └── resource_charge_list.rb │ ├── collection.rb │ ├── deletion_marker.rb │ ├── ephemera_box.rb │ ├── ephemera_field.rb │ ├── ephemera_folder.rb │ ├── ephemera_project.rb │ ├── ephemera_term.rb │ ├── ephemera_vocabulary.rb │ ├── event.rb │ ├── file_metadata.rb │ ├── file_set.rb │ ├── index_collection.rb │ ├── numismatics │ │ ├── coin.rb │ │ ├── numismatic_accession.rb │ │ ├── numismatic_artist.rb │ │ ├── numismatic_firm.rb │ │ ├── numismatic_issue.rb │ │ ├── numismatic_monogram.rb │ │ ├── numismatic_person.rb │ │ ├── numismatic_place.rb │ │ ├── numismatic_provenance.rb │ │ └── numismatic_reference.rb │ ├── ocr_requests.rb │ ├── playlist.rb │ ├── preservation_object.rb │ ├── proxy_file_set.rb │ ├── raster_resource.rb │ ├── scanned_map.rb │ ├── scanned_resource.rb │ ├── template.rb │ ├── user.rb │ └── vector_resource.rb ├── features │ ├── bookmarks_spec.rb │ ├── bulk_edit_spec.rb │ ├── catalog_spec.rb │ ├── collection_spec.rb │ ├── deletion_marker_spec.rb │ ├── ephemera_box_spec.rb │ ├── ephemera_folder_spec.rb │ ├── ephemera_project_spec.rb │ ├── file_manager_spec.rb │ ├── file_set_spec.rb │ ├── fixity_dashboard_spec.rb │ ├── health_status_spec.rb │ ├── login_spec.rb │ ├── manage_users_spec.rb │ ├── nomisma_documents_spec.rb │ ├── numismatic_ingest_spec.rb │ ├── numismatic_reference_spec.rb │ ├── nusimatic_issue_spec.rb │ ├── ocr_requests_spec.rb │ ├── order_manager_spec.rb │ ├── playlist_spec.rb │ ├── relationships_spec.rb │ ├── reports_spec.rb │ ├── root_spec.rb │ ├── scanned_map_spec.rb │ ├── scanned_resource_spec.rb │ ├── simple_resource_spec.rb │ ├── struct_manager_spec.rb │ ├── structure_manager_spec.rb │ └── vector_resource_spec.rb ├── figgy_config_spec.rb ├── fixtures │ ├── GNIB │ │ └── 00223 │ │ │ ├── 00223.tif │ │ │ └── 00224.tif │ ├── aspace │ │ ├── repositories.json │ │ └── repositories │ │ │ ├── 3 │ │ │ ├── archival_object_260330.json │ │ │ ├── archival_object_298998.json │ │ │ ├── digital_object_12331.json │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ │ │ ├── 4 │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ │ │ ├── 5 │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ │ │ ├── 6 │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ │ │ ├── 7 │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ │ │ ├── 8 │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ │ │ ├── 9 │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ │ │ ├── 10 │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ │ │ ├── 11 │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ │ │ └── 12 │ │ │ ├── find_archival_object_MC001.01_c000001.json │ │ │ └── find_archival_object_MC230_c117.json │ ├── av │ │ ├── JPG_bag │ │ │ └── data │ │ │ │ └── 32101047382401_AssetFront.JPG │ │ ├── a_c0652_2017_05_bag3 │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ ├── data │ │ │ │ ├── 32101047382492.xml │ │ │ │ ├── 32101047382492_1_a.mp3 │ │ │ │ ├── 32101047382492_1_i.wav │ │ │ │ └── 32101047382492_1_pm.wav │ │ │ ├── manifest-sha256.txt │ │ │ ├── tagmanifest-md5.txt │ │ │ └── tagmanifest-sha1.txt │ │ ├── bulk_ingest │ │ │ ├── c0652_2017_05_bag │ │ │ │ ├── bag-info.txt │ │ │ │ ├── bagit.txt │ │ │ │ ├── data │ │ │ │ │ ├── 32101047382401.xml │ │ │ │ │ ├── 32101047382401_1_a.mp3 │ │ │ │ │ ├── 32101047382401_1_a.mp3.sha256 │ │ │ │ │ ├── 32101047382401_1_i.wav │ │ │ │ │ ├── 32101047382401_1_i.wav.sha256 │ │ │ │ │ ├── 32101047382401_1_pm.wav │ │ │ │ │ ├── 32101047382401_1_pm.wav.sha256 │ │ │ │ │ ├── 32101047382401_2_a.mp3 │ │ │ │ │ ├── 32101047382401_2_a.mp3.sha256 │ │ │ │ │ ├── 32101047382401_2_i.wav │ │ │ │ │ ├── 32101047382401_2_i.wav.sha256 │ │ │ │ │ ├── 32101047382401_2_pm.wav │ │ │ │ │ ├── 32101047382401_2_pm.wav.sha256 │ │ │ │ │ └── 32101047382401_AssetFront.jpg │ │ │ │ ├── manifest-md5.txt │ │ │ │ ├── manifest-sha1.txt │ │ │ │ ├── tagmanifest-md5.txt │ │ │ │ └── tagmanifest-sha1.txt │ │ │ ├── video_with_captions │ │ │ │ ├── city--original-language--eng.vtt │ │ │ │ └── city.mp4 │ │ │ └── video_with_multiple_captions │ │ │ │ ├── city--original-language--engg.vtt │ │ │ │ ├── city--spa.vtt │ │ │ │ └── city.mp4 │ │ ├── la_c0652_2017_05_bag │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ ├── data │ │ │ │ ├── 32101047382401.xml │ │ │ │ ├── 32101047382401_1_a.mp3 │ │ │ │ ├── 32101047382401_1_a.mp3.sha256 │ │ │ │ ├── 32101047382401_1_i.wav │ │ │ │ ├── 32101047382401_1_i.wav.sha256 │ │ │ │ ├── 32101047382401_1_pm.wav │ │ │ │ ├── 32101047382401_1_pm.wav.sha256 │ │ │ │ ├── 32101047382401_2_a.mp3 │ │ │ │ ├── 32101047382401_2_a.mp3.sha256 │ │ │ │ ├── 32101047382401_2_i.wav │ │ │ │ ├── 32101047382401_2_i.wav.sha256 │ │ │ │ ├── 32101047382401_2_pm.wav │ │ │ │ ├── 32101047382401_2_pm.wav.sha256 │ │ │ │ └── 32101047382401_AssetFront.jpg │ │ │ ├── manifest-md5.txt │ │ │ ├── manifest-sha1.txt │ │ │ ├── tagmanifest-md5.txt │ │ │ └── tagmanifest-sha1.txt │ │ ├── la_c0652_2017_05_bag2 │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ ├── data │ │ │ │ ├── 32101047382492.xml │ │ │ │ ├── 32101047382492_1_a.mp3 │ │ │ │ ├── 32101047382492_1_a.mp3.sha256 │ │ │ │ ├── 32101047382492_1_i.wav │ │ │ │ ├── 32101047382492_1_i.wav.sha256 │ │ │ │ ├── 32101047382492_1_pm.wav │ │ │ │ ├── 32101047382492_1_pm.wav.sha256 │ │ │ │ └── 32101047382492_AssetFront.jpg │ │ │ ├── manifest-sha256.txt │ │ │ └── tagmanifest-sha256.txt │ │ ├── la_c0652_2017_05_bag3 │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ ├── data │ │ │ │ ├── 32101047382492.xml │ │ │ │ ├── 32101047382492_1_a.mp3 │ │ │ │ ├── 32101047382492_1_i.wav │ │ │ │ └── 32101047382492_1_pm.wav │ │ │ ├── manifest-sha256.txt │ │ │ ├── tagmanifest-md5.txt │ │ │ └── tagmanifest-sha1.txt │ │ ├── la_c0652_2017_05_bag4 │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ ├── data │ │ │ │ ├── 32101047382492.xml │ │ │ │ ├── 32101047382492_1_p1_a.mp3 │ │ │ │ ├── 32101047382492_1_p1_i.wav │ │ │ │ ├── 32101047382492_1_p1_pm.wav │ │ │ │ ├── 32101047382492_1_p2_a.mp3 │ │ │ │ ├── 32101047382492_1_p2_i.wav │ │ │ │ └── 32101047382492_1_p2_pm.wav │ │ │ ├── manifest-sha256.txt │ │ │ ├── tagmanifest-md5.txt │ │ │ └── tagmanifest-sha1.txt │ │ ├── la_c0652_2017_05_bag_unknown_barcode │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ ├── data │ │ │ │ ├── 32101047382400.xml │ │ │ │ ├── 32101047382400_1_a.mp3 │ │ │ │ ├── 32101047382400_1_a.mp3.sha256 │ │ │ │ ├── 32101047382400_1_i.wav │ │ │ │ ├── 32101047382400_1_i.wav.sha256 │ │ │ │ ├── 32101047382400_1_pm.wav │ │ │ │ ├── 32101047382400_1_pm.wav.sha256 │ │ │ │ ├── 32101047382400_2_a.mp3 │ │ │ │ ├── 32101047382400_2_a.mp3.sha256 │ │ │ │ ├── 32101047382400_2_i.wav │ │ │ │ ├── 32101047382400_2_i.wav.sha256 │ │ │ │ ├── 32101047382400_2_pm.wav │ │ │ │ ├── 32101047382400_2_pm.wav.sha256 │ │ │ │ └── 32101047382400_AssetFront.jpg │ │ │ ├── manifest-md5.txt │ │ │ ├── manifest-sha1.txt │ │ │ ├── tagmanifest-md5.txt │ │ │ └── tagmanifest-sha1.txt │ │ ├── la_demo_bag │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ ├── data │ │ │ │ ├── 32101047382484.xml │ │ │ │ ├── 32101047382484_1_a.mp3 │ │ │ │ ├── 32101047382484_1_a.mp3.sha256 │ │ │ │ ├── 32101047382484_1_i.wav │ │ │ │ ├── 32101047382484_1_i.wav.sha256 │ │ │ │ ├── 32101047382484_1_pm.wav │ │ │ │ ├── 32101047382484_1_pm.wav.sha256 │ │ │ │ ├── 32101047382484_2_a.mp3 │ │ │ │ ├── 32101047382484_2_a.mp3.sha256 │ │ │ │ ├── 32101047382484_2_i.wav │ │ │ │ ├── 32101047382484_2_i.wav.sha256 │ │ │ │ ├── 32101047382484_2_pm.wav │ │ │ │ ├── 32101047382484_2_pm.wav.sha256 │ │ │ │ ├── 32101047382484_AssetFront.jpg │ │ │ │ ├── 32101047382492.xml │ │ │ │ ├── 32101047382492_1_a.mp3 │ │ │ │ ├── 32101047382492_1_a.mp3.sha256 │ │ │ │ ├── 32101047382492_1_i.wav │ │ │ │ ├── 32101047382492_1_i.wav.sha256 │ │ │ │ ├── 32101047382492_1_pm.wav │ │ │ │ ├── 32101047382492_1_pm.wav.sha256 │ │ │ │ ├── 32101047382492_AssetFront.jpg │ │ │ │ ├── 32101047382617.xml │ │ │ │ ├── 32101047382617_1_a.mp3 │ │ │ │ ├── 32101047382617_1_a.mp3.sha256 │ │ │ │ ├── 32101047382617_1_i.wav │ │ │ │ ├── 32101047382617_1_i.wav.sha256 │ │ │ │ ├── 32101047382617_1_pm.wav │ │ │ │ ├── 32101047382617_1_pm.wav.sha256 │ │ │ │ ├── 32101047382617_2_a.mp3 │ │ │ │ ├── 32101047382617_2_a.mp3.sha256 │ │ │ │ ├── 32101047382617_2_i.wav │ │ │ │ ├── 32101047382617_2_i.wav.sha256 │ │ │ │ ├── 32101047382617_2_pm.wav │ │ │ │ ├── 32101047382617_2_pm.wav.sha256 │ │ │ │ └── 32101047382617_AssetFront.jpg │ │ │ ├── manifest-sha256.txt │ │ │ └── tagmanifest-sha256.txt │ │ └── new_pbcore_bag │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ ├── data │ │ │ ├── 32101047382401.xml │ │ │ ├── 32101047382401_1_a.mp3 │ │ │ ├── 32101047382401_1_a.mp3.sha256 │ │ │ ├── 32101047382401_1_i.wav │ │ │ ├── 32101047382401_1_i.wav.sha256 │ │ │ ├── 32101047382401_1_pm.wav │ │ │ ├── 32101047382401_1_pm.wav.sha256 │ │ │ ├── 32101047382401_2_a.mp3 │ │ │ ├── 32101047382401_2_a.mp3.sha256 │ │ │ ├── 32101047382401_2_i.wav │ │ │ ├── 32101047382401_2_i.wav.sha256 │ │ │ ├── 32101047382401_2_pm.wav │ │ │ ├── 32101047382401_2_pm.wav.sha256 │ │ │ └── 32101047382401_AssetFront.jpg │ │ │ ├── manifest-md5.txt │ │ │ ├── manifest-sha1.txt │ │ │ ├── tagmanifest-md5.txt │ │ │ └── tagmanifest-sha1.txt │ ├── bags │ │ ├── invalid_bag │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ └── data │ │ │ │ └── data.txt │ │ └── valid_bag │ │ │ ├── bag-info.txt │ │ │ ├── bagit.txt │ │ │ ├── data │ │ │ └── data.txt │ │ │ ├── manifest-md5.txt │ │ │ ├── manifest-sha1.txt │ │ │ ├── tagmanifest-md5.txt │ │ │ └── tagmanifest-sha1.txt │ ├── bulk_ingest │ │ └── 991234563506421 │ │ │ ├── vol1 │ │ │ └── color.tif │ │ │ └── vol2 │ │ │ └── gray.tif │ ├── cid_mmsid_csv.csv │ ├── directory_info │ │ ├── 1 │ │ │ └── .keep │ │ ├── 2 │ │ │ └── .keep │ │ └── ingest_root │ │ │ ├── 1 │ │ │ └── .keep │ │ │ ├── 2 │ │ │ └── .keep │ │ │ └── .keep │ ├── ephemera │ │ ├── chile │ │ │ ├── 18 │ │ │ │ └── 18.jpg │ │ │ └── 01 │ │ │ │ ├── 01.jpg │ │ │ │ ├── 01.png │ │ │ │ └── 01.tif │ │ ├── pudl0125 │ │ │ └── 001 │ │ │ │ └── example.tif │ │ └── sae │ │ │ ├── pamphlet0001 │ │ │ ├── 00000001.TIF │ │ │ ├── 00000002.TIF │ │ │ ├── 00000003.jpg │ │ │ └── 00000004.png │ │ │ └── pamphlet0002 │ │ │ └── 00000001.TIF │ ├── files │ │ ├── 4k-1second.mp4 │ │ ├── GNIB │ │ │ └── 00223.mods │ │ ├── abstract.png │ │ ├── abstract.tiff │ │ ├── audio's.wav │ │ ├── audio_file.wav │ │ ├── bad.pdf │ │ ├── bad.tif │ │ ├── caption.vtt │ │ ├── catalog │ │ │ ├── 99001000179035064213506421.jsonld │ │ │ ├── 99100017893506421.jsonld │ │ │ ├── 99100017913506421.jsonld │ │ │ ├── 99100017923506421.jsonld │ │ │ ├── 99100687053506421.jsonld │ │ │ ├── 99100687053506421.mrx │ │ │ ├── 9911606823506421.jsonld │ │ │ ├── 9911606823506421.mrx │ │ │ ├── 9911606823506421b.mrx │ │ │ ├── 991234563506421.jsonld │ │ │ ├── 991234567893506421.jsonld │ │ │ ├── 99125378001906421.jsonld │ │ │ ├── 99125494961606421.jsonld │ │ │ ├── 9913770843506421.json │ │ │ ├── 9917912613506421.jsonld │ │ │ ├── 9919685413506421.jsonld │ │ │ ├── 9920687473506421.jsonld │ │ │ ├── 9920852823506421.jsonld │ │ │ ├── 9920852823506421.mrx │ │ │ ├── 9930134813506421.jsonld │ │ │ ├── 993456823506421.jsonld │ │ │ ├── 993456823506421.mrx │ │ │ ├── 993456823506421b.mrx │ │ │ ├── 993456823506421c.mrx │ │ │ ├── 9935150723506421.jsonld │ │ │ ├── 9946093213506421.jsonld │ │ │ ├── 9946093213506421.mrx │ │ │ ├── 9946093213506421b.mrx │ │ │ ├── 9946093213506421c.mrx │ │ │ ├── 9946125963506421.jsonld │ │ │ ├── 9951446203506421.jsonld │ │ │ ├── 9965126093506421.json │ │ │ ├── 9965924523506421.jsonld │ │ │ ├── 9968643943506421.json │ │ │ ├── 9968663863506421.jsonld │ │ │ ├── 9972147863506421.jsonld │ │ │ ├── 9972147863506421.mrx │ │ │ ├── 9972147863506421b.mrx │ │ │ ├── 9972147873506421.json │ │ │ ├── 9985434293506421.jsonld │ │ │ ├── 9985434293506421.mrx │ │ │ ├── 9991062033506421.jsonld │ │ │ ├── 999227203506421.json │ │ │ ├── 9996371533506421.jsonld │ │ │ ├── 9996490803506421.jsonld │ │ │ ├── abc123.json │ │ │ └── context.json │ │ ├── city.mp4 │ │ ├── color-landscape.tif │ │ ├── compressed_example.tif │ │ ├── demo_mp3.mp3 │ │ ├── derivatives │ │ │ ├── grey-landscape-pdf.jpg │ │ │ └── grey-pdf.jpg │ │ ├── empty.tif │ │ ├── ephemera.csv │ │ ├── example.jp2 │ │ ├── example.tif │ │ ├── gdal │ │ │ ├── gdalinfo-aig.json │ │ │ ├── gdalinfo-blank.txt │ │ │ ├── gdalinfo-no-geo-tiff.json │ │ │ ├── gdalinfo-southern.json │ │ │ ├── gdalinfo.json │ │ │ ├── ogrinfo_line.txt │ │ │ └── ogrinfo_polygon.txt │ │ ├── geo_metadata │ │ │ ├── empty.xml │ │ │ ├── fgdc-no-onlink.xml │ │ │ ├── fgdc.xml │ │ │ ├── iso.xml │ │ │ ├── non-geo-metadata.xml │ │ │ └── princeton_iso.xml │ │ ├── hls_playlist.m3u8 │ │ ├── holding_locations.json │ │ ├── holding_locations_http.json │ │ ├── invalid.pdf │ │ ├── invalid.tif │ │ ├── invalid.wav │ │ ├── large-jpg-test.jpg │ │ ├── pudl0044 │ │ │ └── originals_no_watermark │ │ │ │ └── 991234563506421 │ │ │ │ └── 00000001.tif │ │ ├── pudl0125 │ │ │ └── 001.mods │ │ ├── pulfa │ │ │ └── aspace │ │ │ │ ├── AC044.xml │ │ │ │ ├── AC044_c0003.ead.xml │ │ │ │ ├── AC044_c0003.json │ │ │ │ ├── C0022_c0145.json │ │ │ │ ├── C0652.ead.xml │ │ │ │ ├── C0652.json │ │ │ │ ├── C0652_c0377.json │ │ │ │ ├── C0652_c0383.json │ │ │ │ ├── C0652_c0389.json │ │ │ │ ├── C1372_c47202-68234.json │ │ │ │ ├── MC001.01_c000001.json │ │ │ │ ├── MC016_c9616.json │ │ │ │ ├── MC230_c117.json │ │ │ │ └── RBD1_c13076.json │ │ ├── raster │ │ │ ├── arcgrid.zip │ │ │ ├── example.dem │ │ │ ├── geo'tiff.tif │ │ │ ├── geotiff-color-map.tif │ │ │ ├── geotiff-no-color-map.tif │ │ │ ├── geotiff.tif │ │ │ ├── geotiff_&_unsafe.tif │ │ │ └── invalid-geotiff.tif │ │ ├── sae_ephemera.csv │ │ ├── sae_ephemera_invalid.csv │ │ ├── sample.ogg │ │ ├── sample.pdf │ │ ├── small_fractional_tif.tif │ │ ├── ukrainian-001.mods │ │ ├── ukrainian-074.mods │ │ ├── vector │ │ │ ├── example.kml │ │ │ ├── g'eo.json │ │ │ ├── geo.json │ │ │ ├── geo_&_unsafe.json │ │ │ ├── geopackage.gpkg │ │ │ ├── invalid-shapefile.zip │ │ │ ├── shapefile(parens).zip │ │ │ ├── shapefile-no-crs.zip │ │ │ ├── shapefile.zip │ │ │ ├── shapefile_&_unsafe.zip │ │ │ ├── shapefile_with_documentation.zip │ │ │ └── taiwan.zip │ │ └── w'eird.tif │ ├── hidden_files │ │ └── 32101075851400 │ │ │ ├── .hidden_file.txt │ │ │ └── normal_file.txt │ ├── hocr.hocr │ ├── iiif_v3_schema.json │ ├── importable_json.json │ ├── ingest_bibid │ │ └── 4609321 │ │ │ └── gray.tif │ ├── ingest_multi │ │ ├── vol1 │ │ │ ├── color.tif │ │ │ └── figgy_metadata.json │ │ └── vol2 │ │ │ └── gray.tif │ ├── ingest_multi_simple │ │ ├── 1 │ │ │ └── color.tif │ │ └── 2 │ │ │ └── color.tif │ ├── ingest_numismatic_coin │ │ ├── 123 │ │ │ └── 1.tif │ │ └── 1.tif │ ├── ingest_raster_set │ │ └── 991234563506421 │ │ │ ├── sheet1 │ │ │ └── sheet1.tif │ │ │ └── sheet2 │ │ │ └── sheet2.tif │ ├── ingest_scanned_maps │ │ └── 9284317.tif │ ├── ingest_scanned_raster_map │ │ └── 991234563506421 │ │ │ ├── 991234567893506421 │ │ │ ├── Raster │ │ │ │ ├── desktop.ini │ │ │ │ ├── sheet1.tif │ │ │ │ └── sheet1_cropped.tif │ │ │ └── example.tif │ │ │ └── Sheet2 │ │ │ ├── Raster │ │ │ ├── sheet2.tif │ │ │ └── sheet2_cropped.tif │ │ │ └── example.tif │ ├── ingest_selene │ │ ├── 1.tif │ │ ├── 2.tif │ │ ├── 3.tif │ │ ├── 4.tif │ │ └── Selene_Output │ │ │ ├── albedo_m1.tfw │ │ │ ├── albedo_m1.tif │ │ │ ├── depthmap_m1.tfw │ │ │ ├── depthmap_m1.tif │ │ │ ├── depthmap_m1_HF_0.03_m.tfw │ │ │ ├── depthmap_m1_HF_0.03_m.tif │ │ │ ├── depthmap_m1_HF_0.03_m_shaded.png │ │ │ ├── depthmap_m1_shaded.png │ │ │ ├── normal_m1.tfw │ │ │ ├── normal_m1.tif │ │ │ ├── normal_m1_HF_0.03_m.tfw │ │ │ └── normal_m1_HF_0.03_m.tif │ ├── ingest_single │ │ ├── ._color.tif │ │ ├── Thumbs.db │ │ ├── color.tif │ │ ├── gray.tif │ │ └── grey-pdf.jpg │ ├── ingest_single_figgy_metadata │ │ ├── Thumbs.db │ │ ├── color.tif │ │ ├── figgy_metadata.json │ │ └── gray.tif │ ├── ingest_single_figgy_metadata_with_id │ │ ├── color.tif │ │ ├── figgy_metadata.json │ │ └── gray.tif │ ├── json_ingest.json │ ├── lae │ │ ├── 32101075851400 │ │ │ ├── 0001.tif │ │ │ └── 0001.xml │ │ ├── 32101075851418 │ │ │ ├── 0001.tif │ │ │ ├── 0001.xml │ │ │ ├── 0002.tif │ │ │ └── 0002.xml │ │ └── BOXBARCODE.jhove.xml │ ├── lae_genres.csv │ ├── lae_migration │ │ ├── boxes │ │ │ ├── 00014 │ │ │ │ ├── foxml │ │ │ │ ├── provMetadata │ │ │ │ └── rightsMetadata │ │ │ └── 01277 │ │ │ │ ├── foxml │ │ │ │ ├── provMetadata │ │ │ │ └── rightsMetadata │ │ ├── datastreamStore │ │ │ ├── 60 │ │ │ │ └── info%3Afedora%2Fpuls%3A039s9%2FmasterImage%2FmasterImage.0 │ │ │ └── 03 │ │ │ │ └── info%3Afedora%2Fpuls%3A039r5%2FmasterImage%2FmasterImage.0 │ │ ├── folders │ │ │ ├── 0003d │ │ │ │ ├── descMetadata │ │ │ │ ├── foxml │ │ │ │ ├── provMetadata │ │ │ │ └── rightsMetadata │ │ │ └── 012g6 │ │ │ │ ├── descMetadata │ │ │ │ ├── foxml │ │ │ │ ├── provMetadata │ │ │ │ └── rightsMetadata │ │ ├── masterImage.txt │ │ ├── pagefolders.txt │ │ └── pages │ │ │ └── 03 │ │ │ ├── 039r5 │ │ │ ├── descMetadata │ │ │ ├── foxml │ │ │ ├── masterTechMetadata │ │ │ ├── provMetadata │ │ │ └── rightsMetadata │ │ │ └── 039s9 │ │ │ ├── descMetadata │ │ │ ├── foxml │ │ │ ├── masterTechMetadata │ │ │ ├── provMetadata │ │ │ └── rightsMetadata │ ├── lae_subjects.csv │ ├── mets │ │ ├── bad-collection.mets │ │ ├── pudl0001-9946093213506421-s42.mets │ │ ├── pudl0001-9946125963506421-no-collection.mets │ │ ├── pudl0001-9946125963506421.mets │ │ ├── pudl0003-tc85_2621.mets │ │ ├── pudl0009-1-0001.mets │ │ ├── pudl0009-1-0144.mets │ │ ├── pudl0017-wc064-s-s2687.mets │ │ ├── pudl0017-wc064.mets │ │ ├── pudl0032-ns73.mets │ │ ├── pudl0036-135-01.mets │ │ ├── pudl0038-7350.mets │ │ ├── pudl0038-mp090-0894.mets │ │ ├── pudl0058-9930131643506421.mets │ │ ├── pudl0058-996160863506421.mets │ │ ├── pudl0075-9969715263506421.mets │ │ ├── pudl0076-9925380113506421.mets │ │ ├── pudl0100-lc-egx_0003-nolocation.mets │ │ ├── pudl0100-lc-egx_0003.mets │ │ ├── pudl0134-991701513506421.mets │ │ ├── scrapbooks.mets │ │ ├── tsop_typed.mets │ │ ├── tsop_typed_mvw_no_files.mets │ │ └── tsop_typed_no_files.mets │ ├── music_import_service │ │ ├── recordings-extra-bibs-2018-12-06.csv │ │ └── recordings-zero-bibs-2018-12-06.csv │ ├── mvw_small_ids │ │ └── 991234563506421 │ │ │ └── 10296 │ │ │ └── example.tif │ ├── numismatics │ │ ├── coin-images │ │ │ ├── 1O.jpg │ │ │ ├── 1O.tif │ │ │ └── 1R.jpg │ │ ├── monograms │ │ │ └── a1065.jpg │ │ └── numismatics.sqlite3 │ ├── ocr.txt │ ├── order_test │ │ ├── 000001.tif │ │ └── 000002.tif │ ├── pudl0125 │ │ └── 001 │ │ │ └── example.tif │ ├── reserves_files │ │ └── cd-1 │ │ │ └── cd-1_1.wav │ ├── staged_files │ │ ├── examples │ │ │ ├── bulk_ingest │ │ │ │ └── 991234563506421 │ │ │ │ │ ├── vol1 │ │ │ │ │ └── color.tif │ │ │ │ │ └── vol2 │ │ │ │ │ └── gray.tif │ │ │ ├── lae │ │ │ │ ├── 32101075851400 │ │ │ │ │ ├── 0001.tif │ │ │ │ │ ├── 0001.xml │ │ │ │ │ ├── 32101047382400_1_a.mp3 │ │ │ │ │ ├── 32101047382400_1_i.wav │ │ │ │ │ ├── city.mp4 │ │ │ │ │ ├── grey-pdf.jpg │ │ │ │ │ └── sample.pdf │ │ │ │ ├── 32101075851418 │ │ │ │ │ ├── 0001.tif │ │ │ │ │ ├── 0001.xml │ │ │ │ │ ├── 0002.tif │ │ │ │ │ └── 0002.xml │ │ │ │ └── BOXBARCODE.jhove.xml │ │ │ ├── lapidus │ │ │ │ ├── 9946093213506421 │ │ │ │ │ └── .gitkeep │ │ │ │ └── AC044_c0003 │ │ │ │ │ └── .gitkeep │ │ │ ├── not_an_identifier │ │ │ │ └── June 31 │ │ │ │ │ └── .gitkeep │ │ │ └── single_volume │ │ │ │ └── 9946093213506421 │ │ │ │ └── .gitkeep │ │ ├── ingest_scratch │ │ │ └── local_uploads │ │ │ │ └── 1 │ │ ├── music │ │ │ └── cd-14000-14999 │ │ │ │ └── 1182238 │ │ │ │ ├── track1.wav │ │ │ │ └── track2.wav │ │ ├── numismatics │ │ │ └── CoinImages │ │ │ │ └── 1234 │ │ │ │ ├── obv.tif │ │ │ │ └── rev.tif │ │ └── studio_new │ │ │ └── DPUL │ │ │ ├── A123456 │ │ │ └── .gitkeep │ │ │ └── Santa │ │ │ ├── ready │ │ │ ├── 991234563506421 │ │ │ │ ├── 01.tif │ │ │ │ └── 02.tif │ │ │ ├── 9917912613506421 │ │ │ │ └── 1791261_0701.wav │ │ │ └── 9946093213506421 │ │ │ │ ├── Vol 1 │ │ │ │ └── 01.tif │ │ │ │ └── Vol 2 │ │ │ │ └── 01.tif │ │ │ └── test.1 │ │ │ └── .gitkeep │ └── test_pudl_root │ │ └── pudl0025 │ │ └── 02 │ │ └── 0002 │ │ └── 00000001.tif ├── graphql │ ├── figgy_schema_spec.rb │ ├── mutations │ │ └── update_resource_spec.rb │ └── types │ │ ├── base_enum_spec.rb │ │ ├── base_input_object_spec.rb │ │ ├── base_interface_spec.rb │ │ ├── base_union_spec.rb │ │ ├── ephemera_folder_type_spec.rb │ │ ├── file_set_type_spec.rb │ │ ├── mutation_type_spec.rb │ │ ├── numismatics │ │ ├── coin_type_spec.rb │ │ ├── issue_type_spec.rb │ │ └── monogram_type_spec.rb │ │ ├── playlist_type_spec.rb │ │ ├── proxy_file_set_type_spec.rb │ │ ├── query_type_spec.rb │ │ ├── raster_resource_type_spec.rb │ │ ├── resource_spec.rb │ │ ├── scanned_map_type_spec.rb │ │ ├── scanned_resource_type_spec.rb │ │ ├── thumbnail_spec.rb │ │ ├── vector_resource_type_spec.rb │ │ └── viewing_direction_enum_spec.rb ├── helpers │ ├── application_helper_spec.rb │ ├── blacklight_helper_spec.rb │ ├── bounding_box_helper_spec.rb │ ├── catalog_helper_spec.rb │ ├── edit_field_helper_spec.rb │ ├── embargo_date_helper_spec.rb │ ├── file_proxy_helper_spec.rb │ ├── fixity_dashboard_helper_spec.rb │ ├── metadata_form_helper_spec.rb │ ├── osd_modal_helper_spec.rb │ └── thumbnail_helper_spec.rb ├── honeybadger_check_spec.rb ├── indexers │ ├── coin_indexer_spec.rb │ ├── ephemera_box_indexer_spec.rb │ ├── facet_indexer_spec.rb │ ├── human_readable_type_indexer_spec.rb │ ├── imported_metadata_indexer_spec.rb │ ├── member_of_indexer_spec.rb │ ├── project_indexer_spec.rb │ ├── rights_label_indexer_spec.rb │ ├── sorting_indexer_spec.rb │ └── title_indexer_spec.rb ├── jobs │ ├── active_storage │ │ └── analyze_job_spec.rb │ ├── add_ephemera_to_collection_job_spec.rb │ ├── box_boxless_folders_job_spec.rb │ ├── bulk_update_job_spec.rb │ ├── catalog_update_job_spec.rb │ ├── cdl │ │ └── pdf_ingest_job_spec.rb │ ├── characterization_job_spec.rb │ ├── clean_dead_queues_job_spec.rb │ ├── clean_deleted_subject_job_spec.rb │ ├── clean_guest_users_job_spec.rb │ ├── clean_searches_job_spec.rb │ ├── cloud_fixity_job_spec.rb │ ├── create_derivatives_job_spec.rb │ ├── create_ocr_request_job_spec.rb │ ├── delete_archival_collection_job_spec.rb │ ├── delete_member_job_spec.rb │ ├── delete_resource_job_spec.rb │ ├── export_bag_job_spec.rb │ ├── export_collection_pdf_job_spec.rb │ ├── export_files_job_spec.rb │ ├── export_hathi_sip_job_spec.rb │ ├── export_pdf_job_spec.rb │ ├── extract_archival_collection_code_job_spec.rb │ ├── generate_checksum_job_spec.rb │ ├── generate_pdf_job_spec.rb │ ├── generate_pyramidal_tiff_job_spec.rb │ ├── import_bag_job_spec.rb │ ├── ingest_archival_media_bag_job_spec.rb │ ├── ingest_ephemera_csv_job_spec.rb │ ├── ingest_folder_job_spec.rb │ ├── ingest_folders_job_spec.rb │ ├── ingest_gnib_mods_job_spec.rb │ ├── ingest_intermediate_file_job_spec.rb │ ├── ingest_map_folder_job_spec.rb │ ├── ingest_mets_job_spec.rb │ ├── ingest_moscow_mods_job_spec.rb │ ├── ingest_ukrainian_ephemera_mods_job_spec.rb │ ├── local_fixity_job_spec.rb │ ├── missing_thumbnail_job_spec.rb │ ├── mosaic_job_spec.rb │ ├── pdf_ocr_job_spec.rb │ ├── poster_ingester_job_spec.rb │ ├── preserve_children_job_spec.rb │ ├── preserve_resource_job_spec.rb │ ├── recharacterize_job_spec.rb │ ├── refresh_archival_collection_job_spec.rb │ ├── refresh_remote_metadata_job_spec.rb │ ├── regenerate_derivatives_job_spec.rb │ ├── repair_cloud_fixity_job_spec.rb │ ├── repair_local_fixity_job_spec.rb │ ├── reprocess_mets_job_spec.rb │ ├── restore_from_deletion_marker_job_spec.rb │ ├── run_ocr_job_spec.rb │ ├── server_upload_job_spec.rb │ ├── update_cico_ids_job_spec.rb │ └── update_dao_job_spec.rb ├── lib │ └── .keep ├── mailers │ ├── bulk_update_mailer_spec.rb │ ├── collections_mailer_spec.rb │ └── previews │ │ └── collections_mailer_preview.rb ├── models │ ├── ability_spec.rb │ ├── archival_media_bag_parser_spec.rb │ ├── archival_media_collection_feature_spec.rb │ ├── auth_token_spec.rb │ ├── base_workflow_spec.rb │ ├── book_workflow_spec.rb │ ├── box_workflow_spec.rb │ ├── cdl │ │ ├── charged_item_spec.rb │ │ ├── hold_spec.rb │ │ └── resource_charge_list_spec.rb │ ├── collection_indexer_spec.rb │ ├── collection_spec.rb │ ├── collections_feature_spec.rb │ ├── concerns │ │ └── linked_data │ │ │ └── linked_date_range_spec.rb │ ├── controlled_vocabulary │ │ ├── downloadable_state_spec.rb │ │ ├── holding_location_spec.rb │ │ └── language_spec.rb │ ├── controlled_vocabulary_spec.rb │ ├── draft_complete_workflow_spec.rb │ ├── ephemera_box_spec.rb │ ├── ephemera_field_spec.rb │ ├── ephemera_folder_feature_spec.rb │ ├── ephemera_folder_indexer_spec.rb │ ├── ephemera_folder_routes_spec.rb │ ├── ephemera_folder_spec.rb │ ├── ephemera_project_spec.rb │ ├── ephemera_term_spec.rb │ ├── ephemera_terms_feature_spec.rb │ ├── ephemera_vocabularies_feature_spec.rb │ ├── ephemera_vocabulary_spec.rb │ ├── event_spec.rb │ ├── file_set_feature_spec.rb │ ├── file_set_spec.rb │ ├── file_sets_sorted_by_updated_spec.rb │ ├── folder_workflow_spec.rb │ ├── geo_workflow_spec.rb │ ├── grouping_spec.rb │ ├── index_collection_spec.rb │ ├── ingestable_audio_file_spec.rb │ ├── ingestable_file_spec.rb │ ├── linked_data │ │ ├── linked_ephemera_folder_spec.rb │ │ ├── linked_ephemera_term_spec.rb │ │ ├── linked_ephemera_vocabulary_spec.rb │ │ ├── linked_imported_resource_spec.rb │ │ └── linked_simple_resource_spec.rb │ ├── mets_document │ │ └── mods_document_spec.rb │ ├── mets_document_spec.rb │ ├── multi_checksum_spec.rb │ ├── numismatics │ │ ├── accession_feature_spec.rb │ │ ├── accession_spec.rb │ │ ├── artist_spec.rb │ │ ├── attribute_spec.rb │ │ ├── citation_spec.rb │ │ ├── coin_feature_spec.rb │ │ ├── coin_spec.rb │ │ ├── firm_feature_spec.rb │ │ ├── firm_spec.rb │ │ ├── issue_spec.rb │ │ ├── issues_feature_spec.rb │ │ ├── loan_spec.rb │ │ ├── monogram_feature_spec.rb │ │ ├── monogram_spec.rb │ │ ├── note_spec.rb │ │ ├── person_feature_spec.rb │ │ ├── person_spec.rb │ │ ├── place_feature_spec.rb │ │ ├── place_spec.rb │ │ ├── provenance_spec.rb │ │ ├── reference_spec.rb │ │ └── subject_spec.rb │ ├── oai │ │ └── figgy │ │ │ └── valkyrie_provider_model_spec.rb │ ├── playlist_spec.rb │ ├── proxy_file_set_spec.rb │ ├── raster_resource_feature_spec.rb │ ├── raster_resource_spec.rb │ ├── remote_record │ │ ├── catalog_record_spec.rb │ │ └── pulfa_record_spec.rb │ ├── remote_record_spec.rb │ ├── report_spec.rb │ ├── scanned_map_characterization_service_spec.rb │ ├── scanned_map_feature_spec.rb │ ├── scanned_map_spec.rb │ ├── scanned_resource_feature_spec.rb │ ├── scanned_resource_routes_spec.rb │ ├── scanned_resource_spec.rb │ ├── schema │ │ ├── common_spec.rb │ │ ├── iiif_spec.rb │ │ └── marc_relators_spec.rb │ ├── search_builder_spec.rb │ ├── title_with_subtitle_spec.rb │ ├── user_spec.rb │ ├── vector_resource_feature_spec.rb │ ├── vector_resource_spec.rb │ └── workflow_registry_spec.rb ├── nested_resources │ └── file_metadata_spec.rb ├── presenters │ └── workflow_actions_presenter_spec.rb ├── queries │ ├── all_mms_resources_query_spec.rb │ ├── count_all_of_model_spec.rb │ ├── count_inverse_relationship_spec.rb │ ├── count_members_spec.rb │ ├── find_by_local_identifier_spec.rb │ ├── find_by_property_spec.rb │ ├── find_by_source_metadata_identifier_spec.rb │ ├── find_deep_children_with_property_spec.rb │ ├── find_ephemera_term_by_label_spec.rb │ ├── find_fixity_events_spec.rb │ ├── find_highest_value_spec.rb │ ├── find_identifiers_to_reconcile_spec.rb │ ├── find_ids_with_property_not_empty_spec.rb │ ├── find_invalid_thumbnail_resources_spec.rb │ ├── find_many_by_property_spec.rb │ ├── find_members_with_relationship_spec.rb │ ├── find_missing_thumbnail_resources_spec.rb │ ├── find_never_preserved_child_ids_spec.rb │ ├── find_random_resources_by_model_spec.rb │ ├── find_resources_without_members_spec.rb │ ├── find_saved_ids_spec.rb │ ├── find_uncaptioned_members_spec.rb │ ├── find_video_members_spec.rb │ ├── latest_member_timestamp_spec.rb │ ├── memory_efficient_all_query_spec.rb │ ├── mosaic_fingerprint_query_spec.rb │ ├── playlists_from_recording_spec.rb │ └── pluck_earliest_updated_at_spec.rb ├── rails_helper.rb ├── registered_adapter_spec.rb ├── requests │ ├── catalog_spec.rb │ ├── disk_controller_spec.rb │ ├── health_monitor_spec.rb │ ├── nomisma_documents_spec.rb │ ├── playlist_spec.rb │ ├── scanned_map_spec.rb │ ├── scanned_resource_spec.rb │ ├── sessions_spec.rb │ ├── viewer_config_spec.rb │ └── viewer_exhibit_config_spec.rb ├── routing │ ├── archival_media_collection_spec.rb │ ├── cdl_resource_spec.rb │ ├── file_set_spec.rb │ ├── letter_resource_spec.rb │ ├── recording_resource_spec.rb │ ├── simple_resource_routes_spec.rb │ ├── viewer_config_routes_spec.rb │ └── viewer_exhibit_config_routes_spec.rb ├── routing_spec.rb ├── services │ ├── add_ephemera_to_collection_spec.rb │ ├── ark_mismatch_reporter_spec.rb │ ├── auto_completer_spec.rb │ ├── box_mover_spec.rb │ ├── bulk_edit_service_spec.rb │ ├── bulk_ingest_intermediate_service_spec.rb │ ├── bulk_ingest_service_spec.rb │ ├── bulk_update_remote_metadata_service_spec.rb │ ├── cdl │ │ ├── automatic_completer_spec.rb │ │ ├── automatic_ingester_spec.rb │ │ ├── bulk_hold_processor_spec.rb │ │ ├── charge_manager_spec.rb │ │ ├── eligible_item_service_spec.rb │ │ └── event_logging_spec.rb │ ├── cicognara_csv_spec.rb │ ├── cicognara_marc_spec.rb │ ├── cloud_fixity_spec.rb │ ├── dao_updater_spec.rb │ ├── deletion_marker_service_spec.rb │ ├── dpul_success_dashboard_report_generator_spec.rb │ ├── event_generator │ │ ├── geoblacklight_event_generator_spec.rb │ │ ├── manifest_event_generator_spec.rb │ │ └── orangelight_event_generator_spec.rb │ ├── export_service_spec.rb │ ├── file_browser_disk_provider_spec.rb │ ├── file_set_service_spec.rb │ ├── finding_aid_id_migrator_spec.rb │ ├── folder_json_importer_spec.rb │ ├── geo_discovery │ │ ├── abstract_document_spec.rb │ │ ├── document_builder │ │ │ ├── iiif_builder_spec.rb │ │ │ ├── layer_info_builder_spec.rb │ │ │ └── wxs_spec.rb │ │ └── document_builder_spec.rb │ ├── geo_metadata_extractor_spec.rb │ ├── geo_resource_reindexer_spec.rb │ ├── geoblacklight_messaging_client_spec.rb │ ├── identifier_service_spec.rb │ ├── image_report_generator_spec.rb │ ├── ingest_ephemera_csv_sae_spec.rb │ ├── ingest_ephemera_csv_validate_spec.rb │ ├── ingest_ephemera_mods_spec.rb │ ├── ingest_ephemera_service_spec.rb │ ├── ingest_folder_locator_spec.rb │ ├── ingest_vocab_service_spec.rb │ ├── json_ingester_spec.rb │ ├── local_fixity_spec.rb │ ├── manifest_builder │ │ ├── by_resource_type │ │ │ ├── image_resource_manifest_spec.rb │ │ │ ├── manifest_builder_collection_spec.rb │ │ │ ├── manifest_builder_ephemera_spec.rb │ │ │ ├── manifest_builder_mvw_spec.rb │ │ │ ├── manifest_builder_numismatic_spec.rb │ │ │ ├── manifest_builder_scanned_maps_spec.rb │ │ │ └── manifest_builder_scanned_resource_spec.rb │ │ ├── license_builder_spec.rb │ │ ├── manifest_service_locator_spec.rb │ │ ├── pyramidal_helper_spec.rb │ │ ├── see_also_builder_spec.rb │ │ └── thumbnail_builder_spec.rb │ ├── manifest_builder_v3 │ │ ├── by_resource_type │ │ │ ├── manifest_builder_v3_audio_resource_spec.rb │ │ │ ├── manifest_builder_v3_playlist_spec.rb │ │ │ ├── manifest_builder_v3_scanned_map_spec.rb │ │ │ └── manifest_builder_v3_video_spec.rb │ │ ├── canvas_builder_spec.rb │ │ ├── nav_place_builder_spec.rb │ │ └── see_also_builder_spec.rb │ ├── marc_record_enhancer_spec.rb │ ├── messaging_client_spec.rb │ ├── migrations │ │ ├── accession_date_migrator_spec.rb │ │ ├── add_cached_parent_ids_migrator_spec.rb │ │ ├── add_preservation_object_ids_migrator_spec.rb │ │ ├── add_published_at_migrator_spec.rb │ │ ├── add_service_target_migrator_spec.rb │ │ ├── cast_numismatics_integers_migrator_spec.rb │ │ ├── child_resource_collection_migrator_spec.rb │ │ ├── dao_migrator_spec.rb │ │ ├── map_copyright_migrator_spec.rb │ │ ├── metadata_represerver_spec.rb │ │ ├── preservation_file_preserver_spec.rb │ │ ├── remove_extra_derivatives_spec.rb │ │ └── reset_box_thumbnails_spec.rb │ ├── nomisma │ │ └── void_spec.rb │ ├── nomisma_spec.rb │ ├── orangelight_document_spec.rb │ ├── orangelight_messaging_client_spec.rb │ ├── orangelight_reindexer_spec.rb │ ├── pdf_generator_spec.rb │ ├── persistence_adapter_spec.rb │ ├── preservation_status_reporter_spec.rb │ ├── preserver │ │ ├── blind_importer_spec.rb │ │ ├── importer_spec.rb │ │ └── nested_storage_path_spec.rb │ ├── preserver_spec.rb │ ├── recording_downloadable_migrator_spec.rb │ ├── reindexer_spec.rb │ ├── repair_cloud_fixity_spec.rb │ ├── repair_local_fixity_spec.rb │ ├── riiif_resolver_spec.rb │ ├── tesseract_spec.rb │ ├── tile_metadata_service_spec.rb │ ├── valkyrie1_migrator_spec.rb │ ├── vocabulary_service │ │ └── ephemera_vocabulary_service_spec.rb │ └── vocabulary_service_spec.rb ├── shared_specs.rb ├── shared_specs │ ├── change_sets │ │ ├── change_set.rb │ │ └── embargo_date.rb │ ├── controllers │ │ ├── base_resource_controller.rb │ │ └── concerns │ │ │ └── pdfable.rb │ ├── decorators │ │ └── collection_decorator.rb │ ├── models │ │ ├── linked_data │ │ │ ├── linked_resource.rb │ │ │ └── resource │ │ │ │ └── with_date_range.rb │ │ └── resource.rb │ ├── services │ │ └── event_generator.rb │ └── valkyrie │ │ └── decorators │ │ └── resource_decorator.rb ├── spec_helper.rb ├── support │ ├── action_mailer.rb │ ├── capybara.rb │ ├── capybara_selenium.rb │ ├── clean_fake_cloud_backup.rb │ ├── clean_solr.rb │ ├── clear_memory_adapter.rb │ ├── create_for_repository.rb │ ├── database_cleaner.rb │ ├── devise.rb │ ├── factory_bot.rb │ ├── features │ │ └── session_helpers.rb │ ├── fixture_file_with_use.rb │ ├── geo_derivatives.rb │ ├── graphql_helpers.rb │ ├── i18n.rb │ ├── modify_file.rb │ ├── preservation_and_fixity.rb │ ├── rdf.rb │ ├── request_spec_helper.rb │ ├── reset_auth.rb │ ├── shared │ │ ├── access_controlled_create_request_specs.rb │ │ ├── access_controlled_destroy_request_specs.rb │ │ ├── access_controlled_edit_request_specs.rb │ │ ├── access_controlled_new_request_specs.rb │ │ ├── access_controlled_update_request_specs.rb │ │ ├── derivative_file_services.rb │ │ ├── ephemera_folder_change_set_specs.rb │ │ ├── raster_derivatives_specs.rb │ │ ├── vector_derivatives_specs.rb │ │ └── workflow_specs.rb │ ├── speedup_derivatives.rb │ ├── stub_aspace.rb │ ├── stub_blacklight_views.rb │ ├── stub_catalog.rb │ ├── stub_ezid.rb │ ├── stub_fixity.rb │ ├── stub_holding_locations.rb │ ├── stub_rabbit.rb │ ├── stub_tika.rb │ ├── view_verify_doubles.rb │ ├── webmock.rb │ └── with_queue_adapter.rb ├── utils │ ├── data_seeder_spec.rb │ └── user_utils_spec.rb ├── validators │ ├── embargo_date_validator_spec.rb │ ├── member_validator_spec.rb │ ├── processed_validator_spec.rb │ ├── rights_statement_validator_spec.rb │ ├── state_validator_spec.rb │ ├── viewing_direction_validator_spec.rb │ ├── viewing_hint_validator_spec.rb │ └── year_validator_spec.rb ├── values │ ├── coverage_point_spec.rb │ ├── csv_report_spec.rb │ ├── exhibit_viewer_configuration_spec.rb │ ├── geo_coverage_spec.rb │ ├── health_report_spec.rb │ ├── manifest_key_spec.rb │ ├── rights_statements_spec.rb │ ├── slug_spec.rb │ ├── tile_path_spec.rb │ └── viewer_configuration_spec.rb ├── views │ ├── bulk_ingest │ │ └── show.html.erb_spec.rb │ ├── catalog │ │ ├── _admin_controls_default.html.erb_spec.rb │ │ ├── _admin_controls_ephemera_box.html.erb_spec.rb │ │ ├── _admin_controls_ephemera_folder.html.erb_spec.rb │ │ ├── _admin_controls_ephemera_term.html.erb_spec.rb │ │ ├── _admin_controls_recording.html.erb_spec.rb │ │ ├── _home_text.html.erb_spec.rb │ │ ├── _in_process_notification_default.html.erb_spec.rb │ │ ├── _members_ephemera_box.html.erb_spec.rb │ │ ├── _members_ephemera_project.html.erb_spec.rb │ │ ├── _members_file_set.html.erb_spec.rb │ │ ├── _members_issue.html.erb_spec.rb │ │ ├── _members_multi_volume_work.html.erb_spec.rb │ │ ├── _members_playlist.html.erb_spec.rb │ │ ├── _members_raster_resource.html.erb_spec.rb │ │ ├── _members_recording.html.erb_spec.rb │ │ ├── _members_scanned_map.html.erb_spec.rb │ │ ├── _members_scanned_resource.html.erb_spec.rb │ │ ├── _members_vector_resource.html.erb_spec.rb │ │ ├── _parent_resources_scanned_map.html.erb_spec.rb │ │ ├── _resource_attributes_default.html.erb_spec.rb │ │ ├── _show_header_default.html.erb_spec.rb │ │ └── _universal_viewer_issue.html.erb_spec.rb │ ├── fixity_dashboard │ │ └── _fixity_table.html.erb_spec.rb │ ├── numismatics_dashboard │ │ └── show.html.erb_spec.rb │ ├── records │ │ └── edit_fields │ │ │ ├── _contributor_uids.html.erb_spec.rb │ │ │ ├── _ocr_language.html.erb_spec.rb │ │ │ └── _service_targets.html.erb_spec.rb │ ├── roles │ │ └── edit.html.erb_spec.rb │ └── scanned_resources │ │ ├── file_manager.html.erb_spec.rb │ │ └── order_manager.html.erb_spec.rb └── wayfinders │ ├── numismatics │ ├── accession_wayfinder_spec.rb │ ├── artist_wayfinder_spec.rb │ ├── citation_wayfinder_spec.rb │ ├── firm_wayfinder_spec.rb │ ├── issue_wayfinder_spec.rb │ ├── monogram_wayfinder_spec.rb │ ├── person_wayfinder_spec.rb │ ├── place_wayfinder_spec.rb │ ├── provenance_wayfinder_spec.rb │ └── reference_wayfinder_spec.rb │ ├── playlist_wayfinder_spec.rb │ └── wayfinder_spec.rb ├── staged_files └── .keep ├── test-compress.sh ├── vendor └── assets │ ├── images │ ├── geocoder.png │ ├── move-handle.png │ ├── resize-handle.png │ └── throbber.gif │ ├── javascripts │ ├── Control.Geocoder.js │ ├── i18n │ │ ├── defaults-ar_AR.js │ │ ├── defaults-ar_AR.min.js │ │ ├── defaults-bg_BG.js │ │ ├── defaults-bg_BG.min.js │ │ ├── defaults-cro_CRO.js │ │ ├── defaults-cro_CRO.min.js │ │ ├── defaults-cs_CZ.js │ │ ├── defaults-cs_CZ.min.js │ │ ├── defaults-da_DK.js │ │ ├── defaults-da_DK.min.js │ │ ├── defaults-de_DE.js │ │ ├── defaults-de_DE.min.js │ │ ├── defaults-en_US.js │ │ ├── defaults-en_US.min.js │ │ ├── defaults-es_CL.js │ │ ├── defaults-es_CL.min.js │ │ ├── defaults-es_ES.js │ │ ├── defaults-es_ES.min.js │ │ ├── defaults-et_EE.js │ │ ├── defaults-et_EE.min.js │ │ ├── defaults-eu.js │ │ ├── defaults-eu.min.js │ │ ├── defaults-fa_IR.js │ │ ├── defaults-fa_IR.min.js │ │ ├── defaults-fi_FI.js │ │ ├── defaults-fi_FI.min.js │ │ ├── defaults-fr_FR.js │ │ ├── defaults-fr_FR.min.js │ │ ├── defaults-hu_HU.js │ │ ├── defaults-hu_HU.min.js │ │ ├── defaults-id_ID.js │ │ ├── defaults-id_ID.min.js │ │ ├── defaults-it_IT.js │ │ ├── defaults-it_IT.min.js │ │ ├── defaults-ja_JP.js │ │ ├── defaults-ja_JP.min.js │ │ ├── defaults-kh_KM.js │ │ ├── defaults-kh_KM.min.js │ │ ├── defaults-ko_KR.js │ │ ├── defaults-ko_KR.min.js │ │ ├── defaults-lt_LT.js │ │ ├── defaults-lt_LT.min.js │ │ ├── defaults-nb_NO.js │ │ ├── defaults-nb_NO.min.js │ │ ├── defaults-nl_NL.js │ │ ├── defaults-nl_NL.min.js │ │ ├── defaults-pl_PL.js │ │ ├── defaults-pl_PL.min.js │ │ ├── defaults-pt_BR.js │ │ ├── defaults-pt_BR.min.js │ │ ├── defaults-pt_PT.js │ │ ├── defaults-pt_PT.min.js │ │ ├── defaults-ro_RO.js │ │ ├── defaults-ro_RO.min.js │ │ ├── defaults-ru_RU.js │ │ ├── defaults-ru_RU.min.js │ │ ├── defaults-sk_SK.js │ │ ├── defaults-sk_SK.min.js │ │ ├── defaults-sl_SI.js │ │ ├── defaults-sl_SI.min.js │ │ ├── defaults-sv_SE.js │ │ ├── defaults-sv_SE.min.js │ │ ├── defaults-tr_TR.js │ │ ├── defaults-tr_TR.min.js │ │ ├── defaults-ua_UA.js │ │ ├── defaults-ua_UA.min.js │ │ ├── defaults-vi_VN.js │ │ ├── defaults-vi_VN.min.js │ │ ├── defaults-zh_CN.js │ │ ├── defaults-zh_CN.min.js │ │ ├── defaults-zh_TW.js │ │ └── defaults-zh_TW.min.js │ ├── jqueryui-timepicker-addon.js │ ├── leaflet-boundingbox.js │ └── nestedSortable │ │ └── jquery.mjs.nestedSortable.js │ └── stylesheets │ ├── Control.Geocoder.css.erb │ ├── bootstrap-select.css │ ├── jqueryui-timepicker-addon.css │ └── leaflet-boundingbox.scss.erb ├── vite.config.ts └── yarn.lock /.circleci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.circleci/Dockerfile -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.ctags: -------------------------------------------------------------------------------- 1 | --recurse=yes 2 | --exclude=vendor 3 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.envrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bad-tiff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.github/ISSUE_TEMPLATE/bad-tiff.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ui-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.github/ISSUE_TEMPLATE/ui-change.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.gitignore -------------------------------------------------------------------------------- /.irbrc: -------------------------------------------------------------------------------- 1 | IRB.conf[:USE_AUTOCOMPLETE] = false 2 | -------------------------------------------------------------------------------- /.lando.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.lando.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.solr_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.solr_wrapper -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/.tool-versions -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/Rakefile -------------------------------------------------------------------------------- /app/adapters/bagit/bag_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/bagit/bag_exporter.rb -------------------------------------------------------------------------------- /app/adapters/bagit/bag_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/bagit/bag_factory.rb -------------------------------------------------------------------------------- /app/adapters/bagit/bag_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/bagit/bag_importer.rb -------------------------------------------------------------------------------- /app/adapters/bagit/bag_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/bagit/bag_loader.rb -------------------------------------------------------------------------------- /app/adapters/bagit/persister.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/bagit/persister.rb -------------------------------------------------------------------------------- /app/adapters/bagit/query_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/bagit/query_service.rb -------------------------------------------------------------------------------- /app/adapters/bagit/templates/bagit.txt.erb: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /app/adapters/gcs_fake/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/gcs_fake/storage.rb -------------------------------------------------------------------------------- /app/adapters/indexing_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/indexing_adapter.rb -------------------------------------------------------------------------------- /app/adapters/read_only_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/read_only_adapter.rb -------------------------------------------------------------------------------- /app/adapters/shrine/null_verifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/adapters/shrine/null_verifier.rb -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/fonts/amiri/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/fonts/amiri/OFL.txt -------------------------------------------------------------------------------- /app/assets/fonts/icons/pul-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/fonts/icons/pul-icons.eot -------------------------------------------------------------------------------- /app/assets/fonts/icons/pul-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/fonts/icons/pul-icons.svg -------------------------------------------------------------------------------- /app/assets/fonts/icons/pul-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/fonts/icons/pul-icons.ttf -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/default.png -------------------------------------------------------------------------------- /app/assets/images/default_vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/default_vol.png -------------------------------------------------------------------------------- /app/assets/images/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/down-arrow.svg -------------------------------------------------------------------------------- /app/assets/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/facebook.png -------------------------------------------------------------------------------- /app/assets/images/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/facebook.svg -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/folder.png -------------------------------------------------------------------------------- /app/assets/images/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/friends.png -------------------------------------------------------------------------------- /app/assets/images/friends.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/friends.svg -------------------------------------------------------------------------------- /app/assets/images/govdocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/govdocs.png -------------------------------------------------------------------------------- /app/assets/images/govdocs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/govdocs.svg -------------------------------------------------------------------------------- /app/assets/images/nope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/nope.png -------------------------------------------------------------------------------- /app/assets/images/pu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/pu.png -------------------------------------------------------------------------------- /app/assets/images/pu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/pu.svg -------------------------------------------------------------------------------- /app/assets/images/pul_logo_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/pul_logo_long.png -------------------------------------------------------------------------------- /app/assets/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/twitter.png -------------------------------------------------------------------------------- /app/assets/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/images/twitter.svg -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/javascripts/datatables.js -------------------------------------------------------------------------------- /app/assets/javascripts/form/mutex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/javascripts/form/mutex.js -------------------------------------------------------------------------------- /app/assets/stylesheets/components/batch_upload.scss: -------------------------------------------------------------------------------- 1 | .batch-upload-submit { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/datepicker.scss: -------------------------------------------------------------------------------- 1 | #ui-datepicker-div { 2 | z-index: 2 !important; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/viewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/assets/stylesheets/viewer.scss -------------------------------------------------------------------------------- /app/change_sets/change_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/change_sets/change_set.rb -------------------------------------------------------------------------------- /app/change_sets/event_change_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/change_sets/event_change_set.rb -------------------------------------------------------------------------------- /app/change_sets/simple_change_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/change_sets/simple_change_set.rb -------------------------------------------------------------------------------- /app/controllers/concerns/pdfable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/controllers/concerns/pdfable.rb -------------------------------------------------------------------------------- /app/controllers/oai_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/controllers/oai_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/viewer_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/controllers/viewer_controller.rb -------------------------------------------------------------------------------- /app/decorators/event_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/decorators/event_decorator.rb -------------------------------------------------------------------------------- /app/decorators/file_set_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/decorators/file_set_decorator.rb -------------------------------------------------------------------------------- /app/decorators/playlist_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/decorators/playlist_decorator.rb -------------------------------------------------------------------------------- /app/decorators/template_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/decorators/template_decorator.rb -------------------------------------------------------------------------------- /app/graphql/figgy_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/figgy_schema.rb -------------------------------------------------------------------------------- /app/graphql/mutations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/graphql/types/base_enum.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | class Types::BaseEnum < GraphQL::Schema::Enum 3 | end 4 | -------------------------------------------------------------------------------- /app/graphql/types/base_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/base_interface.rb -------------------------------------------------------------------------------- /app/graphql/types/base_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/base_object.rb -------------------------------------------------------------------------------- /app/graphql/types/base_union.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/base_union.rb -------------------------------------------------------------------------------- /app/graphql/types/embed_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/embed_type.rb -------------------------------------------------------------------------------- /app/graphql/types/file_set_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/file_set_type.rb -------------------------------------------------------------------------------- /app/graphql/types/mutation_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/mutation_type.rb -------------------------------------------------------------------------------- /app/graphql/types/notice_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/notice_type.rb -------------------------------------------------------------------------------- /app/graphql/types/playlist_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/playlist_type.rb -------------------------------------------------------------------------------- /app/graphql/types/query_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/query_type.rb -------------------------------------------------------------------------------- /app/graphql/types/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/resource.rb -------------------------------------------------------------------------------- /app/graphql/types/thumbnail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/graphql/types/thumbnail.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/bounding_box_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/bounding_box_helper.rb -------------------------------------------------------------------------------- /app/helpers/catalog_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/catalog_helper.rb -------------------------------------------------------------------------------- /app/helpers/edit_field_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/edit_field_helper.rb -------------------------------------------------------------------------------- /app/helpers/embargo_date_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/embargo_date_helper.rb -------------------------------------------------------------------------------- /app/helpers/file_manager_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/file_manager_helper.rb -------------------------------------------------------------------------------- /app/helpers/file_proxy_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/file_proxy_helper.rb -------------------------------------------------------------------------------- /app/helpers/metadata_form_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/metadata_form_helper.rb -------------------------------------------------------------------------------- /app/helpers/osd_modal_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/osd_modal_helper.rb -------------------------------------------------------------------------------- /app/helpers/structure_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/structure_helper.rb -------------------------------------------------------------------------------- /app/helpers/thumbnail_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/helpers/thumbnail_helper.rb -------------------------------------------------------------------------------- /app/indexers/coin_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/coin_indexer.rb -------------------------------------------------------------------------------- /app/indexers/collection_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/collection_indexer.rb -------------------------------------------------------------------------------- /app/indexers/composite_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/composite_indexer.rb -------------------------------------------------------------------------------- /app/indexers/ephemera_box_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/ephemera_box_indexer.rb -------------------------------------------------------------------------------- /app/indexers/facet_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/facet_indexer.rb -------------------------------------------------------------------------------- /app/indexers/member_of_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/member_of_indexer.rb -------------------------------------------------------------------------------- /app/indexers/project_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/project_indexer.rb -------------------------------------------------------------------------------- /app/indexers/rights_label_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/rights_label_indexer.rb -------------------------------------------------------------------------------- /app/indexers/sorting_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/sorting_indexer.rb -------------------------------------------------------------------------------- /app/indexers/title_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/title_indexer.rb -------------------------------------------------------------------------------- /app/indexers/track_indexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/indexers/track_indexer.rb -------------------------------------------------------------------------------- /app/inputs/dpul_url_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/inputs/dpul_url_input.rb -------------------------------------------------------------------------------- /app/inputs/multi_value_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/inputs/multi_value_input.rb -------------------------------------------------------------------------------- /app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /app/javascript/components/Tree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/components/Tree.vue -------------------------------------------------------------------------------- /app/javascript/entrypoints/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/entrypoints/viewer.js -------------------------------------------------------------------------------- /app/javascript/figgy/figgy_boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/figgy/figgy_boot.js -------------------------------------------------------------------------------- /app/javascript/figgy/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/figgy/flash.js -------------------------------------------------------------------------------- /app/javascript/figgy/modal_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/figgy/modal_viewer.js -------------------------------------------------------------------------------- /app/javascript/images/copyright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/images/copyright.svg -------------------------------------------------------------------------------- /app/javascript/images/iiif-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/images/iiif-logo.svg -------------------------------------------------------------------------------- /app/javascript/images/statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/images/statement.png -------------------------------------------------------------------------------- /app/javascript/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/store/index.js -------------------------------------------------------------------------------- /app/javascript/store/tree/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/store/tree/index.js -------------------------------------------------------------------------------- /app/javascript/store/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/store/vuex/actions.js -------------------------------------------------------------------------------- /app/javascript/store/zoom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/store/zoom/index.js -------------------------------------------------------------------------------- /app/javascript/test/deepZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/test/deepZoom.js -------------------------------------------------------------------------------- /app/javascript/test/resource.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/test/resource.spec.js -------------------------------------------------------------------------------- /app/javascript/test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/test/setup.js -------------------------------------------------------------------------------- /app/javascript/test/tree.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/test/tree.spec.js -------------------------------------------------------------------------------- /app/javascript/viewer/cdl_timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/viewer/cdl_timer.js -------------------------------------------------------------------------------- /app/javascript/viewer/tab_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/viewer/tab_manager.js -------------------------------------------------------------------------------- /app/javascript/viewer/uv_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/javascript/viewer/uv_manager.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | class ApplicationJob < ActiveJob::Base 3 | end 4 | -------------------------------------------------------------------------------- /app/jobs/box_boxless_folders_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/box_boxless_folders_job.rb -------------------------------------------------------------------------------- /app/jobs/bulk_update_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/bulk_update_job.rb -------------------------------------------------------------------------------- /app/jobs/catalog_update_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/catalog_update_job.rb -------------------------------------------------------------------------------- /app/jobs/cdl/pdf_ingest_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/cdl/pdf_ingest_job.rb -------------------------------------------------------------------------------- /app/jobs/characterization_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/characterization_job.rb -------------------------------------------------------------------------------- /app/jobs/clean_dead_queues_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/clean_dead_queues_job.rb -------------------------------------------------------------------------------- /app/jobs/clean_guest_users_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/clean_guest_users_job.rb -------------------------------------------------------------------------------- /app/jobs/clean_searches_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/clean_searches_job.rb -------------------------------------------------------------------------------- /app/jobs/cleanup_files_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/cleanup_files_job.rb -------------------------------------------------------------------------------- /app/jobs/cloud_fixity_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/cloud_fixity_job.rb -------------------------------------------------------------------------------- /app/jobs/create_derivatives_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/create_derivatives_job.rb -------------------------------------------------------------------------------- /app/jobs/create_ocr_request_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/create_ocr_request_job.rb -------------------------------------------------------------------------------- /app/jobs/delete_member_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/delete_member_job.rb -------------------------------------------------------------------------------- /app/jobs/delete_resource_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/delete_resource_job.rb -------------------------------------------------------------------------------- /app/jobs/export_bag_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/export_bag_job.rb -------------------------------------------------------------------------------- /app/jobs/export_files_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/export_files_job.rb -------------------------------------------------------------------------------- /app/jobs/export_hathi_sip_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/export_hathi_sip_job.rb -------------------------------------------------------------------------------- /app/jobs/export_pdf_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/export_pdf_job.rb -------------------------------------------------------------------------------- /app/jobs/generate_checksum_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/generate_checksum_job.rb -------------------------------------------------------------------------------- /app/jobs/generate_pdf_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/generate_pdf_job.rb -------------------------------------------------------------------------------- /app/jobs/import_bag_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/import_bag_job.rb -------------------------------------------------------------------------------- /app/jobs/ingest_ephemera_csv_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/ingest_ephemera_csv_job.rb -------------------------------------------------------------------------------- /app/jobs/ingest_ephemera_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/ingest_ephemera_job.rb -------------------------------------------------------------------------------- /app/jobs/ingest_folder_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/ingest_folder_job.rb -------------------------------------------------------------------------------- /app/jobs/ingest_folders_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/ingest_folders_job.rb -------------------------------------------------------------------------------- /app/jobs/ingest_gnib_mods_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/ingest_gnib_mods_job.rb -------------------------------------------------------------------------------- /app/jobs/ingest_map_folder_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/ingest_map_folder_job.rb -------------------------------------------------------------------------------- /app/jobs/ingest_mets_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/ingest_mets_job.rb -------------------------------------------------------------------------------- /app/jobs/ingest_moscow_mods_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/ingest_moscow_mods_job.rb -------------------------------------------------------------------------------- /app/jobs/local_fixity_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/local_fixity_job.rb -------------------------------------------------------------------------------- /app/jobs/missing_thumbnail_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/missing_thumbnail_job.rb -------------------------------------------------------------------------------- /app/jobs/mosaic_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/mosaic_job.rb -------------------------------------------------------------------------------- /app/jobs/nomisma_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/nomisma_job.rb -------------------------------------------------------------------------------- /app/jobs/pdf_ocr_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/pdf_ocr_job.rb -------------------------------------------------------------------------------- /app/jobs/poster_ingester_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/poster_ingester_job.rb -------------------------------------------------------------------------------- /app/jobs/preserve_children_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/preserve_children_job.rb -------------------------------------------------------------------------------- /app/jobs/preserve_resource_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/preserve_resource_job.rb -------------------------------------------------------------------------------- /app/jobs/recharacterize_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/recharacterize_job.rb -------------------------------------------------------------------------------- /app/jobs/repair_cloud_fixity_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/repair_cloud_fixity_job.rb -------------------------------------------------------------------------------- /app/jobs/repair_local_fixity_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/repair_local_fixity_job.rb -------------------------------------------------------------------------------- /app/jobs/reprocess_mets_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/reprocess_mets_job.rb -------------------------------------------------------------------------------- /app/jobs/run_ocr_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/run_ocr_job.rb -------------------------------------------------------------------------------- /app/jobs/server_upload_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/server_upload_job.rb -------------------------------------------------------------------------------- /app/jobs/update_cico_ids_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/update_cico_ids_job.rb -------------------------------------------------------------------------------- /app/jobs/update_dao_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/jobs/update_dao_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/bulk_update_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/mailers/bulk_update_mailer.rb -------------------------------------------------------------------------------- /app/mailers/cdl/complete_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/mailers/cdl/complete_mailer.rb -------------------------------------------------------------------------------- /app/mailers/cdl/hold_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/mailers/cdl/hold_mailer.rb -------------------------------------------------------------------------------- /app/mailers/collections_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/mailers/collections_mailer.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/auth_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/auth_token.rb -------------------------------------------------------------------------------- /app/models/base_workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/base_workflow.rb -------------------------------------------------------------------------------- /app/models/book_workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/book_workflow.rb -------------------------------------------------------------------------------- /app/models/box_workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/box_workflow.rb -------------------------------------------------------------------------------- /app/models/cdl/charged_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/cdl/charged_item.rb -------------------------------------------------------------------------------- /app/models/cdl/hold.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/cdl/hold.rb -------------------------------------------------------------------------------- /app/models/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/collection.rb -------------------------------------------------------------------------------- /app/models/concerns/linked_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/concerns/linked_data.rb -------------------------------------------------------------------------------- /app/models/controlled_vocabulary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/controlled_vocabulary.rb -------------------------------------------------------------------------------- /app/models/date_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/date_range.rb -------------------------------------------------------------------------------- /app/models/deletion_marker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/deletion_marker.rb -------------------------------------------------------------------------------- /app/models/ephemera_box.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ephemera_box.rb -------------------------------------------------------------------------------- /app/models/ephemera_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ephemera_field.rb -------------------------------------------------------------------------------- /app/models/ephemera_folder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ephemera_folder.rb -------------------------------------------------------------------------------- /app/models/ephemera_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ephemera_project.rb -------------------------------------------------------------------------------- /app/models/ephemera_term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ephemera_term.rb -------------------------------------------------------------------------------- /app/models/ephemera_vocabulary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ephemera_vocabulary.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/file_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/file_set.rb -------------------------------------------------------------------------------- /app/models/folder_data_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/folder_data_source.rb -------------------------------------------------------------------------------- /app/models/folder_workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/folder_workflow.rb -------------------------------------------------------------------------------- /app/models/geo_workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/geo_workflow.rb -------------------------------------------------------------------------------- /app/models/iiif_search_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/iiif_search_builder.rb -------------------------------------------------------------------------------- /app/models/index_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/index_collection.rb -------------------------------------------------------------------------------- /app/models/ingestable_audio_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ingestable_audio_file.rb -------------------------------------------------------------------------------- /app/models/ingestable_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ingestable_file.rb -------------------------------------------------------------------------------- /app/models/mets_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/mets_document.rb -------------------------------------------------------------------------------- /app/models/mets_document/factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/mets_document/factory.rb -------------------------------------------------------------------------------- /app/models/mets_structure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/mets_structure.rb -------------------------------------------------------------------------------- /app/models/name_with_place.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/name_with_place.rb -------------------------------------------------------------------------------- /app/models/nomisma_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/nomisma_document.rb -------------------------------------------------------------------------------- /app/models/numismatics/accession.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/accession.rb -------------------------------------------------------------------------------- /app/models/numismatics/artist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/artist.rb -------------------------------------------------------------------------------- /app/models/numismatics/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/attribute.rb -------------------------------------------------------------------------------- /app/models/numismatics/citation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/citation.rb -------------------------------------------------------------------------------- /app/models/numismatics/coin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/coin.rb -------------------------------------------------------------------------------- /app/models/numismatics/firm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/firm.rb -------------------------------------------------------------------------------- /app/models/numismatics/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/issue.rb -------------------------------------------------------------------------------- /app/models/numismatics/loan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/loan.rb -------------------------------------------------------------------------------- /app/models/numismatics/monogram.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/monogram.rb -------------------------------------------------------------------------------- /app/models/numismatics/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/note.rb -------------------------------------------------------------------------------- /app/models/numismatics/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/person.rb -------------------------------------------------------------------------------- /app/models/numismatics/place.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/place.rb -------------------------------------------------------------------------------- /app/models/numismatics/provenance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/provenance.rb -------------------------------------------------------------------------------- /app/models/numismatics/reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/reference.rb -------------------------------------------------------------------------------- /app/models/numismatics/subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/numismatics/subject.rb -------------------------------------------------------------------------------- /app/models/oai/figgy/marc21.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/oai/figgy/marc21.rb -------------------------------------------------------------------------------- /app/models/oai/figgy/oai_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/oai/figgy/oai_wrapper.rb -------------------------------------------------------------------------------- /app/models/oai/figgy/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/oai/figgy/provider.rb -------------------------------------------------------------------------------- /app/models/ocr_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/ocr_request.rb -------------------------------------------------------------------------------- /app/models/pending_upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/pending_upload.rb -------------------------------------------------------------------------------- /app/models/playlist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/playlist.rb -------------------------------------------------------------------------------- /app/models/preservation_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/preservation_object.rb -------------------------------------------------------------------------------- /app/models/proxy_file_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/proxy_file_set.rb -------------------------------------------------------------------------------- /app/models/raster_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/raster_resource.rb -------------------------------------------------------------------------------- /app/models/remote_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/remote_record.rb -------------------------------------------------------------------------------- /app/models/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/report.rb -------------------------------------------------------------------------------- /app/models/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/resource.rb -------------------------------------------------------------------------------- /app/models/scanned_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/scanned_map.rb -------------------------------------------------------------------------------- /app/models/scanned_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/scanned_resource.rb -------------------------------------------------------------------------------- /app/models/schema/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/schema/common.rb -------------------------------------------------------------------------------- /app/models/schema/geo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/schema/geo.rb -------------------------------------------------------------------------------- /app/models/schema/iiif.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/schema/iiif.rb -------------------------------------------------------------------------------- /app/models/schema/marc_relators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/schema/marc_relators.rb -------------------------------------------------------------------------------- /app/models/search_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/search_builder.rb -------------------------------------------------------------------------------- /app/models/solr_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/solr_document.rb -------------------------------------------------------------------------------- /app/models/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/template.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/vector_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/vector_resource.rb -------------------------------------------------------------------------------- /app/models/workflow_note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/workflow_note.rb -------------------------------------------------------------------------------- /app/models/workflow_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/models/workflow_registry.rb -------------------------------------------------------------------------------- /app/monitors/file_watcher_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/monitors/file_watcher_status.rb -------------------------------------------------------------------------------- /app/monitors/mount_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/monitors/mount_status.rb -------------------------------------------------------------------------------- /app/monitors/rabbit_mq_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/monitors/rabbit_mq_status.rb -------------------------------------------------------------------------------- /app/monitors/smtp_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/monitors/smtp_status.rb -------------------------------------------------------------------------------- /app/monitors/solr_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/monitors/solr_status.rb -------------------------------------------------------------------------------- /app/nested_resources/grouping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/nested_resources/grouping.rb -------------------------------------------------------------------------------- /app/nested_resources/labeled_uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/nested_resources/labeled_uri.rb -------------------------------------------------------------------------------- /app/nested_resources/structure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/nested_resources/structure.rb -------------------------------------------------------------------------------- /app/presenters/permission_badge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/presenters/permission_badge.rb -------------------------------------------------------------------------------- /app/queries/count_all_of_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/count_all_of_model.rb -------------------------------------------------------------------------------- /app/queries/count_members.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/count_members.rb -------------------------------------------------------------------------------- /app/queries/find_by_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/find_by_property.rb -------------------------------------------------------------------------------- /app/queries/find_facet_values.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/find_facet_values.rb -------------------------------------------------------------------------------- /app/queries/find_fixity_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/find_fixity_events.rb -------------------------------------------------------------------------------- /app/queries/find_highest_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/find_highest_value.rb -------------------------------------------------------------------------------- /app/queries/find_many_by_property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/find_many_by_property.rb -------------------------------------------------------------------------------- /app/queries/find_project_folders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/find_project_folders.rb -------------------------------------------------------------------------------- /app/queries/find_saved_ids.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/find_saved_ids.rb -------------------------------------------------------------------------------- /app/queries/find_video_members.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/find_video_members.rb -------------------------------------------------------------------------------- /app/queries/mosaic_file_set_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/mosaic_file_set_query.rb -------------------------------------------------------------------------------- /app/queries/paged_all_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/queries/paged_all_query.rb -------------------------------------------------------------------------------- /app/services/aspace/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/aspace/client.rb -------------------------------------------------------------------------------- /app/services/auto_completer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/auto_completer.rb -------------------------------------------------------------------------------- /app/services/box_mover.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/box_mover.rb -------------------------------------------------------------------------------- /app/services/bulk_edit_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/bulk_edit_service.rb -------------------------------------------------------------------------------- /app/services/bulk_ingest_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/bulk_ingest_service.rb -------------------------------------------------------------------------------- /app/services/cdl/charge_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/cdl/charge_manager.rb -------------------------------------------------------------------------------- /app/services/cdl/event_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/cdl/event_logging.rb -------------------------------------------------------------------------------- /app/services/cdl/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/cdl/status.rb -------------------------------------------------------------------------------- /app/services/cicognara_csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/cicognara_csv.rb -------------------------------------------------------------------------------- /app/services/cicognara_marc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/cicognara_marc.rb -------------------------------------------------------------------------------- /app/services/cloud_fixity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/cloud_fixity.rb -------------------------------------------------------------------------------- /app/services/dao_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/dao_updater.rb -------------------------------------------------------------------------------- /app/services/embed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/embed.rb -------------------------------------------------------------------------------- /app/services/event_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/event_generator.rb -------------------------------------------------------------------------------- /app/services/export_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/export_service.rb -------------------------------------------------------------------------------- /app/services/fgdc_update_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/fgdc_update_service.rb -------------------------------------------------------------------------------- /app/services/file_appender.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/file_appender.rb -------------------------------------------------------------------------------- /app/services/file_set_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/file_set_service.rb -------------------------------------------------------------------------------- /app/services/folder_json_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/folder_json_importer.rb -------------------------------------------------------------------------------- /app/services/identifier_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/identifier_service.rb -------------------------------------------------------------------------------- /app/services/ingest_ephemera_csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/ingest_ephemera_csv.rb -------------------------------------------------------------------------------- /app/services/ingest_ephemera_mods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/ingest_ephemera_mods.rb -------------------------------------------------------------------------------- /app/services/ingest_vocab_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/ingest_vocab_service.rb -------------------------------------------------------------------------------- /app/services/json_ingester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/json_ingester.rb -------------------------------------------------------------------------------- /app/services/local_fixity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/local_fixity.rb -------------------------------------------------------------------------------- /app/services/local_ingester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/local_ingester.rb -------------------------------------------------------------------------------- /app/services/manifest_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/manifest_builder.rb -------------------------------------------------------------------------------- /app/services/manifest_builder_v3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/manifest_builder_v3.rb -------------------------------------------------------------------------------- /app/services/marc_record_enhancer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/marc_record_enhancer.rb -------------------------------------------------------------------------------- /app/services/messaging_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/messaging_client.rb -------------------------------------------------------------------------------- /app/services/mms_report_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/mms_report_generator.rb -------------------------------------------------------------------------------- /app/services/mosaic_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/mosaic_generator.rb -------------------------------------------------------------------------------- /app/services/nomisma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/nomisma.rb -------------------------------------------------------------------------------- /app/services/nomisma/void.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/nomisma/void.rb -------------------------------------------------------------------------------- /app/services/orangelight_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/orangelight_document.rb -------------------------------------------------------------------------------- /app/services/pdf_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/pdf_generator.rb -------------------------------------------------------------------------------- /app/services/pdf_generator/canvas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/pdf_generator/canvas.rb -------------------------------------------------------------------------------- /app/services/pdf_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/pdf_service.rb -------------------------------------------------------------------------------- /app/services/persistence_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/persistence_adapter.rb -------------------------------------------------------------------------------- /app/services/preserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/preserver.rb -------------------------------------------------------------------------------- /app/services/preserver/importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/preserver/importer.rb -------------------------------------------------------------------------------- /app/services/reindexer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/reindexer.rb -------------------------------------------------------------------------------- /app/services/repair_cloud_fixity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/repair_cloud_fixity.rb -------------------------------------------------------------------------------- /app/services/repair_local_fixity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/repair_local_fixity.rb -------------------------------------------------------------------------------- /app/services/riiif_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/riiif_resolver.rb -------------------------------------------------------------------------------- /app/services/tesseract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/tesseract.rb -------------------------------------------------------------------------------- /app/services/valkyrie1_migrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/valkyrie1_migrator.rb -------------------------------------------------------------------------------- /app/services/vocabulary_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/services/vocabulary_service.rb -------------------------------------------------------------------------------- /app/types/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/types/types.rb -------------------------------------------------------------------------------- /app/utils/data_seeder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/utils/data_seeder.rb -------------------------------------------------------------------------------- /app/utils/figgy_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/utils/figgy_utils.rb -------------------------------------------------------------------------------- /app/utils/user_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/utils/user_utils.rb -------------------------------------------------------------------------------- /app/validators/bag_path_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/validators/bag_path_validator.rb -------------------------------------------------------------------------------- /app/validators/member_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/validators/member_validator.rb -------------------------------------------------------------------------------- /app/validators/parent_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/validators/parent_validator.rb -------------------------------------------------------------------------------- /app/validators/state_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/validators/state_validator.rb -------------------------------------------------------------------------------- /app/validators/title_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/validators/title_validator.rb -------------------------------------------------------------------------------- /app/validators/year_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/validators/year_validator.rb -------------------------------------------------------------------------------- /app/values/ark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/ark.rb -------------------------------------------------------------------------------- /app/values/barcode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/barcode.rb -------------------------------------------------------------------------------- /app/values/coverage_point.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/coverage_point.rb -------------------------------------------------------------------------------- /app/values/csv_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/csv_report.rb -------------------------------------------------------------------------------- /app/values/facet_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/facet_item.rb -------------------------------------------------------------------------------- /app/values/geo_coverage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/geo_coverage.rb -------------------------------------------------------------------------------- /app/values/health_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/health_report.rb -------------------------------------------------------------------------------- /app/values/hls_manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/hls_manifest.rb -------------------------------------------------------------------------------- /app/values/hls_manifest/caption.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/hls_manifest/caption.rb -------------------------------------------------------------------------------- /app/values/hls_manifest/primary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/hls_manifest/primary.rb -------------------------------------------------------------------------------- /app/values/in_process_or_pending.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/in_process_or_pending.rb -------------------------------------------------------------------------------- /app/values/manifest_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/manifest_key.rb -------------------------------------------------------------------------------- /app/values/pcdm_use.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/pcdm_use.rb -------------------------------------------------------------------------------- /app/values/rights_statements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/rights_statements.rb -------------------------------------------------------------------------------- /app/values/slug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/slug.rb -------------------------------------------------------------------------------- /app/values/tile_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/tile_path.rb -------------------------------------------------------------------------------- /app/values/time_period.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/time_period.rb -------------------------------------------------------------------------------- /app/values/viewer_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/values/viewer_configuration.rb -------------------------------------------------------------------------------- /app/views/auth_tokens/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/auth_tokens/_form.html.erb -------------------------------------------------------------------------------- /app/views/auth_tokens/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/auth_tokens/edit.html.erb -------------------------------------------------------------------------------- /app/views/auth_tokens/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/auth_tokens/index.html.erb -------------------------------------------------------------------------------- /app/views/auth_tokens/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/auth_tokens/new.html.erb -------------------------------------------------------------------------------- /app/views/auth_tokens/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/auth_tokens/show.html.erb -------------------------------------------------------------------------------- /app/views/base/_file_manager_actions.html.erb: -------------------------------------------------------------------------------- 1 | <%= render "custom_file_manager_actions" %> 2 | -------------------------------------------------------------------------------- /app/views/base/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/base/_form.html.erb -------------------------------------------------------------------------------- /app/views/base/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render "form" %> 2 | -------------------------------------------------------------------------------- /app/views/base/file_manager.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/base/file_manager.html.erb -------------------------------------------------------------------------------- /app/views/base/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render "form" %> 2 | -------------------------------------------------------------------------------- /app/views/base/pdf.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/base/pdf.html.erb -------------------------------------------------------------------------------- /app/views/base/structure.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/base/structure.html.erb -------------------------------------------------------------------------------- /app/views/bulk_ingest/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/bulk_ingest/show.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_admin_controls_raster_set.html.erb: -------------------------------------------------------------------------------- 1 | <%= render "admin_controls_raster_resource" %> 2 | -------------------------------------------------------------------------------- /app/views/catalog/_categories_default.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/catalog/_members_default.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/catalog/_members_raster_set.html.erb: -------------------------------------------------------------------------------- 1 | <%= render "members_raster_resource" %> 2 | -------------------------------------------------------------------------------- /app/views/catalog/_members_simple_resource.html.erb: -------------------------------------------------------------------------------- 1 | <%= render "catalog/members_multi_volume_work" %> 2 | -------------------------------------------------------------------------------- /app/views/catalog/_resource_attributes_ephemera_project.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/catalog/_resource_attributes_ephemera_vocabulary.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/catalog/_terms_default.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/catalog/_vocabulary_nav_default.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/catalog/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/catalog/index.html.erb -------------------------------------------------------------------------------- /app/views/catalog/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/catalog/show.html.erb -------------------------------------------------------------------------------- /app/views/ephemera_folders/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render "form" %> 2 | -------------------------------------------------------------------------------- /app/views/errors/not_found.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/errors/not_found.html.erb -------------------------------------------------------------------------------- /app/views/layouts/download.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/layouts/download.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/ocr_requests/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/ocr_requests/show.html.erb -------------------------------------------------------------------------------- /app/views/records/edit_fields/_append_id.html.erb: -------------------------------------------------------------------------------- 1 | <%= f.input :append_id, as: :hidden %> 2 | -------------------------------------------------------------------------------- /app/views/records/edit_fields/_change_set.html.erb: -------------------------------------------------------------------------------- 1 | <%= f.input :change_set, as: :hidden %> 2 | -------------------------------------------------------------------------------- /app/views/roles/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/roles/edit.html.erb -------------------------------------------------------------------------------- /app/views/shared/_add_works.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/shared/_add_works.html.erb -------------------------------------------------------------------------------- /app/views/shared/_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/shared/_analytics.html.erb -------------------------------------------------------------------------------- /app/views/shared/_brand_bar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/shared/_brand_bar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_confetti.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/shared/_confetti.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/shared/_footer.html.erb -------------------------------------------------------------------------------- /app/views/shared/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/shared/_header.html.erb -------------------------------------------------------------------------------- /app/views/shared/_osd_modal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/shared/_osd_modal.html.erb -------------------------------------------------------------------------------- /app/views/shared/_title_bar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/shared/_title_bar.html.erb -------------------------------------------------------------------------------- /app/views/templates/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/templates/new.html.erb -------------------------------------------------------------------------------- /app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/users/index.html.erb -------------------------------------------------------------------------------- /app/views/viewer/auth.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/viewer/auth.html.erb -------------------------------------------------------------------------------- /app/views/viewer/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/views/viewer/index.html.erb -------------------------------------------------------------------------------- /app/vocabs/pul_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/vocabs/pul_store.rb -------------------------------------------------------------------------------- /app/wayfinders/base_wayfinder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/wayfinders/base_wayfinder.rb -------------------------------------------------------------------------------- /app/wayfinders/event_wayfinder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/wayfinders/event_wayfinder.rb -------------------------------------------------------------------------------- /app/wayfinders/file_set_wayfinder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/wayfinders/file_set_wayfinder.rb -------------------------------------------------------------------------------- /app/wayfinders/playlist_wayfinder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/wayfinders/playlist_wayfinder.rb -------------------------------------------------------------------------------- /app/wayfinders/wayfinder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/app/wayfinders/wayfinder.rb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/ci_check_release_notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/ci_check_release_notes.sh -------------------------------------------------------------------------------- /bin/ci_free_tds_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/ci_free_tds_install.sh -------------------------------------------------------------------------------- /bin/ci_mediainfo_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/ci_mediainfo_install.sh -------------------------------------------------------------------------------- /bin/ci_openjpeg_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/ci_openjpeg_install.sh -------------------------------------------------------------------------------- /bin/ci_tippecanoe_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/ci_tippecanoe_install.sh -------------------------------------------------------------------------------- /bin/ci_vips_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/ci_vips_install.sh -------------------------------------------------------------------------------- /bin/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/delayed_job -------------------------------------------------------------------------------- /bin/first-time-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/first-time-setup.sh -------------------------------------------------------------------------------- /bin/fixture_regenerator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/fixture_regenerator -------------------------------------------------------------------------------- /bin/jetty_wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/jetty_wait -------------------------------------------------------------------------------- /bin/mapnik_thumbnail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/mapnik_thumbnail -------------------------------------------------------------------------------- /bin/parallel_rspec_coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/parallel_rspec_coverage -------------------------------------------------------------------------------- /bin/pdf_watcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/pdf_watcher -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/repo-mediaarea_1.0-20_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/repo-mediaarea_1.0-20_all.deb -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/setup_asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/setup_asdf -------------------------------------------------------------------------------- /bin/setup_credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/setup_credentials -------------------------------------------------------------------------------- /bin/setup_lando: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/setup_lando -------------------------------------------------------------------------------- /bin/setup_review_app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/setup_review_app -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/update -------------------------------------------------------------------------------- /bin/vite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/bin/vite -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/browserslist -------------------------------------------------------------------------------- /browserstack-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/browserstack-logo.svg -------------------------------------------------------------------------------- /cloud_fixity/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/cloud_fixity/.gcloudignore -------------------------------------------------------------------------------- /cloud_fixity/.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 20.15.1 2 | -------------------------------------------------------------------------------- /cloud_fixity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/cloud_fixity/index.js -------------------------------------------------------------------------------- /cloud_fixity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/cloud_fixity/package.json -------------------------------------------------------------------------------- /cloud_fixity/test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/cloud_fixity/test/index.test.js -------------------------------------------------------------------------------- /cloud_fixity/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/cloud_fixity/vitest.config.ts -------------------------------------------------------------------------------- /cloud_fixity/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/cloud_fixity/yarn.lock -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/authorities/notices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/authorities/notices.yml -------------------------------------------------------------------------------- /config/authorities/visibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/authorities/visibility.yml -------------------------------------------------------------------------------- /config/blacklight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/blacklight.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/config.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/deploy/production.rb -------------------------------------------------------------------------------- /config/deploy/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/deploy/staging.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/fedora.yml -------------------------------------------------------------------------------- /config/initializers/analyze_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/analyze_job.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/datadog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/datadog.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/errors.rb -------------------------------------------------------------------------------- /config/initializers/ezid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/ezid.rb -------------------------------------------------------------------------------- /config/initializers/figgy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/figgy.rb -------------------------------------------------------------------------------- /config/initializers/honeybadger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/honeybadger.rb -------------------------------------------------------------------------------- /config/initializers/hydra_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/hydra_config.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/json_encoding.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | ActiveSupport::JSON::Encoding.time_precision = 0 3 | -------------------------------------------------------------------------------- /config/initializers/lograge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/lograge.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/rack_profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/rack_profiler.rb -------------------------------------------------------------------------------- /config/initializers/redis_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/redis_config.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/tus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/tus.rb -------------------------------------------------------------------------------- /config/initializers/valkyrie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/initializers/valkyrie.rb -------------------------------------------------------------------------------- /config/lando_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/lando_env.rb -------------------------------------------------------------------------------- /config/locales/blacklight.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/locales/blacklight.en.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/mapnik.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/mapnik.xml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/read_only_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/read_only_mode.rb -------------------------------------------------------------------------------- /config/redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/redis.yml -------------------------------------------------------------------------------- /config/role_map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/role_map.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/solr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/solr.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/tika-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/tika-config.xml -------------------------------------------------------------------------------- /config/valkyrie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/valkyrie.yml -------------------------------------------------------------------------------- /config/vite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/vite.json -------------------------------------------------------------------------------- /config/vocab/iso639-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/vocab/iso639-1.csv -------------------------------------------------------------------------------- /config/vocab/iso639-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/vocab/iso639-2.csv -------------------------------------------------------------------------------- /config/vocab/lae_areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/vocab/lae_areas.csv -------------------------------------------------------------------------------- /config/vocab/lae_genres.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/vocab/lae_genres.csv -------------------------------------------------------------------------------- /config/vocab/lae_subjects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/vocab/lae_subjects.csv -------------------------------------------------------------------------------- /config/vocab/loc_countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/vocab/loc_countries.csv -------------------------------------------------------------------------------- /config/vocab/sae_subjects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/config/vocab/sae_subjects.csv -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/db/structure.sql -------------------------------------------------------------------------------- /devbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/devbox.json -------------------------------------------------------------------------------- /devbox.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/devbox.lock -------------------------------------------------------------------------------- /docs/general/interesting_objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/general/interesting_objects.md -------------------------------------------------------------------------------- /docs/general/milestones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/general/milestones.md -------------------------------------------------------------------------------- /docs/qa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/qa.md -------------------------------------------------------------------------------- /docs/technical/arks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/arks.md -------------------------------------------------------------------------------- /docs/technical/aspace_identifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/aspace_identifiers.md -------------------------------------------------------------------------------- /docs/technical/background_ingest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/background_ingest.md -------------------------------------------------------------------------------- /docs/technical/cdl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/cdl.md -------------------------------------------------------------------------------- /docs/technical/change_sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/change_sets.md -------------------------------------------------------------------------------- /docs/technical/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/decorators.md -------------------------------------------------------------------------------- /docs/technical/harvesting-figgy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/harvesting-figgy.md -------------------------------------------------------------------------------- /docs/technical/linked_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/linked_data.md -------------------------------------------------------------------------------- /docs/technical/migrate-lae-vocabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/migrate-lae-vocabs.md -------------------------------------------------------------------------------- /docs/technical/mosaic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/mosaic.md -------------------------------------------------------------------------------- /docs/technical/pmtiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/pmtiles.md -------------------------------------------------------------------------------- /docs/technical/storage-locations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/storage-locations.md -------------------------------------------------------------------------------- /docs/technical/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/troubleshooting.md -------------------------------------------------------------------------------- /docs/technical/viewer-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/technical/viewer-flow.md -------------------------------------------------------------------------------- /docs/titiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/titiler.md -------------------------------------------------------------------------------- /docs/titiler_sequence_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/titiler_sequence_diagram.png -------------------------------------------------------------------------------- /docs/ux/use_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/ux/use_cases.md -------------------------------------------------------------------------------- /docs/ux/workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/docs/ux/workflows.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/auto_complete.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/auto_complete.rake -------------------------------------------------------------------------------- /lib/tasks/bulk.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/bulk.rake -------------------------------------------------------------------------------- /lib/tasks/bundler_audit.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/bundler_audit.rake -------------------------------------------------------------------------------- /lib/tasks/cache.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/cache.rake -------------------------------------------------------------------------------- /lib/tasks/cdl.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/cdl.rake -------------------------------------------------------------------------------- /lib/tasks/clean.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/clean.rake -------------------------------------------------------------------------------- /lib/tasks/csv.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/csv.rake -------------------------------------------------------------------------------- /lib/tasks/demo.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/demo.rake -------------------------------------------------------------------------------- /lib/tasks/dev.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/dev.rake -------------------------------------------------------------------------------- /lib/tasks/export.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/export.rake -------------------------------------------------------------------------------- /lib/tasks/figgy.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/figgy.rake -------------------------------------------------------------------------------- /lib/tasks/file_sets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/file_sets.rake -------------------------------------------------------------------------------- /lib/tasks/fixity_worker.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/fixity_worker.rake -------------------------------------------------------------------------------- /lib/tasks/geniza.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/geniza.rake -------------------------------------------------------------------------------- /lib/tasks/import.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/import.rake -------------------------------------------------------------------------------- /lib/tasks/keys.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/keys.rake -------------------------------------------------------------------------------- /lib/tasks/lae.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/lae.rake -------------------------------------------------------------------------------- /lib/tasks/maps_add_copyright.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/maps_add_copyright.rake -------------------------------------------------------------------------------- /lib/tasks/migrate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/migrate.rake -------------------------------------------------------------------------------- /lib/tasks/music_reserves.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/music_reserves.rake -------------------------------------------------------------------------------- /lib/tasks/numismatics.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/numismatics.rake -------------------------------------------------------------------------------- /lib/tasks/performance.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/performance.rake -------------------------------------------------------------------------------- /lib/tasks/preservation.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/preservation.rake -------------------------------------------------------------------------------- /lib/tasks/reindex.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/reindex.rake -------------------------------------------------------------------------------- /lib/tasks/report.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/report.rake -------------------------------------------------------------------------------- /lib/tasks/sync.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/sync.rake -------------------------------------------------------------------------------- /lib/tasks/vocab.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/lib/tasks/vocab.rake -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/package.json -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/pul_logo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/pul_logo_icon.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/uv/build.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/build.js.map -------------------------------------------------------------------------------- /public/uv/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/favicon.ico -------------------------------------------------------------------------------- /public/uv/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/helpers.js -------------------------------------------------------------------------------- /public/uv/img/pixel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/img/pixel.gif -------------------------------------------------------------------------------- /public/uv/info.json: -------------------------------------------------------------------------------- 1 | { "version": "3.0.27" } 2 | -------------------------------------------------------------------------------- /public/uv/lib/AVComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/AVComponent.js -------------------------------------------------------------------------------- /public/uv/lib/Detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/Detector.js -------------------------------------------------------------------------------- /public/uv/lib/GLTFLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/GLTFLoader.js -------------------------------------------------------------------------------- /public/uv/lib/GalleryComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/GalleryComponent.js -------------------------------------------------------------------------------- /public/uv/lib/MTLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/MTLLoader.js -------------------------------------------------------------------------------- /public/uv/lib/MetadataComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/MetadataComponent.js -------------------------------------------------------------------------------- /public/uv/lib/OBJLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/OBJLoader.js -------------------------------------------------------------------------------- /public/uv/lib/PLYLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/PLYLoader.js -------------------------------------------------------------------------------- /public/uv/lib/TreeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/TreeComponent.js -------------------------------------------------------------------------------- /public/uv/lib/VRControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/VRControls.js -------------------------------------------------------------------------------- /public/uv/lib/VREffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/VREffect.js -------------------------------------------------------------------------------- /public/uv/lib/WebVR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/WebVR.js -------------------------------------------------------------------------------- /public/uv/lib/dash.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/dash.all.min.js -------------------------------------------------------------------------------- /public/uv/lib/hls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/hls.min.js -------------------------------------------------------------------------------- /public/uv/lib/iiifgallery.proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/iiifgallery.proxy.js -------------------------------------------------------------------------------- /public/uv/lib/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/jquery-ui.min.js -------------------------------------------------------------------------------- /public/uv/lib/offline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/offline.js -------------------------------------------------------------------------------- /public/uv/lib/openseadragon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/openseadragon.min.js -------------------------------------------------------------------------------- /public/uv/lib/pdf.combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/pdf.combined.js -------------------------------------------------------------------------------- /public/uv/lib/pdfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/pdfobject.js -------------------------------------------------------------------------------- /public/uv/lib/stats.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/stats.min.js -------------------------------------------------------------------------------- /public/uv/lib/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/three.min.js -------------------------------------------------------------------------------- /public/uv/lib/virtex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/virtex.js -------------------------------------------------------------------------------- /public/uv/lib/waveform-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/lib/waveform-data.js -------------------------------------------------------------------------------- /public/uv/uv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/uv.css -------------------------------------------------------------------------------- /public/uv/uv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/uv.html -------------------------------------------------------------------------------- /public/uv/uv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/uv.js -------------------------------------------------------------------------------- /public/uv/uv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/uv.zip -------------------------------------------------------------------------------- /public/uv/uv_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/uv/uv_config.json -------------------------------------------------------------------------------- /public/vatican.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/public/vatican.png -------------------------------------------------------------------------------- /rspec_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/rspec_examples.txt -------------------------------------------------------------------------------- /scripts/benchmark_conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/scripts/benchmark_conversion.rb -------------------------------------------------------------------------------- /scripts/combine_coverage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/scripts/combine_coverage.rb -------------------------------------------------------------------------------- /scripts/fixity_demo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/scripts/fixity_demo.rb -------------------------------------------------------------------------------- /solr/config/_rest_managed.json: -------------------------------------------------------------------------------- 1 | { 2 | "initArgs":{}, 3 | "managedList":[]} -------------------------------------------------------------------------------- /solr/config/admin-extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/admin-extra.html -------------------------------------------------------------------------------- /solr/config/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/elevate.xml -------------------------------------------------------------------------------- /solr/config/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/protwords.txt -------------------------------------------------------------------------------- /solr/config/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/schema.xml -------------------------------------------------------------------------------- /solr/config/scripts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/scripts.conf -------------------------------------------------------------------------------- /solr/config/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/solrconfig.xml -------------------------------------------------------------------------------- /solr/config/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history 3 | -------------------------------------------------------------------------------- /solr/config/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/stopwords.txt -------------------------------------------------------------------------------- /solr/config/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/stopwords_en.txt -------------------------------------------------------------------------------- /solr/config/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/synonyms.txt -------------------------------------------------------------------------------- /solr/config/xslt/example.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/xslt/example.xsl -------------------------------------------------------------------------------- /solr/config/xslt/example_atom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/xslt/example_atom.xsl -------------------------------------------------------------------------------- /solr/config/xslt/example_rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/xslt/example_rss.xsl -------------------------------------------------------------------------------- /solr/config/xslt/luke.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/config/xslt/luke.xsl -------------------------------------------------------------------------------- /solr/sample_solr_documents.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/sample_solr_documents.yml -------------------------------------------------------------------------------- /solr/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/solr/solr.xml -------------------------------------------------------------------------------- /spec/change_sets/change_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/change_sets/change_set_spec.rb -------------------------------------------------------------------------------- /spec/factories/cdl/charged_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/cdl/charged_item.rb -------------------------------------------------------------------------------- /spec/factories/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/collection.rb -------------------------------------------------------------------------------- /spec/factories/deletion_marker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/deletion_marker.rb -------------------------------------------------------------------------------- /spec/factories/ephemera_box.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/ephemera_box.rb -------------------------------------------------------------------------------- /spec/factories/ephemera_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/ephemera_field.rb -------------------------------------------------------------------------------- /spec/factories/ephemera_folder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/ephemera_folder.rb -------------------------------------------------------------------------------- /spec/factories/ephemera_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/ephemera_project.rb -------------------------------------------------------------------------------- /spec/factories/ephemera_term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/ephemera_term.rb -------------------------------------------------------------------------------- /spec/factories/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/event.rb -------------------------------------------------------------------------------- /spec/factories/file_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/file_metadata.rb -------------------------------------------------------------------------------- /spec/factories/file_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/file_set.rb -------------------------------------------------------------------------------- /spec/factories/index_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/index_collection.rb -------------------------------------------------------------------------------- /spec/factories/numismatics/coin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/numismatics/coin.rb -------------------------------------------------------------------------------- /spec/factories/ocr_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/ocr_requests.rb -------------------------------------------------------------------------------- /spec/factories/playlist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/playlist.rb -------------------------------------------------------------------------------- /spec/factories/proxy_file_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/proxy_file_set.rb -------------------------------------------------------------------------------- /spec/factories/raster_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/raster_resource.rb -------------------------------------------------------------------------------- /spec/factories/scanned_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/scanned_map.rb -------------------------------------------------------------------------------- /spec/factories/scanned_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/scanned_resource.rb -------------------------------------------------------------------------------- /spec/factories/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/template.rb -------------------------------------------------------------------------------- /spec/factories/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/user.rb -------------------------------------------------------------------------------- /spec/factories/vector_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/factories/vector_resource.rb -------------------------------------------------------------------------------- /spec/features/bookmarks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/bookmarks_spec.rb -------------------------------------------------------------------------------- /spec/features/bulk_edit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/bulk_edit_spec.rb -------------------------------------------------------------------------------- /spec/features/catalog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/catalog_spec.rb -------------------------------------------------------------------------------- /spec/features/collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/collection_spec.rb -------------------------------------------------------------------------------- /spec/features/ephemera_box_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/ephemera_box_spec.rb -------------------------------------------------------------------------------- /spec/features/file_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/file_manager_spec.rb -------------------------------------------------------------------------------- /spec/features/file_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/file_set_spec.rb -------------------------------------------------------------------------------- /spec/features/health_status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/health_status_spec.rb -------------------------------------------------------------------------------- /spec/features/login_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/login_spec.rb -------------------------------------------------------------------------------- /spec/features/manage_users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/manage_users_spec.rb -------------------------------------------------------------------------------- /spec/features/ocr_requests_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/ocr_requests_spec.rb -------------------------------------------------------------------------------- /spec/features/order_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/order_manager_spec.rb -------------------------------------------------------------------------------- /spec/features/playlist_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/playlist_spec.rb -------------------------------------------------------------------------------- /spec/features/relationships_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/relationships_spec.rb -------------------------------------------------------------------------------- /spec/features/reports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/reports_spec.rb -------------------------------------------------------------------------------- /spec/features/root_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/root_spec.rb -------------------------------------------------------------------------------- /spec/features/scanned_map_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/scanned_map_spec.rb -------------------------------------------------------------------------------- /spec/features/struct_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/features/struct_manager_spec.rb -------------------------------------------------------------------------------- /spec/figgy_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/figgy_config_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/GNIB/00223/00223.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/GNIB/00223/00223.tif -------------------------------------------------------------------------------- /spec/fixtures/GNIB/00223/00224.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/GNIB/00223/00224.tif -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/10/find_archival_object_MC001.01_c000001.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/10/find_archival_object_MC230_c117.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/11/find_archival_object_MC001.01_c000001.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/11/find_archival_object_MC230_c117.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/12/find_archival_object_MC001.01_c000001.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/12/find_archival_object_MC230_c117.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/4/find_archival_object_MC001.01_c000001.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/4/find_archival_object_MC230_c117.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/5/find_archival_object_MC001.01_c000001.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/5/find_archival_object_MC230_c117.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/6/find_archival_object_MC001.01_c000001.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/6/find_archival_object_MC230_c117.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/7/find_archival_object_MC001.01_c000001.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/7/find_archival_object_MC230_c117.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/8/find_archival_object_MC001.01_c000001.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/8/find_archival_object_MC230_c117.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/9/find_archival_object_MC001.01_c000001.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/aspace/repositories/9/find_archival_object_MC230_c117.json: -------------------------------------------------------------------------------- 1 | {"archival_objects":[]} 2 | -------------------------------------------------------------------------------- /spec/fixtures/av/a_c0652_2017_05_bag3/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/av/bulk_ingest/c0652_2017_05_bag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/av/la_c0652_2017_05_bag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/av/la_c0652_2017_05_bag2/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/av/la_c0652_2017_05_bag3/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/av/la_c0652_2017_05_bag4/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/av/la_demo_bag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/av/new_pbcore_bag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/bags/invalid_bag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/bags/valid_bag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /spec/fixtures/bags/valid_bag/data/data.txt: -------------------------------------------------------------------------------- 1 | This is sample data 2 | 3 | -------------------------------------------------------------------------------- /spec/fixtures/cid_mmsid_csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/cid_mmsid_csv.csv -------------------------------------------------------------------------------- /spec/fixtures/directory_info/1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/directory_info/2/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/directory_info/ingest_root/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/directory_info/ingest_root/1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/directory_info/ingest_root/2/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/files/4k-1second.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/4k-1second.mp4 -------------------------------------------------------------------------------- /spec/fixtures/files/GNIB/00223.mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/GNIB/00223.mods -------------------------------------------------------------------------------- /spec/fixtures/files/abstract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/abstract.png -------------------------------------------------------------------------------- /spec/fixtures/files/abstract.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/abstract.tiff -------------------------------------------------------------------------------- /spec/fixtures/files/audio's.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/audio's.wav -------------------------------------------------------------------------------- /spec/fixtures/files/audio_file.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/audio_file.wav -------------------------------------------------------------------------------- /spec/fixtures/files/bad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/bad.pdf -------------------------------------------------------------------------------- /spec/fixtures/files/bad.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/bad.tif -------------------------------------------------------------------------------- /spec/fixtures/files/caption.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/caption.vtt -------------------------------------------------------------------------------- /spec/fixtures/files/city.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/city.mp4 -------------------------------------------------------------------------------- /spec/fixtures/files/demo_mp3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/demo_mp3.mp3 -------------------------------------------------------------------------------- /spec/fixtures/files/empty.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/files/ephemera.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/ephemera.csv -------------------------------------------------------------------------------- /spec/fixtures/files/example.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/example.jp2 -------------------------------------------------------------------------------- /spec/fixtures/files/example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/example.tif -------------------------------------------------------------------------------- /spec/fixtures/files/gdal/gdalinfo-blank.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/files/geo_metadata/empty.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/files/invalid.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/files/invalid.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/invalid.tif -------------------------------------------------------------------------------- /spec/fixtures/files/invalid.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/files/pudl0044/originals_no_watermark/991234563506421/00000001.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/files/raster/invalid-geotiff.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/files/sae_ephemera.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/sae_ephemera.csv -------------------------------------------------------------------------------- /spec/fixtures/files/sample.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/sample.ogg -------------------------------------------------------------------------------- /spec/fixtures/files/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/sample.pdf -------------------------------------------------------------------------------- /spec/fixtures/files/vector/g'eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/vector/g'eo.json -------------------------------------------------------------------------------- /spec/fixtures/files/vector/geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/vector/geo.json -------------------------------------------------------------------------------- /spec/fixtures/files/w'eird.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/files/w'eird.tif -------------------------------------------------------------------------------- /spec/fixtures/hidden_files/32101075851400/.hidden_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/hidden_files/32101075851400/normal_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/hocr.hocr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/hocr.hocr -------------------------------------------------------------------------------- /spec/fixtures/iiif_v3_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/iiif_v3_schema.json -------------------------------------------------------------------------------- /spec/fixtures/importable_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/importable_json.json -------------------------------------------------------------------------------- /spec/fixtures/ingest_multi/vol1/figgy_metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "series": ["Cool stuff"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/ingest_selene/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/ingest_selene/1.tif -------------------------------------------------------------------------------- /spec/fixtures/ingest_selene/2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/ingest_selene/2.tif -------------------------------------------------------------------------------- /spec/fixtures/ingest_selene/3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/ingest_selene/3.tif -------------------------------------------------------------------------------- /spec/fixtures/ingest_selene/4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/ingest_selene/4.tif -------------------------------------------------------------------------------- /spec/fixtures/ingest_selene/Selene_Output/depthmap_m1_HF_0.03_m_shaded.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/ingest_selene/Selene_Output/depthmap_m1_shaded.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/ingest_single/Thumbs.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/ingest_single/gray.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/ingest_single/gray.tif -------------------------------------------------------------------------------- /spec/fixtures/ingest_single_figgy_metadata/Thumbs.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/json_ingest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/json_ingest.json -------------------------------------------------------------------------------- /spec/fixtures/lae/32101075851400/0001.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/lae/32101075851418/0001.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/lae/32101075851418/0002.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/lae/BOXBARCODE.jhove.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/lae_genres.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/lae_genres.csv -------------------------------------------------------------------------------- /spec/fixtures/lae_subjects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/lae_subjects.csv -------------------------------------------------------------------------------- /spec/fixtures/mets/scrapbooks.mets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/mets/scrapbooks.mets -------------------------------------------------------------------------------- /spec/fixtures/mets/tsop_typed.mets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/mets/tsop_typed.mets -------------------------------------------------------------------------------- /spec/fixtures/ocr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/fixtures/ocr.txt -------------------------------------------------------------------------------- /spec/fixtures/order_test/000001.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/order_test/000002.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/examples/lae/32101075851400/0001.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/examples/lae/32101075851418/0001.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/examples/lae/32101075851418/0002.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/examples/lae/BOXBARCODE.jhove.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/examples/lapidus/9946093213506421/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/examples/lapidus/AC044_c0003/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/examples/not_an_identifier/June 31/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/examples/single_volume/9946093213506421/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/studio_new/DPUL/A123456/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/staged_files/studio_new/DPUL/Santa/test.1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/graphql/figgy_schema_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/graphql/figgy_schema_spec.rb -------------------------------------------------------------------------------- /spec/graphql/types/base_enum_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/graphql/types/base_enum_spec.rb -------------------------------------------------------------------------------- /spec/graphql/types/resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/graphql/types/resource_spec.rb -------------------------------------------------------------------------------- /spec/graphql/types/thumbnail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/graphql/types/thumbnail_spec.rb -------------------------------------------------------------------------------- /spec/helpers/catalog_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/helpers/catalog_helper_spec.rb -------------------------------------------------------------------------------- /spec/honeybadger_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/honeybadger_check_spec.rb -------------------------------------------------------------------------------- /spec/indexers/coin_indexer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/indexers/coin_indexer_spec.rb -------------------------------------------------------------------------------- /spec/indexers/facet_indexer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/indexers/facet_indexer_spec.rb -------------------------------------------------------------------------------- /spec/indexers/title_indexer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/indexers/title_indexer_spec.rb -------------------------------------------------------------------------------- /spec/jobs/bulk_update_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/bulk_update_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/catalog_update_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/catalog_update_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/cdl/pdf_ingest_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/cdl/pdf_ingest_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/clean_searches_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/clean_searches_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/cloud_fixity_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/cloud_fixity_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/delete_member_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/delete_member_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/export_bag_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/export_bag_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/export_files_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/export_files_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/export_pdf_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/export_pdf_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/generate_pdf_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/generate_pdf_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/import_bag_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/import_bag_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/ingest_folder_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/ingest_folder_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/ingest_folders_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/ingest_folders_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/ingest_mets_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/ingest_mets_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/local_fixity_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/local_fixity_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/mosaic_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/mosaic_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/pdf_ocr_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/pdf_ocr_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/recharacterize_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/recharacterize_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/reprocess_mets_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/reprocess_mets_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/run_ocr_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/run_ocr_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/server_upload_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/server_upload_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/update_dao_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/jobs/update_dao_job_spec.rb -------------------------------------------------------------------------------- /spec/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/models/ability_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/ability_spec.rb -------------------------------------------------------------------------------- /spec/models/auth_token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/auth_token_spec.rb -------------------------------------------------------------------------------- /spec/models/base_workflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/base_workflow_spec.rb -------------------------------------------------------------------------------- /spec/models/book_workflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/book_workflow_spec.rb -------------------------------------------------------------------------------- /spec/models/box_workflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/box_workflow_spec.rb -------------------------------------------------------------------------------- /spec/models/cdl/charged_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/cdl/charged_item_spec.rb -------------------------------------------------------------------------------- /spec/models/cdl/hold_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/cdl/hold_spec.rb -------------------------------------------------------------------------------- /spec/models/collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/collection_spec.rb -------------------------------------------------------------------------------- /spec/models/ephemera_box_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/ephemera_box_spec.rb -------------------------------------------------------------------------------- /spec/models/ephemera_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/ephemera_field_spec.rb -------------------------------------------------------------------------------- /spec/models/ephemera_folder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/ephemera_folder_spec.rb -------------------------------------------------------------------------------- /spec/models/ephemera_project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/ephemera_project_spec.rb -------------------------------------------------------------------------------- /spec/models/ephemera_term_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/ephemera_term_spec.rb -------------------------------------------------------------------------------- /spec/models/event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/event_spec.rb -------------------------------------------------------------------------------- /spec/models/file_set_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/file_set_feature_spec.rb -------------------------------------------------------------------------------- /spec/models/file_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/file_set_spec.rb -------------------------------------------------------------------------------- /spec/models/folder_workflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/folder_workflow_spec.rb -------------------------------------------------------------------------------- /spec/models/geo_workflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/geo_workflow_spec.rb -------------------------------------------------------------------------------- /spec/models/grouping_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/grouping_spec.rb -------------------------------------------------------------------------------- /spec/models/index_collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/index_collection_spec.rb -------------------------------------------------------------------------------- /spec/models/ingestable_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/ingestable_file_spec.rb -------------------------------------------------------------------------------- /spec/models/mets_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/mets_document_spec.rb -------------------------------------------------------------------------------- /spec/models/multi_checksum_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/multi_checksum_spec.rb -------------------------------------------------------------------------------- /spec/models/numismatics/coin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/numismatics/coin_spec.rb -------------------------------------------------------------------------------- /spec/models/numismatics/firm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/numismatics/firm_spec.rb -------------------------------------------------------------------------------- /spec/models/numismatics/loan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/numismatics/loan_spec.rb -------------------------------------------------------------------------------- /spec/models/numismatics/note_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/numismatics/note_spec.rb -------------------------------------------------------------------------------- /spec/models/playlist_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/playlist_spec.rb -------------------------------------------------------------------------------- /spec/models/proxy_file_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/proxy_file_set_spec.rb -------------------------------------------------------------------------------- /spec/models/raster_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/raster_resource_spec.rb -------------------------------------------------------------------------------- /spec/models/remote_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/remote_record_spec.rb -------------------------------------------------------------------------------- /spec/models/report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/report_spec.rb -------------------------------------------------------------------------------- /spec/models/scanned_map_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/scanned_map_spec.rb -------------------------------------------------------------------------------- /spec/models/scanned_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/scanned_resource_spec.rb -------------------------------------------------------------------------------- /spec/models/schema/common_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/schema/common_spec.rb -------------------------------------------------------------------------------- /spec/models/schema/iiif_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/schema/iiif_spec.rb -------------------------------------------------------------------------------- /spec/models/search_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/search_builder_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/vector_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/models/vector_resource_spec.rb -------------------------------------------------------------------------------- /spec/queries/count_members_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/queries/count_members_spec.rb -------------------------------------------------------------------------------- /spec/queries/find_saved_ids_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/queries/find_saved_ids_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/registered_adapter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/registered_adapter_spec.rb -------------------------------------------------------------------------------- /spec/requests/catalog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/requests/catalog_spec.rb -------------------------------------------------------------------------------- /spec/requests/health_monitor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/requests/health_monitor_spec.rb -------------------------------------------------------------------------------- /spec/requests/playlist_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/requests/playlist_spec.rb -------------------------------------------------------------------------------- /spec/requests/scanned_map_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/requests/scanned_map_spec.rb -------------------------------------------------------------------------------- /spec/requests/sessions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/requests/sessions_spec.rb -------------------------------------------------------------------------------- /spec/requests/viewer_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/requests/viewer_config_spec.rb -------------------------------------------------------------------------------- /spec/routing/cdl_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/routing/cdl_resource_spec.rb -------------------------------------------------------------------------------- /spec/routing/file_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/routing/file_set_spec.rb -------------------------------------------------------------------------------- /spec/routing/letter_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/routing/letter_resource_spec.rb -------------------------------------------------------------------------------- /spec/routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/routing_spec.rb -------------------------------------------------------------------------------- /spec/services/auto_completer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/auto_completer_spec.rb -------------------------------------------------------------------------------- /spec/services/box_mover_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/box_mover_spec.rb -------------------------------------------------------------------------------- /spec/services/cicognara_csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/cicognara_csv_spec.rb -------------------------------------------------------------------------------- /spec/services/cicognara_marc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/cicognara_marc_spec.rb -------------------------------------------------------------------------------- /spec/services/cloud_fixity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/cloud_fixity_spec.rb -------------------------------------------------------------------------------- /spec/services/dao_updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/dao_updater_spec.rb -------------------------------------------------------------------------------- /spec/services/export_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/export_service_spec.rb -------------------------------------------------------------------------------- /spec/services/json_ingester_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/json_ingester_spec.rb -------------------------------------------------------------------------------- /spec/services/local_fixity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/local_fixity_spec.rb -------------------------------------------------------------------------------- /spec/services/manifest_builder/by_resource_type/image_resource_manifest_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/services/nomisma_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/nomisma_spec.rb -------------------------------------------------------------------------------- /spec/services/preserver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/preserver_spec.rb -------------------------------------------------------------------------------- /spec/services/reindexer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/reindexer_spec.rb -------------------------------------------------------------------------------- /spec/services/tesseract_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/services/tesseract_spec.rb -------------------------------------------------------------------------------- /spec/shared_specs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/shared_specs.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/action_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/action_mailer.rb -------------------------------------------------------------------------------- /spec/support/capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/capybara.rb -------------------------------------------------------------------------------- /spec/support/capybara_selenium.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/capybara_selenium.rb -------------------------------------------------------------------------------- /spec/support/clean_solr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/clean_solr.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/devise.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/geo_derivatives.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/geo_derivatives.rb -------------------------------------------------------------------------------- /spec/support/graphql_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/graphql_helpers.rb -------------------------------------------------------------------------------- /spec/support/i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/i18n.rb -------------------------------------------------------------------------------- /spec/support/modify_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/modify_file.rb -------------------------------------------------------------------------------- /spec/support/rdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/rdf.rb -------------------------------------------------------------------------------- /spec/support/reset_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/reset_auth.rb -------------------------------------------------------------------------------- /spec/support/stub_aspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/stub_aspace.rb -------------------------------------------------------------------------------- /spec/support/stub_catalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/stub_catalog.rb -------------------------------------------------------------------------------- /spec/support/stub_ezid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/stub_ezid.rb -------------------------------------------------------------------------------- /spec/support/stub_fixity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/stub_fixity.rb -------------------------------------------------------------------------------- /spec/support/stub_rabbit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/stub_rabbit.rb -------------------------------------------------------------------------------- /spec/support/stub_tika.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/stub_tika.rb -------------------------------------------------------------------------------- /spec/support/webmock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/support/webmock.rb -------------------------------------------------------------------------------- /spec/utils/data_seeder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/utils/data_seeder_spec.rb -------------------------------------------------------------------------------- /spec/utils/user_utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/utils/user_utils_spec.rb -------------------------------------------------------------------------------- /spec/values/csv_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/values/csv_report_spec.rb -------------------------------------------------------------------------------- /spec/values/geo_coverage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/values/geo_coverage_spec.rb -------------------------------------------------------------------------------- /spec/values/health_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/values/health_report_spec.rb -------------------------------------------------------------------------------- /spec/values/manifest_key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/values/manifest_key_spec.rb -------------------------------------------------------------------------------- /spec/values/slug_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/values/slug_spec.rb -------------------------------------------------------------------------------- /spec/values/tile_path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/values/tile_path_spec.rb -------------------------------------------------------------------------------- /spec/wayfinders/wayfinder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/spec/wayfinders/wayfinder_spec.rb -------------------------------------------------------------------------------- /staged_files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-compress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/test-compress.sh -------------------------------------------------------------------------------- /vendor/assets/images/geocoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/vendor/assets/images/geocoder.png -------------------------------------------------------------------------------- /vendor/assets/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/vendor/assets/images/throbber.gif -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/figgy/HEAD/yarn.lock --------------------------------------------------------------------------------