├── .dockerignore ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── actionlint.yml │ ├── ci.yml │ ├── copy-pr-template-to-dependabot-prs.yml │ ├── deploy.yml │ ├── release.yml │ └── rspec.yml ├── .gitignore ├── .govuk_dependabot_merger.yml ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENCE ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── mail-icon-retina.png │ │ ├── mail-icon.png │ │ ├── search │ │ │ └── search-button.png │ │ ├── toggle-sprite-horizontal.png │ │ ├── toggle-sprite-retina.png │ │ └── toggle-sprite.png │ ├── javascripts │ │ ├── application.js │ │ ├── components │ │ │ ├── expander.js │ │ │ └── filter-panel.js │ │ ├── live_search.js │ │ ├── modules │ │ │ ├── all-content-finder.js │ │ │ ├── mobile-filters-modal.js │ │ │ ├── nested-facets.js │ │ │ └── remove-filter.js │ │ ├── support.js │ │ ├── taxonomy-select.js │ │ └── test-dependencies.js │ └── stylesheets │ │ ├── application.scss │ │ ├── components │ │ ├── _expander.scss │ │ ├── _filter-panel.scss │ │ ├── _filter-section.scss │ │ ├── _filter-summary.scss │ │ ├── _mobile-filters.scss │ │ └── mixins │ │ │ └── _chevron.scss │ │ ├── finder_frontend.scss │ │ └── views │ │ └── _search.scss ├── controllers │ ├── ab_test │ │ └── search_freshness_boost_ab_testable.rb │ ├── api │ │ └── autocompletes_controller.rb │ ├── application_controller.rb │ ├── development_controller.rb │ ├── email_alert_subscriptions_controller.rb │ ├── finders_controller.rb │ ├── maintenance_controller.rb │ ├── redirection_controller.rb │ └── search_controller.rb ├── helpers │ ├── application_helper.rb │ ├── input_helper.rb │ ├── page_metadata_helper.rb │ ├── title_context_helper.rb │ └── topic_finder_helper.rb ├── lib │ ├── email_alert_signup_api.rb │ ├── email_alert_title_builder.rb │ ├── facets_builder.rb │ ├── facets_iterator.rb │ ├── filters │ │ ├── checkbox_filter.rb │ │ ├── content_id_filter.rb │ │ ├── date_filter.rb │ │ ├── dropdown_select_filter.rb │ │ ├── filter.rb │ │ ├── hidden_clearable_filter.rb │ │ ├── hidden_filter.rb │ │ ├── nested_filter.rb │ │ ├── official_documents_filter.rb │ │ ├── radio_filter.rb │ │ ├── radio_filter_for_multiple_fields.rb │ │ ├── research_and_statistics_filter.rb │ │ ├── taxon_filter.rb │ │ ├── text_filter.rb │ │ └── topical_filter.rb │ ├── hash_with_deep_except.rb │ ├── healthchecks │ │ └── registries_cache.rb │ ├── metrics.rb │ ├── parameter_parser │ │ └── email_alert_parameter_parser.rb │ ├── params_cleaner.rb │ ├── registries │ │ ├── base_registries.rb │ │ ├── cacheable_registry.rb │ │ ├── full_topic_taxonomy_registry.rb │ │ ├── manuals_registry.rb │ │ ├── organisations_registry.rb │ │ ├── people_registry.rb │ │ ├── registry.rb │ │ ├── roles_registry.rb │ │ ├── topic_taxonomy_registry.rb │ │ ├── topical_events_registry.rb │ │ └── world_locations_registry.rb │ ├── search │ │ ├── facet_query_builder.rb │ │ ├── filter_query_builder.rb │ │ ├── order_query_builder.rb │ │ ├── query.rb │ │ └── query_builder.rb │ ├── services.rb │ ├── services │ │ └── email_alert_api.rb │ └── url_builder.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── checkbox_facet.rb │ ├── content_item.rb │ ├── date_facet.rb │ ├── date_input.rb │ ├── document.rb │ ├── facet.rb │ ├── filterable_facet.rb │ ├── filters.rb │ ├── hidden_clearable_facet.rb │ ├── hidden_facet.rb │ ├── keyword_facet.rb │ ├── nested_facet.rb │ ├── option_select_facet.rb │ ├── radio_facet.rb │ ├── radio_facet_for_multiple_filters.rb │ ├── result_set.rb │ ├── search_parameters.rb │ ├── sort_facet.rb │ ├── taxon_facet.rb │ └── topical_facet.rb ├── parsers │ ├── date_hash_parser.rb │ ├── date_parser.rb │ ├── date_string_parser.rb │ ├── facet_parser.rb │ └── result_set_parser.rb ├── presenters │ ├── atom_presenter.rb │ ├── entry_presenter.rb │ ├── facet_presenter.rb │ ├── facet_tag_presenter.rb │ ├── facet_tags_presenter.rb │ ├── filters_presenter.rb │ ├── finder_breadcrumbs_presenter.rb │ ├── metadata_presenter.rb │ ├── pagination_presenter.rb │ ├── result_set_presenter.rb │ ├── screen_reader_filter_description_presenter.rb │ ├── search_result_presenter.rb │ ├── signup_links_presenter.rb │ ├── signup_presenter.rb │ ├── sort_option_presenter.rb │ ├── sort_presenter.rb │ ├── spelling_suggestion_presenter.rb │ ├── statistics_metadata_presenter.rb │ ├── statistics_sort_presenter.rb │ └── subscriber_list_params_presenter.rb ├── validators │ ├── date_validator.rb │ ├── email_alert_params_validator.rb │ └── param_validator.rb └── views │ ├── components │ ├── _date_filter.html.erb │ ├── _expander.html.erb │ ├── _filter_panel.html.erb │ ├── _filter_section.html.erb │ ├── _filter_summary.html.erb │ └── docs │ │ ├── date_filter.yml │ │ ├── expander.yml │ │ ├── filter_panel.yml │ │ ├── filter_section.yml │ │ └── filter_summary.yml │ ├── development │ └── index.html.erb │ ├── email_alert_subscriptions │ └── new.html.erb │ ├── finders │ ├── _before_content.html.erb │ ├── _checkbox_facet.html.erb │ ├── _date_facet.html.erb │ ├── _dropdown_select_facet.html.erb │ ├── _facet_collection.html.erb │ ├── _facet_tags.html.erb │ ├── _filter_button.html.erb │ ├── _finder_meta.html.erb │ ├── _hidden_clearable_facet.html.erb │ ├── _hidden_facet.html.erb │ ├── _nested_facet.html.erb │ ├── _option_select_facet.html.erb │ ├── _radio_facet.html.erb │ ├── _search_results.html.erb │ ├── _show_header.html.erb │ ├── _sort_options.html.erb │ ├── _spelling_suggestion.html.erb │ ├── _taxon_facet.html.erb │ ├── all_content_finder_facets │ │ ├── _date_facet.html.erb │ │ ├── _hidden_clearable_facet.html.erb │ │ ├── _option_select_facet.html.erb │ │ ├── _sort_facet.html.erb │ │ └── _taxon_facet.html.erb │ ├── show.atom.builder │ ├── show.html.erb │ ├── show_all_content_finder.html.erb │ └── show_redirect.atom.builder │ ├── layouts │ ├── development_layout.html.erb │ ├── finder_layout.html.erb │ └── search_layout.html.erb │ ├── maintenance │ └── show.html.erb │ └── search │ ├── _search_field.html.erb │ ├── no_search_term.html.erb │ └── opensearch.xml ├── bin ├── brakeman ├── bundle ├── dev ├── rails ├── rake ├── rubocop └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cucumber.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── cors.rb │ ├── dartsass.rb │ ├── filter_parameter_logging.rb │ ├── govuk_publishing_components.rb │ ├── govuk_web_banners.rb │ ├── inflections.rb │ ├── maintenance.rb │ ├── mime_types.rb │ ├── permissions_policy.rb │ ├── prometheus.rb │ ├── sanitizer.rb │ ├── session_store.rb │ ├── wrap_parameters.rb │ └── zeitwerk.rb ├── local_content │ ├── _.json │ ├── _aaib-reports.json │ ├── _administrative-appeals-tribunal-decisions.json │ ├── _ai-assurance-techniques.json │ ├── _algorithmic-transparency-records.json │ ├── _animal-disease-cases-england.json │ ├── _armed-forces-covenant-businesses.json │ ├── _asylum-support-tribunal-decisions.json │ ├── _business-and-industry.json │ ├── _business-finance-support.json │ ├── _capital-grant-finder.json │ ├── _childcare-parenting.json │ ├── _cma-cases.json │ ├── _corporate-information.json │ ├── _crime-justice-and-law.json │ ├── _data-access-approvals-register.json │ ├── _data-ethics-guidance.json │ ├── _defence-and-armed-forces.json │ ├── _designs-decisions.json │ ├── _drug-device-alerts.json │ ├── _drug-safety-update.json │ ├── _education.json │ ├── _employment-appeal-tribunal-decisions.json │ ├── _employment-tribunal-decisions.json │ ├── _entering-staying-uk.json │ ├── _environment.json │ ├── _eu-withdrawal-act-2018-statutory-instruments.json │ ├── _european-structural-investment-funds.json │ ├── _export-health-certificates.json │ ├── _find-digital-market-research.json │ ├── _find-funding-for-land-or-farms.json │ ├── _find-hmrc-contacts.json │ ├── _find-hmrc-manuals.json │ ├── _find-licences.json │ ├── _flood-and-coastal-erosion-risk-management-research-reports.json │ ├── _going-and-being-abroad.json │ ├── _government_all.json │ ├── _government_case-studies.json │ ├── _government_groups.json │ ├── _government_people.json │ ├── _government_statistical-data-sets.json │ ├── _health-and-social-care.json │ ├── _housing-local-and-community.json │ ├── _international-development-funding.json │ ├── _international.json │ ├── _life-circumstances.json │ ├── _maib-reports.json │ ├── _marine-equipment-approved-recommendations.json │ ├── _money.json │ ├── _official-documents.json │ ├── _product-safety-alerts-reports-recalls.json │ ├── _protected-food-drink-names.json │ ├── _raib-reports.json │ ├── _regional-and-local-government.json │ ├── _research-for-development-outputs.json │ ├── _residential-property-tribunal-decisions.json │ ├── _search.json │ ├── _search_all.json │ ├── _search_guidance-and-regulation.json │ ├── _search_news-and-communications.json │ ├── _search_policy-papers-and-consultations.json │ ├── _search_research-and-statistics.json │ ├── _search_services.json │ ├── _search_transparency-and-freedom-of-information-releases.json │ ├── _service-life-saving-maritime-appliances.json │ ├── _service-standard-reports.json │ ├── _sfo-cases.json │ ├── _society-and-culture.json │ ├── _support-for-veterans.json │ ├── _tax-and-chancery-tribunal-decisions.json │ ├── _traffic-commissioner-regulatory-decisions.json │ ├── _transport.json │ ├── _welfare.json │ ├── _work.json │ ├── _world.json │ └── _world_organisations.json ├── locales │ ├── en.yml │ └── en │ │ ├── email_alert_subscriptions.yml │ │ └── finders │ │ └── search_result_presenter.yml ├── puma.rb ├── routes.rb └── secrets.yml ├── db └── seeds.rb ├── docs ├── analytics-ga4 │ └── ga4-filter-expand-collapse.md ├── assets │ ├── cma-alerts.png │ ├── filter.png │ ├── metadata.png │ ├── transparency-alerts.png │ └── transparency-email-alerts.png ├── developing-a-finder.md ├── faceted-search.md ├── finder-content-item.md ├── finder-email-alerts.md ├── how-search-works.md ├── registries.md └── search-apis.md ├── features ├── all_content_finder.feature ├── finders.feature ├── fixtures │ ├── aaib_reports_example.json │ ├── all_content.json │ ├── bad_input_email_signup.json │ ├── cma_cases_content_item.json │ ├── cma_cases_signup_content_item.json │ ├── cma_cases_with_multi_facets_signup_content_item.json │ ├── level_one_taxon.json │ ├── news_and_communications.json │ ├── news_and_communications_signup_content_item.json │ ├── news_and_communications_with_checkboxes.json │ ├── official_documents.json │ ├── policy_and_engagement.json │ ├── policy_papers_and_consultations_email_signup.json │ ├── research_and_statistics_email_signup.json │ ├── services.json │ └── statistics.json ├── step_definitions │ ├── all_content_finder_steps.rb │ ├── filtering_steps.rb │ └── search_steps.rb └── support │ ├── document_helper.rb │ ├── env.rb │ └── rummager_url_helper.rb ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── cucumber.rake │ ├── jasmine.rake │ ├── lint.rake │ └── registries.rake ├── log └── .keep ├── package.json ├── procfile.dev ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script └── cucumber ├── spec ├── components │ ├── all_components_spec.rb │ ├── date_filter_spec.rb │ ├── expander_spec.rb │ ├── filter_panel_spec.rb │ ├── filter_section_spec.rb │ └── filter_summary_spec.rb ├── controllers │ ├── email_alert_subscriptions_controller_spec.rb │ ├── finders_controller_spec.rb │ ├── redirection_controller_spec.rb │ └── search_controller_spec.rb ├── factories │ ├── content_item.rb │ ├── date_facet.rb │ ├── document.rb │ ├── document_hash.rb │ ├── level_one_taxon_hash.rb │ ├── nested_facet.rb │ ├── option_select_facet.rb │ ├── root_taxon_hash.rb │ └── taxon_hash.rb ├── helpers │ ├── input_helper_spec.rb │ ├── page_metadata_helper_spec.rb │ ├── title_context_helper_spec.rb │ └── topic_finder_helper_spec.rb ├── javascripts │ ├── components │ │ ├── expander-spec.js │ │ └── filter-panel-spec.js │ ├── dummy_spec.js │ ├── live_search_spec.js │ ├── modules │ │ ├── all-content-finder.spec.js │ │ ├── mobile-filters-modal.spec.js │ │ ├── nested-facets-spec.js │ │ └── remove-filter-spec.js │ ├── taxonomy_select_spec.js │ └── vendor │ │ ├── jasmine-ajax-3.4.0.js │ │ └── jquery-1.12.4.js ├── lib │ ├── email_alert_signup_api_spec.rb │ ├── email_alert_title_builder_spec.rb │ ├── facets_builder_spec.rb │ ├── facets_iterator_spec.rb │ ├── filters │ │ ├── date_filter_spec.rb │ │ ├── nested_filter_spec.rb │ │ ├── official_documents_filter_spec.rb │ │ ├── radio_filter_for_multiple_fields_spec.rb │ │ ├── radio_filter_spec.rb │ │ ├── research_and_statistics_filter_spec.rb │ │ └── text_filter_spec.rb │ ├── hash_with_deep_except_spec.rb │ ├── healthchecks │ │ └── registries_cache_spec.rb │ ├── metrics_spec.rb │ ├── parameter_parser │ │ └── email_alert_parameter_parser_spec.rb │ ├── params_cleaner_spec.rb │ ├── registries │ │ ├── base_registries_spec.rb │ │ ├── full_topic_taxonomy_registry_spec.rb │ │ ├── manuals_registry_spec.rb │ │ ├── organisations_registry_spec.rb │ │ ├── people_registry_spec.rb │ │ ├── registry_spec.rb │ │ ├── roles_registry_spec.rb │ │ ├── topic_taxonomy_registry_spec.rb │ │ └── world_locations_registry_spec.rb │ ├── search │ │ ├── query_builder_spec.rb │ │ └── query_spec.rb │ ├── services │ │ └── email_alert_api_spec.rb │ └── url_builder_spec.rb ├── models │ ├── checkbox_facet_spec.rb │ ├── content_item_spec.rb │ ├── date_facet_spec.rb │ ├── date_input_spec.rb │ ├── document_spec.rb │ ├── filterable_facet_spec.rb │ ├── hidden_clearable_facet_spec.rb │ ├── hidden_facet_spec.rb │ ├── keyword_facet_spec.rb │ ├── nested_facet_spec.rb │ ├── option_select_facet_spec.rb │ ├── radio_facet_for_multiple_filters_spec.rb │ ├── radio_facet_spec.rb │ ├── search_parameters_spec.rb │ ├── sort_facet_spec.rb │ ├── taxon_facet_spec.rb │ └── topical_facet_spec.rb ├── parsers │ ├── date_hash_parser_spec.rb │ ├── date_parser_spec.rb │ ├── date_string_parser_spec.rb │ ├── facet_parser_spec.rb │ └── result_set_parser_spec.rb ├── presenters │ ├── atom_presenter_spec.rb │ ├── entry_presenter_spec.rb │ ├── facet_presenter_spec.rb │ ├── facet_tag_presenter_spec.rb │ ├── facet_tags_presenter_spec.rb │ ├── filters_presenter_spec.rb │ ├── finder_breadcrumbs_presenter_spec.rb │ ├── helpers │ │ └── facets_helper.rb │ ├── metadata_presenter_spec.rb │ ├── pagination_presenter_spec.rb │ ├── result_set_presenter_spec.rb │ ├── screen_reader_filter_description_presenter_spec.rb │ ├── search_result_presenter_spec.rb │ ├── signup_links_presenter_spec.rb │ ├── signup_presenter_spec.rb │ ├── sort_option_presenter_spec.rb │ ├── sort_presenter_spec.rb │ ├── spelling_suggestion_presenter_spec.rb │ ├── statistics_metadata_presenter_spec.rb │ ├── statistics_sort_presenter_spec.rb │ └── subscriber_list_params_presenter_spec.rb ├── requests │ ├── api │ │ └── autocomplete_spec.rb │ └── maintenance_spec.rb ├── routing │ ├── maintenance_spec.rb │ └── redirection_spec.rb ├── spec_helper.rb ├── support │ ├── content_helper.rb │ ├── fixtures_helper.rb │ ├── jasmine-browser.json │ ├── registry_helper.rb │ └── taxonomy_helper.rb └── validators │ ├── date_validator_spec.rb │ └── param_validator_spec.rb ├── startup.sh ├── vendor └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/copy-pr-template-to-dependabot-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.github/workflows/copy-pr-template-to-dependabot-prs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.github/workflows/rspec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.govuk_dependabot_merger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.govuk_dependabot_merger.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.2 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/mail-icon-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/images/mail-icon-retina.png -------------------------------------------------------------------------------- /app/assets/images/mail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/images/mail-icon.png -------------------------------------------------------------------------------- /app/assets/images/search/search-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/images/search/search-button.png -------------------------------------------------------------------------------- /app/assets/images/toggle-sprite-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/images/toggle-sprite-horizontal.png -------------------------------------------------------------------------------- /app/assets/images/toggle-sprite-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/images/toggle-sprite-retina.png -------------------------------------------------------------------------------- /app/assets/images/toggle-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/images/toggle-sprite.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/components/expander.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/components/expander.js -------------------------------------------------------------------------------- /app/assets/javascripts/components/filter-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/components/filter-panel.js -------------------------------------------------------------------------------- /app/assets/javascripts/live_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/live_search.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/all-content-finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/modules/all-content-finder.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/mobile-filters-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/modules/mobile-filters-modal.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/nested-facets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/modules/nested-facets.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/remove-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/modules/remove-filter.js -------------------------------------------------------------------------------- /app/assets/javascripts/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/support.js -------------------------------------------------------------------------------- /app/assets/javascripts/taxonomy-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/taxonomy-select.js -------------------------------------------------------------------------------- /app/assets/javascripts/test-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/javascripts/test-dependencies.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_expander.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/stylesheets/components/_expander.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_filter-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/stylesheets/components/_filter-panel.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_filter-section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/stylesheets/components/_filter-section.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_filter-summary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/stylesheets/components/_filter-summary.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_mobile-filters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/stylesheets/components/_mobile-filters.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/mixins/_chevron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/stylesheets/components/mixins/_chevron.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/finder_frontend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/stylesheets/finder_frontend.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/assets/stylesheets/views/_search.scss -------------------------------------------------------------------------------- /app/controllers/ab_test/search_freshness_boost_ab_testable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/controllers/ab_test/search_freshness_boost_ab_testable.rb -------------------------------------------------------------------------------- /app/controllers/api/autocompletes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/controllers/api/autocompletes_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/development_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/controllers/development_controller.rb -------------------------------------------------------------------------------- /app/controllers/email_alert_subscriptions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/controllers/email_alert_subscriptions_controller.rb -------------------------------------------------------------------------------- /app/controllers/finders_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/controllers/finders_controller.rb -------------------------------------------------------------------------------- /app/controllers/maintenance_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/controllers/maintenance_controller.rb -------------------------------------------------------------------------------- /app/controllers/redirection_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/controllers/redirection_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/input_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/helpers/input_helper.rb -------------------------------------------------------------------------------- /app/helpers/page_metadata_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/helpers/page_metadata_helper.rb -------------------------------------------------------------------------------- /app/helpers/title_context_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/helpers/title_context_helper.rb -------------------------------------------------------------------------------- /app/helpers/topic_finder_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/helpers/topic_finder_helper.rb -------------------------------------------------------------------------------- /app/lib/email_alert_signup_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/email_alert_signup_api.rb -------------------------------------------------------------------------------- /app/lib/email_alert_title_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/email_alert_title_builder.rb -------------------------------------------------------------------------------- /app/lib/facets_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/facets_builder.rb -------------------------------------------------------------------------------- /app/lib/facets_iterator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/facets_iterator.rb -------------------------------------------------------------------------------- /app/lib/filters/checkbox_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/checkbox_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/content_id_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/content_id_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/date_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/date_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/dropdown_select_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/dropdown_select_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/filter.rb -------------------------------------------------------------------------------- /app/lib/filters/hidden_clearable_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/hidden_clearable_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/hidden_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/hidden_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/nested_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/nested_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/official_documents_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/official_documents_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/radio_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/radio_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/radio_filter_for_multiple_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/radio_filter_for_multiple_fields.rb -------------------------------------------------------------------------------- /app/lib/filters/research_and_statistics_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/research_and_statistics_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/taxon_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/taxon_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/text_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/text_filter.rb -------------------------------------------------------------------------------- /app/lib/filters/topical_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/filters/topical_filter.rb -------------------------------------------------------------------------------- /app/lib/hash_with_deep_except.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/hash_with_deep_except.rb -------------------------------------------------------------------------------- /app/lib/healthchecks/registries_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/healthchecks/registries_cache.rb -------------------------------------------------------------------------------- /app/lib/metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/metrics.rb -------------------------------------------------------------------------------- /app/lib/parameter_parser/email_alert_parameter_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/parameter_parser/email_alert_parameter_parser.rb -------------------------------------------------------------------------------- /app/lib/params_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/params_cleaner.rb -------------------------------------------------------------------------------- /app/lib/registries/base_registries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/base_registries.rb -------------------------------------------------------------------------------- /app/lib/registries/cacheable_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/cacheable_registry.rb -------------------------------------------------------------------------------- /app/lib/registries/full_topic_taxonomy_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/full_topic_taxonomy_registry.rb -------------------------------------------------------------------------------- /app/lib/registries/manuals_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/manuals_registry.rb -------------------------------------------------------------------------------- /app/lib/registries/organisations_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/organisations_registry.rb -------------------------------------------------------------------------------- /app/lib/registries/people_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/people_registry.rb -------------------------------------------------------------------------------- /app/lib/registries/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/registry.rb -------------------------------------------------------------------------------- /app/lib/registries/roles_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/roles_registry.rb -------------------------------------------------------------------------------- /app/lib/registries/topic_taxonomy_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/topic_taxonomy_registry.rb -------------------------------------------------------------------------------- /app/lib/registries/topical_events_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/topical_events_registry.rb -------------------------------------------------------------------------------- /app/lib/registries/world_locations_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/registries/world_locations_registry.rb -------------------------------------------------------------------------------- /app/lib/search/facet_query_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/search/facet_query_builder.rb -------------------------------------------------------------------------------- /app/lib/search/filter_query_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/search/filter_query_builder.rb -------------------------------------------------------------------------------- /app/lib/search/order_query_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/search/order_query_builder.rb -------------------------------------------------------------------------------- /app/lib/search/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/search/query.rb -------------------------------------------------------------------------------- /app/lib/search/query_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/search/query_builder.rb -------------------------------------------------------------------------------- /app/lib/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/services.rb -------------------------------------------------------------------------------- /app/lib/services/email_alert_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/services/email_alert_api.rb -------------------------------------------------------------------------------- /app/lib/url_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/lib/url_builder.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/checkbox_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/checkbox_facet.rb -------------------------------------------------------------------------------- /app/models/content_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/content_item.rb -------------------------------------------------------------------------------- /app/models/date_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/date_facet.rb -------------------------------------------------------------------------------- /app/models/date_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/date_input.rb -------------------------------------------------------------------------------- /app/models/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/document.rb -------------------------------------------------------------------------------- /app/models/facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/facet.rb -------------------------------------------------------------------------------- /app/models/filterable_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/filterable_facet.rb -------------------------------------------------------------------------------- /app/models/filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/filters.rb -------------------------------------------------------------------------------- /app/models/hidden_clearable_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/hidden_clearable_facet.rb -------------------------------------------------------------------------------- /app/models/hidden_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/hidden_facet.rb -------------------------------------------------------------------------------- /app/models/keyword_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/keyword_facet.rb -------------------------------------------------------------------------------- /app/models/nested_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/nested_facet.rb -------------------------------------------------------------------------------- /app/models/option_select_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/option_select_facet.rb -------------------------------------------------------------------------------- /app/models/radio_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/radio_facet.rb -------------------------------------------------------------------------------- /app/models/radio_facet_for_multiple_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/radio_facet_for_multiple_filters.rb -------------------------------------------------------------------------------- /app/models/result_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/result_set.rb -------------------------------------------------------------------------------- /app/models/search_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/search_parameters.rb -------------------------------------------------------------------------------- /app/models/sort_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/sort_facet.rb -------------------------------------------------------------------------------- /app/models/taxon_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/taxon_facet.rb -------------------------------------------------------------------------------- /app/models/topical_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/models/topical_facet.rb -------------------------------------------------------------------------------- /app/parsers/date_hash_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/parsers/date_hash_parser.rb -------------------------------------------------------------------------------- /app/parsers/date_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/parsers/date_parser.rb -------------------------------------------------------------------------------- /app/parsers/date_string_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/parsers/date_string_parser.rb -------------------------------------------------------------------------------- /app/parsers/facet_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/parsers/facet_parser.rb -------------------------------------------------------------------------------- /app/parsers/result_set_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/parsers/result_set_parser.rb -------------------------------------------------------------------------------- /app/presenters/atom_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/atom_presenter.rb -------------------------------------------------------------------------------- /app/presenters/entry_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/entry_presenter.rb -------------------------------------------------------------------------------- /app/presenters/facet_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/facet_presenter.rb -------------------------------------------------------------------------------- /app/presenters/facet_tag_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/facet_tag_presenter.rb -------------------------------------------------------------------------------- /app/presenters/facet_tags_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/facet_tags_presenter.rb -------------------------------------------------------------------------------- /app/presenters/filters_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/filters_presenter.rb -------------------------------------------------------------------------------- /app/presenters/finder_breadcrumbs_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/finder_breadcrumbs_presenter.rb -------------------------------------------------------------------------------- /app/presenters/metadata_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/metadata_presenter.rb -------------------------------------------------------------------------------- /app/presenters/pagination_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/pagination_presenter.rb -------------------------------------------------------------------------------- /app/presenters/result_set_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/result_set_presenter.rb -------------------------------------------------------------------------------- /app/presenters/screen_reader_filter_description_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/screen_reader_filter_description_presenter.rb -------------------------------------------------------------------------------- /app/presenters/search_result_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/search_result_presenter.rb -------------------------------------------------------------------------------- /app/presenters/signup_links_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/signup_links_presenter.rb -------------------------------------------------------------------------------- /app/presenters/signup_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/signup_presenter.rb -------------------------------------------------------------------------------- /app/presenters/sort_option_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/sort_option_presenter.rb -------------------------------------------------------------------------------- /app/presenters/sort_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/sort_presenter.rb -------------------------------------------------------------------------------- /app/presenters/spelling_suggestion_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/spelling_suggestion_presenter.rb -------------------------------------------------------------------------------- /app/presenters/statistics_metadata_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/statistics_metadata_presenter.rb -------------------------------------------------------------------------------- /app/presenters/statistics_sort_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/statistics_sort_presenter.rb -------------------------------------------------------------------------------- /app/presenters/subscriber_list_params_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/presenters/subscriber_list_params_presenter.rb -------------------------------------------------------------------------------- /app/validators/date_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/validators/date_validator.rb -------------------------------------------------------------------------------- /app/validators/email_alert_params_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/validators/email_alert_params_validator.rb -------------------------------------------------------------------------------- /app/validators/param_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/validators/param_validator.rb -------------------------------------------------------------------------------- /app/views/components/_date_filter.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/_date_filter.html.erb -------------------------------------------------------------------------------- /app/views/components/_expander.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/_expander.html.erb -------------------------------------------------------------------------------- /app/views/components/_filter_panel.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/_filter_panel.html.erb -------------------------------------------------------------------------------- /app/views/components/_filter_section.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/_filter_section.html.erb -------------------------------------------------------------------------------- /app/views/components/_filter_summary.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/_filter_summary.html.erb -------------------------------------------------------------------------------- /app/views/components/docs/date_filter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/docs/date_filter.yml -------------------------------------------------------------------------------- /app/views/components/docs/expander.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/docs/expander.yml -------------------------------------------------------------------------------- /app/views/components/docs/filter_panel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/docs/filter_panel.yml -------------------------------------------------------------------------------- /app/views/components/docs/filter_section.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/docs/filter_section.yml -------------------------------------------------------------------------------- /app/views/components/docs/filter_summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/components/docs/filter_summary.yml -------------------------------------------------------------------------------- /app/views/development/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/development/index.html.erb -------------------------------------------------------------------------------- /app/views/email_alert_subscriptions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/email_alert_subscriptions/new.html.erb -------------------------------------------------------------------------------- /app/views/finders/_before_content.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_before_content.html.erb -------------------------------------------------------------------------------- /app/views/finders/_checkbox_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_checkbox_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/_date_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_date_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/_dropdown_select_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_dropdown_select_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/_facet_collection.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_facet_collection.html.erb -------------------------------------------------------------------------------- /app/views/finders/_facet_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_facet_tags.html.erb -------------------------------------------------------------------------------- /app/views/finders/_filter_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_filter_button.html.erb -------------------------------------------------------------------------------- /app/views/finders/_finder_meta.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_finder_meta.html.erb -------------------------------------------------------------------------------- /app/views/finders/_hidden_clearable_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_hidden_clearable_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/_hidden_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_hidden_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/_nested_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_nested_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/_option_select_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_option_select_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/_radio_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_radio_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/_search_results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_search_results.html.erb -------------------------------------------------------------------------------- /app/views/finders/_show_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_show_header.html.erb -------------------------------------------------------------------------------- /app/views/finders/_sort_options.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_sort_options.html.erb -------------------------------------------------------------------------------- /app/views/finders/_spelling_suggestion.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_spelling_suggestion.html.erb -------------------------------------------------------------------------------- /app/views/finders/_taxon_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/_taxon_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/all_content_finder_facets/_date_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/all_content_finder_facets/_date_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/all_content_finder_facets/_hidden_clearable_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/all_content_finder_facets/_hidden_clearable_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/all_content_finder_facets/_option_select_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/all_content_finder_facets/_option_select_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/all_content_finder_facets/_sort_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/all_content_finder_facets/_sort_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/all_content_finder_facets/_taxon_facet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/all_content_finder_facets/_taxon_facet.html.erb -------------------------------------------------------------------------------- /app/views/finders/show.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/show.atom.builder -------------------------------------------------------------------------------- /app/views/finders/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/show.html.erb -------------------------------------------------------------------------------- /app/views/finders/show_all_content_finder.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/show_all_content_finder.html.erb -------------------------------------------------------------------------------- /app/views/finders/show_redirect.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/finders/show_redirect.atom.builder -------------------------------------------------------------------------------- /app/views/layouts/development_layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/layouts/development_layout.html.erb -------------------------------------------------------------------------------- /app/views/layouts/finder_layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/layouts/finder_layout.html.erb -------------------------------------------------------------------------------- /app/views/layouts/search_layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/layouts/search_layout.html.erb -------------------------------------------------------------------------------- /app/views/maintenance/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/maintenance/show.html.erb -------------------------------------------------------------------------------- /app/views/search/_search_field.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/search/_search_field.html.erb -------------------------------------------------------------------------------- /app/views/search/no_search_term.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/search/no_search_term.html.erb -------------------------------------------------------------------------------- /app/views/search/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/app/views/search/opensearch.xml -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- 1 | GovukContentSecurityPolicy.configure 2 | -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/dartsass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/dartsass.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/govuk_publishing_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/govuk_publishing_components.rb -------------------------------------------------------------------------------- /config/initializers/govuk_web_banners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/govuk_web_banners.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/maintenance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/maintenance.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/prometheus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/prometheus.rb -------------------------------------------------------------------------------- /config/initializers/sanitizer.rb: -------------------------------------------------------------------------------- 1 | Rails::Html::WhiteListSanitizer.allowed_tags << "mark" 2 | -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/initializers/zeitwerk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/initializers/zeitwerk.rb -------------------------------------------------------------------------------- /config/local_content/_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_.json -------------------------------------------------------------------------------- /config/local_content/_aaib-reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_aaib-reports.json -------------------------------------------------------------------------------- /config/local_content/_administrative-appeals-tribunal-decisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_administrative-appeals-tribunal-decisions.json -------------------------------------------------------------------------------- /config/local_content/_ai-assurance-techniques.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_ai-assurance-techniques.json -------------------------------------------------------------------------------- /config/local_content/_algorithmic-transparency-records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_algorithmic-transparency-records.json -------------------------------------------------------------------------------- /config/local_content/_animal-disease-cases-england.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_animal-disease-cases-england.json -------------------------------------------------------------------------------- /config/local_content/_armed-forces-covenant-businesses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_armed-forces-covenant-businesses.json -------------------------------------------------------------------------------- /config/local_content/_asylum-support-tribunal-decisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_asylum-support-tribunal-decisions.json -------------------------------------------------------------------------------- /config/local_content/_business-and-industry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_business-and-industry.json -------------------------------------------------------------------------------- /config/local_content/_business-finance-support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_business-finance-support.json -------------------------------------------------------------------------------- /config/local_content/_capital-grant-finder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_capital-grant-finder.json -------------------------------------------------------------------------------- /config/local_content/_childcare-parenting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_childcare-parenting.json -------------------------------------------------------------------------------- /config/local_content/_cma-cases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_cma-cases.json -------------------------------------------------------------------------------- /config/local_content/_corporate-information.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_corporate-information.json -------------------------------------------------------------------------------- /config/local_content/_crime-justice-and-law.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_crime-justice-and-law.json -------------------------------------------------------------------------------- /config/local_content/_data-access-approvals-register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_data-access-approvals-register.json -------------------------------------------------------------------------------- /config/local_content/_data-ethics-guidance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_data-ethics-guidance.json -------------------------------------------------------------------------------- /config/local_content/_defence-and-armed-forces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_defence-and-armed-forces.json -------------------------------------------------------------------------------- /config/local_content/_designs-decisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_designs-decisions.json -------------------------------------------------------------------------------- /config/local_content/_drug-device-alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_drug-device-alerts.json -------------------------------------------------------------------------------- /config/local_content/_drug-safety-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_drug-safety-update.json -------------------------------------------------------------------------------- /config/local_content/_education.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_education.json -------------------------------------------------------------------------------- /config/local_content/_employment-appeal-tribunal-decisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_employment-appeal-tribunal-decisions.json -------------------------------------------------------------------------------- /config/local_content/_employment-tribunal-decisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_employment-tribunal-decisions.json -------------------------------------------------------------------------------- /config/local_content/_entering-staying-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_entering-staying-uk.json -------------------------------------------------------------------------------- /config/local_content/_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_environment.json -------------------------------------------------------------------------------- /config/local_content/_eu-withdrawal-act-2018-statutory-instruments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_eu-withdrawal-act-2018-statutory-instruments.json -------------------------------------------------------------------------------- /config/local_content/_european-structural-investment-funds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_european-structural-investment-funds.json -------------------------------------------------------------------------------- /config/local_content/_export-health-certificates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_export-health-certificates.json -------------------------------------------------------------------------------- /config/local_content/_find-digital-market-research.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_find-digital-market-research.json -------------------------------------------------------------------------------- /config/local_content/_find-funding-for-land-or-farms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_find-funding-for-land-or-farms.json -------------------------------------------------------------------------------- /config/local_content/_find-hmrc-contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_find-hmrc-contacts.json -------------------------------------------------------------------------------- /config/local_content/_find-hmrc-manuals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_find-hmrc-manuals.json -------------------------------------------------------------------------------- /config/local_content/_find-licences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_find-licences.json -------------------------------------------------------------------------------- /config/local_content/_flood-and-coastal-erosion-risk-management-research-reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_flood-and-coastal-erosion-risk-management-research-reports.json -------------------------------------------------------------------------------- /config/local_content/_going-and-being-abroad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_going-and-being-abroad.json -------------------------------------------------------------------------------- /config/local_content/_government_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_government_all.json -------------------------------------------------------------------------------- /config/local_content/_government_case-studies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_government_case-studies.json -------------------------------------------------------------------------------- /config/local_content/_government_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_government_groups.json -------------------------------------------------------------------------------- /config/local_content/_government_people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_government_people.json -------------------------------------------------------------------------------- /config/local_content/_government_statistical-data-sets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_government_statistical-data-sets.json -------------------------------------------------------------------------------- /config/local_content/_health-and-social-care.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_health-and-social-care.json -------------------------------------------------------------------------------- /config/local_content/_housing-local-and-community.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_housing-local-and-community.json -------------------------------------------------------------------------------- /config/local_content/_international-development-funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_international-development-funding.json -------------------------------------------------------------------------------- /config/local_content/_international.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_international.json -------------------------------------------------------------------------------- /config/local_content/_life-circumstances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_life-circumstances.json -------------------------------------------------------------------------------- /config/local_content/_maib-reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_maib-reports.json -------------------------------------------------------------------------------- /config/local_content/_marine-equipment-approved-recommendations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_marine-equipment-approved-recommendations.json -------------------------------------------------------------------------------- /config/local_content/_money.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_money.json -------------------------------------------------------------------------------- /config/local_content/_official-documents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_official-documents.json -------------------------------------------------------------------------------- /config/local_content/_product-safety-alerts-reports-recalls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_product-safety-alerts-reports-recalls.json -------------------------------------------------------------------------------- /config/local_content/_protected-food-drink-names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_protected-food-drink-names.json -------------------------------------------------------------------------------- /config/local_content/_raib-reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_raib-reports.json -------------------------------------------------------------------------------- /config/local_content/_regional-and-local-government.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_regional-and-local-government.json -------------------------------------------------------------------------------- /config/local_content/_research-for-development-outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_research-for-development-outputs.json -------------------------------------------------------------------------------- /config/local_content/_residential-property-tribunal-decisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_residential-property-tribunal-decisions.json -------------------------------------------------------------------------------- /config/local_content/_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_search.json -------------------------------------------------------------------------------- /config/local_content/_search_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_search_all.json -------------------------------------------------------------------------------- /config/local_content/_search_guidance-and-regulation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_search_guidance-and-regulation.json -------------------------------------------------------------------------------- /config/local_content/_search_news-and-communications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_search_news-and-communications.json -------------------------------------------------------------------------------- /config/local_content/_search_policy-papers-and-consultations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_search_policy-papers-and-consultations.json -------------------------------------------------------------------------------- /config/local_content/_search_research-and-statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_search_research-and-statistics.json -------------------------------------------------------------------------------- /config/local_content/_search_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_search_services.json -------------------------------------------------------------------------------- /config/local_content/_search_transparency-and-freedom-of-information-releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_search_transparency-and-freedom-of-information-releases.json -------------------------------------------------------------------------------- /config/local_content/_service-life-saving-maritime-appliances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_service-life-saving-maritime-appliances.json -------------------------------------------------------------------------------- /config/local_content/_service-standard-reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_service-standard-reports.json -------------------------------------------------------------------------------- /config/local_content/_sfo-cases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_sfo-cases.json -------------------------------------------------------------------------------- /config/local_content/_society-and-culture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_society-and-culture.json -------------------------------------------------------------------------------- /config/local_content/_support-for-veterans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_support-for-veterans.json -------------------------------------------------------------------------------- /config/local_content/_tax-and-chancery-tribunal-decisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_tax-and-chancery-tribunal-decisions.json -------------------------------------------------------------------------------- /config/local_content/_traffic-commissioner-regulatory-decisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_traffic-commissioner-regulatory-decisions.json -------------------------------------------------------------------------------- /config/local_content/_transport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_transport.json -------------------------------------------------------------------------------- /config/local_content/_welfare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_welfare.json -------------------------------------------------------------------------------- /config/local_content/_work.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_work.json -------------------------------------------------------------------------------- /config/local_content/_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_world.json -------------------------------------------------------------------------------- /config/local_content/_world_organisations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/local_content/_world_organisations.json -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/en/email_alert_subscriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/locales/en/email_alert_subscriptions.yml -------------------------------------------------------------------------------- /config/locales/en/finders/search_result_presenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/locales/en/finders/search_result_presenter.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/analytics-ga4/ga4-filter-expand-collapse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/analytics-ga4/ga4-filter-expand-collapse.md -------------------------------------------------------------------------------- /docs/assets/cma-alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/assets/cma-alerts.png -------------------------------------------------------------------------------- /docs/assets/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/assets/filter.png -------------------------------------------------------------------------------- /docs/assets/metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/assets/metadata.png -------------------------------------------------------------------------------- /docs/assets/transparency-alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/assets/transparency-alerts.png -------------------------------------------------------------------------------- /docs/assets/transparency-email-alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/assets/transparency-email-alerts.png -------------------------------------------------------------------------------- /docs/developing-a-finder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/developing-a-finder.md -------------------------------------------------------------------------------- /docs/faceted-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/faceted-search.md -------------------------------------------------------------------------------- /docs/finder-content-item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/finder-content-item.md -------------------------------------------------------------------------------- /docs/finder-email-alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/finder-email-alerts.md -------------------------------------------------------------------------------- /docs/how-search-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/how-search-works.md -------------------------------------------------------------------------------- /docs/registries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/registries.md -------------------------------------------------------------------------------- /docs/search-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/docs/search-apis.md -------------------------------------------------------------------------------- /features/all_content_finder.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/all_content_finder.feature -------------------------------------------------------------------------------- /features/finders.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/finders.feature -------------------------------------------------------------------------------- /features/fixtures/aaib_reports_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/aaib_reports_example.json -------------------------------------------------------------------------------- /features/fixtures/all_content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/all_content.json -------------------------------------------------------------------------------- /features/fixtures/bad_input_email_signup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/bad_input_email_signup.json -------------------------------------------------------------------------------- /features/fixtures/cma_cases_content_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/cma_cases_content_item.json -------------------------------------------------------------------------------- /features/fixtures/cma_cases_signup_content_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/cma_cases_signup_content_item.json -------------------------------------------------------------------------------- /features/fixtures/cma_cases_with_multi_facets_signup_content_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/cma_cases_with_multi_facets_signup_content_item.json -------------------------------------------------------------------------------- /features/fixtures/level_one_taxon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/level_one_taxon.json -------------------------------------------------------------------------------- /features/fixtures/news_and_communications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/news_and_communications.json -------------------------------------------------------------------------------- /features/fixtures/news_and_communications_signup_content_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/news_and_communications_signup_content_item.json -------------------------------------------------------------------------------- /features/fixtures/news_and_communications_with_checkboxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/news_and_communications_with_checkboxes.json -------------------------------------------------------------------------------- /features/fixtures/official_documents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/official_documents.json -------------------------------------------------------------------------------- /features/fixtures/policy_and_engagement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/policy_and_engagement.json -------------------------------------------------------------------------------- /features/fixtures/policy_papers_and_consultations_email_signup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/policy_papers_and_consultations_email_signup.json -------------------------------------------------------------------------------- /features/fixtures/research_and_statistics_email_signup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/research_and_statistics_email_signup.json -------------------------------------------------------------------------------- /features/fixtures/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/services.json -------------------------------------------------------------------------------- /features/fixtures/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/fixtures/statistics.json -------------------------------------------------------------------------------- /features/step_definitions/all_content_finder_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/step_definitions/all_content_finder_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/filtering_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/step_definitions/filtering_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/search_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/step_definitions/search_steps.rb -------------------------------------------------------------------------------- /features/support/document_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/support/document_helper.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/rummager_url_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/features/support/rummager_url_helper.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /lib/tasks/jasmine.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/lib/tasks/jasmine.rake -------------------------------------------------------------------------------- /lib/tasks/lint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/lib/tasks/lint.rake -------------------------------------------------------------------------------- /lib/tasks/registries.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/lib/tasks/registries.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/package.json -------------------------------------------------------------------------------- /procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/procfile.dev -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/script/cucumber -------------------------------------------------------------------------------- /spec/components/all_components_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/components/all_components_spec.rb -------------------------------------------------------------------------------- /spec/components/date_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/components/date_filter_spec.rb -------------------------------------------------------------------------------- /spec/components/expander_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/components/expander_spec.rb -------------------------------------------------------------------------------- /spec/components/filter_panel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/components/filter_panel_spec.rb -------------------------------------------------------------------------------- /spec/components/filter_section_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/components/filter_section_spec.rb -------------------------------------------------------------------------------- /spec/components/filter_summary_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/components/filter_summary_spec.rb -------------------------------------------------------------------------------- /spec/controllers/email_alert_subscriptions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/controllers/email_alert_subscriptions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/finders_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/controllers/finders_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/redirection_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/controllers/redirection_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/search_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/controllers/search_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/content_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/factories/content_item.rb -------------------------------------------------------------------------------- /spec/factories/date_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/factories/date_facet.rb -------------------------------------------------------------------------------- /spec/factories/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/factories/document.rb -------------------------------------------------------------------------------- /spec/factories/document_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/factories/document_hash.rb -------------------------------------------------------------------------------- /spec/factories/level_one_taxon_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/factories/level_one_taxon_hash.rb -------------------------------------------------------------------------------- /spec/factories/nested_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/factories/nested_facet.rb -------------------------------------------------------------------------------- /spec/factories/option_select_facet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/factories/option_select_facet.rb -------------------------------------------------------------------------------- /spec/factories/root_taxon_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/factories/root_taxon_hash.rb -------------------------------------------------------------------------------- /spec/factories/taxon_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/factories/taxon_hash.rb -------------------------------------------------------------------------------- /spec/helpers/input_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/helpers/input_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/page_metadata_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/helpers/page_metadata_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/title_context_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/helpers/title_context_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/topic_finder_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/helpers/topic_finder_helper_spec.rb -------------------------------------------------------------------------------- /spec/javascripts/components/expander-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/components/expander-spec.js -------------------------------------------------------------------------------- /spec/javascripts/components/filter-panel-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/components/filter-panel-spec.js -------------------------------------------------------------------------------- /spec/javascripts/dummy_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/dummy_spec.js -------------------------------------------------------------------------------- /spec/javascripts/live_search_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/live_search_spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/all-content-finder.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/modules/all-content-finder.spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/mobile-filters-modal.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/modules/mobile-filters-modal.spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/nested-facets-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/modules/nested-facets-spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/remove-filter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/modules/remove-filter-spec.js -------------------------------------------------------------------------------- /spec/javascripts/taxonomy_select_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/taxonomy_select_spec.js -------------------------------------------------------------------------------- /spec/javascripts/vendor/jasmine-ajax-3.4.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/vendor/jasmine-ajax-3.4.0.js -------------------------------------------------------------------------------- /spec/javascripts/vendor/jquery-1.12.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/javascripts/vendor/jquery-1.12.4.js -------------------------------------------------------------------------------- /spec/lib/email_alert_signup_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/email_alert_signup_api_spec.rb -------------------------------------------------------------------------------- /spec/lib/email_alert_title_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/email_alert_title_builder_spec.rb -------------------------------------------------------------------------------- /spec/lib/facets_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/facets_builder_spec.rb -------------------------------------------------------------------------------- /spec/lib/facets_iterator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/facets_iterator_spec.rb -------------------------------------------------------------------------------- /spec/lib/filters/date_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/filters/date_filter_spec.rb -------------------------------------------------------------------------------- /spec/lib/filters/nested_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/filters/nested_filter_spec.rb -------------------------------------------------------------------------------- /spec/lib/filters/official_documents_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/filters/official_documents_filter_spec.rb -------------------------------------------------------------------------------- /spec/lib/filters/radio_filter_for_multiple_fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/filters/radio_filter_for_multiple_fields_spec.rb -------------------------------------------------------------------------------- /spec/lib/filters/radio_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/filters/radio_filter_spec.rb -------------------------------------------------------------------------------- /spec/lib/filters/research_and_statistics_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/filters/research_and_statistics_filter_spec.rb -------------------------------------------------------------------------------- /spec/lib/filters/text_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/filters/text_filter_spec.rb -------------------------------------------------------------------------------- /spec/lib/hash_with_deep_except_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/hash_with_deep_except_spec.rb -------------------------------------------------------------------------------- /spec/lib/healthchecks/registries_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/healthchecks/registries_cache_spec.rb -------------------------------------------------------------------------------- /spec/lib/metrics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/metrics_spec.rb -------------------------------------------------------------------------------- /spec/lib/parameter_parser/email_alert_parameter_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/parameter_parser/email_alert_parameter_parser_spec.rb -------------------------------------------------------------------------------- /spec/lib/params_cleaner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/params_cleaner_spec.rb -------------------------------------------------------------------------------- /spec/lib/registries/base_registries_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/registries/base_registries_spec.rb -------------------------------------------------------------------------------- /spec/lib/registries/full_topic_taxonomy_registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/registries/full_topic_taxonomy_registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/registries/manuals_registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/registries/manuals_registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/registries/organisations_registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/registries/organisations_registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/registries/people_registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/registries/people_registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/registries/registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/registries/registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/registries/roles_registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/registries/roles_registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/registries/topic_taxonomy_registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/registries/topic_taxonomy_registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/registries/world_locations_registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/registries/world_locations_registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/search/query_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/search/query_builder_spec.rb -------------------------------------------------------------------------------- /spec/lib/search/query_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/search/query_spec.rb -------------------------------------------------------------------------------- /spec/lib/services/email_alert_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/services/email_alert_api_spec.rb -------------------------------------------------------------------------------- /spec/lib/url_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/lib/url_builder_spec.rb -------------------------------------------------------------------------------- /spec/models/checkbox_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/checkbox_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/content_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/content_item_spec.rb -------------------------------------------------------------------------------- /spec/models/date_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/date_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/date_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/date_input_spec.rb -------------------------------------------------------------------------------- /spec/models/document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/document_spec.rb -------------------------------------------------------------------------------- /spec/models/filterable_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/filterable_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/hidden_clearable_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/hidden_clearable_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/hidden_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/hidden_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/keyword_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/keyword_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/nested_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/nested_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/option_select_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/option_select_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/radio_facet_for_multiple_filters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/radio_facet_for_multiple_filters_spec.rb -------------------------------------------------------------------------------- /spec/models/radio_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/radio_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/search_parameters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/search_parameters_spec.rb -------------------------------------------------------------------------------- /spec/models/sort_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/sort_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/taxon_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/taxon_facet_spec.rb -------------------------------------------------------------------------------- /spec/models/topical_facet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/models/topical_facet_spec.rb -------------------------------------------------------------------------------- /spec/parsers/date_hash_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/parsers/date_hash_parser_spec.rb -------------------------------------------------------------------------------- /spec/parsers/date_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/parsers/date_parser_spec.rb -------------------------------------------------------------------------------- /spec/parsers/date_string_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/parsers/date_string_parser_spec.rb -------------------------------------------------------------------------------- /spec/parsers/facet_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/parsers/facet_parser_spec.rb -------------------------------------------------------------------------------- /spec/parsers/result_set_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/parsers/result_set_parser_spec.rb -------------------------------------------------------------------------------- /spec/presenters/atom_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/atom_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/entry_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/entry_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/facet_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/facet_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/facet_tag_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/facet_tag_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/facet_tags_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/facet_tags_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/filters_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/filters_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/finder_breadcrumbs_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/finder_breadcrumbs_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/helpers/facets_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/helpers/facets_helper.rb -------------------------------------------------------------------------------- /spec/presenters/metadata_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/metadata_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/pagination_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/pagination_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/result_set_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/result_set_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/screen_reader_filter_description_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/screen_reader_filter_description_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/search_result_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/search_result_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/signup_links_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/signup_links_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/signup_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/signup_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/sort_option_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/sort_option_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/sort_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/sort_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/spelling_suggestion_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/spelling_suggestion_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/statistics_metadata_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/statistics_metadata_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/statistics_sort_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/statistics_sort_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/subscriber_list_params_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/presenters/subscriber_list_params_presenter_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/autocomplete_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/requests/api/autocomplete_spec.rb -------------------------------------------------------------------------------- /spec/requests/maintenance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/requests/maintenance_spec.rb -------------------------------------------------------------------------------- /spec/routing/maintenance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/routing/maintenance_spec.rb -------------------------------------------------------------------------------- /spec/routing/redirection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/routing/redirection_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/content_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/support/content_helper.rb -------------------------------------------------------------------------------- /spec/support/fixtures_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/support/fixtures_helper.rb -------------------------------------------------------------------------------- /spec/support/jasmine-browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/support/jasmine-browser.json -------------------------------------------------------------------------------- /spec/support/registry_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/support/registry_helper.rb -------------------------------------------------------------------------------- /spec/support/taxonomy_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/support/taxonomy_helper.rb -------------------------------------------------------------------------------- /spec/validators/date_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/validators/date_validator_spec.rb -------------------------------------------------------------------------------- /spec/validators/param_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/spec/validators/param_validator_spec.rb -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/startup.sh -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/finder-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------