├── .circleci └── config.yml ├── .coveralls.yml ├── .debride_allowlist.txt ├── .erb-lint.yml ├── .erb-linters └── erblint-github.rb ├── .github ├── ISSUE_TEMPLATE │ ├── accessibility.md │ ├── accessibility_audit.md │ ├── add_a_banner.md │ ├── bug_report.md │ ├── documentation.md │ ├── feature_request.md │ ├── maintenance-task.md │ ├── ruby_upgrade.md │ └── ui-change.md └── dependabot.yml ├── .gitignore ├── .lando.yml ├── .prettierignore ├── .prettierrc ├── .reek.yml ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-version ├── .semgrepignore ├── .stylelintrc.json ├── .tool-versions ├── CHANGELOG.md ├── Capfile ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app ├── 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 │ │ ├── LibreFranklin │ │ │ ├── LICENSE.txt │ │ │ └── LibreFranklin-VariableFont_wght.ttf │ │ ├── RobotoMono │ │ │ ├── LICENSE.txt │ │ │ └── RobotoMono-Regular.ttf │ │ └── icons │ │ │ ├── pul-icons.svg │ │ │ ├── pul-icons.ttf │ │ │ └── pul-icons.woff │ ├── images │ │ ├── .keep │ │ ├── down-arrow.svg │ │ ├── favicon.ico │ │ ├── pul-logo-new.svg │ │ ├── requests │ │ │ ├── .keep │ │ │ └── spinner.gif │ │ └── up-arrow.svg │ ├── javascripts │ │ ├── application.js │ │ ├── datatables.js │ │ └── requests │ │ │ ├── application.js │ │ │ └── requests.js │ └── stylesheets │ │ ├── abstractions │ │ └── mixins.scss │ │ ├── application.scss │ │ ├── base │ │ ├── forms.scss │ │ └── typography.scss │ │ ├── blacklight.scss │ │ ├── blacklight_marc.scss │ │ ├── bootstrap_with_override.scss │ │ ├── components │ │ ├── alerts.scss │ │ ├── ask-a-librarian.scss │ │ ├── availability.scss │ │ ├── bookmark-all.scss │ │ ├── browse.scss │ │ ├── buttons.scss │ │ ├── constraints.scss │ │ ├── contact.scss │ │ ├── details.scss │ │ ├── dialog.scss │ │ ├── dropdown-help-text.scss │ │ ├── dropdown.scss │ │ ├── facets.scss │ │ ├── font-face.scss │ │ ├── footer.scss │ │ ├── format.scss │ │ ├── front-page.scss │ │ ├── header--secondary.scss │ │ ├── header.scss │ │ ├── lists.scss │ │ ├── nav--accounts.scss │ │ ├── nav--harmful-content.scss │ │ ├── overrides.scss │ │ ├── pagination.scss │ │ ├── record--descriptions.scss │ │ ├── record--sidebar.scss │ │ ├── record--subject.scss │ │ ├── record.scss │ │ ├── release-notes.scss │ │ ├── request.scss │ │ ├── ribbon.scss │ │ ├── search--advanced.scss │ │ ├── search-banner.scss │ │ ├── search-options.scss │ │ ├── search-results.scss │ │ ├── search.scss │ │ ├── skip-links.scss │ │ ├── tables--labels.scss │ │ ├── tables.scss │ │ ├── universal-viewer.scss │ │ └── user.scss │ │ ├── datatables.scss │ │ ├── icons │ │ ├── icons.scss │ │ └── variables.scss │ │ ├── lux_customizations.scss │ │ ├── orangelight │ │ └── names.scss │ │ ├── print.scss │ │ ├── requests │ │ └── request.scss │ │ ├── shame.scss │ │ └── variables │ │ ├── breaks.scss │ │ ├── colors.scss │ │ └── typography.scss ├── checks │ ├── aeon_status.rb │ ├── bibdata_status.rb │ ├── illiad_status.rb │ └── scsb_status.rb ├── components │ ├── aeon_request_button_component.rb │ ├── always_show_metadata_field_component.rb │ ├── bookmark_button_component.html.erb │ ├── bookmark_button_component.rb │ ├── browse_per_page_component.rb │ ├── coin_description_component.html.erb │ ├── coin_description_component.rb │ ├── decorative_access_icon_component.html.erb │ ├── decorative_access_icon_component.rb │ ├── decorative_format_icon_component.html.erb │ ├── decorative_format_icon_component.rb │ ├── display_more_field_component.es6 │ ├── display_more_field_component.html.erb │ ├── display_more_field_component.rb │ ├── format_badge_field_component.html.erb │ ├── format_badge_field_component.rb │ ├── format_facet_item_component.rb │ ├── holdings │ │ ├── call_number_link_component.html.erb │ │ ├── call_number_link_component.rb │ │ ├── holding_availability_component.html.erb │ │ ├── holding_availability_component.rb │ │ ├── holding_availability_scsb_component.html.erb │ │ ├── holding_availability_scsb_component.rb │ │ ├── holding_notes_component.html.erb │ │ ├── holding_notes_component.rb │ │ ├── libmap_button_component.html.erb │ │ ├── libmap_button_component.rb │ │ ├── location_services_component.html.erb │ │ ├── location_services_component.rb │ │ ├── online_holdings_component.html.erb │ │ ├── online_holdings_component.rb │ │ ├── physical_holding_component.html.erb │ │ ├── physical_holding_component.rb │ │ ├── physical_holding_group_component.html.erb │ │ ├── physical_holding_group_component.rb │ │ ├── plain_text_component.rb │ │ ├── search_location_component.html.erb │ │ └── search_location_component.rb │ ├── index_document_component.html.erb │ ├── index_document_component.rb │ ├── index_metadata_component.html.erb │ ├── index_metadata_component.rb │ ├── index_metadata_field_layout_component.html.erb │ ├── index_metadata_field_layout_component.rb │ ├── index_title_component.html.erb │ ├── index_title_component.rb │ ├── multiselect_combobox_component.html.erb │ ├── multiselect_combobox_component.rb │ ├── numismatics_search_form_component.html.erb │ ├── numismatics_search_form_component.rb │ ├── orangelight │ │ ├── advanced_search_form_component.html.erb │ │ ├── advanced_search_form_component.rb │ │ ├── constraint_component.html.erb │ │ ├── constraint_component.rb │ │ ├── constraints_component.html.erb │ │ ├── constraints_component.rb │ │ ├── document │ │ │ ├── citation_component.html.erb │ │ │ └── citation_component.rb │ │ ├── dropdown_help_text_component.rb │ │ ├── facet_field_checkboxes_component.html.erb │ │ ├── facet_field_checkboxes_component.rb │ │ ├── guided_search_fields_component.html.erb │ │ ├── guided_search_fields_component.rb │ │ ├── process_vocabulary_component.html.erb │ │ ├── process_vocabulary_component.rb │ │ ├── search_bar_component.html.erb │ │ ├── search_bar_component.rb │ │ ├── search_context │ │ │ ├── server_item_pagination_component.html.erb │ │ │ └── server_item_pagination_component.rb │ │ └── system │ │ │ ├── flash_message_component.html.erb │ │ │ └── flash_message_component.rb │ ├── range_form_component.html.erb │ ├── range_form_component.rb │ ├── request_button_component.html.erb │ ├── request_button_component.rb │ ├── requests │ │ ├── item_hidden_fields_component.html.erb │ │ ├── item_hidden_fields_component.rb │ │ ├── metadata_field_component.rb │ │ ├── requestable_form_marquand_contact_info_component.html.erb │ │ ├── requestable_form_marquand_contact_info_component.rb │ │ └── requestable_form_option_component.rb │ ├── thumbnail_component.html.erb │ ├── thumbnail_component.rb │ ├── thumbnail_index_component.html.erb │ ├── thumbnail_index_component.rb │ ├── thumbnail_show_component.html.erb │ ├── thumbnail_show_component.rb │ ├── viewer_component.html.erb │ └── viewer_component.rb ├── controllers │ ├── account_controller.rb │ ├── application_controller.rb │ ├── bookmarks_controller.rb │ ├── catalog_controller.rb │ ├── concerns │ │ └── orangelight │ │ │ ├── catalog.rb │ │ │ └── excessive_paging.rb │ ├── contact_controller.rb │ ├── errors_controller.rb │ ├── feedback_controller.rb │ ├── orangelight │ │ └── browsables_controller.rb │ ├── requests │ │ └── form_controller.rb │ ├── search_history_controller.rb │ ├── sessions_controller.rb │ └── users │ │ └── omniauth_callbacks_controller.rb ├── forms │ ├── ask_a_question_form.rb │ ├── concerns │ │ └── honeypot.rb │ ├── feedback_form.rb │ ├── report_biased_results_form.rb │ └── suggest_correction_form.rb ├── helpers │ ├── application_helper.rb │ ├── blacklight_helper.rb │ ├── bookmarks_helper.rb │ ├── catalog_helper.rb │ ├── holdings_helper.rb │ ├── orangelight │ │ └── browsables_helper.rb │ └── requests │ │ ├── application_helper.rb │ │ └── request_helper.rb ├── javascript │ ├── entrypoints │ │ ├── application.js │ │ └── requests.js │ └── orangelight │ │ ├── accessible_facets.js │ │ ├── alert_manager.js │ │ ├── availability_base.js │ │ ├── availability_search_results.js │ │ ├── availability_show.js │ │ ├── availability_updater.js │ │ ├── book_covers.es6 │ │ ├── display_more_less_list.es6 │ │ ├── figgy_manifest_manager.js │ │ ├── google_books_snippets.es6 │ │ ├── graphql-client.js │ │ ├── insert_online_link.es6 │ │ ├── json_p.es6 │ │ ├── load-resources-by-orangelight-id.js │ │ ├── load-resources-by-orangelight-ids.js │ │ ├── lux_import.js │ │ ├── option.es6 │ │ ├── orangelight.es6 │ │ ├── orangelight_ui_loader.es6 │ │ ├── related_records.es6 │ │ ├── request_form_handler.js │ │ ├── selected_options.es6 │ │ ├── status_display.js │ │ └── vue_components │ │ ├── bookmark_all_button.vue │ │ ├── bookmark_button.vue │ │ ├── bookmark_login_dialog.vue │ │ ├── holding_group_availability.vue │ │ ├── multiselect_combobox.vue │ │ ├── online_options.vue │ │ └── orangelight_header.vue ├── mailers │ ├── .keep │ ├── application_mailer.rb │ ├── contact_mailer.rb │ └── requests │ │ ├── application_mailer.rb │ │ └── request_mailer.rb ├── models │ ├── .keep │ ├── advanced_boolean_operators.rb │ ├── advanced_form_search_builder.rb │ ├── announcement.rb │ ├── application_record.rb │ ├── bookmark.rb │ ├── call_number.rb │ ├── concerns │ │ ├── blacklight │ │ │ ├── document │ │ │ │ ├── apa.rb │ │ │ │ ├── chicago_author_date.rb │ │ │ │ ├── chicago_notes_bibliography.rb │ │ │ │ ├── cite_proc.rb │ │ │ │ ├── dublin_core.rb │ │ │ │ ├── email.rb │ │ │ │ ├── json_ld.rb │ │ │ │ ├── mla.rb │ │ │ │ └── ris.rb │ │ │ └── marc │ │ │ │ ├── book_ctx_builder.rb │ │ │ │ ├── ctx_builder.rb │ │ │ │ ├── document │ │ │ │ └── marc_export_override.rb │ │ │ │ ├── document_extension.rb │ │ │ │ └── journal_ctx_builder.rb │ │ ├── orangelight │ │ │ └── document │ │ │ │ ├── alma.rb │ │ │ │ ├── export.rb │ │ │ │ ├── scsb.rb │ │ │ │ └── standard_numbers.rb │ │ └── requests │ │ │ ├── aeon.rb │ │ │ ├── bibdata.rb │ │ │ └── scsb.rb │ ├── engineering_search_builder.rb │ ├── feedback_form_submission.rb │ ├── in_library_use.rb │ ├── numismatics_form_search_builder.rb │ ├── oauth_token.rb │ ├── orangelight.rb │ ├── orangelight │ │ ├── call_number.rb │ │ ├── name.rb │ │ ├── name_title.rb │ │ ├── record_mailer.rb │ │ └── subject.rb │ ├── record_feedback_form_submission.rb │ ├── requests │ │ ├── aeon_url.rb │ │ ├── alma_patron.rb │ │ ├── back_to_record_url.rb │ │ ├── form.rb │ │ ├── form_decorator.rb │ │ ├── full_patron.rb │ │ ├── holding.rb │ │ ├── holding_group.rb │ │ ├── illiad.rb │ │ ├── illiad_client.rb │ │ ├── illiad_metadata │ │ │ ├── article_express.rb │ │ │ ├── loan.rb │ │ │ └── metadata.rb │ │ ├── illiad_patron.rb │ │ ├── illiad_transaction_client.rb │ │ ├── item.rb │ │ ├── libcal.rb │ │ ├── location.rb │ │ ├── non_alma_aeon_url.rb │ │ ├── null_item.rb │ │ ├── patron.rb │ │ ├── recap_item_availability.rb │ │ ├── requestable.rb │ │ ├── requestable_decorator.rb │ │ ├── requestables_list.rb │ │ ├── requestables_list │ │ │ ├── alma_items_factory.rb │ │ │ ├── no_items_factory.rb │ │ │ ├── scsb_items_factory.rb │ │ │ └── too_many_items_factory.rb │ │ ├── router.rb │ │ ├── selected_items_validator.rb │ │ ├── service_eligibility │ │ │ ├── abstract_on_shelf.rb │ │ │ ├── aeon.rb │ │ │ ├── annex │ │ │ │ ├── abstract_annex.rb │ │ │ │ ├── no_items.rb │ │ │ │ └── pickup.rb │ │ │ ├── ill.rb │ │ │ ├── in_process.rb │ │ │ ├── marquand_edd.rb │ │ │ ├── marquand_in_library.rb │ │ │ ├── marquand_page_charged_item.rb │ │ │ ├── on_order.rb │ │ │ ├── on_shelf_digitize.rb │ │ │ ├── on_shelf_pickup.rb │ │ │ └── recap │ │ │ │ ├── abstract_recap.rb │ │ │ │ ├── digitize.rb │ │ │ │ ├── in_library.rb │ │ │ │ ├── no_items.rb │ │ │ │ └── pickup.rb │ │ ├── solr_open_url_context.rb │ │ ├── submission.rb │ │ ├── submissions │ │ │ ├── digitize_item.rb │ │ │ ├── generic.rb │ │ │ ├── hold_item.rb │ │ │ ├── illiad.rb │ │ │ ├── recap.rb │ │ │ └── service.rb │ │ ├── temp_location_cache.rb │ │ └── too_many_items_placeholder_item.rb │ ├── search_builder.rb │ ├── solr_document.rb │ ├── solr_document │ │ └── identifier.rb │ └── user.rb ├── presenters │ └── orangelight │ │ ├── clause_presenter.rb │ │ ├── electronic_access_plain_text_presenter.rb │ │ ├── electronic_portfolio_plain_text_presenter.rb │ │ └── highlight_presenter.rb ├── processors │ └── orangelight │ │ ├── browse_link_processor.rb │ │ ├── highlight_processor.rb │ │ ├── join_processor.rb │ │ ├── link_to_facet_processor.rb │ │ ├── link_to_search_value_processor.rb │ │ ├── mark_as_safe_processor.rb │ │ ├── reference_note_url_processor.rb │ │ ├── series_link_processor.rb │ │ └── subjects_or_notes_processor.rb ├── serializers │ └── submission_serializer.rb ├── services │ ├── bibdata.rb │ ├── db_migrate_uppercase_usernames.rb │ ├── decorator_service.rb │ ├── event_processor.rb │ ├── event_processor │ │ ├── delete_processor.rb │ │ ├── processor.rb │ │ ├── unknown_event.rb │ │ └── update_processor.rb │ ├── ez_proxy_service.rb │ ├── faceted_query_service.rb │ ├── holding_requests_adapter.rb │ ├── holding_requests_builder.rb │ ├── linked_document_resolver.rb │ ├── oauth_service.rb │ ├── online_holdings_markup_builder.rb │ ├── physical_holdings_markup_builder.rb │ └── requests │ │ └── bibdata_service.rb ├── views │ ├── _user_util_links.html.erb │ ├── account │ │ ├── _ill_request_items.html.erb │ │ ├── _login_links.html.erb │ │ ├── cancel_ill_requests.js.erb │ │ └── digitization_requests.html.erb │ ├── advanced │ │ └── numismatics.html.erb │ ├── blacklight │ │ └── nav │ │ │ ├── _bookmark.html.erb │ │ │ └── _search_history.html.erb │ ├── bookmarks │ │ ├── _clear_bookmarks_widget.html.erb │ │ ├── _tools.html.erb │ │ └── index.html.erb │ ├── catalog │ │ ├── _advanced_search_form.html.erb │ │ ├── _ask_a_question_form.html.erb │ │ ├── _atom_index.html.erb │ │ ├── _bookmark_all.html.erb │ │ ├── _citation.html.erb │ │ ├── _default_thumbnail.html.erb │ │ ├── _document_default.atom.builder │ │ ├── _email_form.html.erb │ │ ├── _facets.html.erb │ │ ├── _field.json.jbuilder │ │ ├── _hash_show.html.erb │ │ ├── _home_text.html.erb │ │ ├── _index_default.html.erb │ │ ├── _marc_view.html.erb │ │ ├── _other_versions_show.html.erb │ │ ├── _other_versions_show_more.html.erb │ │ ├── _previous_next_doc.html.erb │ │ ├── _report_biased_results_form.html.erb │ │ ├── _search_header.html.erb │ │ ├── _search_results.html.erb │ │ ├── _search_results_banner.html.erb │ │ ├── _show_availability.html.erb │ │ ├── _show_coin_description.html.erb │ │ ├── _show_default.html.erb │ │ ├── _show_digital_content.html.erb │ │ ├── _show_harmful_content_feedback.html.erb │ │ ├── _show_header_default.html.erb │ │ ├── _show_identifiers_default.html.erb │ │ ├── _show_linked_record.html.erb │ │ ├── _show_linked_records.html.erb │ │ ├── _show_main_content.html.erb │ │ ├── _show_other_versions.html.erb │ │ ├── _show_restrictions.html.erb │ │ ├── _show_sidebar.html.erb │ │ ├── _show_tools.html.erb │ │ ├── _show_top_fields.html.erb │ │ ├── _sort_and_per_page.html.erb │ │ ├── _sort_widget.html.erb │ │ ├── _statement_on_language_in_description.html.erb │ │ ├── _suggest_correction_form.html.erb │ │ ├── _zero_results.html.erb │ │ ├── advanced_search.html.erb │ │ ├── index.html.erb │ │ ├── librarian_view.html.erb │ │ ├── show.html.erb │ │ └── show.json.jbuilder │ ├── contact │ │ ├── question_success.html.erb │ │ ├── report_biased_results_success.erb │ │ └── suggestion_success.html.erb │ ├── contact_mailer │ │ └── biased_results.html.erb │ ├── devise │ │ └── sessions │ │ │ └── new.html.erb │ ├── errors │ │ ├── error.erb │ │ └── missing.erb │ ├── feedback │ │ ├── _form.html.erb │ │ ├── _return.html.erb │ │ ├── ask_a_question.html.erb │ │ ├── create.js.erb │ │ ├── new.html.erb │ │ ├── report_biased_results.html.erb │ │ └── suggest_correction.html.erb │ ├── kaminari │ │ ├── blacklight │ │ │ ├── _page.html.erb │ │ │ └── _paginator.html.erb │ │ └── blacklight_compact │ │ │ ├── _next_page.html.erb │ │ │ ├── _paginator.html.erb │ │ │ └── _prev_page.html.erb │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── requests │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ ├── orangelight │ │ ├── browsables │ │ │ ├── _browse.html.erb │ │ │ ├── _browse_pagination.html.erb │ │ │ ├── _call_numbers.html.erb │ │ │ ├── _subjects.html.erb │ │ │ ├── browse.html.erb │ │ │ ├── index.html.erb │ │ │ ├── index.json.jbuilder │ │ │ ├── show.html.erb │ │ │ └── show.json.jbuilder │ │ └── record_mailer │ │ │ └── email_record.text.erb │ ├── pages │ │ ├── dataset.html.erb │ │ └── help.html.erb │ ├── record_mailer │ │ └── sms_record.text.erb │ ├── requests │ │ ├── form │ │ │ ├── _auth_user_lookup_fail.html.erb │ │ │ ├── _checked_out_options.html.erb │ │ │ ├── _edd_fields.html.erb │ │ │ ├── _flash_messages.html.erb │ │ │ ├── _form.html.erb │ │ │ ├── _no_access.html.erb │ │ │ ├── _request_form.html.erb │ │ │ ├── _requestable_checkbox.html.erb │ │ │ ├── _requestable_delivery_option_digitize.html.erb │ │ │ ├── _requestable_delivery_option_illiad.html.erb │ │ │ ├── _requestable_delivery_option_in_library_use.html.erb │ │ │ ├── _requestable_delivery_option_pick_up.html.erb │ │ │ ├── _requestable_enum.html.erb │ │ │ ├── _requestable_fill_in_field.html.erb │ │ │ ├── _requestable_form_aeon.html.erb │ │ │ ├── _requestable_form_alma_login.html.erb │ │ │ ├── _requestable_form_digitize.html.erb │ │ │ ├── _requestable_form_digitize_and_in_library_use.html.erb │ │ │ ├── _requestable_form_digitize_and_pick_up.html.erb │ │ │ ├── _requestable_form_illiad.html.erb │ │ │ ├── _requestable_form_in_library_use.html.erb │ │ │ ├── _requestable_form_marquand_contact_info.html.erb │ │ │ ├── _requestable_form_pick_up.html.erb │ │ │ ├── _requestable_form_request.html.erb │ │ │ ├── _requestable_list_aeon.html.erb │ │ │ ├── _requestable_list_form.html.erb │ │ │ ├── _requestable_status.html.erb │ │ │ ├── _return_to_record_link.html.erb │ │ │ ├── _show_basic_metadata.html.erb │ │ │ ├── generate.erb │ │ │ ├── no_location_specified.html.erb │ │ │ └── submit.html.erb │ │ └── request_mailer │ │ │ ├── _bib_info.html.erb │ │ │ ├── _bib_info.text.erb │ │ │ ├── _bib_info_patron.html.erb │ │ │ ├── _edd_confirmation.html.erb │ │ │ ├── _edd_confirmation.text.erb │ │ │ ├── _in_library_confirmation.html.erb │ │ │ ├── _in_library_confirmation.text.erb │ │ │ ├── _item_info.html.erb │ │ │ ├── _item_info.text.erb │ │ │ ├── _item_info_all.html.erb │ │ │ ├── _item_info_digitize.html.erb │ │ │ ├── _patron_info.html.erb │ │ │ ├── _patron_info.text.erb │ │ │ ├── _patron_request.html.erb │ │ │ ├── _pick_up_info.html.erb │ │ │ ├── _request_header.html.erb │ │ │ ├── _request_header_digitize.html.erb │ │ │ ├── _request_header_digitize_fillin.html.erb │ │ │ ├── _request_header_fill_in.html.erb │ │ │ ├── _request_header_patron.html.erb │ │ │ ├── _service_errors.html.erb │ │ │ ├── _service_errors.text.erb │ │ │ ├── annex_confirmation.html.erb │ │ │ ├── annex_confirmation.text.erb │ │ │ ├── annex_email.html.erb │ │ │ ├── annex_email.text.erb │ │ │ ├── annex_in_library_confirmation.html.erb │ │ │ ├── annex_in_library_confirmation.text.erb │ │ │ ├── annex_in_library_email.html.erb │ │ │ ├── annex_in_library_email.text.erb │ │ │ ├── annex_no_items_confirmation.html.erb │ │ │ ├── annex_no_items_confirmation.text.erb │ │ │ ├── annex_no_items_email.html.erb │ │ │ ├── annex_no_items_email.text.erb │ │ │ ├── clancy_edd_email.html.erb │ │ │ ├── clancy_edd_email.text.erb │ │ │ ├── clancy_in_library_email.html.erb │ │ │ ├── clancy_in_library_email.text.erb │ │ │ ├── clancy_unavailable_edd_email.html.erb │ │ │ ├── clancy_unavailable_edd_email.text.erb │ │ │ ├── digitize_confirmation.html.erb │ │ │ ├── digitize_confirmation.text.erb │ │ │ ├── digitize_fill_in_confirmation.html.erb │ │ │ ├── digitize_fill_in_confirmation.text.erb │ │ │ ├── digitize_fill_in_email.html.erb │ │ │ ├── digitize_fill_in_email.text.erb │ │ │ ├── help_me_confirmation.html.erb │ │ │ ├── help_me_confirmation.text.erb │ │ │ ├── in_process_confirmation.html.erb │ │ │ ├── in_process_confirmation.text.erb │ │ │ ├── in_process_email.html.erb │ │ │ ├── in_process_email.text.erb │ │ │ ├── interlibrary_loan_confirmation.html.erb │ │ │ ├── interlibrary_loan_confirmation.text.erb │ │ │ ├── invalid_illiad_patron_email.html.erb │ │ │ ├── invalid_illiad_patron_email.text.erb │ │ │ ├── lewis_confirmation.html.erb │ │ │ ├── lewis_confirmation.text.erb │ │ │ ├── lewis_email.html.erb │ │ │ ├── lewis_email.text.erb │ │ │ ├── marquand_edd_confirmation.html.erb │ │ │ ├── marquand_edd_confirmation.text.erb │ │ │ ├── marquand_edd_email.html.erb │ │ │ ├── marquand_edd_email.text.erb │ │ │ ├── marquand_in_library_confirmation.html.erb │ │ │ ├── marquand_in_library_confirmation.text.erb │ │ │ ├── marquand_in_library_email.html.erb │ │ │ ├── marquand_in_library_email.text.erb │ │ │ ├── on_order_confirmation.html.erb │ │ │ ├── on_order_confirmation.text.erb │ │ │ ├── on_order_email.html.erb │ │ │ ├── on_order_email.text.erb │ │ │ ├── on_shelf_confirmation.html.erb │ │ │ ├── on_shelf_confirmation.text.erb │ │ │ ├── on_shelf_email.html.erb │ │ │ ├── on_shelf_email.text.erb │ │ │ ├── paging_confirmation.html.erb │ │ │ ├── paging_confirmation.text.erb │ │ │ ├── paging_email.html.erb │ │ │ ├── paging_email.text.erb │ │ │ ├── pres_confirmation.html.erb │ │ │ ├── pres_confirmation.text.erb │ │ │ ├── pres_email.html.erb │ │ │ ├── pres_email.text.erb │ │ │ ├── recap_confirmation.html.erb │ │ │ ├── recap_confirmation.text.erb │ │ │ ├── recap_edd_confirmation.html.erb │ │ │ ├── recap_edd_confirmation.text.erb │ │ │ ├── recap_email.html.erb │ │ │ ├── recap_email.text.erb │ │ │ ├── recap_in_library_confirmation.html.erb │ │ │ ├── recap_in_library_confirmation.text.erb │ │ │ ├── recap_in_library_email.html.erb │ │ │ ├── recap_in_library_email.text.erb │ │ │ ├── recap_marquand_in_library_confirmation.html.erb │ │ │ ├── recap_marquand_in_library_confirmation.text.erb │ │ │ ├── recap_no_items_confirmation.html.erb │ │ │ ├── recap_no_items_confirmation.text.erb │ │ │ ├── recap_no_items_email.html.erb │ │ │ ├── recap_no_items_email.text.erb │ │ │ ├── service_error_email.html.erb │ │ │ └── service_error_email.text.erb │ ├── search_history │ │ └── index.html.erb │ └── shared │ │ ├── _analytics.html.erb │ │ ├── _analytics_noscript.html.erb │ │ ├── _announcement.html.erb │ │ ├── _ask_librarian.html.erb │ │ ├── _flash_msg.html.erb │ │ ├── _footer.html.erb │ │ ├── _header_navbar.html.erb │ │ ├── _login.html.erb │ │ └── _start_over_row.html.erb └── workers │ └── event_handler.rb ├── architecture.png ├── architecture └── decisions │ └── 0001-remove-jquery.md ├── bearer.ignore ├── bearer.yml ├── benchmarks ├── app │ ├── components │ │ └── requests │ │ │ └── item_hidden_fields_component.rb │ ├── controllers │ │ └── concerns │ │ │ └── orangelight │ │ │ └── catalog.rb │ ├── helpers │ │ └── application_helper.rb │ ├── models │ │ ├── requests │ │ │ └── requestable.rb │ │ └── solr_document.rb │ ├── services │ │ └── bibdata.rb │ └── views │ │ └── requests │ │ └── form │ │ └── _show_basic_metadata.rb └── benchmark_helpers.rb ├── bin ├── bundle ├── jetty_wait ├── rails ├── rake ├── setup ├── spring └── vite ├── config.ru ├── config ├── alma.yml ├── application.rb ├── blacklight.yml ├── boot.rb ├── crawler-user-agents.json ├── database.yml ├── deploy.rb ├── deploy │ ├── production.rb │ ├── qa.rb │ └── staging.rb ├── environment.rb ├── environments │ ├── alma_qa.rb │ ├── development.rb │ ├── production.rb │ ├── qa.rb │ ├── staging.rb │ └── test.rb ├── features.rb ├── global │ ├── figgy.yml │ └── graphql.yml ├── honeybadger.yml ├── hosts.dat ├── initializers │ ├── alma.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── blacklight.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── custom_serializer.rb │ ├── datadog.rb │ ├── devise.rb │ ├── ez_proxy_hosts.rb │ ├── filter_parameter_logging.rb │ ├── global.rb │ ├── health_monitor.rb │ ├── high_voltage.rb │ ├── inflections.rb │ ├── lograge.rb │ ├── mime_types.rb │ ├── mini_profiler.rb │ ├── orangelight_config.rb │ ├── permissions_policy.rb │ ├── rack_attack.rb │ ├── read_only_mode.rb │ ├── relators.rb │ ├── requests_initializer.rb │ ├── sidekiq.rb │ ├── simple_form.rb │ ├── sneakers.rb │ └── wrap_parameters.rb ├── lando_env.rb ├── locales │ ├── blacklight.en.yml │ ├── blacklight_advanced_search.en.yml │ ├── devise.en.yml │ ├── en.yml │ ├── requests.en.yml │ └── simple_form.en.yml ├── orangelight.yml ├── redis.yml ├── requests.yml ├── routes.rb ├── schedule.rb ├── secrets.yml ├── storage.yml └── vite.json ├── db ├── migrate │ ├── 20140717190756_devise_create_users.rb │ ├── 20140717190757_create_searches.blacklight.rb │ ├── 20140717190758_create_bookmarks.blacklight.rb │ ├── 20140717190759_add_polymorphic_type_to_bookmarks.blacklight.rb │ ├── 20141021155935_create_orangelight_names.rb │ ├── 20141022224327_create_orangelight_subjects.rb │ ├── 20141024160515_create_orangelight_call_numbers.rb │ ├── 20150519201303_add_columns_to_users.rb │ ├── 20150612204802_create_blacklight_folders_folders.blacklight_folders.rb │ ├── 20150612204803_create_blacklight_folders_folder_items.blacklight_folders.rb │ ├── 20150612212656_add_guests_to_users.rb │ ├── 20160203233242_add_holding_to_orangelight_call_numbers.rb │ ├── 20160810220405_change_email_field_for_users.rb │ ├── 20161222150444_change_call_number_to_text.rb │ ├── 20170110113442_create_orangelight_name_titles.rb │ ├── 20181120150710_add_call_number_label_index.rb │ ├── 20190816202326_drop_blacklight_folders_folder_items.rb │ ├── 20190816202403_drop_blacklight_folders_folders.rb │ ├── 20210615212034_alma_browse_tables.rb │ ├── 20210802203055_drop_browse_tables.rb │ ├── 20220601195523_add_vocabulary_to_browse.rb │ ├── 20220815122519_create_features.rb │ ├── 20230419231330_add_user_fk_to_bookmarks.rb │ ├── 20230817164417_create_announcements.rb │ ├── 20231207175034_enable_unaccent_extension.rb │ └── 20240725171021_create_oauth_tokens.rb ├── schema.rb └── seeds.rb ├── docs ├── accounts.md ├── alma_orangelight_login.md ├── backup_restore.md ├── browse-lists.md ├── bundle_size.md ├── continuous_delivery.md ├── features.md ├── json_solr_queries.md ├── numismatics.md ├── orangelight-figgy.md ├── rabbitmq-sneakers.md ├── requests │ ├── README.md │ ├── aeon.md │ ├── dev_hints.md │ ├── form_diagram.md │ ├── illiad.md │ ├── marquand.md │ ├── patron_groups.md │ └── request_types.md ├── search_and_race │ └── search_highlighting.md ├── test_plan.md ├── transfer_bookmarks.md └── viewer_warning.md ├── eslint.config.mjs ├── lib ├── assets │ └── .keep ├── capistrano │ └── tasks │ │ └── access_check.rake ├── custom_public_exceptions.rb ├── omniauth │ └── strategies │ │ ├── alma.rb │ │ └── barcode.rb ├── orangelight │ ├── browse_lists.rb │ ├── browse_lists │ │ └── call_number_csv.rb │ ├── illiad_account.rb │ ├── illiad_patron_client.rb │ ├── middleware │ │ ├── invalid_parameter_handler.rb │ │ └── no_file_uploads.rb │ └── string_functions.rb └── tasks │ ├── announcement.rake │ ├── benchmark.rake │ ├── browse.rake │ ├── cache.rake │ ├── fake_seeds.rake │ ├── maintenance.rake │ ├── pulsearch.rake │ └── server.rake ├── lighthouserc.js ├── log └── .keep ├── package.json ├── public ├── context.json ├── favicon.ico ├── labels.txt ├── robots.txt ├── x400.html ├── x404.html ├── x422.html └── x500.html ├── smoke_spec ├── smoke_spec.rb └── smoke_spec_helper.rb ├── solr ├── README.md └── conf │ ├── mapping-ISOLatin1Accent.txt │ ├── protwords.txt │ ├── schema.xml │ ├── solrconfig.xml │ ├── spellings.txt │ ├── stopwords.txt │ ├── stopwords_en.txt │ └── synonyms.txt ├── source └── setup-jest.js ├── spec ├── cassettes │ ├── authorized_ol_authorized_bibdata_scsb_key.yml │ ├── form_controller.yml │ ├── form_features.yml │ ├── form_models.yml │ ├── mailer.yml │ ├── requestable.yml │ ├── requests_router.yml │ └── unauthorized_ol_authorized_bibdata_scsb_key.yml ├── components │ ├── aeon_request_button_component_spec.rb │ ├── decorative_format_icon_component_spec.rb │ ├── display_more_field_component_spec.rb │ ├── format_badge_field_component_spec.rb │ ├── format_facet_item_component_spec.rb │ ├── holdings │ │ ├── call_number_link_component_spec.rb │ │ ├── holding_availability_component_spec.rb │ │ ├── holding_availability_scsb_component_spec.rb │ │ ├── holding_notes_component_spec.rb │ │ ├── libmap_button_component_spec.rb │ │ ├── location_services_component_spec.rb │ │ ├── online_holdings_component_spec.rb │ │ ├── physical_holding_component_spec.rb │ │ ├── physical_holding_group_component_spec.rb │ │ ├── plain_text_component_spec.rb │ │ └── search_location_component_spec.rb │ ├── index_document_component_spec.rb │ ├── index_metadata_component_spec.rb │ ├── index_metadata_field_layout_component_spec.rb │ ├── index_title_component_spec.rb │ ├── numismatics_search_form_component_spec.rb │ ├── orangelight │ │ ├── advanced_search_form_component_spec.rb │ │ ├── constraint_component_spec.rb │ │ ├── constraints_component_spec.rb │ │ ├── document │ │ │ └── citation_component_spec.rb │ │ ├── facet_field_checkboxes_component_spec.rb │ │ ├── guided_search_fields_component_spec.rb │ │ ├── process_vocabulary_component_spec.rb │ │ ├── search_bar_component_spec.rb │ │ └── system │ │ │ └── flash_message_component_spec.rb │ ├── request_button_component_spec.rb │ ├── requests │ │ ├── item_hidden_fields_component_spec.rb │ │ ├── requestable_form_marquand_contact_info_component_spec.rb │ │ └── requestable_form_option_component_spec.rb │ ├── thumbnail_component_spec.rb │ └── viewer_component_spec.rb ├── controllers │ ├── account_controller_spec.rb │ ├── bookmarks_controller_spec.rb │ ├── catalog_controller_spec.rb │ ├── errors_controller_spec.rb │ ├── feedback_controller_spec.rb │ ├── high_voltage_pages_controller_spec.rb │ ├── omniauth_callbacks_controller_spec.rb │ ├── orangelight │ │ └── browsable_controllers_spec.rb │ ├── requests │ │ └── form_controller_spec.rb │ └── sessions_controller_spec.rb ├── factories │ ├── announcements.rb │ ├── bookmarks.rb │ ├── requests │ │ ├── patron.rb │ │ └── request.rb │ └── users.rb ├── features │ ├── accessibility_spec.rb │ ├── advanced_searching_spec.rb │ ├── availability_spec.rb │ ├── bookmarks_spec.rb │ ├── browsables_spec.rb │ ├── browsing_item_spec.rb │ ├── citation_spec.rb │ ├── email_authentication_spec.rb │ ├── errors_spec.rb │ ├── facets_spec.rb │ ├── feedback_biased_results_spec.rb │ ├── feedback_spec.rb │ ├── flipflop_features_spec.rb │ ├── header_links_spec.rb │ ├── holding_locations_sort_order_spec.rb │ ├── librarian_view_spec.rb │ ├── login_account_spec.rb │ ├── more_in_this_series_spec.rb │ ├── numismatics_spec.rb │ ├── request_options_spec.rb │ ├── requests │ │ ├── form_spec.rb │ │ └── marquand_spec.rb │ ├── scsb_holdings_spec.rb │ ├── search_history_spec.rb │ ├── search_input_facets_spec.rb │ ├── thesis_spec.rb │ └── zotero_support_spec.rb ├── fixtures │ ├── 1789984_search_availability.json │ ├── 8908514.json │ ├── BC123456789.json │ ├── SCSB-2879206.json │ ├── alma │ │ ├── 99100961313506421.json │ │ ├── 99105855523506421.json │ │ ├── 99106471643506421.json │ │ ├── 99116299583506421.json │ │ ├── 99120508103506421.json │ │ ├── 99122306151806421.json │ │ ├── 99125344809306421.json │ │ ├── 99125378001906421.json │ │ ├── 99125412083106421.json │ │ ├── 99129068748706421.json │ │ ├── 99131306959706421.json │ │ ├── 99131369190806421.json │ │ ├── 99131369586906421.json │ │ ├── 99131369793306421.json │ │ ├── 99131576430806421.json │ │ ├── 9918309193506421.json │ │ ├── 9922486553506421_marc.xml │ │ ├── 992784263506421.json │ │ ├── 9928379683506421.json │ │ ├── 9929100213506421.json │ │ ├── 993213506421.json │ │ ├── 9933506421.json │ │ ├── 9938713983506421.json │ │ ├── 994304723506421.json │ │ ├── 9946093213506421.json │ │ ├── 9947053043506421.json │ │ ├── 9947247893506421.json │ │ ├── 9947572503506421.json │ │ ├── 9948322283506421.json │ │ ├── 9952615993506421.json │ │ ├── 9952918833506421.json │ │ ├── 9955667413506421.json │ │ ├── 995597013506421.json │ │ ├── 9961023373506421.json │ │ ├── 9961398363506421.json │ │ ├── 9964125563506421.json │ │ ├── 9965749873506421.json │ │ ├── 9968900573506421.json │ │ ├── 9969113523506421.json │ │ ├── 9969197783506421.json │ │ ├── 997218033506421.json │ │ ├── 9976174773506421.json │ │ ├── 9979160443506421.json │ │ ├── 9981818493506421.json │ │ ├── 998449623506421.json │ │ ├── 9985453593506421.json │ │ ├── 9990306573506421.json │ │ ├── 9990889283506421.json │ │ ├── 9996180723506421.json │ │ ├── 9996490803506421.json │ │ ├── 9997708113506421.json │ │ ├── black_teenagers.json │ │ ├── current_fixtures.json │ │ ├── portfolios_with_notes.json │ │ └── white_teenagers.json │ ├── alma_hold_error_no_library_response.json │ ├── alma_hold_error_response.json │ ├── alma_hold_response.json │ ├── alma_login_response.json │ ├── authors.sorted │ ├── availability │ │ └── by_holding_id │ │ │ ├── 9911629773506421_22608294270006421.json │ │ │ ├── 99122304923506421_22511126440006421.json │ │ │ ├── 9925798443506421_22733278430006421.json │ │ │ ├── 993569343506421_22693661550006421.json │ │ │ ├── 99496133506421_22745123330006421.json │ │ │ ├── 9951680203506421_22480938160006421.json │ │ │ ├── 9956200533506421_2219823460006421.json │ │ │ ├── 9956562643506421_22700125400006421.json │ │ │ ├── 9960102253506421_22548491940006421.json │ │ │ ├── 996160863506421_22563389780006421.json │ │ │ ├── 9967949663506421_22677203260006421.json │ │ │ ├── 9977664533506421_22109013720006421.json │ │ │ ├── 9979153343506421_22742463930006421.json │ │ │ ├── 9995944353506421_22500750240006421.json │ │ │ └── 9999998003506421_22480198860006421.json │ ├── availability_response_9991807103506421.json │ ├── bd_response.json │ ├── bibdata │ │ ├── 7994866.xml │ │ ├── 9965749873506421.xml │ │ ├── 9979948663506421.xml │ │ ├── availability.json │ │ ├── bad_health.json │ │ ├── bibdata_not_found_patron_response.json │ │ ├── bibdata_patron_barcode_pick_up_only_response.json │ │ ├── bibdata_patron_no_barcode_response.json │ │ ├── bibdata_patron_response.json │ │ ├── bibdata_patron_response_barcode.json │ │ ├── bibdata_patron_response_expired.json │ │ ├── bibdata_patron_response_graduate_no_campus.json │ │ ├── bibdata_patron_response_no_campus.json │ │ ├── delivery_locations.json │ │ ├── eastasian_cjk_holding_locations.json │ │ ├── health.json │ │ └── holding_locations.json │ ├── bibdata_not_found_patron_response.json │ ├── bibdata_patron_affiliate_response.json │ ├── bibdata_patron_no_barcode_response.json │ ├── bibdata_patron_response.json │ ├── bibdata_patron_response_barcode.json │ ├── bibdata_patron_response_expired.json │ ├── bibdata_patron_response_graduate_no_campus.json │ ├── bibdata_patron_response_guest.json │ ├── bibdata_patron_response_no_campus.json │ ├── bibdata_patron_response_no_ldap.json │ ├── bibliographic_availability_3_bibs.json │ ├── call_numbers.sorted │ ├── cancel_ill_requests_failed_response.json │ ├── cancel_ill_requests_response.json │ ├── files │ │ ├── call_number_browse │ │ │ ├── index_count.json │ │ │ ├── index_entries_rows500_cursor_p1.json │ │ │ ├── index_entries_rows500_cursor_p2.json │ │ │ ├── index_entries_rows500_start0.json │ │ │ ├── index_entries_rows500_start500.json │ │ │ └── multi_call_numbers.json │ │ ├── libanswers │ │ │ └── oauth_token.json │ │ ├── linked_records.json │ │ └── name_browse_unsorted.csv │ ├── google_book_search.json │ ├── holding_locations │ │ ├── RES_SHARE_IN_RS_REQ.json │ │ ├── RES_SHARE_OUT_RS_REQ.json │ │ ├── annex_noncirc.json │ │ ├── engineer_res.json │ │ ├── engineer_stacks.json │ │ ├── firestone_stacks.json │ │ ├── marquand_pz.json │ │ ├── mudd_stacks.json │ │ ├── plasma_nb.json │ │ ├── rare_hsve.json │ │ ├── rare_map.json │ │ ├── rare_num.json │ │ ├── rare_xr.json │ │ ├── recap_pa.json │ │ ├── scsbcul.json │ │ ├── scsbnypl.json │ │ └── stokes_nb.json │ ├── ill_verify_user_response.json │ ├── name_titles.sorted │ ├── outstanding_ill_requests_response.json │ ├── post.jar │ ├── raw │ │ ├── 99103251433506421.json │ │ ├── 99105816503506421.json │ │ ├── 99113283293506421.json │ │ ├── 99114026863506421.json │ │ ├── 99117665883506421.json │ │ ├── 9912140633506421.json │ │ ├── 99122304923506421.json │ │ ├── 99123713303506421.json │ │ ├── 99125492003506421.json │ │ ├── 99127133356906421.json │ │ ├── 99129134216906421.json │ │ ├── 9917887963506421.json │ │ ├── 9917917633506421.json │ │ ├── 9919698813506421.json │ │ ├── 9920022063506421.json │ │ ├── 9923858683506421.json │ │ ├── 9924784993506421.json │ │ ├── 9925693243506421.json │ │ ├── 9930682063506421.json │ │ ├── 9931805453506421.json │ │ ├── 9933643713506421_raw.json │ │ ├── 993569343506421.json │ │ ├── 9938488723506421.json │ │ ├── 9941150973506421.json │ │ ├── 9942430233506421.json │ │ ├── 994264203506421.json │ │ ├── 9947589763506421.json │ │ ├── 9947595913506421.json │ │ ├── 9948152393506421.json │ │ ├── 994909303506421.json │ │ ├── 994952203506421.json │ │ ├── 994955013506421.json │ │ ├── 99496133506421.json │ │ ├── 9951680203506421.json │ │ ├── 9956200533506421.json │ │ ├── 9956562643506421.json │ │ ├── 9960102253506421.json │ │ ├── 996160863506421.json │ │ ├── 9961959423506421.json │ │ ├── 9963773693506421.json │ │ ├── 9967949663506421.json │ │ ├── 9973529363506421.json │ │ ├── 9974943583506421.json │ │ ├── 9977664533506421.json │ │ ├── 9979153343506421.json │ │ ├── 9981794023506421.json │ │ ├── 9988805493506421.json │ │ ├── 9991807103506421.json │ │ ├── 9992220243506421.json │ │ ├── 9994933183506421.json │ │ ├── 9995768803506421.json │ │ ├── 9995944353506421.json │ │ ├── 9996272613506421.json │ │ ├── 9996764833506421.json │ │ ├── 9997123553506421.json │ │ ├── 9999074333506421.json │ │ ├── 9999443553506421.json │ │ ├── 9999998003506421.json │ │ ├── SCSB-7935196.json │ │ ├── alma │ │ │ ├── 9911629773506421.json │ │ │ ├── 9925798443506421.json │ │ │ └── 994916543506421.json │ │ ├── ephemera_born_digital.json │ │ ├── numismatics │ │ │ ├── coin-1167.json │ │ │ ├── coin-3750.json │ │ │ └── coin-constructed.json │ │ ├── scsb │ │ │ ├── SCSB-10422725.json │ │ │ ├── SCSB-10966202.json │ │ │ ├── SCSB-2143785.json │ │ │ ├── SCSB-2443272.json │ │ │ ├── SCSB-2635660.json │ │ │ ├── SCSB-2650865.json │ │ │ ├── SCSB-2879197.json │ │ │ ├── SCSB-2901229.json │ │ │ ├── SCSB-4634001.json │ │ │ ├── SCSB-5235419.json │ │ │ ├── SCSB-5290772.json │ │ │ ├── SCSB-5396104.json │ │ │ ├── SCSB-5640725.json │ │ │ ├── SCSB-6593031.json │ │ │ ├── SCSB-7846265.json │ │ │ ├── SCSB-7874204.json │ │ │ ├── SCSB-7935196.json │ │ │ └── SCSB-8953469.json │ │ └── theses_and_dissertations │ │ │ ├── dsp0141687h654.json │ │ │ ├── dsp017s75dc44p.json │ │ │ ├── dsp019c67wp402.json │ │ │ ├── dsp01ft848s955.json │ │ │ ├── dsp01rr1720547.json │ │ │ └── dsp01tq57ns24j.json │ ├── scsb_avail_bib.json │ ├── scsb_availability_994264203506421.json │ ├── scsb_available_response.json │ ├── scsb_find_request.json │ ├── scsb_not_available_response.json │ ├── scsb_not_available_response0.json │ ├── scsb_request_item_response.json │ ├── scsb_request_item_response_errors.json │ ├── scsb_single_avail.json │ ├── solr_empty_query.json │ └── subjects.sorted ├── forms │ ├── ask_a_question_form_spec.rb │ ├── feedback_form_spec.rb │ ├── report_biased_results_form_spec.rb │ └── suggest_correction_form_spec.rb ├── helpers │ ├── blacklight_helper_spec.rb │ ├── catalog_helper_spec.rb │ ├── formats_spec.rb │ ├── locations_spec.rb │ ├── online_location_note_spec.rb │ ├── orangelight │ │ └── browsables_helper_spec.rb │ ├── requests │ │ ├── application_helper_spec.rb │ │ └── request_helper_spec.rb │ ├── scsb_items_helper_spec.rb │ └── series_results_spec.rb ├── javascript │ ├── orangelight │ │ ├── availability_search_results.spec.js │ │ ├── availability_show.spec.js │ │ ├── availability_updater.spec.js │ │ ├── book_covers.spec.js │ │ ├── display_more_field_component.spec.js │ │ ├── figgy_manifest_manager.spec.js │ │ ├── google_books_snippets.spec.js │ │ ├── insert_online_link.spec.js │ │ ├── option.spec.js │ │ ├── orangelight_ui_loader.spec.js │ │ ├── related_records.spec.js │ │ ├── request_form_handler.spec.js │ │ ├── selected_options.spec.js │ │ ├── status_display.spec.js │ │ └── vue_components │ │ │ ├── bookmark_all_button.spec.js │ │ │ ├── bookmark_button.spec.js │ │ │ ├── bookmark_login_dialog.spec.js │ │ │ ├── holding_group_availability.spec.js │ │ │ ├── multiselect_combobox.spec.js │ │ │ ├── online_options.spec.js │ │ │ └── orangelight_header.spec.js │ └── requests │ │ ├── collapse_manager.spec.js │ │ ├── request_button_manager.spec.js │ │ └── request_manager.spec.js ├── lib │ ├── orangelight │ │ ├── browse_lists │ │ │ └── call_number_csv_spec.rb │ │ ├── browse_lists_spec.rb │ │ ├── middleware │ │ │ ├── invalid_parameter_handler_spec.rb │ │ │ └── no_file_uploads_spec.rb │ │ └── string_functions_spec.rb │ └── tasks │ │ └── browse_spec.rb ├── mailers │ ├── previews │ │ └── request_mailer_preview.rb │ └── requests │ │ └── request_mailer_spec.rb ├── models │ ├── advanced_boolean_operators_spec.rb │ ├── advanced_form_search_builder_spec.rb │ ├── announcement_spec.rb │ ├── apa_spec.rb │ ├── blacklight_dynamic_sitemap │ │ └── sitemap_spec.rb │ ├── bookmark_spec.rb │ ├── call_number_spec.rb │ ├── chicago_author_date_spec.rb │ ├── chicago_notes_bibliography_spec.rb │ ├── concerns │ │ ├── blacklight │ │ │ └── marc │ │ │ │ ├── book_ctx_builder_spec.rb │ │ │ │ ├── ctx_builder_spec.rb │ │ │ │ ├── document │ │ │ │ └── marc_export_override_spec.rb │ │ │ │ └── journal_ctx_builder_spec.rb │ │ └── requests │ │ │ ├── aeon_spec.rb │ │ │ └── scsb_spec.rb │ ├── dublin_core_spec.rb │ ├── feedback_form_submission_spec.rb │ ├── illiad_account_spec.rb │ ├── illiad_patron_client_spec.rb │ ├── json_ld_spec.rb │ ├── mla_spec.rb │ ├── numismatics_form_search_builder_spec.rb │ ├── oauth_token_spec.rb │ ├── orangelight │ │ ├── call_number_spec.rb │ │ ├── name_spec.rb │ │ └── subject_spec.rb │ ├── record_feedback_form_submission_spec.rb │ ├── requests │ │ ├── aeon_url_spec.rb │ │ ├── alma_patron_spec.rb │ │ ├── back_to_record_url_spec.rb │ │ ├── form_decorator_spec.rb │ │ ├── form_no_vcr_spec.rb │ │ ├── form_spec.rb │ │ ├── full_patron_spec.rb │ │ ├── holding_group_spec.rb │ │ ├── holding_spec.rb │ │ ├── illiad_metadata │ │ │ └── loan_spec.rb │ │ ├── illiad_patron_spec.rb │ │ ├── illiad_spec.rb │ │ ├── illiad_transaction_client_spec.rb │ │ ├── location_spec.rb │ │ ├── non_alma_aeon_url_spec.rb │ │ ├── patron_spec.rb │ │ ├── recap_item_availability_spec.rb │ │ ├── requestable │ │ │ └── item_spec.rb │ │ ├── requestable_decorator_spec.rb │ │ ├── requestable_spec.rb │ │ ├── requestables_list_spec.rb │ │ ├── router_spec.rb │ │ ├── selected_items_validator_spec.rb │ │ ├── service_eligibility │ │ │ ├── aeon_spec.rb │ │ │ ├── annex │ │ │ │ └── no_items_spec.rb │ │ │ ├── ill_spec.rb │ │ │ ├── in_process_spec.rb │ │ │ ├── marquand_edd_spec.rb │ │ │ ├── marquand_in_library_spec.rb │ │ │ ├── marquand_page_charged_item_spec.rb │ │ │ ├── on_order_spec.rb │ │ │ ├── on_shelf_digitize_spec.rb │ │ │ ├── on_shelf_pickup_spec.rb │ │ │ └── recap │ │ │ │ ├── digitize_spec.rb │ │ │ │ ├── in_library_spec.rb │ │ │ │ ├── no_items_spec.rb │ │ │ │ └── pickup_spec.rb │ │ ├── submission_spec.rb │ │ ├── submissions │ │ │ ├── hold_item_spec.rb │ │ │ ├── illiad_spec.rb │ │ │ └── recap_spec.rb │ │ └── user_group_spec.rb │ ├── ris_spec.rb │ ├── search_builder_spec.rb │ ├── solr_document │ │ └── identifier_spec.rb │ ├── solr_document_spec.rb │ └── user_spec.rb ├── orangelight │ └── browse_list_spec.rb ├── presenters │ └── orangelight │ │ ├── clause_presenter_spec.rb │ │ ├── electronic_access_plain_text_presenter_spec.rb │ │ ├── electronic_portfolio_plain_text_presenter_spec.rb │ │ └── highlight_presenter_spec.rb ├── processors │ └── orangelight │ │ ├── browse_link_processor_spec.rb │ │ ├── highlight_processor_spec.rb │ │ ├── join_processor_spec.rb │ │ ├── mark_as_safe_spec.rb │ │ ├── reference_note_url_spec.rb │ │ ├── series_link_processor_spec.rb │ │ └── subjects_or_notes_processor_spec.rb ├── rails_helper.rb ├── requests │ ├── accounts_spec.rb │ ├── advanced_search_spec.rb │ ├── application_spec.rb │ ├── catalog_spec.rb │ ├── content_security_policy_spec.rb │ ├── cookies_spec.rb │ ├── facets_spec.rb │ ├── features_spec.rb │ ├── feedback_forms_spec.rb │ ├── health_check_spec.rb │ ├── left_anchor_spec.rb │ ├── linked_records_spec.rb │ ├── online_search_result_spec.rb │ ├── orangelight │ │ └── browse_spec.rb │ ├── request_spec.rb │ ├── requests_form_spec.rb │ ├── robots_spec.rb │ ├── sidekiq_spec.rb │ └── temp_location_cache_spec.rb ├── routing │ ├── account_routing_spec.rb │ ├── catalog_routing_spec.rb │ ├── feedback_routing_spec.rb │ ├── orangelight │ │ └── browsables_routing_spec.rb │ ├── pages_routing_spec.rb │ └── requests │ │ └── form_spec.rb ├── services │ ├── bibdata_spec.rb │ ├── db_migrate_uppercase_usernames_spec.rb │ ├── decorator_service_spec.rb │ ├── event_processor_spec.rb │ ├── ez_proxy_service_spec.rb │ ├── holding_requests_adapter_spec.rb │ ├── holding_requests_builder_spec.rb │ ├── oauth_service_spec.rb │ ├── online_holdings_markup_builder_spec.rb │ ├── physical_holdings_markup_builder_spec.rb │ └── requests │ │ └── bibdata_service_spec.rb ├── spec_helper.rb ├── support │ ├── capybara_selenium.rb │ ├── controller_level_helpers.rb │ ├── features │ │ └── session_helpers.rb │ ├── keyboard_interactions.rb │ ├── sidekiq_data_check.rb │ ├── stub_helpers.rb │ ├── system_specs.rb │ ├── vcr_setup.rb │ └── webmock_stubs.rb ├── system │ ├── ask_a_question_form_spec.rb │ ├── bookmark_all_spec.rb │ ├── boolean_searching_spec.rb │ ├── catalog_show_spec.rb │ ├── footer_spec.rb │ ├── ill_and_digitization_requests_spec.rb │ ├── left_anchor_spec.rb │ ├── numismatics_form_spec.rb │ ├── numismatics_show_spec.rb │ ├── searching_spec.rb │ ├── show_page_holding_groups_spec.rb │ ├── show_related_records_spec.rb │ ├── sitemap_spec.rb │ ├── skip_links_spec.rb │ ├── sorting_spec.rb │ └── suggest_correction_form_spec.rb ├── views │ ├── catalog │ │ ├── _field_json_spec.rb │ │ ├── _show_digital_content.html.erb_spec.rb │ │ ├── _show_identifiers_default.html.erb_spec.rb │ │ ├── _sort_and_per_page.html.erb_spec.rb │ │ ├── advanced_search.html.erb_spec.rb │ │ ├── index_spec.rb │ │ ├── librarian_view.html.erb_spec.rb │ │ └── show.html.erb_spec.rb │ ├── feedback │ │ └── feedback_spec.rb │ ├── orangelight │ │ └── email_record.text.erb_spec.rb │ ├── record_mailer │ │ └── sms_record.text.erb_spec.rb │ ├── requests │ │ ├── request │ │ │ ├── _show_basic_metadata.html.erb_spec.rb │ │ │ └── no_location_specified.html.erb_spec.rb │ │ └── request_mailer │ │ │ └── on_shelf_confirmation.html.erb_spec.rb │ └── shared │ │ ├── _announcement.html.erb_spec.rb │ │ └── _footer.html.erb_spec.rb └── workers │ └── event_handler_spec.rb ├── vendor └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── vite.config.ts ├── vitest.config.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: 5IjbDz4dKoOsD6GLsrPq59uRIFtLfeQ2M 2 | -------------------------------------------------------------------------------- /.debride_allowlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.debride_allowlist.txt -------------------------------------------------------------------------------- /.erb-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.erb-lint.yml -------------------------------------------------------------------------------- /.erb-linters/erblint-github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.erb-linters/erblint-github.rb -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/ISSUE_TEMPLATE/accessibility.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/accessibility_audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/ISSUE_TEMPLATE/accessibility_audit.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add_a_banner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/ISSUE_TEMPLATE/add_a_banner.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/ISSUE_TEMPLATE/maintenance-task.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ruby_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/ISSUE_TEMPLATE/ruby_upgrade.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ui-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/ISSUE_TEMPLATE/ui-change.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.gitignore -------------------------------------------------------------------------------- /.lando.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.lando.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.prettierrc -------------------------------------------------------------------------------- /.reek.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.reek.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --format d 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.1 2 | -------------------------------------------------------------------------------- /.semgrepignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/.semgrepignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-standard-scss" 3 | } -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.4.1 2 | nodejs 24.3.0 3 | yarn 1.22.10 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/fonts/Dejavu/DejaVuSerif-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/Dejavu/DejaVuSerif-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/Dejavu/DejaVuSerif-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/Dejavu/DejaVuSerif-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/Dejavu/DejaVuSerif-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/Dejavu/DejaVuSerif-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/Dejavu/DejaVuSerif-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/Dejavu/DejaVuSerif-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/Droid_Serif/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/Droid_Serif/LICENSE.txt -------------------------------------------------------------------------------- /app/assets/fonts/LibreFranklin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/LibreFranklin/LICENSE.txt -------------------------------------------------------------------------------- /app/assets/fonts/RobotoMono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/RobotoMono/LICENSE.txt -------------------------------------------------------------------------------- /app/assets/fonts/icons/pul-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/icons/pul-icons.svg -------------------------------------------------------------------------------- /app/assets/fonts/icons/pul-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/icons/pul-icons.ttf -------------------------------------------------------------------------------- /app/assets/fonts/icons/pul-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/fonts/icons/pul-icons.woff -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/images/down-arrow.svg -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/pul-logo-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/images/pul-logo-new.svg -------------------------------------------------------------------------------- /app/assets/images/requests/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/requests/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/images/requests/spinner.gif -------------------------------------------------------------------------------- /app/assets/images/up-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/images/up-arrow.svg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/javascripts/datatables.js -------------------------------------------------------------------------------- /app/assets/javascripts/requests/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/javascripts/requests/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/requests/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/javascripts/requests/requests.js -------------------------------------------------------------------------------- /app/assets/stylesheets/abstractions/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/abstractions/mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/base/forms.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/base/typography.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/blacklight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/blacklight.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/blacklight_marc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/blacklight_marc.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/alerts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/browse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/browse.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/buttons.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/constraints.scss: -------------------------------------------------------------------------------- 1 | .applied-filter { 2 | height: 38px; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/contact.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/details.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/dialog.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/dropdown.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/facets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/facets.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/font-face.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/font-face.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/footer.scss: -------------------------------------------------------------------------------- 1 | .pul_footer { 2 | background: var(--color-gray-100); 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/format.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/format.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/header.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/lists.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/overrides.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/record.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/record.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/request.scss: -------------------------------------------------------------------------------- 1 | .requestable-call-number { 2 | font-family: 'Roboto Mono', monospace; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/ribbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/ribbon.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/search.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/tables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/user.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/components/user.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/datatables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/datatables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/icons/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/icons/icons.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/icons/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/icons/variables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/lux_customizations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/lux_customizations.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/orangelight/names.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/orangelight/names.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/print.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/requests/request.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/requests/request.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/shame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/shame.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/variables/breaks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/variables/breaks.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/variables/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/variables/colors.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/variables/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/assets/stylesheets/variables/typography.scss -------------------------------------------------------------------------------- /app/checks/aeon_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/checks/aeon_status.rb -------------------------------------------------------------------------------- /app/checks/bibdata_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/checks/bibdata_status.rb -------------------------------------------------------------------------------- /app/checks/illiad_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/checks/illiad_status.rb -------------------------------------------------------------------------------- /app/checks/scsb_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/checks/scsb_status.rb -------------------------------------------------------------------------------- /app/components/aeon_request_button_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/aeon_request_button_component.rb -------------------------------------------------------------------------------- /app/components/bookmark_button_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/bookmark_button_component.rb -------------------------------------------------------------------------------- /app/components/browse_per_page_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/browse_per_page_component.rb -------------------------------------------------------------------------------- /app/components/coin_description_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/coin_description_component.rb -------------------------------------------------------------------------------- /app/components/display_more_field_component.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/display_more_field_component.es6 -------------------------------------------------------------------------------- /app/components/display_more_field_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/display_more_field_component.rb -------------------------------------------------------------------------------- /app/components/format_badge_field_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/format_badge_field_component.rb -------------------------------------------------------------------------------- /app/components/format_facet_item_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/format_facet_item_component.rb -------------------------------------------------------------------------------- /app/components/holdings/plain_text_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/holdings/plain_text_component.rb -------------------------------------------------------------------------------- /app/components/index_document_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/index_document_component.html.erb -------------------------------------------------------------------------------- /app/components/index_document_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/index_document_component.rb -------------------------------------------------------------------------------- /app/components/index_metadata_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/index_metadata_component.html.erb -------------------------------------------------------------------------------- /app/components/index_metadata_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/index_metadata_component.rb -------------------------------------------------------------------------------- /app/components/index_title_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/index_title_component.html.erb -------------------------------------------------------------------------------- /app/components/index_title_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/index_title_component.rb -------------------------------------------------------------------------------- /app/components/multiselect_combobox_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/multiselect_combobox_component.rb -------------------------------------------------------------------------------- /app/components/range_form_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/range_form_component.html.erb -------------------------------------------------------------------------------- /app/components/range_form_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/range_form_component.rb -------------------------------------------------------------------------------- /app/components/request_button_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/request_button_component.html.erb -------------------------------------------------------------------------------- /app/components/request_button_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/request_button_component.rb -------------------------------------------------------------------------------- /app/components/thumbnail_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/thumbnail_component.html.erb -------------------------------------------------------------------------------- /app/components/thumbnail_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/thumbnail_component.rb -------------------------------------------------------------------------------- /app/components/thumbnail_index_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/thumbnail_index_component.rb -------------------------------------------------------------------------------- /app/components/thumbnail_show_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/thumbnail_show_component.html.erb -------------------------------------------------------------------------------- /app/components/thumbnail_show_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/thumbnail_show_component.rb -------------------------------------------------------------------------------- /app/components/viewer_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/viewer_component.html.erb -------------------------------------------------------------------------------- /app/components/viewer_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/components/viewer_component.rb -------------------------------------------------------------------------------- /app/controllers/account_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/account_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/bookmarks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/bookmarks_controller.rb -------------------------------------------------------------------------------- /app/controllers/catalog_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/catalog_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/orangelight/catalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/concerns/orangelight/catalog.rb -------------------------------------------------------------------------------- /app/controllers/contact_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/contact_controller.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/feedback_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/feedback_controller.rb -------------------------------------------------------------------------------- /app/controllers/requests/form_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/requests/form_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_history_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/search_history_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/forms/ask_a_question_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/forms/ask_a_question_form.rb -------------------------------------------------------------------------------- /app/forms/concerns/honeypot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/forms/concerns/honeypot.rb -------------------------------------------------------------------------------- /app/forms/feedback_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/forms/feedback_form.rb -------------------------------------------------------------------------------- /app/forms/report_biased_results_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/forms/report_biased_results_form.rb -------------------------------------------------------------------------------- /app/forms/suggest_correction_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/forms/suggest_correction_form.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/blacklight_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/helpers/blacklight_helper.rb -------------------------------------------------------------------------------- /app/helpers/bookmarks_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/helpers/bookmarks_helper.rb -------------------------------------------------------------------------------- /app/helpers/catalog_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/helpers/catalog_helper.rb -------------------------------------------------------------------------------- /app/helpers/holdings_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/helpers/holdings_helper.rb -------------------------------------------------------------------------------- /app/helpers/orangelight/browsables_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/helpers/orangelight/browsables_helper.rb -------------------------------------------------------------------------------- /app/helpers/requests/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/helpers/requests/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/requests/request_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/helpers/requests/request_helper.rb -------------------------------------------------------------------------------- /app/javascript/entrypoints/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/entrypoints/application.js -------------------------------------------------------------------------------- /app/javascript/entrypoints/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/entrypoints/requests.js -------------------------------------------------------------------------------- /app/javascript/orangelight/accessible_facets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/accessible_facets.js -------------------------------------------------------------------------------- /app/javascript/orangelight/alert_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/alert_manager.js -------------------------------------------------------------------------------- /app/javascript/orangelight/availability_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/availability_base.js -------------------------------------------------------------------------------- /app/javascript/orangelight/availability_show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/availability_show.js -------------------------------------------------------------------------------- /app/javascript/orangelight/book_covers.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/book_covers.es6 -------------------------------------------------------------------------------- /app/javascript/orangelight/graphql-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/graphql-client.js -------------------------------------------------------------------------------- /app/javascript/orangelight/json_p.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/json_p.es6 -------------------------------------------------------------------------------- /app/javascript/orangelight/lux_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/lux_import.js -------------------------------------------------------------------------------- /app/javascript/orangelight/option.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/option.es6 -------------------------------------------------------------------------------- /app/javascript/orangelight/orangelight.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/orangelight.es6 -------------------------------------------------------------------------------- /app/javascript/orangelight/related_records.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/related_records.es6 -------------------------------------------------------------------------------- /app/javascript/orangelight/selected_options.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/selected_options.es6 -------------------------------------------------------------------------------- /app/javascript/orangelight/status_display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/javascript/orangelight/status_display.js -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/contact_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/mailers/contact_mailer.rb -------------------------------------------------------------------------------- /app/mailers/requests/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/mailers/requests/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/requests/request_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/mailers/requests/request_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/advanced_boolean_operators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/advanced_boolean_operators.rb -------------------------------------------------------------------------------- /app/models/advanced_form_search_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/advanced_form_search_builder.rb -------------------------------------------------------------------------------- /app/models/announcement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/announcement.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/bookmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/bookmark.rb -------------------------------------------------------------------------------- /app/models/call_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/call_number.rb -------------------------------------------------------------------------------- /app/models/concerns/blacklight/document/apa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/concerns/blacklight/document/apa.rb -------------------------------------------------------------------------------- /app/models/concerns/blacklight/document/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/concerns/blacklight/document/email.rb -------------------------------------------------------------------------------- /app/models/concerns/blacklight/document/mla.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/concerns/blacklight/document/mla.rb -------------------------------------------------------------------------------- /app/models/concerns/blacklight/document/ris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/concerns/blacklight/document/ris.rb -------------------------------------------------------------------------------- /app/models/concerns/orangelight/document/alma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/concerns/orangelight/document/alma.rb -------------------------------------------------------------------------------- /app/models/concerns/orangelight/document/scsb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/concerns/orangelight/document/scsb.rb -------------------------------------------------------------------------------- /app/models/concerns/requests/aeon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/concerns/requests/aeon.rb -------------------------------------------------------------------------------- /app/models/concerns/requests/bibdata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/concerns/requests/bibdata.rb -------------------------------------------------------------------------------- /app/models/concerns/requests/scsb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/concerns/requests/scsb.rb -------------------------------------------------------------------------------- /app/models/engineering_search_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/engineering_search_builder.rb -------------------------------------------------------------------------------- /app/models/feedback_form_submission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/feedback_form_submission.rb -------------------------------------------------------------------------------- /app/models/in_library_use.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/in_library_use.rb -------------------------------------------------------------------------------- /app/models/numismatics_form_search_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/numismatics_form_search_builder.rb -------------------------------------------------------------------------------- /app/models/oauth_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/oauth_token.rb -------------------------------------------------------------------------------- /app/models/orangelight.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/orangelight.rb -------------------------------------------------------------------------------- /app/models/orangelight/call_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/orangelight/call_number.rb -------------------------------------------------------------------------------- /app/models/orangelight/name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/orangelight/name.rb -------------------------------------------------------------------------------- /app/models/orangelight/name_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/orangelight/name_title.rb -------------------------------------------------------------------------------- /app/models/orangelight/record_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/orangelight/record_mailer.rb -------------------------------------------------------------------------------- /app/models/orangelight/subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/orangelight/subject.rb -------------------------------------------------------------------------------- /app/models/record_feedback_form_submission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/record_feedback_form_submission.rb -------------------------------------------------------------------------------- /app/models/requests/aeon_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/aeon_url.rb -------------------------------------------------------------------------------- /app/models/requests/alma_patron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/alma_patron.rb -------------------------------------------------------------------------------- /app/models/requests/back_to_record_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/back_to_record_url.rb -------------------------------------------------------------------------------- /app/models/requests/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/form.rb -------------------------------------------------------------------------------- /app/models/requests/form_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/form_decorator.rb -------------------------------------------------------------------------------- /app/models/requests/full_patron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/full_patron.rb -------------------------------------------------------------------------------- /app/models/requests/holding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/holding.rb -------------------------------------------------------------------------------- /app/models/requests/holding_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/holding_group.rb -------------------------------------------------------------------------------- /app/models/requests/illiad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/illiad.rb -------------------------------------------------------------------------------- /app/models/requests/illiad_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/illiad_client.rb -------------------------------------------------------------------------------- /app/models/requests/illiad_metadata/loan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/illiad_metadata/loan.rb -------------------------------------------------------------------------------- /app/models/requests/illiad_metadata/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/illiad_metadata/metadata.rb -------------------------------------------------------------------------------- /app/models/requests/illiad_patron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/illiad_patron.rb -------------------------------------------------------------------------------- /app/models/requests/illiad_transaction_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/illiad_transaction_client.rb -------------------------------------------------------------------------------- /app/models/requests/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/item.rb -------------------------------------------------------------------------------- /app/models/requests/libcal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/libcal.rb -------------------------------------------------------------------------------- /app/models/requests/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/location.rb -------------------------------------------------------------------------------- /app/models/requests/non_alma_aeon_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/non_alma_aeon_url.rb -------------------------------------------------------------------------------- /app/models/requests/null_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/null_item.rb -------------------------------------------------------------------------------- /app/models/requests/patron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/patron.rb -------------------------------------------------------------------------------- /app/models/requests/recap_item_availability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/recap_item_availability.rb -------------------------------------------------------------------------------- /app/models/requests/requestable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/requestable.rb -------------------------------------------------------------------------------- /app/models/requests/requestable_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/requestable_decorator.rb -------------------------------------------------------------------------------- /app/models/requests/requestables_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/requestables_list.rb -------------------------------------------------------------------------------- /app/models/requests/router.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/router.rb -------------------------------------------------------------------------------- /app/models/requests/selected_items_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/selected_items_validator.rb -------------------------------------------------------------------------------- /app/models/requests/service_eligibility/aeon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/service_eligibility/aeon.rb -------------------------------------------------------------------------------- /app/models/requests/service_eligibility/ill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/service_eligibility/ill.rb -------------------------------------------------------------------------------- /app/models/requests/solr_open_url_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/solr_open_url_context.rb -------------------------------------------------------------------------------- /app/models/requests/submission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/submission.rb -------------------------------------------------------------------------------- /app/models/requests/submissions/digitize_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/submissions/digitize_item.rb -------------------------------------------------------------------------------- /app/models/requests/submissions/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/submissions/generic.rb -------------------------------------------------------------------------------- /app/models/requests/submissions/hold_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/submissions/hold_item.rb -------------------------------------------------------------------------------- /app/models/requests/submissions/illiad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/submissions/illiad.rb -------------------------------------------------------------------------------- /app/models/requests/submissions/recap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/submissions/recap.rb -------------------------------------------------------------------------------- /app/models/requests/submissions/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/submissions/service.rb -------------------------------------------------------------------------------- /app/models/requests/temp_location_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/requests/temp_location_cache.rb -------------------------------------------------------------------------------- /app/models/search_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/search_builder.rb -------------------------------------------------------------------------------- /app/models/solr_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/solr_document.rb -------------------------------------------------------------------------------- /app/models/solr_document/identifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/solr_document/identifier.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/presenters/orangelight/clause_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/presenters/orangelight/clause_presenter.rb -------------------------------------------------------------------------------- /app/processors/orangelight/join_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/processors/orangelight/join_processor.rb -------------------------------------------------------------------------------- /app/serializers/submission_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/serializers/submission_serializer.rb -------------------------------------------------------------------------------- /app/services/bibdata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/bibdata.rb -------------------------------------------------------------------------------- /app/services/db_migrate_uppercase_usernames.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/db_migrate_uppercase_usernames.rb -------------------------------------------------------------------------------- /app/services/decorator_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/decorator_service.rb -------------------------------------------------------------------------------- /app/services/event_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/event_processor.rb -------------------------------------------------------------------------------- /app/services/event_processor/delete_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/event_processor/delete_processor.rb -------------------------------------------------------------------------------- /app/services/event_processor/processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/event_processor/processor.rb -------------------------------------------------------------------------------- /app/services/event_processor/unknown_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/event_processor/unknown_event.rb -------------------------------------------------------------------------------- /app/services/event_processor/update_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/event_processor/update_processor.rb -------------------------------------------------------------------------------- /app/services/ez_proxy_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/ez_proxy_service.rb -------------------------------------------------------------------------------- /app/services/faceted_query_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/faceted_query_service.rb -------------------------------------------------------------------------------- /app/services/holding_requests_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/holding_requests_adapter.rb -------------------------------------------------------------------------------- /app/services/holding_requests_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/holding_requests_builder.rb -------------------------------------------------------------------------------- /app/services/linked_document_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/linked_document_resolver.rb -------------------------------------------------------------------------------- /app/services/oauth_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/oauth_service.rb -------------------------------------------------------------------------------- /app/services/online_holdings_markup_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/online_holdings_markup_builder.rb -------------------------------------------------------------------------------- /app/services/physical_holdings_markup_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/physical_holdings_markup_builder.rb -------------------------------------------------------------------------------- /app/services/requests/bibdata_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/services/requests/bibdata_service.rb -------------------------------------------------------------------------------- /app/views/_user_util_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/_user_util_links.html.erb -------------------------------------------------------------------------------- /app/views/account/_ill_request_items.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/account/_ill_request_items.html.erb -------------------------------------------------------------------------------- /app/views/account/_login_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/account/_login_links.html.erb -------------------------------------------------------------------------------- /app/views/account/cancel_ill_requests.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/account/cancel_ill_requests.js.erb -------------------------------------------------------------------------------- /app/views/account/digitization_requests.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'ill_request_items' %> 2 | -------------------------------------------------------------------------------- /app/views/advanced/numismatics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/advanced/numismatics.html.erb -------------------------------------------------------------------------------- /app/views/blacklight/nav/_bookmark.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/blacklight/nav/_bookmark.html.erb -------------------------------------------------------------------------------- /app/views/bookmarks/_tools.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/bookmarks/_tools.html.erb -------------------------------------------------------------------------------- /app/views/bookmarks/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/bookmarks/index.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_advanced_search_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_advanced_search_form.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_ask_a_question_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_ask_a_question_form.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_atom_index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_atom_index.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_bookmark_all.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_bookmark_all.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_citation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_citation.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_default_thumbnail.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_default_thumbnail.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_document_default.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_document_default.atom.builder -------------------------------------------------------------------------------- /app/views/catalog/_email_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_email_form.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_facets.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_facets.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_field.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_field.json.jbuilder -------------------------------------------------------------------------------- /app/views/catalog/_hash_show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_hash_show.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_home_text.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_home_text.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_index_default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_index_default.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_marc_view.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_marc_view.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_other_versions_show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_other_versions_show.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_previous_next_doc.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_previous_next_doc.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_search_header.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'sort_and_per_page' %> 2 | -------------------------------------------------------------------------------- /app/views/catalog/_search_results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_search_results.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_availability.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_availability.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_default.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_digital_content.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_digital_content.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_header_default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_header_default.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_linked_record.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_linked_record.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_linked_records.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_linked_records.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_main_content.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_main_content.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_restrictions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_restrictions.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_tools.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_tools.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_show_top_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_show_top_fields.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_sort_and_per_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_sort_and_per_page.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_sort_widget.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_sort_widget.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_zero_results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/_zero_results.html.erb -------------------------------------------------------------------------------- /app/views/catalog/advanced_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/advanced_search.html.erb -------------------------------------------------------------------------------- /app/views/catalog/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/index.html.erb -------------------------------------------------------------------------------- /app/views/catalog/librarian_view.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/librarian_view.html.erb -------------------------------------------------------------------------------- /app/views/catalog/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/show.html.erb -------------------------------------------------------------------------------- /app/views/catalog/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/catalog/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/contact/question_success.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/contact/question_success.html.erb -------------------------------------------------------------------------------- /app/views/contact/suggestion_success.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/contact/suggestion_success.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- 1 |
2 | <%= render 'shared/login' %> 3 |
4 | -------------------------------------------------------------------------------- /app/views/errors/error.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/errors/error.erb -------------------------------------------------------------------------------- /app/views/errors/missing.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/errors/missing.erb -------------------------------------------------------------------------------- /app/views/feedback/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/feedback/_form.html.erb -------------------------------------------------------------------------------- /app/views/feedback/_return.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/feedback/_return.html.erb -------------------------------------------------------------------------------- /app/views/feedback/ask_a_question.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/feedback/ask_a_question.html.erb -------------------------------------------------------------------------------- /app/views/feedback/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/feedback/create.js.erb -------------------------------------------------------------------------------- /app/views/feedback/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/feedback/new.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/blacklight/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/kaminari/blacklight/_page.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/requests/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/layouts/requests/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/requests/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/pages/dataset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/pages/dataset.html.erb -------------------------------------------------------------------------------- /app/views/pages/help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/pages/help.html.erb -------------------------------------------------------------------------------- /app/views/record_mailer/sms_record.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/record_mailer/sms_record.text.erb -------------------------------------------------------------------------------- /app/views/requests/form/_edd_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/requests/form/_edd_fields.html.erb -------------------------------------------------------------------------------- /app/views/requests/form/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/requests/form/_form.html.erb -------------------------------------------------------------------------------- /app/views/requests/form/_no_access.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/requests/form/_no_access.html.erb -------------------------------------------------------------------------------- /app/views/requests/form/generate.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/requests/form/generate.erb -------------------------------------------------------------------------------- /app/views/requests/form/submit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/requests/form/submit.html.erb -------------------------------------------------------------------------------- /app/views/requests/request_mailer/clancy_edd_email.html.erb: -------------------------------------------------------------------------------- 1 | <%= render partial: 'patron_request', locals: { show_edd_fields: true } %> 2 | -------------------------------------------------------------------------------- /app/views/requests/request_mailer/marquand_edd_confirmation.html.erb: -------------------------------------------------------------------------------- 1 | <%= render partial: 'edd_confirmation', locals: { type: 'marquand_edd'} %> -------------------------------------------------------------------------------- /app/views/requests/request_mailer/marquand_edd_email.html.erb: -------------------------------------------------------------------------------- 1 | <%= render partial: 'patron_request', locals: { show_edd_fields: true } %> 2 | -------------------------------------------------------------------------------- /app/views/search_history/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/search_history/index.html.erb -------------------------------------------------------------------------------- /app/views/shared/_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/shared/_analytics.html.erb -------------------------------------------------------------------------------- /app/views/shared/_analytics_noscript.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/shared/_analytics_noscript.html.erb -------------------------------------------------------------------------------- /app/views/shared/_announcement.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/shared/_announcement.html.erb -------------------------------------------------------------------------------- /app/views/shared/_ask_librarian.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/shared/_ask_librarian.html.erb -------------------------------------------------------------------------------- /app/views/shared/_flash_msg.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/shared/_flash_msg.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/shared/_footer.html.erb -------------------------------------------------------------------------------- /app/views/shared/_header_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/shared/_header_navbar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_login.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/shared/_login.html.erb -------------------------------------------------------------------------------- /app/views/shared/_start_over_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/views/shared/_start_over_row.html.erb -------------------------------------------------------------------------------- /app/workers/event_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/app/workers/event_handler.rb -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/architecture.png -------------------------------------------------------------------------------- /architecture/decisions/0001-remove-jquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/architecture/decisions/0001-remove-jquery.md -------------------------------------------------------------------------------- /bearer.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/bearer.ignore -------------------------------------------------------------------------------- /bearer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/bearer.yml -------------------------------------------------------------------------------- /benchmarks/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/benchmarks/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /benchmarks/app/models/requests/requestable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/benchmarks/app/models/requests/requestable.rb -------------------------------------------------------------------------------- /benchmarks/app/models/solr_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/benchmarks/app/models/solr_document.rb -------------------------------------------------------------------------------- /benchmarks/app/services/bibdata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/benchmarks/app/services/bibdata.rb -------------------------------------------------------------------------------- /benchmarks/benchmark_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/benchmarks/benchmark_helpers.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/jetty_wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/bin/jetty_wait -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/vite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/bin/vite -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config.ru -------------------------------------------------------------------------------- /config/alma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/alma.yml -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/blacklight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/blacklight.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/crawler-user-agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/crawler-user-agents.json -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/deploy/production.rb -------------------------------------------------------------------------------- /config/deploy/qa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/deploy/qa.rb -------------------------------------------------------------------------------- /config/deploy/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/deploy/staging.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/alma_qa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/environments/alma_qa.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/qa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/environments/qa.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/features.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/features.rb -------------------------------------------------------------------------------- /config/global/figgy.yml: -------------------------------------------------------------------------------- 1 | default: 2 | url: <%= ENV['FIGGY_URL'] || 'https://figgy.princeton.edu' %> 3 | -------------------------------------------------------------------------------- /config/global/graphql.yml: -------------------------------------------------------------------------------- 1 | default: 2 | uri: <%= ENV['GRAPHQL_API_URL'] || 'https://figgy.princeton.edu/graphql' %> 3 | -------------------------------------------------------------------------------- /config/honeybadger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/honeybadger.yml -------------------------------------------------------------------------------- /config/hosts.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/hosts.dat -------------------------------------------------------------------------------- /config/initializers/alma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/alma.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/blacklight.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/blacklight.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/custom_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/custom_serializer.rb -------------------------------------------------------------------------------- /config/initializers/datadog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/datadog.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/ez_proxy_hosts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/ez_proxy_hosts.rb -------------------------------------------------------------------------------- /config/initializers/global.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/global.rb -------------------------------------------------------------------------------- /config/initializers/health_monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/health_monitor.rb -------------------------------------------------------------------------------- /config/initializers/high_voltage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/high_voltage.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/lograge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/lograge.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/mini_profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/mini_profiler.rb -------------------------------------------------------------------------------- /config/initializers/orangelight_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/orangelight_config.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/rack_attack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/rack_attack.rb -------------------------------------------------------------------------------- /config/initializers/read_only_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/read_only_mode.rb -------------------------------------------------------------------------------- /config/initializers/relators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/relators.rb -------------------------------------------------------------------------------- /config/initializers/requests_initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/requests_initializer.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/sneakers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/sneakers.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/lando_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/lando_env.rb -------------------------------------------------------------------------------- /config/locales/blacklight.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/locales/blacklight.en.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/requests.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/locales/requests.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/orangelight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/orangelight.yml -------------------------------------------------------------------------------- /config/redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/redis.yml -------------------------------------------------------------------------------- /config/requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/requests.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/vite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/config/vite.json -------------------------------------------------------------------------------- /db/migrate/20220815122519_create_features.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/db/migrate/20220815122519_create_features.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/accounts.md -------------------------------------------------------------------------------- /docs/alma_orangelight_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/alma_orangelight_login.md -------------------------------------------------------------------------------- /docs/backup_restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/backup_restore.md -------------------------------------------------------------------------------- /docs/browse-lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/browse-lists.md -------------------------------------------------------------------------------- /docs/bundle_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/bundle_size.md -------------------------------------------------------------------------------- /docs/continuous_delivery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/continuous_delivery.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/json_solr_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/json_solr_queries.md -------------------------------------------------------------------------------- /docs/numismatics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/numismatics.md -------------------------------------------------------------------------------- /docs/orangelight-figgy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/orangelight-figgy.md -------------------------------------------------------------------------------- /docs/rabbitmq-sneakers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/rabbitmq-sneakers.md -------------------------------------------------------------------------------- /docs/requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/requests/README.md -------------------------------------------------------------------------------- /docs/requests/aeon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/requests/aeon.md -------------------------------------------------------------------------------- /docs/requests/dev_hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/requests/dev_hints.md -------------------------------------------------------------------------------- /docs/requests/form_diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/requests/form_diagram.md -------------------------------------------------------------------------------- /docs/requests/illiad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/requests/illiad.md -------------------------------------------------------------------------------- /docs/requests/marquand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/requests/marquand.md -------------------------------------------------------------------------------- /docs/requests/patron_groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/requests/patron_groups.md -------------------------------------------------------------------------------- /docs/requests/request_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/requests/request_types.md -------------------------------------------------------------------------------- /docs/search_and_race/search_highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/search_and_race/search_highlighting.md -------------------------------------------------------------------------------- /docs/test_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/test_plan.md -------------------------------------------------------------------------------- /docs/transfer_bookmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/transfer_bookmarks.md -------------------------------------------------------------------------------- /docs/viewer_warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/docs/viewer_warning.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/capistrano/tasks/access_check.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/capistrano/tasks/access_check.rake -------------------------------------------------------------------------------- /lib/custom_public_exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/custom_public_exceptions.rb -------------------------------------------------------------------------------- /lib/omniauth/strategies/alma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/omniauth/strategies/alma.rb -------------------------------------------------------------------------------- /lib/omniauth/strategies/barcode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/omniauth/strategies/barcode.rb -------------------------------------------------------------------------------- /lib/orangelight/browse_lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/orangelight/browse_lists.rb -------------------------------------------------------------------------------- /lib/orangelight/illiad_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/orangelight/illiad_account.rb -------------------------------------------------------------------------------- /lib/orangelight/illiad_patron_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/orangelight/illiad_patron_client.rb -------------------------------------------------------------------------------- /lib/orangelight/middleware/no_file_uploads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/orangelight/middleware/no_file_uploads.rb -------------------------------------------------------------------------------- /lib/orangelight/string_functions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/orangelight/string_functions.rb -------------------------------------------------------------------------------- /lib/tasks/announcement.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/tasks/announcement.rake -------------------------------------------------------------------------------- /lib/tasks/benchmark.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/tasks/benchmark.rake -------------------------------------------------------------------------------- /lib/tasks/browse.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/tasks/browse.rake -------------------------------------------------------------------------------- /lib/tasks/cache.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/tasks/cache.rake -------------------------------------------------------------------------------- /lib/tasks/fake_seeds.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/tasks/fake_seeds.rake -------------------------------------------------------------------------------- /lib/tasks/maintenance.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/tasks/maintenance.rake -------------------------------------------------------------------------------- /lib/tasks/pulsearch.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/tasks/pulsearch.rake -------------------------------------------------------------------------------- /lib/tasks/server.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lib/tasks/server.rake -------------------------------------------------------------------------------- /lighthouserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/lighthouserc.js -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/package.json -------------------------------------------------------------------------------- /public/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/public/context.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/public/labels.txt -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/x400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/public/x400.html -------------------------------------------------------------------------------- /public/x404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/public/x404.html -------------------------------------------------------------------------------- /public/x422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/public/x422.html -------------------------------------------------------------------------------- /public/x500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/public/x500.html -------------------------------------------------------------------------------- /smoke_spec/smoke_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/smoke_spec/smoke_spec.rb -------------------------------------------------------------------------------- /smoke_spec/smoke_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/smoke_spec/smoke_spec_helper.rb -------------------------------------------------------------------------------- /solr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/solr/README.md -------------------------------------------------------------------------------- /solr/conf/mapping-ISOLatin1Accent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/solr/conf/mapping-ISOLatin1Accent.txt -------------------------------------------------------------------------------- /solr/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/solr/conf/protwords.txt -------------------------------------------------------------------------------- /solr/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/solr/conf/schema.xml -------------------------------------------------------------------------------- /solr/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/solr/conf/solrconfig.xml -------------------------------------------------------------------------------- /solr/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history 3 | -------------------------------------------------------------------------------- /solr/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/solr/conf/stopwords.txt -------------------------------------------------------------------------------- /solr/conf/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/solr/conf/stopwords_en.txt -------------------------------------------------------------------------------- /solr/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/solr/conf/synonyms.txt -------------------------------------------------------------------------------- /source/setup-jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/source/setup-jest.js -------------------------------------------------------------------------------- /spec/cassettes/form_controller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/cassettes/form_controller.yml -------------------------------------------------------------------------------- /spec/cassettes/form_features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/cassettes/form_features.yml -------------------------------------------------------------------------------- /spec/cassettes/form_models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/cassettes/form_models.yml -------------------------------------------------------------------------------- /spec/cassettes/mailer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/cassettes/mailer.yml -------------------------------------------------------------------------------- /spec/cassettes/requestable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/cassettes/requestable.yml -------------------------------------------------------------------------------- /spec/cassettes/requests_router.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/cassettes/requests_router.yml -------------------------------------------------------------------------------- /spec/components/index_title_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/components/index_title_component_spec.rb -------------------------------------------------------------------------------- /spec/components/thumbnail_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/components/thumbnail_component_spec.rb -------------------------------------------------------------------------------- /spec/components/viewer_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/components/viewer_component_spec.rb -------------------------------------------------------------------------------- /spec/controllers/account_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/controllers/account_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/bookmarks_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/controllers/bookmarks_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/catalog_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/controllers/catalog_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/errors_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/controllers/errors_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/feedback_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/controllers/feedback_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/sessions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/controllers/sessions_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/announcements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/factories/announcements.rb -------------------------------------------------------------------------------- /spec/factories/bookmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/factories/bookmarks.rb -------------------------------------------------------------------------------- /spec/factories/requests/patron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/factories/requests/patron.rb -------------------------------------------------------------------------------- /spec/factories/requests/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/factories/requests/request.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/accessibility_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/accessibility_spec.rb -------------------------------------------------------------------------------- /spec/features/advanced_searching_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/advanced_searching_spec.rb -------------------------------------------------------------------------------- /spec/features/availability_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/availability_spec.rb -------------------------------------------------------------------------------- /spec/features/bookmarks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/bookmarks_spec.rb -------------------------------------------------------------------------------- /spec/features/browsables_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/browsables_spec.rb -------------------------------------------------------------------------------- /spec/features/browsing_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/browsing_item_spec.rb -------------------------------------------------------------------------------- /spec/features/citation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/citation_spec.rb -------------------------------------------------------------------------------- /spec/features/email_authentication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/email_authentication_spec.rb -------------------------------------------------------------------------------- /spec/features/errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/errors_spec.rb -------------------------------------------------------------------------------- /spec/features/facets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/facets_spec.rb -------------------------------------------------------------------------------- /spec/features/feedback_biased_results_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/feedback_biased_results_spec.rb -------------------------------------------------------------------------------- /spec/features/feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/feedback_spec.rb -------------------------------------------------------------------------------- /spec/features/flipflop_features_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/flipflop_features_spec.rb -------------------------------------------------------------------------------- /spec/features/header_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/header_links_spec.rb -------------------------------------------------------------------------------- /spec/features/librarian_view_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/librarian_view_spec.rb -------------------------------------------------------------------------------- /spec/features/login_account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/login_account_spec.rb -------------------------------------------------------------------------------- /spec/features/more_in_this_series_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/more_in_this_series_spec.rb -------------------------------------------------------------------------------- /spec/features/numismatics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/numismatics_spec.rb -------------------------------------------------------------------------------- /spec/features/request_options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/request_options_spec.rb -------------------------------------------------------------------------------- /spec/features/requests/form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/requests/form_spec.rb -------------------------------------------------------------------------------- /spec/features/requests/marquand_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/requests/marquand_spec.rb -------------------------------------------------------------------------------- /spec/features/scsb_holdings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/scsb_holdings_spec.rb -------------------------------------------------------------------------------- /spec/features/search_history_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/search_history_spec.rb -------------------------------------------------------------------------------- /spec/features/search_input_facets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/search_input_facets_spec.rb -------------------------------------------------------------------------------- /spec/features/thesis_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/thesis_spec.rb -------------------------------------------------------------------------------- /spec/features/zotero_support_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/features/zotero_support_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/8908514.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/8908514.json -------------------------------------------------------------------------------- /spec/fixtures/BC123456789.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/BC123456789.json -------------------------------------------------------------------------------- /spec/fixtures/SCSB-2879206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/SCSB-2879206.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99100961313506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99100961313506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99105855523506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99105855523506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99106471643506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99106471643506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99116299583506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99116299583506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99120508103506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99120508103506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99122306151806421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99122306151806421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99125344809306421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99125344809306421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99125378001906421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99125378001906421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99125412083106421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99125412083106421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99129068748706421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99129068748706421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99131306959706421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99131306959706421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99131369190806421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99131369190806421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99131369586906421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99131369586906421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99131369793306421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99131369793306421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/99131576430806421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/99131576430806421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9918309193506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9918309193506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9922486553506421_marc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9922486553506421_marc.xml -------------------------------------------------------------------------------- /spec/fixtures/alma/992784263506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/992784263506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9928379683506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9928379683506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9929100213506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9929100213506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/993213506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/993213506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9933506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9933506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9938713983506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9938713983506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/994304723506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/994304723506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9946093213506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9946093213506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9947053043506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9947053043506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9947247893506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9947247893506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9947572503506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9947572503506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9948322283506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9948322283506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9952615993506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9952615993506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9952918833506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9952918833506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9955667413506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9955667413506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/995597013506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/995597013506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9961023373506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9961023373506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9961398363506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9961398363506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9964125563506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9964125563506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9965749873506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9965749873506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9968900573506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9968900573506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9969113523506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9969113523506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9969197783506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9969197783506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/997218033506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/997218033506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9976174773506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9976174773506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9979160443506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9979160443506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9981818493506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9981818493506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/998449623506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/998449623506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9985453593506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9985453593506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9990306573506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9990306573506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9990889283506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9990889283506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9996180723506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9996180723506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9996490803506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9996490803506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/9997708113506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/9997708113506421.json -------------------------------------------------------------------------------- /spec/fixtures/alma/black_teenagers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/black_teenagers.json -------------------------------------------------------------------------------- /spec/fixtures/alma/current_fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/current_fixtures.json -------------------------------------------------------------------------------- /spec/fixtures/alma/portfolios_with_notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/portfolios_with_notes.json -------------------------------------------------------------------------------- /spec/fixtures/alma/white_teenagers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma/white_teenagers.json -------------------------------------------------------------------------------- /spec/fixtures/alma_hold_error_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma_hold_error_response.json -------------------------------------------------------------------------------- /spec/fixtures/alma_hold_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma_hold_response.json -------------------------------------------------------------------------------- /spec/fixtures/alma_login_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/alma_login_response.json -------------------------------------------------------------------------------- /spec/fixtures/authors.sorted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/authors.sorted -------------------------------------------------------------------------------- /spec/fixtures/bd_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bd_response.json -------------------------------------------------------------------------------- /spec/fixtures/bibdata/7994866.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bibdata/7994866.xml -------------------------------------------------------------------------------- /spec/fixtures/bibdata/9965749873506421.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bibdata/9965749873506421.xml -------------------------------------------------------------------------------- /spec/fixtures/bibdata/9979948663506421.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bibdata/9979948663506421.xml -------------------------------------------------------------------------------- /spec/fixtures/bibdata/availability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bibdata/availability.json -------------------------------------------------------------------------------- /spec/fixtures/bibdata/bad_health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bibdata/bad_health.json -------------------------------------------------------------------------------- /spec/fixtures/bibdata/bibdata_not_found_patron_response.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /spec/fixtures/bibdata/delivery_locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bibdata/delivery_locations.json -------------------------------------------------------------------------------- /spec/fixtures/bibdata/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bibdata/health.json -------------------------------------------------------------------------------- /spec/fixtures/bibdata/holding_locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bibdata/holding_locations.json -------------------------------------------------------------------------------- /spec/fixtures/bibdata_not_found_patron_response.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /spec/fixtures/bibdata_patron_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/bibdata_patron_response.json -------------------------------------------------------------------------------- /spec/fixtures/call_numbers.sorted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/call_numbers.sorted -------------------------------------------------------------------------------- /spec/fixtures/files/linked_records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/files/linked_records.json -------------------------------------------------------------------------------- /spec/fixtures/files/name_browse_unsorted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/files/name_browse_unsorted.csv -------------------------------------------------------------------------------- /spec/fixtures/google_book_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/google_book_search.json -------------------------------------------------------------------------------- /spec/fixtures/holding_locations/rare_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/holding_locations/rare_map.json -------------------------------------------------------------------------------- /spec/fixtures/holding_locations/rare_num.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/holding_locations/rare_num.json -------------------------------------------------------------------------------- /spec/fixtures/holding_locations/rare_xr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/holding_locations/rare_xr.json -------------------------------------------------------------------------------- /spec/fixtures/holding_locations/recap_pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/holding_locations/recap_pa.json -------------------------------------------------------------------------------- /spec/fixtures/holding_locations/scsbcul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/holding_locations/scsbcul.json -------------------------------------------------------------------------------- /spec/fixtures/holding_locations/scsbnypl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/holding_locations/scsbnypl.json -------------------------------------------------------------------------------- /spec/fixtures/ill_verify_user_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/ill_verify_user_response.json -------------------------------------------------------------------------------- /spec/fixtures/name_titles.sorted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/name_titles.sorted -------------------------------------------------------------------------------- /spec/fixtures/post.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/post.jar -------------------------------------------------------------------------------- /spec/fixtures/raw/99103251433506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99103251433506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99105816503506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99105816503506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99113283293506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99113283293506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99114026863506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99114026863506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99117665883506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99117665883506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9912140633506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9912140633506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99122304923506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99122304923506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99123713303506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99123713303506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99125492003506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99125492003506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99127133356906421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99127133356906421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99129134216906421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99129134216906421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9917887963506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9917887963506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9917917633506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9917917633506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9919698813506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9919698813506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9920022063506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9920022063506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9923858683506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9923858683506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9924784993506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9924784993506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9925693243506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9925693243506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9930682063506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9930682063506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9931805453506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9931805453506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9933643713506421_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9933643713506421_raw.json -------------------------------------------------------------------------------- /spec/fixtures/raw/993569343506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/993569343506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9938488723506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9938488723506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9941150973506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9941150973506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9942430233506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9942430233506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/994264203506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/994264203506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9947589763506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9947589763506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9947595913506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9947595913506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9948152393506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9948152393506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/994909303506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/994909303506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/994952203506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/994952203506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/994955013506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/994955013506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/99496133506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/99496133506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9951680203506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9951680203506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9956200533506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9956200533506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9956562643506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9956562643506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9960102253506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9960102253506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/996160863506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/996160863506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9961959423506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9961959423506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9963773693506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9963773693506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9967949663506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9967949663506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9973529363506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9973529363506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9974943583506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9974943583506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9977664533506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9977664533506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9979153343506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9979153343506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9981794023506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9981794023506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9988805493506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9988805493506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9991807103506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9991807103506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9992220243506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9992220243506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9994933183506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9994933183506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9995768803506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9995768803506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9995944353506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9995944353506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9996272613506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9996272613506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9996764833506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9996764833506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9997123553506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9997123553506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9999074333506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9999074333506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9999443553506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9999443553506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/9999998003506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/9999998003506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/SCSB-7935196.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/SCSB-7935196.json -------------------------------------------------------------------------------- /spec/fixtures/raw/alma/9911629773506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/alma/9911629773506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/alma/9925798443506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/alma/9925798443506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/alma/994916543506421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/alma/994916543506421.json -------------------------------------------------------------------------------- /spec/fixtures/raw/ephemera_born_digital.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/ephemera_born_digital.json -------------------------------------------------------------------------------- /spec/fixtures/raw/numismatics/coin-1167.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/numismatics/coin-1167.json -------------------------------------------------------------------------------- /spec/fixtures/raw/numismatics/coin-3750.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/numismatics/coin-3750.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-10422725.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-10422725.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-10966202.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-10966202.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-2143785.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-2143785.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-2443272.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-2443272.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-2635660.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-2635660.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-2650865.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-2650865.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-2879197.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-2879197.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-2901229.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-2901229.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-4634001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-4634001.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-5235419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-5235419.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-5290772.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-5290772.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-5396104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-5396104.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-5640725.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-5640725.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-6593031.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-6593031.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-7846265.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-7846265.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-7874204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-7874204.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-7935196.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-7935196.json -------------------------------------------------------------------------------- /spec/fixtures/raw/scsb/SCSB-8953469.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/raw/scsb/SCSB-8953469.json -------------------------------------------------------------------------------- /spec/fixtures/scsb_avail_bib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/scsb_avail_bib.json -------------------------------------------------------------------------------- /spec/fixtures/scsb_available_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/scsb_available_response.json -------------------------------------------------------------------------------- /spec/fixtures/scsb_find_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/scsb_find_request.json -------------------------------------------------------------------------------- /spec/fixtures/scsb_request_item_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/scsb_request_item_response.json -------------------------------------------------------------------------------- /spec/fixtures/scsb_single_avail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/scsb_single_avail.json -------------------------------------------------------------------------------- /spec/fixtures/solr_empty_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/solr_empty_query.json -------------------------------------------------------------------------------- /spec/fixtures/subjects.sorted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/fixtures/subjects.sorted -------------------------------------------------------------------------------- /spec/forms/ask_a_question_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/forms/ask_a_question_form_spec.rb -------------------------------------------------------------------------------- /spec/forms/feedback_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/forms/feedback_form_spec.rb -------------------------------------------------------------------------------- /spec/forms/report_biased_results_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/forms/report_biased_results_form_spec.rb -------------------------------------------------------------------------------- /spec/forms/suggest_correction_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/forms/suggest_correction_form_spec.rb -------------------------------------------------------------------------------- /spec/helpers/blacklight_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/helpers/blacklight_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/catalog_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/helpers/catalog_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/formats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/helpers/formats_spec.rb -------------------------------------------------------------------------------- /spec/helpers/locations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/helpers/locations_spec.rb -------------------------------------------------------------------------------- /spec/helpers/online_location_note_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/helpers/online_location_note_spec.rb -------------------------------------------------------------------------------- /spec/helpers/requests/request_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/helpers/requests/request_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/scsb_items_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/helpers/scsb_items_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/series_results_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/helpers/series_results_spec.rb -------------------------------------------------------------------------------- /spec/javascript/orangelight/option.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/javascript/orangelight/option.spec.js -------------------------------------------------------------------------------- /spec/lib/orangelight/browse_lists_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/lib/orangelight/browse_lists_spec.rb -------------------------------------------------------------------------------- /spec/lib/orangelight/string_functions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/lib/orangelight/string_functions_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/browse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/lib/tasks/browse_spec.rb -------------------------------------------------------------------------------- /spec/mailers/requests/request_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/mailers/requests/request_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/announcement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/announcement_spec.rb -------------------------------------------------------------------------------- /spec/models/apa_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/apa_spec.rb -------------------------------------------------------------------------------- /spec/models/bookmark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/bookmark_spec.rb -------------------------------------------------------------------------------- /spec/models/call_number_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/call_number_spec.rb -------------------------------------------------------------------------------- /spec/models/chicago_author_date_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/chicago_author_date_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/requests/aeon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/concerns/requests/aeon_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/requests/scsb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/concerns/requests/scsb_spec.rb -------------------------------------------------------------------------------- /spec/models/dublin_core_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/dublin_core_spec.rb -------------------------------------------------------------------------------- /spec/models/feedback_form_submission_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/feedback_form_submission_spec.rb -------------------------------------------------------------------------------- /spec/models/illiad_account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/illiad_account_spec.rb -------------------------------------------------------------------------------- /spec/models/illiad_patron_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/illiad_patron_client_spec.rb -------------------------------------------------------------------------------- /spec/models/json_ld_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/json_ld_spec.rb -------------------------------------------------------------------------------- /spec/models/mla_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/mla_spec.rb -------------------------------------------------------------------------------- /spec/models/oauth_token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/oauth_token_spec.rb -------------------------------------------------------------------------------- /spec/models/orangelight/call_number_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/orangelight/call_number_spec.rb -------------------------------------------------------------------------------- /spec/models/orangelight/name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/orangelight/name_spec.rb -------------------------------------------------------------------------------- /spec/models/orangelight/subject_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/orangelight/subject_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/aeon_url_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/aeon_url_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/alma_patron_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/alma_patron_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/form_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/form_decorator_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/form_no_vcr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/form_no_vcr_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/form_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/full_patron_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/full_patron_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/holding_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/holding_group_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/holding_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/holding_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/illiad_patron_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/illiad_patron_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/illiad_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/illiad_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/location_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/location_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/patron_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/patron_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/requestable/item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/requestable/item_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/requestable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/requestable_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/router_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/router_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/submission_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/submission_spec.rb -------------------------------------------------------------------------------- /spec/models/requests/user_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/requests/user_group_spec.rb -------------------------------------------------------------------------------- /spec/models/ris_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/ris_spec.rb -------------------------------------------------------------------------------- /spec/models/search_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/search_builder_spec.rb -------------------------------------------------------------------------------- /spec/models/solr_document/identifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/solr_document/identifier_spec.rb -------------------------------------------------------------------------------- /spec/models/solr_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/solr_document_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/orangelight/browse_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/orangelight/browse_list_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/accounts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/accounts_spec.rb -------------------------------------------------------------------------------- /spec/requests/advanced_search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/advanced_search_spec.rb -------------------------------------------------------------------------------- /spec/requests/application_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/application_spec.rb -------------------------------------------------------------------------------- /spec/requests/catalog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/catalog_spec.rb -------------------------------------------------------------------------------- /spec/requests/content_security_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/content_security_policy_spec.rb -------------------------------------------------------------------------------- /spec/requests/cookies_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/cookies_spec.rb -------------------------------------------------------------------------------- /spec/requests/facets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/facets_spec.rb -------------------------------------------------------------------------------- /spec/requests/features_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/features_spec.rb -------------------------------------------------------------------------------- /spec/requests/feedback_forms_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/feedback_forms_spec.rb -------------------------------------------------------------------------------- /spec/requests/health_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/health_check_spec.rb -------------------------------------------------------------------------------- /spec/requests/left_anchor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/left_anchor_spec.rb -------------------------------------------------------------------------------- /spec/requests/linked_records_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/linked_records_spec.rb -------------------------------------------------------------------------------- /spec/requests/online_search_result_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/online_search_result_spec.rb -------------------------------------------------------------------------------- /spec/requests/orangelight/browse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/orangelight/browse_spec.rb -------------------------------------------------------------------------------- /spec/requests/request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/request_spec.rb -------------------------------------------------------------------------------- /spec/requests/requests_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/requests_form_spec.rb -------------------------------------------------------------------------------- /spec/requests/robots_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/robots_spec.rb -------------------------------------------------------------------------------- /spec/requests/sidekiq_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/sidekiq_spec.rb -------------------------------------------------------------------------------- /spec/requests/temp_location_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/requests/temp_location_cache_spec.rb -------------------------------------------------------------------------------- /spec/routing/account_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/routing/account_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/catalog_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/routing/catalog_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/feedback_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/routing/feedback_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/pages_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/routing/pages_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/requests/form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/routing/requests/form_spec.rb -------------------------------------------------------------------------------- /spec/services/bibdata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/services/bibdata_spec.rb -------------------------------------------------------------------------------- /spec/services/decorator_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/services/decorator_service_spec.rb -------------------------------------------------------------------------------- /spec/services/event_processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/services/event_processor_spec.rb -------------------------------------------------------------------------------- /spec/services/ez_proxy_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/services/ez_proxy_service_spec.rb -------------------------------------------------------------------------------- /spec/services/oauth_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/services/oauth_service_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara_selenium.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/support/capybara_selenium.rb -------------------------------------------------------------------------------- /spec/support/controller_level_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/support/controller_level_helpers.rb -------------------------------------------------------------------------------- /spec/support/features/session_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/support/features/session_helpers.rb -------------------------------------------------------------------------------- /spec/support/keyboard_interactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/support/keyboard_interactions.rb -------------------------------------------------------------------------------- /spec/support/sidekiq_data_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/support/sidekiq_data_check.rb -------------------------------------------------------------------------------- /spec/support/stub_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/support/stub_helpers.rb -------------------------------------------------------------------------------- /spec/support/system_specs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/support/system_specs.rb -------------------------------------------------------------------------------- /spec/support/vcr_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/support/vcr_setup.rb -------------------------------------------------------------------------------- /spec/support/webmock_stubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/support/webmock_stubs.rb -------------------------------------------------------------------------------- /spec/system/ask_a_question_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/ask_a_question_form_spec.rb -------------------------------------------------------------------------------- /spec/system/bookmark_all_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/bookmark_all_spec.rb -------------------------------------------------------------------------------- /spec/system/boolean_searching_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/boolean_searching_spec.rb -------------------------------------------------------------------------------- /spec/system/catalog_show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/catalog_show_spec.rb -------------------------------------------------------------------------------- /spec/system/footer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/footer_spec.rb -------------------------------------------------------------------------------- /spec/system/left_anchor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/left_anchor_spec.rb -------------------------------------------------------------------------------- /spec/system/numismatics_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/numismatics_form_spec.rb -------------------------------------------------------------------------------- /spec/system/numismatics_show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/numismatics_show_spec.rb -------------------------------------------------------------------------------- /spec/system/searching_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/searching_spec.rb -------------------------------------------------------------------------------- /spec/system/show_page_holding_groups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/show_page_holding_groups_spec.rb -------------------------------------------------------------------------------- /spec/system/show_related_records_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/show_related_records_spec.rb -------------------------------------------------------------------------------- /spec/system/sitemap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/sitemap_spec.rb -------------------------------------------------------------------------------- /spec/system/skip_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/skip_links_spec.rb -------------------------------------------------------------------------------- /spec/system/sorting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/sorting_spec.rb -------------------------------------------------------------------------------- /spec/system/suggest_correction_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/system/suggest_correction_form_spec.rb -------------------------------------------------------------------------------- /spec/views/catalog/_field_json_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/views/catalog/_field_json_spec.rb -------------------------------------------------------------------------------- /spec/views/catalog/index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/views/catalog/index_spec.rb -------------------------------------------------------------------------------- /spec/views/catalog/show.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/views/catalog/show.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/feedback/feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/views/feedback/feedback_spec.rb -------------------------------------------------------------------------------- /spec/views/shared/_footer.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/views/shared/_footer.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/workers/event_handler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/spec/workers/event_handler_spec.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/vitest.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulibrary/orangelight/HEAD/yarn.lock --------------------------------------------------------------------------------