├── .coveralls.yml ├── .dockerignore ├── .env ├── .github ├── ISSUE_TEMPLATE │ ├── accessibility.md │ ├── bug_report.md │ ├── documentation.md │ ├── feature_request.md │ └── maintenance.md ├── pull_request_template.md └── workflows │ └── ruby.yml ├── .gitignore ├── .hound.yml ├── .jshintrc ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .scss-lint.yml ├── .solr_wrapper ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── spotlight │ │ │ ├── .keep │ │ │ ├── blocks │ │ │ └── sir-trevor-icons.svg │ │ │ ├── default_browse_thumbnail.jpg │ │ │ ├── default_thumbnail.jpg │ │ │ └── fallback │ │ │ └── default.png │ ├── javascripts │ │ └── spotlight │ │ │ ├── spotlight.esm.js │ │ │ ├── spotlight.esm.js.map │ │ │ ├── spotlight.js │ │ │ └── spotlight.js.map │ └── stylesheets │ │ └── spotlight │ │ ├── _accessibility.scss │ │ ├── _admin_users.scss │ │ ├── _attachments.css │ │ ├── _autocomplete.scss │ │ ├── _blacklight_configuration.scss │ │ ├── _blacklight_overrides.scss │ │ ├── _bootstrap_overrides.scss │ │ ├── _breadcrumbs.scss │ │ ├── _browse.scss │ │ ├── _catalog.scss │ │ ├── _collapse_toggle.scss │ │ ├── _croppable.scss │ │ ├── _curation.scss │ │ ├── _edit_in_place.scss │ │ ├── _exhibit_admin.scss │ │ ├── _exhibit_navbar.scss │ │ ├── _exhibits_index.scss │ │ ├── _featured_browse_categories_block.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _item_text_block.scss │ │ ├── _mixins.scss │ │ ├── _modals.scss │ │ ├── _multi_image_selector.scss │ │ ├── _multi_up_item_grid.scss │ │ ├── _nestable.scss │ │ ├── _pages.scss │ │ ├── _report_a_problem.scss │ │ ├── _sir-trevor_overrides.scss │ │ ├── _slideshow_block.scss │ │ ├── _spotlight.scss │ │ ├── _tag_selector.scss │ │ ├── _translations.scss │ │ ├── _upload.scss │ │ ├── _uploaded_items_block.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── _view_larger.scss │ │ ├── browse_group_categories_block.scss │ │ └── typeahead.scss ├── components │ ├── blacklight │ │ └── icons │ │ │ ├── arrow_alt_circle_left_component.rb │ │ │ ├── arrow_alt_circle_right_component.rb │ │ │ ├── arrow_back_ios_component.rb │ │ │ ├── arrow_forward_ios_component.rb │ │ │ ├── check_circle_component.rb │ │ │ ├── check_component.rb │ │ │ ├── chevron_right_component.rb │ │ │ ├── close_component.rb │ │ │ ├── edit_component.rb │ │ │ ├── error_component.rb │ │ │ ├── highlight_off_component.rb │ │ │ ├── info_component.rb │ │ │ ├── warning_component.rb │ │ │ ├── zoom_in_component.rb │ │ │ └── zoom_out_component.rb │ └── spotlight │ │ ├── admin_users │ │ ├── email_component.html.erb │ │ ├── email_component.rb │ │ ├── exhibit_roles_component.html.erb │ │ ├── exhibit_roles_component.rb │ │ ├── site_admin_component.html.erb │ │ └── site_admin_component.rb │ │ ├── analytics │ │ ├── aggregation_component.html.erb │ │ ├── aggregation_component.rb │ │ ├── dashboard_component.html.erb │ │ └── dashboard_component.rb │ │ ├── breadcrumbs_component.html.erb │ │ ├── breadcrumbs_component.rb │ │ ├── bulk_action_component.html.erb │ │ ├── bulk_action_component.rb │ │ ├── document_admin_table_component.html.erb │ │ ├── document_admin_table_component.rb │ │ ├── document_component.rb │ │ ├── edit_view_links_component.html.erb │ │ ├── edit_view_links_component.rb │ │ ├── exhibit_navbar_component.html.erb │ │ ├── exhibit_navbar_component.rb │ │ ├── header_component.html.erb │ │ ├── header_component.rb │ │ ├── header_navigation_link_component.html.erb │ │ ├── header_navigation_link_component.rb │ │ ├── icon_component.rb │ │ ├── save_search_component.html.erb │ │ ├── save_search_component.rb │ │ ├── select_image_component.html.erb │ │ ├── select_image_component.rb │ │ ├── skip_link_component.rb │ │ ├── solr_document_legacy_embed_component.html.erb │ │ ├── solr_document_legacy_embed_component.rb │ │ ├── tag_list_form_component.html.erb │ │ ├── tag_list_form_component.rb │ │ ├── tag_selector_component.html.erb │ │ ├── tag_selector_component.rb │ │ ├── tag_selector_component.yml │ │ ├── title_component.html.erb │ │ ├── title_component.rb │ │ ├── translations │ │ ├── subheading_component.html.erb │ │ └── subheading_component.rb │ │ ├── uneditable_non_default_language_component.html.erb │ │ └── uneditable_non_default_language_component.rb ├── controllers │ ├── concerns │ │ └── spotlight │ │ │ ├── base.rb │ │ │ ├── catalog.rb │ │ │ ├── config.rb │ │ │ ├── controller.rb │ │ │ └── search_helper.rb │ └── spotlight │ │ ├── about_pages_controller.rb │ │ ├── accessibility_controller.rb │ │ ├── admin_users_controller.rb │ │ ├── appearances_controller.rb │ │ ├── application_controller.rb │ │ ├── attachments_controller.rb │ │ ├── browse_controller.rb │ │ ├── bulk_actions_controller.rb │ │ ├── bulk_updates_controller.rb │ │ ├── catalog_controller.rb │ │ ├── concerns │ │ ├── application_controller.rb │ │ └── catalog_search_context.rb │ │ ├── confirmations_controller.rb │ │ ├── contact_email_controller.rb │ │ ├── contact_forms_controller.rb │ │ ├── contacts_controller.rb │ │ ├── custom_fields_controller.rb │ │ ├── custom_search_fields_controller.rb │ │ ├── dashboards_controller.rb │ │ ├── exhibits_controller.rb │ │ ├── feature_pages_controller.rb │ │ ├── featured_images_controller.rb │ │ ├── filters_controller.rb │ │ ├── groups_controller.rb │ │ ├── home_pages_controller.rb │ │ ├── job_trackers_controller.rb │ │ ├── languages_controller.rb │ │ ├── lock_controller.rb │ │ ├── metadata_configurations_controller.rb │ │ ├── pages_controller.rb │ │ ├── resources │ │ ├── csv_upload_controller.rb │ │ ├── iiif_harvester_controller.rb │ │ └── upload_controller.rb │ │ ├── resources_controller.rb │ │ ├── roles_controller.rb │ │ ├── search_configurations_controller.rb │ │ ├── searches_controller.rb │ │ ├── sites_controller.rb │ │ ├── solr_controller.rb │ │ ├── tags_controller.rb │ │ ├── translations_controller.rb │ │ ├── versions_controller.rb │ │ └── view_configurations_controller.rb ├── helpers │ └── spotlight │ │ ├── application_helper.rb │ │ ├── browse_helper.rb │ │ ├── crop_helper.rb │ │ ├── crud_link_helpers.rb │ │ ├── job_trackers_helper.rb │ │ ├── languages_helper.rb │ │ ├── main_app_helpers.rb │ │ ├── masthead_helper.rb │ │ ├── meta_helper.rb │ │ ├── navbar_helper.rb │ │ ├── pages_helper.rb │ │ ├── rendering_helper.rb │ │ ├── roles_helper.rb │ │ ├── search_configurations_helper.rb │ │ ├── searches_helper.rb │ │ ├── title_helper.rb │ │ └── translations_helper.rb ├── javascript │ └── spotlight │ │ ├── admin │ │ ├── add_another.js │ │ ├── add_image_selector.js │ │ ├── add_new_button.js │ │ ├── blacklight_configuration.js │ │ ├── block_mixins │ │ │ ├── autocompleteable.js │ │ │ ├── formable.js │ │ │ └── plustextable.js │ │ ├── blocks │ │ │ ├── block.js │ │ │ ├── browse_block.js │ │ │ ├── browse_group_categories_block.js │ │ │ ├── iframe_block.js │ │ │ ├── link_to_search_block.js │ │ │ ├── oembed_block.js │ │ │ ├── pages_block.js │ │ │ ├── resources_block.js │ │ │ ├── rule_block.js │ │ │ ├── search_result_block.js │ │ │ ├── solr_documents_base_block.js │ │ │ ├── solr_documents_block.js │ │ │ ├── solr_documents_carousel_block.js │ │ │ ├── solr_documents_embed_block.js │ │ │ ├── solr_documents_features_block.js │ │ │ ├── solr_documents_grid_block.js │ │ │ └── uploaded_items_block.js │ │ ├── copy_email_addresses.js │ │ ├── crop.js │ │ ├── croppable.js │ │ ├── croppable_modal.js │ │ ├── edit_in_place.js │ │ ├── exhibits.js │ │ ├── form_observer.js │ │ ├── iiif.js │ │ ├── index.js │ │ ├── locks.js │ │ ├── multi_image_selector.js │ │ ├── pages.js │ │ ├── progress_monitor.js │ │ ├── readonly_checkbox.js │ │ ├── search_typeahead.js │ │ ├── select_related_input.js │ │ ├── sir-trevor │ │ │ ├── block_controls.js │ │ │ ├── block_limits.js │ │ │ └── locales.js │ │ ├── spotlight_nestable.js │ │ ├── tabs.js │ │ ├── translation_progress.js │ │ ├── users.js │ │ └── visibility_toggle.js │ │ ├── controllers │ │ ├── index.js │ │ └── tag_selector_controller.js │ │ ├── core.js │ │ ├── index.js │ │ └── user │ │ ├── browse_group_categories.js │ │ ├── carousel.js │ │ ├── clear_form_button.js │ │ ├── index.js │ │ └── zpr_links.js ├── jobs │ ├── concerns │ │ └── spotlight │ │ │ ├── gather_documents.rb │ │ │ ├── job_tracking.rb │ │ │ └── limit_concurrency.rb │ └── spotlight │ │ ├── add_tags_job.rb │ │ ├── add_uploads_from_csv.rb │ │ ├── application_job.rb │ │ ├── change_visibility_job.rb │ │ ├── cleanup_job_trackers_job.rb │ │ ├── default_thumbnail_job.rb │ │ ├── process_bulk_updates_csv_job.rb │ │ ├── reindex_exhibit_job.rb │ │ ├── reindex_job.rb │ │ ├── remove_tags_job.rb │ │ ├── rename_sidecar_field_job.rb │ │ ├── rename_tags_job.rb │ │ └── update_job_trackers_job.rb ├── mailers │ └── spotlight │ │ ├── confirmation_mailer.rb │ │ ├── contact_mailer.rb │ │ ├── indexing_complete_mailer.rb │ │ └── invitation_mailer.rb ├── models │ ├── ability.rb │ ├── breadcrumb.rb │ ├── concerns │ │ └── spotlight │ │ │ ├── access_controls_enforcement_search_builder.rb │ │ │ ├── blacklight_configuration_defaults.rb │ │ │ ├── browse_category_search_builder.rb │ │ │ ├── custom_translation_extension.rb │ │ │ ├── exhibit_analytics.rb │ │ │ ├── exhibit_defaults.rb │ │ │ ├── exhibit_documents.rb │ │ │ ├── resources │ │ │ └── web.rb │ │ │ ├── search_builder.rb │ │ │ ├── sitemap.rb │ │ │ ├── solr_document.rb │ │ │ ├── solr_document │ │ │ ├── atomic_updates.rb │ │ │ ├── finder.rb │ │ │ └── uploaded_resource.rb │ │ │ ├── translatables.rb │ │ │ └── user.rb │ ├── sir_trevor_rails │ │ ├── block.rb │ │ └── blocks │ │ │ ├── browse_block.rb │ │ │ ├── browse_group_categories_block.rb │ │ │ ├── displayable.rb │ │ │ ├── featured_pages_block.rb │ │ │ ├── link_to_search_block.rb │ │ │ ├── oembed_block.rb │ │ │ ├── search_results_block.rb │ │ │ ├── solr_documents_block.rb │ │ │ ├── solr_documents_carousel_block.rb │ │ │ ├── solr_documents_embed_block.rb │ │ │ ├── solr_documents_features_block.rb │ │ │ ├── solr_documents_grid_block.rb │ │ │ ├── textable.rb │ │ │ └── uploaded_items_block.rb │ ├── spotlight │ │ ├── ability.rb │ │ ├── about_page.rb │ │ ├── analytics │ │ │ └── ga.rb │ │ ├── attachment.rb │ │ ├── background_job_progress.rb │ │ ├── blacklight_configuration.rb │ │ ├── bulk_update.rb │ │ ├── contact.rb │ │ ├── contact_email.rb │ │ ├── contact_form.rb │ │ ├── contact_image.rb │ │ ├── custom_field.rb │ │ ├── custom_search_field.rb │ │ ├── event.rb │ │ ├── exhibit.rb │ │ ├── exhibit_thumbnail.rb │ │ ├── feature_page.rb │ │ ├── featured_image.rb │ │ ├── field_metadata.rb │ │ ├── filter.rb │ │ ├── group.rb │ │ ├── group_member.rb │ │ ├── home_page.rb │ │ ├── job_tracker.rb │ │ ├── language.rb │ │ ├── lock.rb │ │ ├── main_navigation.rb │ │ ├── masthead.rb │ │ ├── page.rb │ │ ├── page_configurations.rb │ │ ├── page_content.rb │ │ ├── page_content │ │ │ └── sir_trevor.rb │ │ ├── resource.rb │ │ ├── resources │ │ │ ├── csv_upload.rb │ │ │ ├── iiif_harvester.rb │ │ │ ├── iiif_manifest.rb │ │ │ ├── iiif_manifest_metadata.rb │ │ │ ├── iiif_manifest_v3.rb │ │ │ ├── iiif_service.rb │ │ │ ├── json_upload.rb │ │ │ └── upload.rb │ │ ├── role.rb │ │ ├── search.rb │ │ ├── site.rb │ │ ├── solr_document_sidecar.rb │ │ └── temporary_image.rb │ └── translation.rb ├── presenters │ └── spotlight │ │ └── iiif_manifest_presenter.rb ├── services │ └── spotlight │ │ ├── bulk_updates_csv_template_service.rb │ │ ├── carrierwave_file_resolver.rb │ │ ├── clone_translated_page_from_locale.rb │ │ ├── etl.rb │ │ ├── etl │ │ ├── context.rb │ │ ├── executor.rb │ │ ├── loaders.rb │ │ ├── pipeline.rb │ │ ├── solr_loader.rb │ │ ├── sources.rb │ │ ├── step.rb │ │ └── transforms.rb │ │ ├── exhibit_import_export_service.rb │ │ ├── iiif_resource_resolver.rb │ │ ├── invite_users_service.rb │ │ └── validity_checker.rb ├── uploaders │ └── spotlight │ │ ├── attachment_uploader.rb │ │ ├── bulk_updates_uploader.rb │ │ └── featured_image_uploader.rb ├── values │ └── custom_field_name.rb └── views │ ├── blacklight │ └── nav │ │ ├── _bookmark.html.erb │ │ ├── _saved_searches.html.erb │ │ └── _search_history.html.erb │ ├── catalog │ ├── _add_tags.html.erb │ ├── _bulk_actions.html.erb │ ├── _change_visibility.html.erb │ ├── _curator_actions.html.erb │ ├── _image_default.html.erb │ ├── _remove_tags.html.erb │ └── _save_search.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ └── mailer │ │ └── invitation_instructions.html.erb │ ├── layouts │ └── spotlight │ │ ├── base.html.erb │ │ ├── home.html.erb │ │ └── spotlight.html.erb │ ├── shared │ ├── _about_navbar.html.erb │ ├── _analytics.html.erb │ ├── _body_preamble.html.erb │ ├── _browse_navbar.html.erb │ ├── _curated_features_navbar.html.erb │ ├── _exhibit_navbar.html.erb │ ├── _footer.html.erb │ ├── _header_navbar.html.erb │ ├── _masthead.html.erb │ ├── _site_navbar.html.erb │ ├── _site_sidebar.html.erb │ └── _user_util_links.html.erb │ └── spotlight │ ├── about_pages │ ├── _contact.html.erb │ ├── _contact_properties.html.erb │ ├── _contacts.html.erb │ ├── _contacts_form.html.erb │ ├── _empty.html.erb │ ├── _page_options.html.erb │ ├── _sidebar.html.erb │ └── index.html.erb │ ├── accessibility │ └── alt_text.html.erb │ ├── admin_users │ └── index.html.erb │ ├── appearances │ └── edit.html.erb │ ├── browse │ ├── _search.html.erb │ ├── _search_box.html.erb │ ├── _search_title.html.erb │ ├── index.html.erb │ └── show.html.erb │ ├── bulk_updates │ ├── _download.html.erb │ ├── _overview.html.erb │ ├── _progress_panel.html.erb │ ├── _upload.html.erb │ └── edit.html.erb │ ├── catalog │ ├── _admin_header.html.erb │ ├── _admin_index_header_default.html.erb │ ├── _admin_thumbnail_default.html.erb │ ├── _curation_mode_toggle_default.html.erb │ ├── _document.html.erb │ ├── _document_admin_table.html.erb │ ├── _document_row.html.erb │ ├── _document_visibility_control.html.erb │ ├── _edit_default.html.erb │ ├── _edit_sidecar.html.erb │ ├── _index_compact_default.html.erb │ ├── _reindex_progress_panel.html.erb │ ├── admin.html.erb │ ├── edit.html.erb │ ├── index.iiif_json.jbuilder │ └── select_image.html.erb │ ├── confirmation_mailer │ └── confirmation_instructions.html.erb │ ├── contact_forms │ └── new.html.erb │ ├── contact_mailer │ └── report_problem.html.erb │ ├── contacts │ ├── _form.html.erb │ ├── edit.html.erb │ └── new.html.erb │ ├── custom_fields │ ├── _form.html.erb │ ├── edit.html.erb │ ├── form_group │ │ ├── _text.html.erb │ │ └── _vocab.html.erb │ └── new.html.erb │ ├── custom_search_fields │ ├── _form.html.erb │ ├── edit.html.erb │ └── new.html.erb │ ├── dashboards │ ├── _page.html.erb │ ├── _page_activity.html.erb │ ├── _reindexing_activity.html.erb │ ├── _solr_document_activity.html.erb │ ├── analytics.html.erb │ └── show.html.erb │ ├── exhibits │ ├── _confirmation_status.html.erb │ ├── _contact.html.erb │ ├── _delete.html.erb │ ├── _exhibit_card.html.erb │ ├── _exhibits.html.erb │ ├── _export.html.erb │ ├── _form.html.erb │ ├── _import.html.erb │ ├── _initial_resources_form.html.erb │ ├── _languages.html.erb │ ├── _missing_exhibits.html.erb │ ├── _new_exhibit_form.html.erb │ ├── _tags.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ └── new.html.erb │ ├── feature_pages │ ├── _empty.html.erb │ ├── _header.html.erb │ ├── _page_options.html.erb │ └── _sidebar.html.erb │ ├── featured_images │ ├── _form.html.erb │ └── _upload_form.html.erb │ ├── filters │ └── _form.html.erb │ ├── home_pages │ ├── _edit_page_link.html.erb │ ├── _empty.html.erb │ ├── _page_options.html.erb │ └── _sidebar.html.erb │ ├── indexing_complete_mailer │ └── documents_indexed.html.erb │ ├── invitation_mailer │ └── exhibit_invitation_notification.html.erb │ ├── job_trackers │ └── show.html.erb │ ├── locks │ └── _lock.html.erb │ ├── metadata_configurations │ ├── _metadata_field.html.erb │ └── edit.html.erb │ ├── pages │ ├── _edit_page_link.html.erb │ ├── _empty.html.erb │ ├── _form.html.erb │ ├── _header.html.erb │ ├── _order_pages.html.erb │ ├── _page.html.erb │ ├── _page_options.html.erb │ ├── _view_type_group.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── preview.html.erb │ └── show.html.erb │ ├── resources │ ├── _external_resources_form.html.erb │ ├── _form.html.erb │ ├── _missing_external_resources_partials.html.erb │ ├── csv_upload │ │ └── _form.html.erb │ ├── iiif │ │ └── _form.html.erb │ ├── json_upload │ │ └── _form.html.erb │ ├── new.html.erb │ └── upload │ │ └── _form.html.erb │ ├── roles │ ├── _edit_fields.html.erb │ └── index.html.erb │ ├── search_configurations │ ├── _default_per_page.html.erb │ ├── _document_index_view_types.html.erb │ ├── _facet_metadata.html.erb │ ├── _facets.html.erb │ ├── _search_fields.html.erb │ ├── _sort.html.erb │ └── edit.html.erb │ ├── searches │ ├── _form.html.erb │ ├── _group.html.erb │ ├── _search.html.erb │ ├── edit.html.erb │ └── index.html.erb │ ├── shared │ ├── _configuration_sidebar.html.erb │ ├── _curation_sidebar.html.erb │ ├── _dd3_item.html.erb │ ├── _exhibit_sidebar.html.erb │ ├── _honeypot_field.html.erb │ ├── _locale_picker.html.erb │ └── _report_a_problem.html.erb │ ├── sir_trevor │ ├── _sir_trevor_block_array.html.erb │ └── blocks │ │ ├── _browse_block.html.erb │ │ ├── _browse_group_categories_block.html.erb │ │ ├── _embedded_document.html.erb │ │ ├── _featured_pages_block.html.erb │ │ ├── _heading_block.html.erb │ │ ├── _iframe_block.html.erb │ │ ├── _image_block.html.erb │ │ ├── _link_to_search_block.html.erb │ │ ├── _list_block.html.erb │ │ ├── _oembed_block.html.erb │ │ ├── _quote_block.html.erb │ │ ├── _rule_block.html.erb │ │ ├── _search_results_block.html.erb │ │ ├── _solr_documents_block.html.erb │ │ ├── _solr_documents_carousel_block.html.erb │ │ ├── _solr_documents_embed_block.html.erb │ │ ├── _solr_documents_features_block.html.erb │ │ ├── _solr_documents_grid_block.html.erb │ │ ├── _text_block.html.erb │ │ ├── _uploaded_items_block.html.erb │ │ ├── _video_block.html.erb │ │ └── videos │ │ ├── _vimeo.html.erb │ │ └── _youtube.html.erb │ ├── sites │ ├── _exhibit.html.erb │ ├── edit.html.erb │ └── edit_exhibits.html.erb │ ├── tags │ ├── _tag.html.erb │ └── index.html.erb │ └── translations │ ├── _browse_categories.html.erb │ ├── _general.html.erb │ ├── _groups.html.erb │ ├── _import.html.erb │ ├── _metadata.html.erb │ ├── _page.html.erb │ ├── _pages.html.erb │ ├── _pages_table.html.erb │ ├── _search_fields.html.erb │ ├── edit.html.erb │ └── show.yaml.yamlbuilder ├── bin └── rails ├── blacklight-spotlight.gemspec ├── compose.yaml ├── config ├── i18n-tasks.yml ├── importmap.rb ├── initializers │ └── devise_rails8_patch.rb ├── locales │ ├── devise.en.yml │ ├── spotlight.ar.yml │ ├── spotlight.de.yml │ ├── spotlight.en.yml │ ├── spotlight.es.yml │ ├── spotlight.fr.yml │ ├── spotlight.it.yml │ ├── spotlight.pt-BR.yml │ └── spotlight.zh.yml └── routes.rb ├── db └── migrate │ ├── 20131119213142_create_spotlight_pages.rb │ ├── 20131120172811_create_spotlight_attachments.rb │ ├── 20140128155151_create_exhibits.rb │ ├── 20140128155152_create_roles.rb │ ├── 20140130155151_create_spotlight_searches.rb │ ├── 20140130215634_create_spotlight_blacklight_configurations.rb │ ├── 20140206152809_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb │ ├── 20140206152810_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ ├── 20140211203403_create_spotlight_custom_fields.rb │ ├── 20140211212626_create_spotlight_solr_document_sidecars.rb │ ├── 20140218155151_create_contacts.rb │ ├── 20140225180948_create_contact_emails.rb │ ├── 20140228131207_create_resources.rb │ ├── 20140401232956_change_featured_image_to_featured_image_id.rb │ ├── 20140403180324_create_spotlight_main_navigations.rb │ ├── 20141117111311_create_locks.rb │ ├── 20141118233735_change_contact_details.rb │ ├── 20141126231820_add_avatar_to_contacts.rb │ ├── 20141205005902_add_layout_options_to_exhibit.rb │ ├── 20150116161616_add_published_to_exhibit.rb │ ├── 20150127173245_add_featured_image_to_exhibit.rb │ ├── 20150217111511_add_polymorphic_document_to_sidecars.rb │ ├── 20150304071512_add_spotlight_featured_images.rb │ ├── 20150304111111_add_featured_image_to_spotlight_classes.rb │ ├── 20150306202300_add_display_to_spotlight_main_navigations.rb │ ├── 20150313175432_add_field_type_to_custom_fields.rb │ ├── 20150410180014_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb │ ├── 20150410180015_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ ├── 20150410180016_change_collation_for_tag_names.acts_as_taggable_on_engine.rb │ ├── 20150713160101_change_spotlight_searches_to_published.rb │ ├── 20151016092343_remove_searchable_from_exhibit.rb │ ├── 20151110082345_add_metadata_to_spotlight_resource.rb │ ├── 20151117153210_change_spotlight_exhibit_published_default.rb │ ├── 20151124101123_remove_default_from_spotlight_exhibit.rb │ ├── 20151124105543_update_custom_field_names.rb │ ├── 20151208085432_add_weight_to_exhibits.rb │ ├── 20151210073829_create_spotlight_site.rb │ ├── 20151211131415_add_site_to_spotlight_exhibits.rb │ ├── 20151215141516_change_roles_to_support_polymorphic_associations.rb │ ├── 20151215192845_add_index_status_to_resources.rb │ ├── 20151217211019_create_spotlight_exhibit_filters.rb │ ├── 20160329215014_add_readonly_to_custom_fields.rb │ ├── 20160711121314_add_default_view_to_spotlight_searches.rb │ ├── 20160714144125_add_iiif_urls_to_featured_image.rb │ ├── 20160718194010_add_iiif_url_to_contact.rb │ ├── 20160805143841_add_upload_id_to_resources.rb │ ├── 20160815165432_add_resource_to_solr_document_sidecar.rb │ ├── 20160816165432_add_index_status_to_solr_document_sidecar.rb │ ├── 20160929180534_add_document_index_to_solr_document_sidecar.rb │ ├── 20170105222939_create_spotlight_reindexing_log_entries.rb │ ├── 20170204091234_add_theme_to_spotlight_exhibits.rb │ ├── 20170803152134_migrate_tags_to_sidecars.rb │ ├── 20170821165811_change_index_status_to_longblob.rb │ ├── 20171005231502_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb │ ├── 20180119193632_add_search_box_to_spotlight_searches.rb │ ├── 20180306142612_create_translations.rb │ ├── 20180308203409_create_spotlight_languages.rb │ ├── 20180403130857_translation_uniqueness.rb │ ├── 20180405044000_add_locale_to_pages.rb │ ├── 20180406212516_add_default_locale_reference_to_spotlight_pages.rb │ ├── 20180529225807_change_spotlight_pages_content_column_to_medium_text.rb │ ├── 20180822233601_change_type_of_taggings_taggable.rb │ ├── 20181127085432_change_weight_on_pages.rb │ ├── 20190807085432_add_content_type_to_pages.rb │ ├── 20190813085432_add_is_multiple_to_custom_fields.rb │ ├── 20190910200927_create_spotlight_custom_search_fields.rb │ ├── 20191205112300_add_unique_index_to_sidecars.rb │ ├── 20200403161512_add_subtitle_to_searches.rb │ ├── 20210113092223_create_spotlight_groups.rb │ ├── 20210122082032_create_job_trackers.rb │ ├── 20210126123041_create_events.rb │ ├── 20210305070001_remove_class_from_sirtrevor_image_blocks.rb │ ├── 20210305171150_create_bulk_updates.rb │ ├── 20210308090000_migrate_caption_values_for_title_key.rb │ └── 20210506070809_add_indexes_for_featured_images.rb ├── lib ├── blacklight │ └── spotlight.rb ├── generators │ └── spotlight │ │ ├── assets │ │ ├── generator_common_utilities.rb │ │ ├── importmap_generator.rb │ │ └── propshaft_generator.rb │ │ ├── assets_generator.rb │ │ ├── install_generator.rb │ │ ├── scaffold_resource_generator.rb │ │ └── templates │ │ ├── .solr_wrapper.yml │ │ ├── assets │ │ └── spotlight.scss │ │ ├── catalog_controller.rb │ │ ├── config │ │ ├── initializers │ │ │ ├── oembed.rb │ │ │ ├── riiif.rb │ │ │ ├── spotlight_initializer.rb │ │ │ └── translation.rb │ │ └── sitemap.rb │ │ ├── javascript │ │ └── jquery-shim.js │ │ ├── solr │ │ └── conf │ │ │ ├── _rest_managed.json │ │ │ ├── admin-extra.html │ │ │ ├── elevate.xml │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── spellings.txt │ │ │ ├── stopwords.txt │ │ │ ├── stopwords_en.txt │ │ │ ├── synonyms.txt │ │ │ └── xslt │ │ │ ├── example.xsl │ │ │ ├── example_atom.xsl │ │ │ ├── example_rss.xsl │ │ │ └── luke.xsl │ │ └── spotlight_helper.rb ├── migration │ ├── iiif.rb │ └── page_language.rb ├── spotlight.rb ├── spotlight │ ├── engine.rb │ ├── riiif_service.rb │ ├── search_state.rb │ ├── upload_field_config.rb │ └── version.rb └── tasks │ └── spotlight_tasks.rake ├── package.json ├── rollup.config.js ├── spec ├── components │ └── spotlight │ │ ├── admin_users │ │ ├── email_component_spec.rb │ │ └── exhibit_roles_component_spec.rb │ │ ├── analytics │ │ ├── aggregation_component_spec.rb │ │ └── dashboard_component_spec.rb │ │ ├── breadcrumbs_component_spec.rb │ │ ├── exhibit_navbar_component_spec.rb │ │ ├── header_navigation_link_component_spec.rb │ │ ├── select_image_component_spec.rb │ │ └── tag_selector_component_spec.rb ├── controllers │ ├── application_controller_spec.rb │ └── spotlight │ │ ├── about_pages_controller_spec.rb │ │ ├── admin_users_controller_spec.rb │ │ ├── appearances_controller_spec.rb │ │ ├── application_controller_spec.rb │ │ ├── attachments_controller_spec.rb │ │ ├── browse_controller_spec.rb │ │ ├── bulk_actions_controller_spec.rb │ │ ├── bulk_updates_controller_spec.rb │ │ ├── catalog_controller_spec.rb │ │ ├── confirmations_controller_spec.rb │ │ ├── contact_email_controller_spec.rb │ │ ├── contact_forms_controller_spec.rb │ │ ├── contacts_controller_spec.rb │ │ ├── custom_fields_controller_spec.rb │ │ ├── custom_search_fields_controller_spec.rb │ │ ├── dashboards_controller_spec.rb │ │ ├── exhibits_controller_spec.rb │ │ ├── feature_pages_controller_spec.rb │ │ ├── featured_images_controller_spec.rb │ │ ├── filters_controller_spec.rb │ │ ├── groups_controller_spec.rb │ │ ├── home_pages_controller_spec.rb │ │ ├── job_trackers_controller_spec.rb │ │ ├── languages_controller_spec.rb │ │ ├── metadata_configurations_controller_spec.rb │ │ ├── pages_controller_spec.rb │ │ ├── resources │ │ ├── csv_upload_controller_spec.rb │ │ └── upload_controller_spec.rb │ │ ├── resources_controller_spec.rb │ │ ├── roles_controller_spec.rb │ │ ├── search_configurations_controller_spec.rb │ │ ├── searches_controller_spec.rb │ │ ├── sites_controller_spec.rb │ │ ├── solr_controller_spec.rb │ │ ├── tags_controller_spec.rb │ │ ├── translations_controller_spec.rb │ │ ├── versions_controller_spec.rb │ │ └── view_configurations_controller_spec.rb ├── factories │ ├── bulk_updates.rb │ ├── contact_emails.rb │ ├── contact_images.rb │ ├── contacts.rb │ ├── custom_fields.rb │ ├── custom_search_fields.rb │ ├── exhibit_thumbnails.rb │ ├── exhibits.rb │ ├── featured_images.rb │ ├── group.rb │ ├── job_trackers.rb │ ├── language.rb │ ├── main_navigation.rb │ ├── pages.rb │ ├── resources.rb │ ├── roles.rb │ ├── searches.rb │ ├── tags.rb │ ├── translation.rb │ └── users.rb ├── features │ ├── about_page_spec.rb │ ├── add_contacts_spec.rb │ ├── add_custom_field_metadata_spec.rb │ ├── add_iiif_manifest_spec.rb │ ├── add_items_spec.rb │ ├── alt_text_dashboard_spec.rb │ ├── autocomplete_typeahead_spec.rb │ ├── browse_category_admin_spec.rb │ ├── browse_category_navigation_spec.rb │ ├── browse_category_spec.rb │ ├── bulk_actions_spec.rb │ ├── confirm_email_spec.rb │ ├── create_exhibit_spec.rb │ ├── create_page_spec.rb │ ├── dashboard_spec.rb │ ├── display_within_exhibit_spec.rb │ ├── edit_contact_spec.rb │ ├── edit_search_fields_spec.rb │ ├── exhibit_masthead_spec.rb │ ├── exhibit_themes_spec.rb │ ├── exhibits │ │ ├── add_tags_spec.rb │ │ ├── administration_spec.rb │ │ ├── custom_metadata_fields_spec.rb │ │ ├── custom_search_fields_spec.rb │ │ ├── edit_metadata_fields_spec.rb │ │ ├── language_create_edit_spec.rb │ │ ├── translation_editing_spec.rb │ │ └── user_roles_spec.rb │ ├── exhibits_index_spec.rb │ ├── feature_page_spec.rb │ ├── header_links_spec.rb │ ├── home_page_spec.rb │ ├── import_exhibit_spec.rb │ ├── item_admin_spec.rb │ ├── javascript │ │ ├── about_page_admin_spec.rb │ │ ├── block_controls_spec.rb │ │ ├── blocks │ │ │ ├── browse_group_categories_block_spec.rb │ │ │ ├── featured_browse_categories_block_spec.rb │ │ │ ├── featured_pages_block_spec.rb │ │ │ ├── heading_block_spec.rb │ │ │ ├── link_to_search_block_spec.rb │ │ │ ├── oembed_and_text_block_spec.rb │ │ │ ├── rule_block_spec.rb │ │ │ ├── search_result_block_spec.rb │ │ │ ├── solr_documents_block_spec.rb │ │ │ ├── solr_documents_carousel_block_spec.rb │ │ │ ├── solr_documents_embed_block_spec.rb │ │ │ └── uploaded_items_block_spec.rb │ │ ├── browse_group_admin_spec.rb │ │ ├── edit_in_place_spec.rb │ │ ├── feature_page_admin_spec.rb │ │ ├── home_page_edit_spec.rb │ │ ├── locale_selector_spec.rb │ │ ├── metadata_admin_spec.rb │ │ ├── multi_image_select_spec.rb │ │ ├── reindex_monitor_spec.rb │ │ ├── roles_admin_spec.rb │ │ ├── search_config_admin_spec.rb │ │ └── search_context_spec.rb │ ├── main_navigation_spec.rb │ ├── metadata_admin_spec.rb │ ├── non_spotlight_item_display_spec.rb │ ├── report_a_problem_spec.rb │ ├── search_within_exhibit_spec.rb │ ├── site_masthead_spec.rb │ ├── site_users_management_spec.rb │ ├── slideshow_spec.rb │ └── translation_scope_spec.rb ├── fixtures │ ├── 800x600.png │ ├── avatar.png │ ├── bulk-update-template.csv │ ├── csv-upload-fixture.csv │ ├── gk446cj2442-manifest.json │ ├── iiif_responses.rb │ ├── json-upload-fixture.json │ ├── sample_solr_documents.yml │ ├── updated-bulk-update-template-no-cols.csv │ ├── updated-bulk-update-template-w-tags.csv │ └── updated-bulk-update-template.csv ├── helpers │ └── spotlight │ │ ├── application_helper_spec.rb │ │ ├── browse_helper_spec.rb │ │ ├── crop_helper_spec.rb │ │ ├── crud_link_helpers_spec.rb │ │ ├── languages_helper_spec.rb │ │ ├── main_app_helpers_spec.rb │ │ ├── masthead_helper_spec.rb │ │ ├── meta_helper_spec.rb │ │ ├── navbar_helper_spec.rb │ │ ├── pages_helper_spec.rb │ │ ├── rendering_helper_spec.rb │ │ ├── roles_helper_spec.rb │ │ ├── search_configurations_helper_spec.rb │ │ ├── title_helper_spec.rb │ │ └── translations_helper_spec.rb ├── i18n_spec.rb ├── jobs │ └── spotlight │ │ ├── add_tags_job_spec.rb │ │ ├── add_uploads_from_csv_spec.rb │ │ ├── change_visibility_job_spec.rb │ │ ├── default_thumbnail_job_spec.rb │ │ ├── process_bulk_updates_csv_job_spec.rb │ │ ├── reindex_exhibit_job_spec.rb │ │ ├── reindex_job_spec.rb │ │ ├── remove_tags_job_spec.rb │ │ └── rename_sidecar_field_job_spec.rb ├── lib │ ├── migration │ │ ├── iiif_spec.rb │ │ └── page_language_spec.rb │ └── spotlight │ │ ├── catalog_spec.rb │ │ ├── controller_spec.rb │ │ └── upload_field_config_spec.rb ├── mailers │ └── spotlight │ │ └── indexing_complete_mailer_spec.rb ├── models │ ├── sir_trevor_rails │ │ ├── block_spec.rb │ │ └── blocks │ │ │ ├── browse_block_spec.rb │ │ │ ├── browse_group_categories_block_spec.rb │ │ │ ├── featured_pages_block_spec.rb │ │ │ ├── search_results_block_spec.rb │ │ │ ├── solr_documents_block_spec.rb │ │ │ └── textable_spec.rb │ ├── solr_document_spec.rb │ ├── spotlight │ │ ├── ability_spec.rb │ │ ├── about_page_spec.rb │ │ ├── access_controls_enforcement_search_builder_spec.rb │ │ ├── analytics │ │ │ └── ga_spec.rb │ │ ├── background_job_progress_spec.rb │ │ ├── blacklight_configuration_spec.rb │ │ ├── browse_category_search_builder_spec.rb │ │ ├── contact_email_spec.rb │ │ ├── contact_form_spec.rb │ │ ├── contact_image_spec.rb │ │ ├── contact_spec.rb │ │ ├── custom_field_spec.rb │ │ ├── custom_search_field_spec.rb │ │ ├── custom_translation_extension_spec.rb │ │ ├── exhibit_spec.rb │ │ ├── exhibit_thumbnail_spec.rb │ │ ├── feature_page_spec.rb │ │ ├── featured_image_spec.rb │ │ ├── field_metadata_spec.rb │ │ ├── filter_spec.rb │ │ ├── group_spec.rb │ │ ├── home_page_spec.rb │ │ ├── language_spec.rb │ │ ├── main_navigation_spec.rb │ │ ├── masthead_spec.rb │ │ ├── page_configurations_spec.rb │ │ ├── page_spec.rb │ │ ├── resource_spec.rb │ │ ├── resources │ │ │ ├── iiif_harvester_spec.rb │ │ │ ├── iiif_manifest_spec.rb │ │ │ ├── iiif_manifest_v3_spec.rb │ │ │ ├── iiif_service_spec.rb │ │ │ ├── upload_spec.rb │ │ │ └── web_spec.rb │ │ ├── role_spec.rb │ │ ├── search_spec.rb │ │ ├── site_spec.rb │ │ ├── sitemap_spec.rb │ │ ├── solr_document │ │ │ ├── atomic_updates_spec.rb │ │ │ └── uploaded_resource_spec.rb │ │ ├── solr_document_sidecar_spec.rb │ │ └── user_spec.rb │ └── translation_spec.rb ├── presenters │ └── spotlight │ │ └── iiif_manifest_presenter_spec.rb ├── routing │ └── spotlight │ │ ├── exhibit_catalog_spec.rb │ │ ├── featured_images_spec.rb │ │ └── pages_routing_spec.rb ├── services │ └── spotlight │ │ ├── bulk_updates_csv_template_service_spec.rb │ │ ├── carrierwave_file_resolver_spec.rb │ │ ├── clone_translated_page_from_locale_spec.rb │ │ ├── etl │ │ ├── context_spec.rb │ │ ├── executor_spec.rb │ │ ├── pipeline_spec.rb │ │ ├── solr_loader_spec.rb │ │ └── step_spec.rb │ │ ├── exhibit_import_export_service_spec.rb │ │ ├── iiif_resource_resolver_spec.rb │ │ └── invite_users_service_spec.rb ├── spec_helper.rb ├── support │ ├── controllers │ │ └── engine_helpers.rb │ ├── disable_friendly_id_deprecation_warnings.rb │ ├── features │ │ ├── capybara_wait_metadata_helper.rb │ │ └── test_features_helpers.rb │ ├── helpers │ │ └── controller_level_helpers.rb │ ├── stub_iiif_response.rb │ ├── views │ │ └── test_view_helpers.rb │ └── with_queue_adapter.rb ├── test_app_templates │ ├── Gemfile.extra │ ├── carrierwave.rb │ ├── catalog_controller.rb │ ├── fixture.css │ ├── fixture.png │ ├── lib │ │ └── generators │ │ │ └── test_app_generator.rb │ └── spotlight_test.rake ├── uploaders │ └── spotlight │ │ ├── attachment_uploader_spec.rb │ │ └── featured_image_uploader_spec.rb └── views │ ├── shared │ ├── _analytics.html.erb_spec.rb │ ├── _masthead.html.erb_spec.rb │ └── _user_util_links.html.erb_spec.rb │ └── spotlight │ ├── about_pages │ ├── _empty.html.erb_spec.rb │ ├── _sidebar.html.erb_spec.rb │ └── index.html.erb_spec.rb │ ├── browse │ ├── _search.html.erb_spec.rb │ ├── index.html.erb_spec.rb │ └── show.html.erb_spec.rb │ ├── catalog │ ├── _edit_default.html.erb_spec.rb │ ├── admin.html.erb_spec.rb │ └── edit.html.erb_spec.rb │ ├── contacts │ └── edit.html.erb_spec.rb │ ├── dashboards │ ├── _reindexing_activity.html.erb_spec.rb │ └── analytics.html.erb_spec.rb │ ├── exhibits │ ├── _exhibit_card.html.erb_spec.rb │ ├── _form.html.erb_spec.rb │ ├── edit.html.erb_spec.rb │ └── index.html.erb_spec.rb │ ├── feature_pages │ ├── _empty.html.erb_spec.rb │ └── _sidebar.html.erb_spec.rb │ ├── featured_images │ ├── _form.html.erb_spec.rb │ └── _upload_form.html.erb_spec.rb │ ├── home_pages │ ├── _empty.html.erb_spec.rb │ └── _sidebar.html.erb_spec.rb │ ├── job_trackers │ └── show.html.erb_spec.rb │ ├── metadata_configurations │ ├── _metadata_field.html.erb_spec.rb │ └── edit.html.erb_spec.rb │ ├── pages │ ├── _form.html.erb_spec.rb │ ├── edit.html.erb_spec.rb │ ├── index.html.erb_spec.rb │ ├── new.html.erb_spec.rb │ └── show.html.erb_spec.rb │ ├── resources │ ├── _external_resources_form.html.erb_spec.rb │ └── new.html.erb_spec.rb │ ├── roles │ └── index.html.erb_spec.rb │ ├── search_configurations │ ├── _facet_metadata.html.erb_spec.rb │ ├── _facets.html.erb_spec.rb │ ├── _search_fields.html.erb_spec.rb │ └── _sort.html.erb_spec.rb │ ├── searches │ ├── _search.html.erb_spec.rb │ ├── edit.html.erb_spec.rb │ └── index.html.erb_spec.rb │ ├── shared │ └── _exhibit_sidebar.html.erb_spec.rb │ ├── sir_trevor │ └── blocks │ │ ├── _browse_block.html.erb_spec.rb │ │ ├── _iframe_block.html.erb_spec.rb │ │ ├── _link_to_search_block.html.erb_spec.rb │ │ ├── _rule_block.html.erb_spec.rb │ │ ├── _solr_documents_block.html.erb_spec.rb │ │ ├── _solr_documents_carousel_block.html.erb_spec.rb │ │ ├── _solr_documents_embed_block.html.erb_spec.rb │ │ ├── _solr_documents_features_block.html.erb_spec.rb │ │ ├── _solr_documents_grid_block.html.erb_spec.rb │ │ └── _uploaded_items_block.html.erb_spec.rb │ ├── sites │ └── edit_exhibits.html.erb_spec.rb │ ├── tags │ └── index.html.erb_spec.rb │ └── translations │ ├── _import.html.erb_spec.rb │ └── _page.html.erb_spec.rb ├── template.rb └── vendor └── assets ├── images └── sir-trevor-icons.svg ├── javascripts ├── Leaflet.Editable.js ├── Path.Drag.js ├── jquery.waitforimages.min.js ├── leaflet-iiif.js ├── parameterize.js └── tiny-slider.js └── stylesheets ├── sir-trevor ├── _icons.scss ├── _variables.scss ├── base.scss ├── block-addition-top.scss ├── block-addition.scss ├── block-controls.scss ├── block-positioner.scss ├── block-replacer.scss ├── block-ui.scss ├── block.scss ├── errors.scss ├── format-bar.scss ├── inputs.scss ├── main.scss ├── patterns │ └── ui-popup.scss └── utils.scss └── tiny-slider.css /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | *~ 2 | compose.yaml 3 | Dockerfile 4 | .git 5 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.env -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.github/ISSUE_TEMPLATE/accessibility.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.github/ISSUE_TEMPLATE/maintenance.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.hound.yml -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.jshintrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.scss-lint.yml -------------------------------------------------------------------------------- /.solr_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/.solr_wrapper -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/spotlight/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/spotlight/blocks/sir-trevor-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/images/spotlight/blocks/sir-trevor-icons.svg -------------------------------------------------------------------------------- /app/assets/images/spotlight/default_browse_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/images/spotlight/default_browse_thumbnail.jpg -------------------------------------------------------------------------------- /app/assets/images/spotlight/default_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/images/spotlight/default_thumbnail.jpg -------------------------------------------------------------------------------- /app/assets/images/spotlight/fallback/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/images/spotlight/fallback/default.png -------------------------------------------------------------------------------- /app/assets/javascripts/spotlight/spotlight.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/javascripts/spotlight/spotlight.esm.js -------------------------------------------------------------------------------- /app/assets/javascripts/spotlight/spotlight.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/javascripts/spotlight/spotlight.esm.js.map -------------------------------------------------------------------------------- /app/assets/javascripts/spotlight/spotlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/javascripts/spotlight/spotlight.js -------------------------------------------------------------------------------- /app/assets/javascripts/spotlight/spotlight.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/javascripts/spotlight/spotlight.js.map -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_accessibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_accessibility.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_admin_users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_admin_users.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_attachments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_attachments.css -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_autocomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_autocomplete.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_breadcrumbs.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_browse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_browse.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_catalog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_catalog.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_collapse_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_collapse_toggle.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_croppable.scss: -------------------------------------------------------------------------------- 1 | .leaflet-container { 2 | height: 400px; 3 | margin: 0; 4 | } 5 | -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_curation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_curation.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_edit_in_place.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_edit_in_place.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_exhibit_admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_exhibit_admin.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_exhibit_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_exhibit_navbar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_exhibits_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_exhibits_index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_footer.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_header.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_item_text_block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_item_text_block.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_modals.scss: -------------------------------------------------------------------------------- 1 | .modal-body .form-check-label { 2 | margin-bottom: 0.5rem; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_multi_up_item_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_multi_up_item_grid.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_nestable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_nestable.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_pages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_report_a_problem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_report_a_problem.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_slideshow_block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_slideshow_block.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_spotlight.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_tag_selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_tag_selector.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_translations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_translations.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_upload.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_utilities.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_variables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/_view_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/_view_larger.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spotlight/typeahead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/assets/stylesheets/spotlight/typeahead.scss -------------------------------------------------------------------------------- /app/components/blacklight/icons/check_circle_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/blacklight/icons/check_circle_component.rb -------------------------------------------------------------------------------- /app/components/blacklight/icons/check_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/blacklight/icons/check_component.rb -------------------------------------------------------------------------------- /app/components/blacklight/icons/close_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/blacklight/icons/close_component.rb -------------------------------------------------------------------------------- /app/components/blacklight/icons/edit_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/blacklight/icons/edit_component.rb -------------------------------------------------------------------------------- /app/components/blacklight/icons/error_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/blacklight/icons/error_component.rb -------------------------------------------------------------------------------- /app/components/blacklight/icons/info_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/blacklight/icons/info_component.rb -------------------------------------------------------------------------------- /app/components/blacklight/icons/warning_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/blacklight/icons/warning_component.rb -------------------------------------------------------------------------------- /app/components/blacklight/icons/zoom_in_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/blacklight/icons/zoom_in_component.rb -------------------------------------------------------------------------------- /app/components/blacklight/icons/zoom_out_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/blacklight/icons/zoom_out_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/admin_users/email_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/admin_users/email_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/analytics/dashboard_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/analytics/dashboard_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/breadcrumbs_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/breadcrumbs_component.html.erb -------------------------------------------------------------------------------- /app/components/spotlight/breadcrumbs_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/breadcrumbs_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/bulk_action_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/bulk_action_component.html.erb -------------------------------------------------------------------------------- /app/components/spotlight/bulk_action_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/bulk_action_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/document_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/document_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/edit_view_links_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/edit_view_links_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/exhibit_navbar_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/exhibit_navbar_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/header_component.html.erb: -------------------------------------------------------------------------------- 1 | <%= top_bar %> -------------------------------------------------------------------------------- /app/components/spotlight/header_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/header_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/icon_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/icon_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/save_search_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/save_search_component.html.erb -------------------------------------------------------------------------------- /app/components/spotlight/save_search_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/save_search_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/select_image_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/select_image_component.html.erb -------------------------------------------------------------------------------- /app/components/spotlight/select_image_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/select_image_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/skip_link_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/skip_link_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/tag_list_form_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/tag_list_form_component.html.erb -------------------------------------------------------------------------------- /app/components/spotlight/tag_list_form_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/tag_list_form_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/tag_selector_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/tag_selector_component.html.erb -------------------------------------------------------------------------------- /app/components/spotlight/tag_selector_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/tag_selector_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/tag_selector_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/tag_selector_component.yml -------------------------------------------------------------------------------- /app/components/spotlight/title_component.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/title_component.html.erb -------------------------------------------------------------------------------- /app/components/spotlight/title_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/components/spotlight/title_component.rb -------------------------------------------------------------------------------- /app/components/spotlight/translations/subheading_component.html.erb: -------------------------------------------------------------------------------- 1 |

2 | <%= text %> 3 |

4 | -------------------------------------------------------------------------------- /app/controllers/concerns/spotlight/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/concerns/spotlight/base.rb -------------------------------------------------------------------------------- /app/controllers/concerns/spotlight/catalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/concerns/spotlight/catalog.rb -------------------------------------------------------------------------------- /app/controllers/concerns/spotlight/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/concerns/spotlight/config.rb -------------------------------------------------------------------------------- /app/controllers/concerns/spotlight/controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/concerns/spotlight/controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/spotlight/search_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/concerns/spotlight/search_helper.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/about_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/about_pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/accessibility_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/accessibility_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/admin_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/admin_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/appearances_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/appearances_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/attachments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/attachments_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/browse_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/browse_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/bulk_actions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/bulk_actions_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/bulk_updates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/bulk_updates_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/catalog_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/catalog_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/confirmations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/confirmations_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/contact_email_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/contact_email_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/contact_forms_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/contact_forms_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/contacts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/contacts_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/custom_fields_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/custom_fields_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/dashboards_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/dashboards_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/exhibits_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/exhibits_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/feature_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/feature_pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/featured_images_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/featured_images_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/filters_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/filters_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/home_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/home_pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/job_trackers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/job_trackers_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/languages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/languages_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/lock_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/lock_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/resources/upload_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/resources/upload_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/resources_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/resources_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/roles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/roles_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/searches_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/searches_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/sites_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/sites_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/solr_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/solr_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/translations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/translations_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotlight/versions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/controllers/spotlight/versions_controller.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/browse_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/browse_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/crop_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/crop_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/crud_link_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/crud_link_helpers.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/job_trackers_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/job_trackers_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/languages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/languages_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/main_app_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/main_app_helpers.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/masthead_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/masthead_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/meta_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/meta_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/navbar_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/navbar_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/pages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/pages_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/rendering_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/rendering_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/roles_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/roles_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/search_configurations_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/search_configurations_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/searches_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/searches_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/title_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/title_helper.rb -------------------------------------------------------------------------------- /app/helpers/spotlight/translations_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/helpers/spotlight/translations_helper.rb -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/add_another.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/add_another.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/add_image_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/add_image_selector.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/add_new_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/add_new_button.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/block_mixins/formable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/block_mixins/formable.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/blocks/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/blocks/block.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/blocks/browse_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/blocks/browse_block.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/blocks/iframe_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/blocks/iframe_block.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/blocks/oembed_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/blocks/oembed_block.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/blocks/pages_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/blocks/pages_block.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/blocks/resources_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/blocks/resources_block.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/blocks/rule_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/blocks/rule_block.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/copy_email_addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/copy_email_addresses.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/crop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/crop.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/croppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/croppable.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/croppable_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/croppable_modal.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/edit_in_place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/edit_in_place.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/exhibits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/exhibits.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/form_observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/form_observer.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/iiif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/iiif.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/index.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/locks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/locks.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/multi_image_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/multi_image_selector.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/pages.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/progress_monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/progress_monitor.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/readonly_checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/readonly_checkbox.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/search_typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/search_typeahead.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/select_related_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/select_related_input.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/sir-trevor/block_limits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/sir-trevor/block_limits.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/sir-trevor/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/sir-trevor/locales.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/spotlight_nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/spotlight_nestable.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/tabs.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/translation_progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/translation_progress.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/users.js -------------------------------------------------------------------------------- /app/javascript/spotlight/admin/visibility_toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/admin/visibility_toggle.js -------------------------------------------------------------------------------- /app/javascript/spotlight/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/spotlight/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/core.js -------------------------------------------------------------------------------- /app/javascript/spotlight/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/index.js -------------------------------------------------------------------------------- /app/javascript/spotlight/user/browse_group_categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/user/browse_group_categories.js -------------------------------------------------------------------------------- /app/javascript/spotlight/user/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/user/carousel.js -------------------------------------------------------------------------------- /app/javascript/spotlight/user/clear_form_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/user/clear_form_button.js -------------------------------------------------------------------------------- /app/javascript/spotlight/user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/user/index.js -------------------------------------------------------------------------------- /app/javascript/spotlight/user/zpr_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/javascript/spotlight/user/zpr_links.js -------------------------------------------------------------------------------- /app/jobs/concerns/spotlight/gather_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/concerns/spotlight/gather_documents.rb -------------------------------------------------------------------------------- /app/jobs/concerns/spotlight/job_tracking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/concerns/spotlight/job_tracking.rb -------------------------------------------------------------------------------- /app/jobs/concerns/spotlight/limit_concurrency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/concerns/spotlight/limit_concurrency.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/add_tags_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/add_tags_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/add_uploads_from_csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/add_uploads_from_csv.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/application_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/change_visibility_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/change_visibility_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/cleanup_job_trackers_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/cleanup_job_trackers_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/default_thumbnail_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/default_thumbnail_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/process_bulk_updates_csv_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/process_bulk_updates_csv_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/reindex_exhibit_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/reindex_exhibit_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/reindex_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/reindex_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/remove_tags_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/remove_tags_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/rename_sidecar_field_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/rename_sidecar_field_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/rename_tags_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/rename_tags_job.rb -------------------------------------------------------------------------------- /app/jobs/spotlight/update_job_trackers_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/jobs/spotlight/update_job_trackers_job.rb -------------------------------------------------------------------------------- /app/mailers/spotlight/confirmation_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/mailers/spotlight/confirmation_mailer.rb -------------------------------------------------------------------------------- /app/mailers/spotlight/contact_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/mailers/spotlight/contact_mailer.rb -------------------------------------------------------------------------------- /app/mailers/spotlight/indexing_complete_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/mailers/spotlight/indexing_complete_mailer.rb -------------------------------------------------------------------------------- /app/mailers/spotlight/invitation_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/mailers/spotlight/invitation_mailer.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/breadcrumb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/breadcrumb.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/exhibit_analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/exhibit_analytics.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/exhibit_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/exhibit_defaults.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/exhibit_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/exhibit_documents.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/resources/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/resources/web.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/search_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/search_builder.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/sitemap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/sitemap.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/solr_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/solr_document.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/solr_document/finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/solr_document/finder.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/translatables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/translatables.rb -------------------------------------------------------------------------------- /app/models/concerns/spotlight/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/concerns/spotlight/user.rb -------------------------------------------------------------------------------- /app/models/sir_trevor_rails/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/sir_trevor_rails/block.rb -------------------------------------------------------------------------------- /app/models/sir_trevor_rails/blocks/browse_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/sir_trevor_rails/blocks/browse_block.rb -------------------------------------------------------------------------------- /app/models/sir_trevor_rails/blocks/displayable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/sir_trevor_rails/blocks/displayable.rb -------------------------------------------------------------------------------- /app/models/sir_trevor_rails/blocks/oembed_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/sir_trevor_rails/blocks/oembed_block.rb -------------------------------------------------------------------------------- /app/models/sir_trevor_rails/blocks/textable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/sir_trevor_rails/blocks/textable.rb -------------------------------------------------------------------------------- /app/models/spotlight/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/ability.rb -------------------------------------------------------------------------------- /app/models/spotlight/about_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/about_page.rb -------------------------------------------------------------------------------- /app/models/spotlight/analytics/ga.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/analytics/ga.rb -------------------------------------------------------------------------------- /app/models/spotlight/attachment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/attachment.rb -------------------------------------------------------------------------------- /app/models/spotlight/background_job_progress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/background_job_progress.rb -------------------------------------------------------------------------------- /app/models/spotlight/blacklight_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/blacklight_configuration.rb -------------------------------------------------------------------------------- /app/models/spotlight/bulk_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/bulk_update.rb -------------------------------------------------------------------------------- /app/models/spotlight/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/contact.rb -------------------------------------------------------------------------------- /app/models/spotlight/contact_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/contact_email.rb -------------------------------------------------------------------------------- /app/models/spotlight/contact_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/contact_form.rb -------------------------------------------------------------------------------- /app/models/spotlight/contact_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/contact_image.rb -------------------------------------------------------------------------------- /app/models/spotlight/custom_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/custom_field.rb -------------------------------------------------------------------------------- /app/models/spotlight/custom_search_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/custom_search_field.rb -------------------------------------------------------------------------------- /app/models/spotlight/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/event.rb -------------------------------------------------------------------------------- /app/models/spotlight/exhibit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/exhibit.rb -------------------------------------------------------------------------------- /app/models/spotlight/exhibit_thumbnail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/exhibit_thumbnail.rb -------------------------------------------------------------------------------- /app/models/spotlight/feature_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/feature_page.rb -------------------------------------------------------------------------------- /app/models/spotlight/featured_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/featured_image.rb -------------------------------------------------------------------------------- /app/models/spotlight/field_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/field_metadata.rb -------------------------------------------------------------------------------- /app/models/spotlight/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/filter.rb -------------------------------------------------------------------------------- /app/models/spotlight/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/group.rb -------------------------------------------------------------------------------- /app/models/spotlight/group_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/group_member.rb -------------------------------------------------------------------------------- /app/models/spotlight/home_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/home_page.rb -------------------------------------------------------------------------------- /app/models/spotlight/job_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/job_tracker.rb -------------------------------------------------------------------------------- /app/models/spotlight/language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/language.rb -------------------------------------------------------------------------------- /app/models/spotlight/lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/lock.rb -------------------------------------------------------------------------------- /app/models/spotlight/main_navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/main_navigation.rb -------------------------------------------------------------------------------- /app/models/spotlight/masthead.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/masthead.rb -------------------------------------------------------------------------------- /app/models/spotlight/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/page.rb -------------------------------------------------------------------------------- /app/models/spotlight/page_configurations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/page_configurations.rb -------------------------------------------------------------------------------- /app/models/spotlight/page_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/page_content.rb -------------------------------------------------------------------------------- /app/models/spotlight/page_content/sir_trevor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/page_content/sir_trevor.rb -------------------------------------------------------------------------------- /app/models/spotlight/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/resource.rb -------------------------------------------------------------------------------- /app/models/spotlight/resources/csv_upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/resources/csv_upload.rb -------------------------------------------------------------------------------- /app/models/spotlight/resources/iiif_harvester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/resources/iiif_harvester.rb -------------------------------------------------------------------------------- /app/models/spotlight/resources/iiif_manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/resources/iiif_manifest.rb -------------------------------------------------------------------------------- /app/models/spotlight/resources/iiif_manifest_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/resources/iiif_manifest_metadata.rb -------------------------------------------------------------------------------- /app/models/spotlight/resources/iiif_manifest_v3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/resources/iiif_manifest_v3.rb -------------------------------------------------------------------------------- /app/models/spotlight/resources/iiif_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/resources/iiif_service.rb -------------------------------------------------------------------------------- /app/models/spotlight/resources/json_upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/resources/json_upload.rb -------------------------------------------------------------------------------- /app/models/spotlight/resources/upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/resources/upload.rb -------------------------------------------------------------------------------- /app/models/spotlight/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/role.rb -------------------------------------------------------------------------------- /app/models/spotlight/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/search.rb -------------------------------------------------------------------------------- /app/models/spotlight/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/site.rb -------------------------------------------------------------------------------- /app/models/spotlight/solr_document_sidecar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/solr_document_sidecar.rb -------------------------------------------------------------------------------- /app/models/spotlight/temporary_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/spotlight/temporary_image.rb -------------------------------------------------------------------------------- /app/models/translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/models/translation.rb -------------------------------------------------------------------------------- /app/presenters/spotlight/iiif_manifest_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/presenters/spotlight/iiif_manifest_presenter.rb -------------------------------------------------------------------------------- /app/services/spotlight/carrierwave_file_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/carrierwave_file_resolver.rb -------------------------------------------------------------------------------- /app/services/spotlight/etl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/etl.rb -------------------------------------------------------------------------------- /app/services/spotlight/etl/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/etl/context.rb -------------------------------------------------------------------------------- /app/services/spotlight/etl/executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/etl/executor.rb -------------------------------------------------------------------------------- /app/services/spotlight/etl/loaders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/etl/loaders.rb -------------------------------------------------------------------------------- /app/services/spotlight/etl/pipeline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/etl/pipeline.rb -------------------------------------------------------------------------------- /app/services/spotlight/etl/solr_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/etl/solr_loader.rb -------------------------------------------------------------------------------- /app/services/spotlight/etl/sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/etl/sources.rb -------------------------------------------------------------------------------- /app/services/spotlight/etl/step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/etl/step.rb -------------------------------------------------------------------------------- /app/services/spotlight/etl/transforms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/etl/transforms.rb -------------------------------------------------------------------------------- /app/services/spotlight/exhibit_import_export_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/exhibit_import_export_service.rb -------------------------------------------------------------------------------- /app/services/spotlight/iiif_resource_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/iiif_resource_resolver.rb -------------------------------------------------------------------------------- /app/services/spotlight/invite_users_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/invite_users_service.rb -------------------------------------------------------------------------------- /app/services/spotlight/validity_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/services/spotlight/validity_checker.rb -------------------------------------------------------------------------------- /app/uploaders/spotlight/attachment_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/uploaders/spotlight/attachment_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/spotlight/bulk_updates_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/uploaders/spotlight/bulk_updates_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/spotlight/featured_image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/uploaders/spotlight/featured_image_uploader.rb -------------------------------------------------------------------------------- /app/values/custom_field_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/values/custom_field_name.rb -------------------------------------------------------------------------------- /app/views/blacklight/nav/_bookmark.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/blacklight/nav/_bookmark.html.erb -------------------------------------------------------------------------------- /app/views/blacklight/nav/_saved_searches.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/blacklight/nav/_saved_searches.html.erb -------------------------------------------------------------------------------- /app/views/blacklight/nav/_search_history.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/blacklight/nav/_search_history.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_add_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/catalog/_add_tags.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_bulk_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/catalog/_bulk_actions.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_change_visibility.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/catalog/_change_visibility.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_curator_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/catalog/_curator_actions.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_image_default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/catalog/_image_default.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_remove_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/catalog/_remove_tags.html.erb -------------------------------------------------------------------------------- /app/views/catalog/_save_search.html.erb: -------------------------------------------------------------------------------- 1 | <%= render Spotlight::SaveSearchComponent.new %> 2 | -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/invitation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/devise/mailer/invitation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/layouts/spotlight/base.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/layouts/spotlight/base.html.erb -------------------------------------------------------------------------------- /app/views/layouts/spotlight/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/layouts/spotlight/home.html.erb -------------------------------------------------------------------------------- /app/views/layouts/spotlight/spotlight.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/layouts/spotlight/spotlight.html.erb -------------------------------------------------------------------------------- /app/views/shared/_about_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/shared/_about_navbar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/shared/_analytics.html.erb -------------------------------------------------------------------------------- /app/views/shared/_body_preamble.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/shared/_browse_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/shared/_browse_navbar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_curated_features_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/shared/_curated_features_navbar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_exhibit_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/shared/_exhibit_navbar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/shared/_header_navbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/shared/_header_navbar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_masthead.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/shared/_masthead.html.erb -------------------------------------------------------------------------------- /app/views/shared/_site_navbar.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/shared/_site_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/shared/_site_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/shared/_user_util_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/shared/_user_util_links.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/about_pages/_contact.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/about_pages/_contact.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/about_pages/_contacts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/about_pages/_contacts.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/about_pages/_contacts_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/about_pages/_contacts_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/about_pages/_empty.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/about_pages/_empty.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/about_pages/_page_options.html.erb: -------------------------------------------------------------------------------- 1 | <%= f.check_box :published %> 2 | -------------------------------------------------------------------------------- /app/views/spotlight/about_pages/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/about_pages/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/about_pages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/about_pages/index.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/accessibility/alt_text.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/accessibility/alt_text.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/admin_users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/admin_users/index.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/appearances/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/appearances/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/browse/_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/browse/_search.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/browse/_search_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/browse/_search_box.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/browse/_search_title.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/browse/_search_title.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/browse/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/browse/index.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/browse/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/browse/show.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/bulk_updates/_download.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/bulk_updates/_download.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/bulk_updates/_overview.html.erb: -------------------------------------------------------------------------------- 1 | <%= t('.instructions_html') %> 2 | -------------------------------------------------------------------------------- /app/views/spotlight/bulk_updates/_progress_panel.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/bulk_updates/_progress_panel.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/bulk_updates/_upload.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/bulk_updates/_upload.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/bulk_updates/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/bulk_updates/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/catalog/_admin_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/catalog/_admin_header.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/catalog/_document.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/catalog/_document.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/catalog/_document_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/catalog/_document_row.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/catalog/_edit_default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/catalog/_edit_default.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/catalog/_edit_sidecar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/catalog/_edit_sidecar.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/catalog/admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/catalog/admin.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/catalog/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/catalog/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/catalog/index.iiif_json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/catalog/index.iiif_json.jbuilder -------------------------------------------------------------------------------- /app/views/spotlight/catalog/select_image.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/catalog/select_image.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/contact_forms/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/contact_forms/new.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/contacts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/contacts/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/contacts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/contacts/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/contacts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/contacts/new.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/custom_fields/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/custom_fields/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/custom_fields/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/custom_fields/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/custom_fields/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/custom_fields/new.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/custom_search_fields/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/custom_search_fields/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/custom_search_fields/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/custom_search_fields/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/custom_search_fields/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/custom_search_fields/new.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/dashboards/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/dashboards/_page.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/dashboards/_page_activity.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/dashboards/_page_activity.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/dashboards/analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/dashboards/analytics.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/dashboards/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/dashboards/show.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_contact.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_contact.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_delete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_delete.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_exhibit_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_exhibit_card.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_exhibits.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_exhibits.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_export.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_export.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_import.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_import.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_initial_resources_form.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_languages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_languages.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_missing_exhibits.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_missing_exhibits.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_new_exhibit_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_new_exhibit_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/_tags.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/index.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/exhibits/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/exhibits/new.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/feature_pages/_empty.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/feature_pages/_empty.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/feature_pages/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/feature_pages/_header.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/feature_pages/_page_options.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/feature_pages/_page_options.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/feature_pages/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/feature_pages/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/featured_images/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/featured_images/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/featured_images/_upload_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/featured_images/_upload_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/filters/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/filters/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/home_pages/_edit_page_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/home_pages/_edit_page_link.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/home_pages/_empty.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/home_pages/_empty.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/home_pages/_page_options.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/home_pages/_page_options.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/home_pages/_sidebar.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'catalog/search_sidebar' %> 2 | -------------------------------------------------------------------------------- /app/views/spotlight/job_trackers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/job_trackers/show.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/locks/_lock.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/locks/_lock.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/metadata_configurations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/metadata_configurations/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/pages/_edit_page_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/pages/_edit_page_link.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/pages/_empty.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/spotlight/pages/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/pages/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/pages/_header.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/spotlight/pages/_order_pages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/pages/_order_pages.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/pages/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/pages/_page.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/pages/_page_options.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/spotlight/pages/_view_type_group.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/pages/_view_type_group.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/pages/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/pages/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/pages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/pages/index.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/pages/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/pages/new.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/pages/preview.html.erb: -------------------------------------------------------------------------------- 1 | <%= render @block %> -------------------------------------------------------------------------------- /app/views/spotlight/pages/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/pages/show.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/resources/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/resources/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/resources/csv_upload/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/resources/csv_upload/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/resources/iiif/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/resources/iiif/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/resources/json_upload/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/resources/json_upload/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/resources/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/resources/new.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/resources/upload/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/resources/upload/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/roles/_edit_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/roles/_edit_fields.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/roles/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/roles/index.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/search_configurations/_sort.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/search_configurations/_sort.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/search_configurations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/search_configurations/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/searches/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/searches/_form.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/searches/_group.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/searches/_group.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/searches/_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/searches/_search.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/searches/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/searches/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/searches/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/searches/index.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/shared/_curation_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/shared/_curation_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/shared/_dd3_item.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/shared/_dd3_item.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/shared/_exhibit_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/shared/_exhibit_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/shared/_honeypot_field.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/shared/_honeypot_field.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/shared/_locale_picker.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/shared/_locale_picker.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/shared/_report_a_problem.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/shared/_report_a_problem.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/sir_trevor/_sir_trevor_block_array.html.erb: -------------------------------------------------------------------------------- 1 | <%= render sir_trevor_block_array.to_a %> -------------------------------------------------------------------------------- /app/views/spotlight/sir_trevor/blocks/_heading_block.html.erb: -------------------------------------------------------------------------------- 1 | <%= sir_trevor_markdown "## #{heading_block.text}" %> 2 | -------------------------------------------------------------------------------- /app/views/spotlight/sir_trevor/blocks/_rule_block.html.erb: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /app/views/spotlight/sites/_exhibit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/sites/_exhibit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/sites/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/sites/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/sites/edit_exhibits.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/sites/edit_exhibits.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/tags/_tag.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/tags/_tag.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/tags/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/tags/index.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/_general.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/_general.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/_groups.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/_groups.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/_import.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/_import.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/_metadata.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/_metadata.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/_page.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/_pages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/_pages.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/_pages_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/_pages_table.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/_search_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/_search_fields.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/edit.html.erb -------------------------------------------------------------------------------- /app/views/spotlight/translations/show.yaml.yamlbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/app/views/spotlight/translations/show.yaml.yamlbuilder -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/bin/rails -------------------------------------------------------------------------------- /blacklight-spotlight.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/blacklight-spotlight.gemspec -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/compose.yaml -------------------------------------------------------------------------------- /config/i18n-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/i18n-tasks.yml -------------------------------------------------------------------------------- /config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/importmap.rb -------------------------------------------------------------------------------- /config/initializers/devise_rails8_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/initializers/devise_rails8_patch.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/spotlight.ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/locales/spotlight.ar.yml -------------------------------------------------------------------------------- /config/locales/spotlight.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/locales/spotlight.de.yml -------------------------------------------------------------------------------- /config/locales/spotlight.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/locales/spotlight.en.yml -------------------------------------------------------------------------------- /config/locales/spotlight.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/locales/spotlight.es.yml -------------------------------------------------------------------------------- /config/locales/spotlight.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/locales/spotlight.fr.yml -------------------------------------------------------------------------------- /config/locales/spotlight.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/locales/spotlight.it.yml -------------------------------------------------------------------------------- /config/locales/spotlight.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/locales/spotlight.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/spotlight.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/locales/spotlight.zh.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20131119213142_create_spotlight_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20131119213142_create_spotlight_pages.rb -------------------------------------------------------------------------------- /db/migrate/20131120172811_create_spotlight_attachments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20131120172811_create_spotlight_attachments.rb -------------------------------------------------------------------------------- /db/migrate/20140128155151_create_exhibits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20140128155151_create_exhibits.rb -------------------------------------------------------------------------------- /db/migrate/20140128155152_create_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20140128155152_create_roles.rb -------------------------------------------------------------------------------- /db/migrate/20140130155151_create_spotlight_searches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20140130155151_create_spotlight_searches.rb -------------------------------------------------------------------------------- /db/migrate/20140218155151_create_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20140218155151_create_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20140225180948_create_contact_emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20140225180948_create_contact_emails.rb -------------------------------------------------------------------------------- /db/migrate/20140228131207_create_resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20140228131207_create_resources.rb -------------------------------------------------------------------------------- /db/migrate/20141117111311_create_locks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20141117111311_create_locks.rb -------------------------------------------------------------------------------- /db/migrate/20141118233735_change_contact_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20141118233735_change_contact_details.rb -------------------------------------------------------------------------------- /db/migrate/20141126231820_add_avatar_to_contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20141126231820_add_avatar_to_contacts.rb -------------------------------------------------------------------------------- /db/migrate/20150116161616_add_published_to_exhibit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20150116161616_add_published_to_exhibit.rb -------------------------------------------------------------------------------- /db/migrate/20151124105543_update_custom_field_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20151124105543_update_custom_field_names.rb -------------------------------------------------------------------------------- /db/migrate/20151208085432_add_weight_to_exhibits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20151208085432_add_weight_to_exhibits.rb -------------------------------------------------------------------------------- /db/migrate/20151210073829_create_spotlight_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20151210073829_create_spotlight_site.rb -------------------------------------------------------------------------------- /db/migrate/20160718194010_add_iiif_url_to_contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20160718194010_add_iiif_url_to_contact.rb -------------------------------------------------------------------------------- /db/migrate/20160805143841_add_upload_id_to_resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20160805143841_add_upload_id_to_resources.rb -------------------------------------------------------------------------------- /db/migrate/20170803152134_migrate_tags_to_sidecars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20170803152134_migrate_tags_to_sidecars.rb -------------------------------------------------------------------------------- /db/migrate/20180306142612_create_translations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20180306142612_create_translations.rb -------------------------------------------------------------------------------- /db/migrate/20180308203409_create_spotlight_languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20180308203409_create_spotlight_languages.rb -------------------------------------------------------------------------------- /db/migrate/20180403130857_translation_uniqueness.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20180403130857_translation_uniqueness.rb -------------------------------------------------------------------------------- /db/migrate/20180405044000_add_locale_to_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20180405044000_add_locale_to_pages.rb -------------------------------------------------------------------------------- /db/migrate/20181127085432_change_weight_on_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20181127085432_change_weight_on_pages.rb -------------------------------------------------------------------------------- /db/migrate/20190807085432_add_content_type_to_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20190807085432_add_content_type_to_pages.rb -------------------------------------------------------------------------------- /db/migrate/20191205112300_add_unique_index_to_sidecars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20191205112300_add_unique_index_to_sidecars.rb -------------------------------------------------------------------------------- /db/migrate/20200403161512_add_subtitle_to_searches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20200403161512_add_subtitle_to_searches.rb -------------------------------------------------------------------------------- /db/migrate/20210113092223_create_spotlight_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20210113092223_create_spotlight_groups.rb -------------------------------------------------------------------------------- /db/migrate/20210122082032_create_job_trackers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20210122082032_create_job_trackers.rb -------------------------------------------------------------------------------- /db/migrate/20210126123041_create_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20210126123041_create_events.rb -------------------------------------------------------------------------------- /db/migrate/20210305171150_create_bulk_updates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/db/migrate/20210305171150_create_bulk_updates.rb -------------------------------------------------------------------------------- /lib/blacklight/spotlight.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require 'spotlight' 4 | -------------------------------------------------------------------------------- /lib/generators/spotlight/assets/importmap_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/assets/importmap_generator.rb -------------------------------------------------------------------------------- /lib/generators/spotlight/assets/propshaft_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/assets/propshaft_generator.rb -------------------------------------------------------------------------------- /lib/generators/spotlight/assets_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/assets_generator.rb -------------------------------------------------------------------------------- /lib/generators/spotlight/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/spotlight/scaffold_resource_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/scaffold_resource_generator.rb -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/.solr_wrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/templates/.solr_wrapper.yml -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/assets/spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/templates/assets/spotlight.scss -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/catalog_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/templates/catalog_controller.rb -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/config/sitemap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/templates/config/sitemap.rb -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/javascript/jquery-shim.js: -------------------------------------------------------------------------------- 1 | export default window.jQuery; -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/solr/conf/_rest_managed.json: -------------------------------------------------------------------------------- 1 | { 2 | "initArgs":{}, 3 | "managedList":[]} -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/solr/conf/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/templates/solr/conf/elevate.xml -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/solr/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/templates/solr/conf/schema.xml -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/solr/conf/scripts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/templates/solr/conf/scripts.conf -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/solr/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history 3 | -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/solr/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/templates/solr/conf/synonyms.txt -------------------------------------------------------------------------------- /lib/generators/spotlight/templates/spotlight_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/generators/spotlight/templates/spotlight_helper.rb -------------------------------------------------------------------------------- /lib/migration/iiif.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/migration/iiif.rb -------------------------------------------------------------------------------- /lib/migration/page_language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/migration/page_language.rb -------------------------------------------------------------------------------- /lib/spotlight.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/spotlight.rb -------------------------------------------------------------------------------- /lib/spotlight/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/spotlight/engine.rb -------------------------------------------------------------------------------- /lib/spotlight/riiif_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/spotlight/riiif_service.rb -------------------------------------------------------------------------------- /lib/spotlight/search_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/spotlight/search_state.rb -------------------------------------------------------------------------------- /lib/spotlight/upload_field_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/spotlight/upload_field_config.rb -------------------------------------------------------------------------------- /lib/spotlight/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Spotlight 4 | VERSION = '5.2.1' 5 | end 6 | -------------------------------------------------------------------------------- /lib/tasks/spotlight_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/lib/tasks/spotlight_tasks.rake -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/rollup.config.js -------------------------------------------------------------------------------- /spec/components/spotlight/breadcrumbs_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/components/spotlight/breadcrumbs_component_spec.rb -------------------------------------------------------------------------------- /spec/components/spotlight/select_image_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/components/spotlight/select_image_component_spec.rb -------------------------------------------------------------------------------- /spec/components/spotlight/tag_selector_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/components/spotlight/tag_selector_component_spec.rb -------------------------------------------------------------------------------- /spec/controllers/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/about_pages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/about_pages_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/admin_users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/admin_users_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/appearances_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/appearances_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/browse_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/browse_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/catalog_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/catalog_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/contacts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/contacts_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/exhibits_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/exhibits_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/filters_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/filters_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/groups_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/groups_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/languages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/languages_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/pages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/pages_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/resources_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/resources_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/roles_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/roles_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/searches_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/searches_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/sites_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/sites_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/solr_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/solr_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/tags_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/tags_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/spotlight/versions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/controllers/spotlight/versions_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/bulk_updates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/bulk_updates.rb -------------------------------------------------------------------------------- /spec/factories/contact_emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/contact_emails.rb -------------------------------------------------------------------------------- /spec/factories/contact_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/contact_images.rb -------------------------------------------------------------------------------- /spec/factories/contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/contacts.rb -------------------------------------------------------------------------------- /spec/factories/custom_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/custom_fields.rb -------------------------------------------------------------------------------- /spec/factories/custom_search_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/custom_search_fields.rb -------------------------------------------------------------------------------- /spec/factories/exhibit_thumbnails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/exhibit_thumbnails.rb -------------------------------------------------------------------------------- /spec/factories/exhibits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/exhibits.rb -------------------------------------------------------------------------------- /spec/factories/featured_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/featured_images.rb -------------------------------------------------------------------------------- /spec/factories/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/group.rb -------------------------------------------------------------------------------- /spec/factories/job_trackers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/job_trackers.rb -------------------------------------------------------------------------------- /spec/factories/language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/language.rb -------------------------------------------------------------------------------- /spec/factories/main_navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/main_navigation.rb -------------------------------------------------------------------------------- /spec/factories/pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/pages.rb -------------------------------------------------------------------------------- /spec/factories/resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/resources.rb -------------------------------------------------------------------------------- /spec/factories/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/roles.rb -------------------------------------------------------------------------------- /spec/factories/searches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/searches.rb -------------------------------------------------------------------------------- /spec/factories/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/tags.rb -------------------------------------------------------------------------------- /spec/factories/translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/translation.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/about_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/about_page_spec.rb -------------------------------------------------------------------------------- /spec/features/add_contacts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/add_contacts_spec.rb -------------------------------------------------------------------------------- /spec/features/add_custom_field_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/add_custom_field_metadata_spec.rb -------------------------------------------------------------------------------- /spec/features/add_iiif_manifest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/add_iiif_manifest_spec.rb -------------------------------------------------------------------------------- /spec/features/add_items_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/add_items_spec.rb -------------------------------------------------------------------------------- /spec/features/alt_text_dashboard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/alt_text_dashboard_spec.rb -------------------------------------------------------------------------------- /spec/features/autocomplete_typeahead_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/autocomplete_typeahead_spec.rb -------------------------------------------------------------------------------- /spec/features/browse_category_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/browse_category_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/browse_category_navigation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/browse_category_navigation_spec.rb -------------------------------------------------------------------------------- /spec/features/browse_category_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/browse_category_spec.rb -------------------------------------------------------------------------------- /spec/features/bulk_actions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/bulk_actions_spec.rb -------------------------------------------------------------------------------- /spec/features/confirm_email_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/confirm_email_spec.rb -------------------------------------------------------------------------------- /spec/features/create_exhibit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/create_exhibit_spec.rb -------------------------------------------------------------------------------- /spec/features/create_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/create_page_spec.rb -------------------------------------------------------------------------------- /spec/features/dashboard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/dashboard_spec.rb -------------------------------------------------------------------------------- /spec/features/display_within_exhibit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/display_within_exhibit_spec.rb -------------------------------------------------------------------------------- /spec/features/edit_contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/edit_contact_spec.rb -------------------------------------------------------------------------------- /spec/features/edit_search_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/edit_search_fields_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibit_masthead_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibit_masthead_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibit_themes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibit_themes_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibits/add_tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibits/add_tags_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibits/administration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibits/administration_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibits/custom_metadata_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibits/custom_metadata_fields_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibits/custom_search_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibits/custom_search_fields_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibits/edit_metadata_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibits/edit_metadata_fields_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibits/language_create_edit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibits/language_create_edit_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibits/translation_editing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibits/translation_editing_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibits/user_roles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibits/user_roles_spec.rb -------------------------------------------------------------------------------- /spec/features/exhibits_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/exhibits_index_spec.rb -------------------------------------------------------------------------------- /spec/features/feature_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/feature_page_spec.rb -------------------------------------------------------------------------------- /spec/features/header_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/header_links_spec.rb -------------------------------------------------------------------------------- /spec/features/home_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/home_page_spec.rb -------------------------------------------------------------------------------- /spec/features/import_exhibit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/import_exhibit_spec.rb -------------------------------------------------------------------------------- /spec/features/item_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/item_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/about_page_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/about_page_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/block_controls_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/block_controls_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/blocks/heading_block_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/blocks/heading_block_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/blocks/rule_block_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/blocks/rule_block_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/browse_group_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/browse_group_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/edit_in_place_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/edit_in_place_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/feature_page_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/feature_page_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/home_page_edit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/home_page_edit_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/locale_selector_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/locale_selector_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/metadata_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/metadata_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/multi_image_select_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/multi_image_select_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/reindex_monitor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/reindex_monitor_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/roles_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/roles_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/search_config_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/search_config_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/javascript/search_context_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/javascript/search_context_spec.rb -------------------------------------------------------------------------------- /spec/features/main_navigation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/main_navigation_spec.rb -------------------------------------------------------------------------------- /spec/features/metadata_admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/metadata_admin_spec.rb -------------------------------------------------------------------------------- /spec/features/non_spotlight_item_display_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/non_spotlight_item_display_spec.rb -------------------------------------------------------------------------------- /spec/features/report_a_problem_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/report_a_problem_spec.rb -------------------------------------------------------------------------------- /spec/features/search_within_exhibit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/search_within_exhibit_spec.rb -------------------------------------------------------------------------------- /spec/features/site_masthead_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/site_masthead_spec.rb -------------------------------------------------------------------------------- /spec/features/site_users_management_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/site_users_management_spec.rb -------------------------------------------------------------------------------- /spec/features/slideshow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/slideshow_spec.rb -------------------------------------------------------------------------------- /spec/features/translation_scope_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/features/translation_scope_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/800x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/800x600.png -------------------------------------------------------------------------------- /spec/fixtures/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/avatar.png -------------------------------------------------------------------------------- /spec/fixtures/bulk-update-template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/bulk-update-template.csv -------------------------------------------------------------------------------- /spec/fixtures/csv-upload-fixture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/csv-upload-fixture.csv -------------------------------------------------------------------------------- /spec/fixtures/gk446cj2442-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/gk446cj2442-manifest.json -------------------------------------------------------------------------------- /spec/fixtures/iiif_responses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/iiif_responses.rb -------------------------------------------------------------------------------- /spec/fixtures/json-upload-fixture.json: -------------------------------------------------------------------------------- 1 | { 2 | "a": 1 3 | } -------------------------------------------------------------------------------- /spec/fixtures/sample_solr_documents.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/sample_solr_documents.yml -------------------------------------------------------------------------------- /spec/fixtures/updated-bulk-update-template-no-cols.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/updated-bulk-update-template-no-cols.csv -------------------------------------------------------------------------------- /spec/fixtures/updated-bulk-update-template-w-tags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/updated-bulk-update-template-w-tags.csv -------------------------------------------------------------------------------- /spec/fixtures/updated-bulk-update-template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/fixtures/updated-bulk-update-template.csv -------------------------------------------------------------------------------- /spec/helpers/spotlight/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/browse_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/browse_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/crop_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/crop_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/crud_link_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/crud_link_helpers_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/languages_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/languages_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/main_app_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/main_app_helpers_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/masthead_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/masthead_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/meta_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/meta_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/navbar_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/navbar_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/pages_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/pages_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/rendering_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/rendering_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/roles_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/roles_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/title_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/title_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/spotlight/translations_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/helpers/spotlight/translations_helper_spec.rb -------------------------------------------------------------------------------- /spec/i18n_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/i18n_spec.rb -------------------------------------------------------------------------------- /spec/jobs/spotlight/add_tags_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/jobs/spotlight/add_tags_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/spotlight/add_uploads_from_csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/jobs/spotlight/add_uploads_from_csv_spec.rb -------------------------------------------------------------------------------- /spec/jobs/spotlight/change_visibility_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/jobs/spotlight/change_visibility_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/spotlight/default_thumbnail_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/jobs/spotlight/default_thumbnail_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/spotlight/reindex_exhibit_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/jobs/spotlight/reindex_exhibit_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/spotlight/reindex_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/jobs/spotlight/reindex_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/spotlight/remove_tags_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/jobs/spotlight/remove_tags_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/spotlight/rename_sidecar_field_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/jobs/spotlight/rename_sidecar_field_job_spec.rb -------------------------------------------------------------------------------- /spec/lib/migration/iiif_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/lib/migration/iiif_spec.rb -------------------------------------------------------------------------------- /spec/lib/migration/page_language_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/lib/migration/page_language_spec.rb -------------------------------------------------------------------------------- /spec/lib/spotlight/catalog_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/lib/spotlight/controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/lib/spotlight/controller_spec.rb -------------------------------------------------------------------------------- /spec/lib/spotlight/upload_field_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/lib/spotlight/upload_field_config_spec.rb -------------------------------------------------------------------------------- /spec/mailers/spotlight/indexing_complete_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/mailers/spotlight/indexing_complete_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/sir_trevor_rails/block_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/sir_trevor_rails/block_spec.rb -------------------------------------------------------------------------------- /spec/models/sir_trevor_rails/blocks/textable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/sir_trevor_rails/blocks/textable_spec.rb -------------------------------------------------------------------------------- /spec/models/solr_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/solr_document_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/ability_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/ability_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/about_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/about_page_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/analytics/ga_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/analytics/ga_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/background_job_progress_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/background_job_progress_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/blacklight_configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/blacklight_configuration_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/contact_email_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/contact_email_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/contact_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/contact_form_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/contact_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/contact_image_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/contact_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/custom_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/custom_field_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/custom_search_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/custom_search_field_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/exhibit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/exhibit_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/exhibit_thumbnail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/exhibit_thumbnail_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/feature_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/feature_page_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/featured_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/featured_image_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/field_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/field_metadata_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/filter_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/group_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/home_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/home_page_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/language_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/language_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/main_navigation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/main_navigation_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/masthead_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/masthead_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/page_configurations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/page_configurations_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/page_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/resource_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/resources/iiif_harvester_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/resources/iiif_harvester_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/resources/iiif_manifest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/resources/iiif_manifest_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/resources/iiif_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/resources/iiif_service_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/resources/upload_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/resources/upload_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/resources/web_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/resources/web_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/role_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/search_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/site_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/site_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/sitemap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/sitemap_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/solr_document_sidecar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/solr_document_sidecar_spec.rb -------------------------------------------------------------------------------- /spec/models/spotlight/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/spotlight/user_spec.rb -------------------------------------------------------------------------------- /spec/models/translation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/models/translation_spec.rb -------------------------------------------------------------------------------- /spec/routing/spotlight/exhibit_catalog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/routing/spotlight/exhibit_catalog_spec.rb -------------------------------------------------------------------------------- /spec/routing/spotlight/featured_images_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/routing/spotlight/featured_images_spec.rb -------------------------------------------------------------------------------- /spec/routing/spotlight/pages_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/routing/spotlight/pages_routing_spec.rb -------------------------------------------------------------------------------- /spec/services/spotlight/etl/context_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/services/spotlight/etl/context_spec.rb -------------------------------------------------------------------------------- /spec/services/spotlight/etl/executor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/services/spotlight/etl/executor_spec.rb -------------------------------------------------------------------------------- /spec/services/spotlight/etl/pipeline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/services/spotlight/etl/pipeline_spec.rb -------------------------------------------------------------------------------- /spec/services/spotlight/etl/solr_loader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/services/spotlight/etl/solr_loader_spec.rb -------------------------------------------------------------------------------- /spec/services/spotlight/etl/step_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/services/spotlight/etl/step_spec.rb -------------------------------------------------------------------------------- /spec/services/spotlight/iiif_resource_resolver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/services/spotlight/iiif_resource_resolver_spec.rb -------------------------------------------------------------------------------- /spec/services/spotlight/invite_users_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/services/spotlight/invite_users_service_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/controllers/engine_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/support/controllers/engine_helpers.rb -------------------------------------------------------------------------------- /spec/support/features/capybara_wait_metadata_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/support/features/capybara_wait_metadata_helper.rb -------------------------------------------------------------------------------- /spec/support/features/test_features_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/support/features/test_features_helpers.rb -------------------------------------------------------------------------------- /spec/support/helpers/controller_level_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/support/helpers/controller_level_helpers.rb -------------------------------------------------------------------------------- /spec/support/stub_iiif_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/support/stub_iiif_response.rb -------------------------------------------------------------------------------- /spec/support/views/test_view_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/support/views/test_view_helpers.rb -------------------------------------------------------------------------------- /spec/support/with_queue_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/support/with_queue_adapter.rb -------------------------------------------------------------------------------- /spec/test_app_templates/Gemfile.extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/test_app_templates/Gemfile.extra -------------------------------------------------------------------------------- /spec/test_app_templates/carrierwave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/test_app_templates/carrierwave.rb -------------------------------------------------------------------------------- /spec/test_app_templates/catalog_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/test_app_templates/catalog_controller.rb -------------------------------------------------------------------------------- /spec/test_app_templates/fixture.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/test_app_templates/fixture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/test_app_templates/fixture.png -------------------------------------------------------------------------------- /spec/test_app_templates/spotlight_test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/test_app_templates/spotlight_test.rake -------------------------------------------------------------------------------- /spec/uploaders/spotlight/attachment_uploader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/uploaders/spotlight/attachment_uploader_spec.rb -------------------------------------------------------------------------------- /spec/views/shared/_analytics.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/shared/_analytics.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/shared/_masthead.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/shared/_masthead.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/shared/_user_util_links.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/shared/_user_util_links.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/about_pages/index.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/about_pages/index.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/browse/_search.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/browse/_search.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/browse/index.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/browse/index.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/browse/show.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/browse/show.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/catalog/admin.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/catalog/admin.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/catalog/edit.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/catalog/edit.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/contacts/edit.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/contacts/edit.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/exhibits/_form.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/exhibits/_form.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/exhibits/edit.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/exhibits/edit.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/exhibits/index.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/exhibits/index.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/home_pages/_empty.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/home_pages/_empty.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/job_trackers/show.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/job_trackers/show.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/pages/_form.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/pages/_form.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/pages/edit.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/pages/edit.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/pages/index.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/pages/index.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/pages/new.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/pages/new.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/pages/show.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/pages/show.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/resources/new.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/resources/new.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/roles/index.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/roles/index.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/searches/_search.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/searches/_search.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/searches/edit.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/searches/edit.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/searches/index.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/searches/index.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/spotlight/tags/index.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/spec/views/spotlight/tags/index.html.erb_spec.rb -------------------------------------------------------------------------------- /template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/template.rb -------------------------------------------------------------------------------- /vendor/assets/images/sir-trevor-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/images/sir-trevor-icons.svg -------------------------------------------------------------------------------- /vendor/assets/javascripts/Leaflet.Editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/javascripts/Leaflet.Editable.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/Path.Drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/javascripts/Path.Drag.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.waitforimages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/javascripts/jquery.waitforimages.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/leaflet-iiif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/javascripts/leaflet-iiif.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/parameterize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/javascripts/parameterize.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/tiny-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/javascripts/tiny-slider.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/_icons.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/_variables.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/base.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/block-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/block-ui.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/block.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/errors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/errors.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/format-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/format-bar.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/inputs.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/main.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/sir-trevor/utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/sir-trevor/utils.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/tiny-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectblacklight/spotlight/HEAD/vendor/assets/stylesheets/tiny-slider.css --------------------------------------------------------------------------------