├── .dockerignore ├── .erb_lint.yml ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── actionlint.yml │ ├── ci.yml │ ├── copy-pr-template-to-dependabot-prs.yml │ ├── deploy.yml │ ├── jasmine.yml │ ├── pact-verify.yml │ ├── release.yml │ └── rspec.yml ├── .gitignore ├── .govuk_dependabot_merger.yml ├── .nvmrc ├── .nycrc ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .yarn └── releases │ └── yarn-3.5.0.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENCE.txt ├── Procfile.dev ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── accredited-official-statistics-cy.png │ │ ├── accredited-official-statistics-en.png │ │ ├── app-promo │ │ │ └── govuk-app-icon.png │ │ ├── calendars │ │ │ ├── bunting-grey-string.svg │ │ │ └── festive-lights-tinsel.svg │ │ ├── campaign │ │ │ ├── britain_is_great │ │ │ │ ├── 320px.jpg │ │ │ │ ├── 768px.jpg │ │ │ │ └── 960px.jpg │ │ │ ├── custom-logos │ │ │ │ └── environment-agency.png │ │ │ ├── dvla-new-licence-rules │ │ │ │ ├── 320px.jpg │ │ │ │ ├── 768px.jpg │ │ │ │ ├── 960px.jpg │ │ │ │ └── INF45x3W.pdf │ │ │ ├── dwp-workplace-pensions │ │ │ │ ├── 320px.jpg │ │ │ │ ├── 768px.jpg │ │ │ │ └── 960px.jpg │ │ │ ├── fire-kills │ │ │ │ ├── 320px.jpg │ │ │ │ ├── 768px.jpg │ │ │ │ └── 960px.jpg │ │ │ ├── know-before-you-go │ │ │ │ ├── 320px.jpg │ │ │ │ ├── 768px.jpg │ │ │ │ └── 960px.jpg │ │ │ ├── royal_mail_shares │ │ │ │ ├── 320px.jpg │ │ │ │ ├── 768px.jpg │ │ │ │ └── 960px.jpg │ │ │ ├── sort-my-tax │ │ │ │ ├── 320px.jpg │ │ │ │ ├── 768px.jpg │ │ │ │ └── 960px.jpg │ │ │ ├── uk-welcomes │ │ │ │ └── eugo-logo.png │ │ │ └── unimoney │ │ │ │ ├── 320px.jpg │ │ │ │ ├── 768px.jpg │ │ │ │ └── 960px.jpg │ │ ├── components │ │ │ └── download-link │ │ │ │ ├── calendar-icon.svg │ │ │ │ └── download-icon.svg │ │ ├── getsatisfaction.jpg │ │ ├── homepage │ │ │ ├── cost-of-living-featured.png │ │ │ ├── find-a-job.png │ │ │ └── national-insurance-featured.png │ │ ├── landing_page │ │ │ ├── logo-nhs.svg │ │ │ ├── map │ │ │ │ ├── CDC-symbol-default.svg │ │ │ │ ├── IC-symbol-key.svg │ │ │ │ └── SH-symbol-default.svg │ │ │ └── placeholder │ │ │ │ ├── 960x640.png │ │ │ │ ├── chart.png │ │ │ │ ├── desktop.png │ │ │ │ ├── desktop_2x.png │ │ │ │ ├── landing_page_image.png │ │ │ │ ├── missions_featured_desktop.jpg │ │ │ │ ├── missions_featured_desktop_2x.jpg │ │ │ │ ├── missions_featured_mobile.jpg │ │ │ │ ├── missions_featured_mobile_2x.jpg │ │ │ │ ├── missions_featured_tablet.jpg │ │ │ │ ├── missions_featured_tablet_2x.jpg │ │ │ │ ├── missions_hero_desktop.jpg │ │ │ │ ├── missions_hero_desktop_2x.jpg │ │ │ │ ├── missions_hero_mobile.jpg │ │ │ │ ├── missions_hero_mobile_2x.jpg │ │ │ │ ├── missions_hero_tablet.jpg │ │ │ │ ├── missions_hero_tablet_2x.jpg │ │ │ │ ├── mobile.png │ │ │ │ ├── mobile_2x.png │ │ │ │ ├── tablet.png │ │ │ │ └── tablet_2x.png │ │ ├── ministry-of-defence-crest.png │ │ ├── open-government-licence-min.png │ │ ├── roadmap │ │ │ ├── image.png │ │ │ ├── updates-blog.jpg │ │ │ ├── updates-goals.jpg │ │ │ └── updates-work.jpg │ │ ├── specialist-documents │ │ │ └── protected-food-drink-names │ │ │ │ ├── protected-designation-of-origin-pdo.png │ │ │ │ ├── protected-geographical-indication-pgi.png │ │ │ │ └── traditional-speciality-guaranteed-tsg.png │ │ ├── start-pages │ │ │ └── make-a-sorn │ │ │ │ ├── performance-icon-2x.png │ │ │ │ └── performance-icon.png │ │ ├── templogo.png │ │ └── travel-advice │ │ │ ├── feed-icon-black.png │ │ │ ├── mail-icon-x2.png │ │ │ └── mail-icon.png │ ├── javascripts │ │ ├── application.js │ │ ├── dependencies.js │ │ ├── main.js │ │ ├── modules │ │ │ ├── landing-page-map.js │ │ │ ├── main-navigation.js │ │ │ ├── sticky-element-container.js │ │ │ ├── transaction-survey-form.js │ │ │ └── webchat.js │ │ ├── static-error-pages.js │ │ ├── support.js │ │ ├── test-dependencies.js │ │ └── views │ │ │ ├── landing_page │ │ │ └── map │ │ │ │ ├── data │ │ │ │ ├── cdc.geojson.js │ │ │ │ ├── hub.geojson.js │ │ │ │ ├── icb.geojson.js │ │ │ │ └── lookup.js │ │ │ │ └── leaflet.js │ │ │ └── travel-advice.js │ └── stylesheets │ │ ├── application.scss │ │ ├── components │ │ ├── _calendar.scss │ │ └── _download-link.scss │ │ ├── helpers │ │ ├── _content-bottom-margin.scss │ │ ├── _header.scss │ │ ├── _inverse-background.scss │ │ ├── _parts.scss │ │ ├── _sticky-element-container.scss │ │ └── _truncated-url.scss │ │ ├── mixins │ │ └── _margins.scss │ │ ├── static-error-pages.scss │ │ └── views │ │ ├── _calendars.scss │ │ ├── _cookie-settings.scss │ │ ├── _csv_preview.scss │ │ ├── _guide.scss │ │ ├── _homepage.scss │ │ ├── _html-publication.scss │ │ ├── _landing_page.scss │ │ ├── _landing_page │ │ ├── block-error.scss │ │ ├── box.scss │ │ ├── card.scss │ │ ├── columns_layout.scss │ │ ├── featured.scss │ │ ├── helpers │ │ │ ├── _backgrounds.scss │ │ │ ├── _borders.scss │ │ │ └── _colours.scss │ │ ├── hero.scss │ │ ├── image.scss │ │ ├── logo.scss │ │ ├── main-navigation.scss │ │ ├── map.scss │ │ ├── quote.scss │ │ ├── side-navigation.scss │ │ └── themes │ │ │ └── prime-ministers-office-10-downing-street.scss │ │ ├── _local-transaction.scss │ │ ├── _location_form.scss │ │ ├── _place-list.scss │ │ ├── _published-dates-button-group.scss │ │ ├── _publisher_metadata.scss │ │ ├── _roadmap.scss │ │ ├── _service-manual-guide.scss │ │ ├── _service-manual-service-standard.scss │ │ ├── _service-manual-topic.scss │ │ ├── _service-toolkit.scss │ │ ├── _service_manual │ │ ├── _page_header.scss │ │ ├── _related.scss │ │ └── _service_standard_point.scss │ │ ├── _sidebar-navigation.scss │ │ ├── _sign-in.scss │ │ ├── _specialist-document.scss │ │ └── _travel-advice.scss ├── controllers │ ├── account_home_controller.rb │ ├── answer_controller.rb │ ├── api │ │ └── local_authority_controller.rb │ ├── application_controller.rb │ ├── calendar_controller.rb │ ├── call_for_evidence_controller.rb │ ├── case_study_controller.rb │ ├── concerns │ │ ├── bank_hol_ab_testable.rb │ │ ├── cacheable.rb │ │ ├── previewable.rb │ │ └── split_postcode_support.rb │ ├── consultation_controller.rb │ ├── content_items_controller.rb │ ├── corporate_information_page_controller.rb │ ├── csv_preview_controller.rb │ ├── csv_preview_redirect_controller.rb │ ├── detailed_guide_controller.rb │ ├── development_controller.rb │ ├── document_collection_controller.rb │ ├── electoral_controller.rb │ ├── error_controller.rb │ ├── fatality_notice_controller.rb │ ├── favicon_controller.rb │ ├── field_of_operation_controller.rb │ ├── fields_of_operation_controller.rb │ ├── find_local_council_controller.rb │ ├── flexible_page_controller.rb │ ├── get_involved_controller.rb │ ├── gone_controller.rb │ ├── guide_controller.rb │ ├── help_controller.rb │ ├── help_page_controller.rb │ ├── homepage_controller.rb │ ├── html_publication_controller.rb │ ├── landing_page_controller.rb │ ├── licence_transaction_controller.rb │ ├── local_transaction_controller.rb │ ├── news_article_controller.rb │ ├── place_controller.rb │ ├── placeholder_controller.rb │ ├── publication_controller.rb │ ├── random_controller.rb │ ├── roadmap_controller.rb │ ├── service_manual_controller.rb │ ├── service_toolkit_controller.rb │ ├── sessions_controller.rb │ ├── simple_smart_answers_controller.rb │ ├── specialist_document_controller.rb │ ├── speech_controller.rb │ ├── static_error_pages_controller.rb │ ├── statistical_data_set_controller.rb │ ├── transaction_controller.rb │ ├── travel_advice_controller.rb │ └── webchat_controller.rb ├── helpers │ ├── application_helper.rb │ ├── block_helper.rb │ ├── calendar_helper.rb │ ├── consultation_helper.rb │ ├── contents_list_helper.rb │ ├── currency_helper.rb │ ├── date_helper.rb │ ├── draft_helper.rb │ ├── error_items_helper.rb │ ├── govuk_personalisation_helper.rb │ ├── link_helper.rb │ ├── locale_helper.rb │ ├── location_form_helper.rb │ ├── parts_navigation_helper.rb │ ├── phone_number_helper.rb │ ├── theme_type_helper.rb │ ├── travel_advice_helper.rb │ └── url_helper.rb ├── models │ ├── calendar.rb │ ├── calendar │ │ ├── division.rb │ │ ├── event.rb │ │ └── year.rb │ ├── call_for_evidence.rb │ ├── case_study.rb │ ├── concerns │ │ ├── attachments.rb │ │ ├── emphasised_organisations.rb │ │ ├── manual.rb │ │ ├── manual_sections.rb │ │ ├── national_applicability.rb │ │ ├── news_image.rb │ │ ├── parts.rb │ │ ├── people.rb │ │ ├── phases.rb │ │ ├── political.rb │ │ ├── single_page_notification_button.rb │ │ ├── updatable.rb │ │ ├── ways_to_respond.rb │ │ ├── withdrawable.rb │ │ └── worldwide_organisations.rb │ ├── consultation.rb │ ├── content_item.rb │ ├── content_item_factory.rb │ ├── contents_outline.rb │ ├── corporate_information_page.rb │ ├── detailed_guide.rb │ ├── document_collection.rb │ ├── election_postcode.rb │ ├── fatality_notice.rb │ ├── field_of_operation.rb │ ├── fields_of_operation.rb │ ├── finder.rb │ ├── flexible_page.rb │ ├── flexible_page │ │ ├── flexible_section │ │ │ ├── base.rb │ │ │ ├── feed.rb │ │ │ ├── page_title.rb │ │ │ └── rich_content.rb │ │ └── flexible_section_factory.rb │ ├── get_involved.rb │ ├── gone.rb │ ├── guide.rb │ ├── history.rb │ ├── homepage.rb │ ├── html_publication.rb │ ├── landing_page.rb │ ├── landing_page │ │ ├── block │ │ │ ├── action_link.rb │ │ │ ├── base.rb │ │ │ ├── block_error.rb │ │ │ ├── blocks_container.rb │ │ │ ├── box.rb │ │ │ ├── card.rb │ │ │ ├── columns_layout.rb │ │ │ ├── document_list.rb │ │ │ ├── featured.rb │ │ │ ├── govspeak.rb │ │ │ ├── heading.rb │ │ │ ├── hero.rb │ │ │ ├── image.rb │ │ │ ├── layout_base.rb │ │ │ ├── logo.rb │ │ │ ├── main_navigation.rb │ │ │ ├── map.rb │ │ │ ├── quote.rb │ │ │ ├── share_links.rb │ │ │ ├── side_navigation.rb │ │ │ └── two_column_layout.rb │ │ └── block_factory.rb │ ├── licence_transaction.rb │ ├── local_authority.rb │ ├── local_transaction.rb │ ├── location_error.rb │ ├── locations_api_postcode_response.rb │ ├── logo.rb │ ├── manual_section.rb │ ├── news_article.rb │ ├── organisation.rb │ ├── place.rb │ ├── places_manager_response.rb │ ├── postcode_lookup.rb │ ├── publication.rb │ ├── record_not_found.rb │ ├── service_manual_guide.rb │ ├── service_manual_homepage.rb │ ├── service_manual_service_standard.rb │ ├── service_manual_service_toolkit.rb │ ├── service_manual_topic.rb │ ├── simple_smart_answer.rb │ ├── specialist_document.rb │ ├── speech.rb │ ├── statistical_data_set.rb │ ├── topical_event_about_page.rb │ ├── transaction.rb │ ├── travel_advice.rb │ ├── uprn.rb │ └── webchat.rb ├── presenters │ ├── address_list_presenter.rb │ ├── call_for_evidence_presenter.rb │ ├── concerns │ │ ├── contents_list.rb │ │ └── national_statistics_logo.rb │ ├── consultation_presenter.rb │ ├── content_item_presenter.rb │ ├── contents_outline_presenter.rb │ ├── corporate_information_page_presenter.rb │ ├── detailed_guide_presenter.rb │ ├── document_collection_presenter.rb │ ├── electoral_presenter.rb │ ├── faq_presenter.rb │ ├── field_of_operation_presenter.rb │ ├── get_involved_presenter.rb │ ├── guide_presenter.rb │ ├── html_publication_presenter.rb │ ├── licence_details_presenter.rb │ ├── local_authority_presenter.rb │ ├── machine_readable │ │ └── guide_faq_page_schema_presenter.rb │ ├── place_presenter.rb │ ├── publication_presenter.rb │ ├── service_list_presenter.rb │ ├── service_manual_guide_presenter.rb │ ├── service_manual_homepage_presenter.rb │ ├── service_manual_service_standard_presenter.rb │ ├── service_manual_topic_presenter.rb │ ├── simple_smart_answer_presenter.rb │ ├── specialist_document_presenter.rb │ ├── speech_presenter.rb │ ├── statistical_data_set_presenter.rb │ ├── transaction_presenter.rb │ ├── travel_advice_index_presenter.rb │ └── travel_advice_presenter.rb ├── services │ ├── csv_preview_service.rb │ └── electoral_service.rb └── views │ ├── answer │ └── show.html.erb │ ├── application │ ├── _draft_fields.html.erb │ └── _location_form.html.erb │ ├── calendar │ ├── _calendar_footer.html.erb │ ├── _calendar_head.html.erb │ ├── bank_holidays.html.erb │ └── when_do_the_clocks_change.html.erb │ ├── call_for_evidence │ └── show.html.erb │ ├── case_study │ └── show.html.erb │ ├── components │ ├── _calendar.html.erb │ ├── _download_link.html.erb │ └── docs │ │ ├── calendar.yml │ │ └── download_link.yml │ ├── consultation │ └── show.html.erb │ ├── corporate_information_page │ └── show.html.erb │ ├── csv_preview │ ├── access_limited.html.erb │ ├── malformed_csv.html.erb │ └── show.html.erb │ ├── detailed_guide │ └── show.html.erb │ ├── development │ └── index.html.erb │ ├── document_collection │ └── show.html.erb │ ├── electoral │ ├── _contact_details.html.erb │ ├── address_picker.html.erb │ └── results.html.erb │ ├── fatality_notice │ └── show.html.erb │ ├── field_of_operation │ └── show.html.erb │ ├── fields_of_operation │ └── index.html.erb │ ├── find_local_council │ ├── _base_page.html.erb │ ├── district_and_county_council.html.erb │ ├── index.html.erb │ ├── multiple_authorities.html.erb │ └── one_council.html.erb │ ├── flexible_page │ ├── flexible_sections │ │ ├── _feed.html.erb │ │ ├── _page_title.html.erb │ │ └── _rich_content.html.erb │ └── show.html.erb │ ├── get_involved │ └── show.html.erb │ ├── gone │ └── show.html.erb │ ├── guide │ ├── show.html+print.erb │ └── show.html.erb │ ├── help │ ├── ab_testing.html.erb │ ├── cookie_settings.html.erb │ ├── index.html.erb │ └── sign_in.html.erb │ ├── help_page │ └── show.html.erb │ ├── homepage │ ├── _government_activity.html.erb │ ├── _homepage_header.html.erb │ ├── _more_on_govuk.html.erb │ ├── _popular_links.html.erb │ ├── _promotion_slots.html.erb │ ├── _services_and_information.html.erb │ └── index.html.erb │ ├── html_publication │ ├── _print_meta_data.html.erb │ └── show.html.erb │ ├── landing_page │ ├── blocks │ │ ├── _action_link.html.erb │ │ ├── _block_error.html.erb │ │ ├── _blocks_container.html.erb │ │ ├── _box.html.erb │ │ ├── _card.html.erb │ │ ├── _columns_layout.html.erb │ │ ├── _document_list.html.erb │ │ ├── _featured.html.erb │ │ ├── _govspeak.html.erb │ │ ├── _heading.html.erb │ │ ├── _hero.html.erb │ │ ├── _image.html.erb │ │ ├── _logo.html.erb │ │ ├── _main_navigation.html.erb │ │ ├── _map.html.erb │ │ ├── _quote.html.erb │ │ ├── _share_links.html.erb │ │ ├── _side_navigation.html.erb │ │ └── _two_column_layout.html.erb │ ├── show.html.erb │ └── themes │ │ ├── _default.html.erb │ │ └── _prime-ministers-office-10-downing-street.html.erb │ ├── layouts │ ├── application.html.erb │ └── full_width.html.erb │ ├── licence_transaction │ ├── _authority_base.html.erb │ ├── _authority_url.html.erb │ ├── _licensify_unavailable.html.erb │ ├── authority.html.erb │ ├── authority_interaction.html.erb │ ├── continues_on.html.erb │ ├── licence_not_found.html.erb │ ├── multiple_authorities.html.erb │ └── start.html.erb │ ├── local_transaction │ ├── _no_local_authority_url.html.erb │ ├── devolved_administration_service.html.erb │ ├── index.html.erb │ ├── multiple_authorities.html.erb │ ├── results.html.erb │ └── unavailable_service.html.erb │ ├── news_article │ └── show.html.erb │ ├── place │ ├── _place.html.erb │ ├── multiple_authorities.html.erb │ └── show.html.erb │ ├── placeholder │ └── show.html.erb │ ├── publication │ └── show.html.erb │ ├── roadmap │ ├── _image.html.erb │ └── index.html.erb │ ├── service_manual │ ├── _email_signup.html.erb │ ├── _service_manual_breadcrumbs.html.erb │ ├── index.html.erb │ ├── service_manual_guide.html.erb │ ├── service_manual_topic.html.erb │ └── service_standard.html.erb │ ├── service_toolkit │ └── index.html.erb │ ├── shared │ ├── _attachments_list.html.erb │ ├── _base_page.html.erb │ ├── _body_with_related_links.html.erb │ ├── _email_subscribe_unsubscribe_flash.html.erb │ ├── _footer_navigation.html.erb │ ├── _header.html.erb │ ├── _history_notice.html.erb │ ├── _publication_metadata.html.erb │ ├── _published_dates_with_notification_button.html.erb │ ├── _publisher_metadata.html.erb │ ├── _sidebar_navigation.html.erb │ ├── _single_page_notification_button.html.erb │ └── phased │ │ ├── _notice.html.erb │ │ ├── _outcome_details.html.erb │ │ ├── _summary_banner.html.erb │ │ └── _ways_to_respond.html.erb │ ├── simple_smart_answers │ ├── _current_question.html.erb │ ├── _outcome.html.erb │ ├── flow.html.erb │ └── show.html.erb │ ├── specialist_document │ └── show.html.erb │ ├── speech │ └── show.html.erb │ ├── static_error_pages │ ├── 400.html.erb │ ├── 401.html.erb │ ├── 403.html.erb │ ├── 404.html.erb │ ├── 405.html.erb │ ├── 406.html.erb │ ├── 410.html.erb │ ├── 422.html.erb │ ├── 429.html.erb │ ├── 500.html.erb │ ├── 501.html.erb │ ├── 502.html.erb │ ├── 503.html.erb │ ├── 504.html.erb │ └── _error_page.html.erb │ ├── statistical_data_set │ └── show.html.erb │ ├── transaction │ ├── _additional_information_single.html.erb │ ├── _additional_information_tabbed.html.erb │ └── show.html.erb │ ├── travel_advice │ ├── _country.atom.builder │ ├── _first_part.html.erb │ ├── index.atom.builder │ ├── index.html.erb │ ├── show.atom.builder │ ├── show.html+print.erb │ └── show.html.erb │ └── webchat │ └── show.html.erb ├── bin ├── brakeman ├── bundle ├── dev ├── rails ├── rake ├── rubocop ├── setup ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── govuk_examples.yml ├── i18n-tasks.yml ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── dartsass.rb │ ├── date_formats.rb │ ├── filter_parameter_logging.rb │ ├── govuk_i18n.rb │ ├── govuk_publishing_components.rb │ ├── govuk_web_banners.rb │ ├── graphql_traffic_rates.rb │ ├── inflections.rb │ ├── local_links_manager.rb │ ├── locations_api.rb │ ├── maintenance.rb │ ├── mime_types.rb │ ├── permissions_policy.rb │ ├── places_manager.rb │ ├── prometheus.rb │ ├── session_store.rb │ ├── website_root.rb │ └── wrap_parameters.rb ├── locales │ ├── ar.yml │ ├── az.yml │ ├── be.yml │ ├── bg.yml │ ├── bn.yml │ ├── cs.yml │ ├── cy.yml │ ├── da.yml │ ├── de.yml │ ├── dr.yml │ ├── el.yml │ ├── en.yml │ ├── es-419.yml │ ├── es.yml │ ├── et.yml │ ├── fa.yml │ ├── fi.yml │ ├── fr.yml │ ├── gd.yml │ ├── gu.yml │ ├── he.yml │ ├── hi.yml │ ├── hr.yml │ ├── hu.yml │ ├── hy.yml │ ├── id.yml │ ├── is.yml │ ├── it.yml │ ├── ja.yml │ ├── ka.yml │ ├── kk.yml │ ├── ko.yml │ ├── ku.yml │ ├── ky.yml │ ├── lt.yml │ ├── lv.yml │ ├── ms.yml │ ├── mt.yml │ ├── ne.yml │ ├── nl.yml │ ├── no.yml │ ├── pa-pk.yml │ ├── pa.yml │ ├── pl.yml │ ├── ps.yml │ ├── pt.yml │ ├── ro.yml │ ├── ru.yml │ ├── si.yml │ ├── sk.yml │ ├── sl.yml │ ├── so.yml │ ├── sq.yml │ ├── sr.yml │ ├── sv.yml │ ├── sw.yml │ ├── ta.yml │ ├── th.yml │ ├── ti.yml │ ├── tk.yml │ ├── tr.yml │ ├── uk.yml │ ├── ur.yml │ ├── uz.yml │ ├── vi.yml │ ├── yi.yml │ ├── zh-hk.yml │ ├── zh-tw.yml │ └── zh.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── sidekiq.yml ├── docs ├── adr │ ├── 0001-render-csv-previews-in-frontend.md │ └── 0002-flexible-landing-pages.md ├── building_blocks_for_flexible_content.md ├── calendars.md ├── elections-api.md ├── images │ ├── app-promo-homepage.png │ └── homepage-promotion-slots.png ├── local-authorities-api.md ├── local-content-items.md ├── managing-the-app-promo-on-the-homepage.md └── update-homepage-promotion-slots.md ├── lib ├── api_error_routing_constraint.rb ├── content_item_loader.rb ├── content_item_loaders │ ├── content_store_loader.rb │ ├── graphql_loader.rb │ ├── hub_redirect_loader.rb │ ├── json_file_loader.rb │ ├── local_file_loader.rb │ ├── unable_to_load.rb │ └── yaml_file_loader.rb ├── data │ ├── bank-holidays.json │ ├── local-content-items │ │ └── test │ │ │ └── flexible-page.yml │ ├── specialist_documents │ │ └── protected_food_drink_name │ │ │ └── images.yaml │ └── when-do-the-clocks-change.json ├── format_routing_constraint.rb ├── frontend.rb ├── full_path_format_routing_constraint.rb ├── ics_renderer.rb ├── postcode_sanitizer.rb ├── sanitiser │ └── strategy.rb ├── services.rb ├── simple_smart_answers │ ├── base_error.rb │ ├── flow.rb │ ├── invalid_response.rb │ ├── node.rb │ └── state.rb └── tasks │ ├── .gitkeep │ ├── consolidation.rake │ ├── jasmine.rake │ └── lint.rake ├── log └── .gitkeep ├── package.json ├── spec ├── components │ ├── all_components_spec.rb │ ├── calendar_spec.rb │ └── download_link_spec.rb ├── factories │ ├── content_items.rb │ └── landing_pages.rb ├── fixtures │ ├── bank-holidays.json │ ├── electoral-result.json │ ├── landing_page_statistics_data │ │ ├── data_four.csv │ │ ├── data_one.csv │ │ ├── data_three.csv │ │ └── data_two.csv │ ├── local-content-items │ │ ├── flexible-page.yml │ │ ├── my-json-item.json │ │ └── my-yaml-item.yml │ ├── single-calendar.json │ └── when-do-the-clocks-change.json ├── helpers │ ├── application_helper_spec.rb │ ├── block_helper_spec.rb │ ├── consultation_helper_spec.rb │ ├── contents_list_helper_spec.rb │ ├── currency_helper_spec.rb │ ├── date_helper_spec.rb │ ├── error_items_helper_spec.rb │ ├── govuk_personalisation_helper_spec.rb │ ├── link_helper_spec.rb │ ├── locale_helper_spec.rb │ ├── parts_navigation_helper_spec.rb │ ├── phone_number_helper_spec.rb │ └── theme_type_helper_spec.rb ├── initializers │ └── graphql_traffic_rates_spec.rb ├── javascripts │ ├── helpers │ │ ├── .gitkeep │ │ └── nyc-test-coverage-helper.mjs │ ├── reporters │ │ └── nyc-test-coverage-reporter.mjs │ ├── unit │ │ ├── foreign-travel-advice.spec.js │ │ ├── modules │ │ │ ├── landing-page-map.spec.js │ │ │ ├── main-navigation.spec.js │ │ │ ├── sticky-element-container.spec.js │ │ │ ├── transaction-survey-form.spec.js │ │ │ └── webchat.spec.js │ │ └── support.spec.js │ └── vendor │ │ ├── jasmine-ajax-3.4.0.js │ │ └── jquery-1.12.4.js ├── models │ ├── calendar │ │ ├── division_spec.rb │ │ ├── event_spec.rb │ │ └── year_spec.rb │ ├── calendar_spec.rb │ ├── call_for_evidence_spec.rb │ ├── case_study_spec.rb │ ├── consultation_spec.rb │ ├── content_item_factory_spec.rb │ ├── content_item_spec.rb │ ├── contents_outline_spec.rb │ ├── corporate_information_page_spec.rb │ ├── detailed_guide_spec.rb │ ├── document_collection_spec.rb │ ├── election_postcode_spec.rb │ ├── fatality_notice_spec.rb │ ├── field_of_operation_spec.rb │ ├── fields_of_operation_spec.rb │ ├── finder_spec.rb │ ├── flexible_page │ │ ├── flexible_section │ │ │ ├── feed_spec.rb │ │ │ ├── page_title_spec.rb │ │ │ └── rich_content_spec.rb │ │ └── flexible_section_factory_spec.rb │ ├── get_involved_spec.rb │ ├── gone_spec.rb │ ├── guide_spec.rb │ ├── history_spec.rb │ ├── homepage_spec.rb │ ├── html_publication_spec.rb │ ├── landing_page │ │ ├── block │ │ │ ├── action_link_spec.rb │ │ │ ├── base_spec.rb │ │ │ ├── block_error_spec.rb │ │ │ ├── blocks_container_spec.rb │ │ │ ├── box_spec.rb │ │ │ ├── card_spec.rb │ │ │ ├── columns_layout_spec.rb │ │ │ ├── document_list_spec.rb │ │ │ ├── featured_spec.rb │ │ │ ├── govspeak_spec.rb │ │ │ ├── heading_spec.rb │ │ │ ├── hero_spec.rb │ │ │ ├── image_spec.rb │ │ │ ├── layout_base_spec.rb │ │ │ ├── logo_spec.rb │ │ │ ├── main_navigation_spec.rb │ │ │ ├── map_spec.rb │ │ │ ├── quote_spec.rb │ │ │ ├── share_links_spec.rb │ │ │ ├── side_navigation_spec.rb │ │ │ └── two_column_layout_spec.rb │ │ └── block_factory_spec.rb │ ├── landing_page_spec.rb │ ├── licence_transaction_spec.rb │ ├── local_authority_spec.rb │ ├── local_transaction_spec.rb │ ├── location_error_spec.rb │ ├── logo_spec.rb │ ├── manual_section_spec.rb │ ├── news_article_spec.rb │ ├── organisation_spec.rb │ ├── place_spec.rb │ ├── publication_spec.rb │ ├── service_manual_guide_spec.rb │ ├── service_manual_homepage_spec.rb │ ├── service_manual_service_standard_spec.rb │ ├── service_manual_service_toolkit_spec.rb │ ├── service_manual_topic_spec.rb │ ├── simple_smart_answer_spec.rb │ ├── specialist_document_spec.rb │ ├── speech_spec.rb │ ├── statistical_data_set_spec.rb │ ├── topical_event_about_page_spec.rb │ ├── transaction_spec.rb │ ├── travel_advice_spec.rb │ ├── uprn_spec.rb │ └── webchat_spec.rb ├── presenter │ ├── address_list_presenter_spec.rb │ ├── call_for_evidence_presenter_spec.rb │ ├── consultation_presenter_spec.rb │ ├── content_item_presenter_spec.rb │ ├── contents_outline_presenter_spec.rb │ ├── corporate_information_page_presenter_spec.rb │ ├── detailed_guide_presenter_spec.rb │ ├── document_collection_presenter_spec.rb │ ├── electoral_presenter_spec.rb │ ├── faq_presenter_spec.rb │ ├── field_of_operation_presenter_spec.rb │ ├── get_involved_spec.rb │ ├── guide_presenter_spec.rb │ ├── html_publication_presenter_spec.rb │ ├── licence_details_presenter_spec.rb │ ├── local_authority_presenter_spec.rb │ ├── machine_readable │ │ └── guide_faq_page_schema_presenter_spec.rb │ ├── place_presenter_spec.rb │ ├── publication_presenter_spec.rb │ ├── service_manual_guide_presenter_spec.rb │ ├── service_manual_homepage_presenter_spec.rb │ ├── service_manual_topic_presenter_spec.rb │ ├── simple_smart_answer_presenter_spec.rb │ ├── specialist_document_presenter_spec.rb │ ├── speech_presenter_spec.rb │ ├── statistical_data_set_presenter_spec.rb │ ├── transaction_presenter_spec.rb │ ├── travel_advice_index_presenter_spec.rb │ └── travel_advice_presenter_spec.rb ├── requests │ ├── answer_spec.rb │ ├── calendars_spec.rb │ ├── call_for_evidence_spec.rb │ ├── case_study_spec.rb │ ├── consultation_spec.rb │ ├── contact_electoral_registration_office_spec.rb │ ├── content_items_controller_spec.rb │ ├── content_loading_problems_spec.rb │ ├── corporate_information_page_spec.rb │ ├── csv_preview_spec.rb │ ├── detailed_guide_spec.rb │ ├── document_collection_spec.rb │ ├── fatality_notice_spec.rb │ ├── favicon_spec.rb │ ├── field_of_operation_spec.rb │ ├── fields_of_operation_spec.rb │ ├── find_local_council_spec.rb │ ├── flexible_page_spec.rb │ ├── get_involved_spec.rb │ ├── gone_spec.rb │ ├── guide_spec.rb │ ├── help_spec.rb │ ├── homepage_spec.rb │ ├── html_publication_spec.rb │ ├── landing_page_spec.rb │ ├── licence_transactions_spec.rb │ ├── local_authority_api_spec.rb │ ├── local_transactions_spec.rb │ ├── news_article_spec.rb │ ├── placeholder_spec.rb │ ├── places_spec.rb │ ├── publication_spec.rb │ ├── random_spec.rb │ ├── roadmap_spec.rb │ ├── sanitiser_spec.rb │ ├── service_manual_guide_spec.rb │ ├── service_manual_homepage_spec.rb │ ├── service_manual_service_standard_spec.rb │ ├── service_manual_topic_spec.rb │ ├── service_toolkit_spec.rb │ ├── sessions_spec.rb │ ├── simple_smart_answers_spec.rb │ ├── specialist_document_spec.rb │ ├── speech_spec.rb │ ├── static_error_pages_spec.rb │ ├── statistical_data_set_spec.rb │ ├── topical_event_about_page_spec.rb │ ├── transactions_spec.rb │ └── travel_advice_spec.rb ├── routing │ ├── calendars_spec.rb │ ├── csv_previews_spec.rb │ ├── landing_pages_spec.rb │ └── simple_smart_answers_spec.rb ├── service_consumers │ └── pact_helper.rb ├── services │ ├── csv_preview_service_spec.rb │ └── electoral_service_spec.rb ├── spec_helper.rb ├── support │ ├── asset_manager_helpers.rb │ ├── calendar_helpers.rb │ ├── component_helpers.rb │ ├── concerns │ │ ├── attachments.rb │ │ ├── contents_list.rb │ │ ├── emphasised_organisations.rb │ │ ├── manual.rb │ │ ├── manual_sections.rb │ │ ├── national_applicability.rb │ │ ├── national_statistics_logo.rb │ │ ├── news_image.rb │ │ ├── parts.rb │ │ ├── people.rb │ │ ├── phases.rb │ │ ├── political.rb │ │ ├── single_page_notification_button.rb │ │ ├── updatable.rb │ │ ├── ways_to_respond.rb │ │ ├── withdrawable.rb │ │ └── worldwide_organisations.rb │ ├── content_store_helpers.rb │ ├── election_helpers.rb │ ├── jasmine-browser.json │ ├── landing_page_blocks.rb │ ├── location_helpers.rb │ ├── matchers │ │ ├── have_bank_holiday_table_matcher.rb │ │ ├── have_button_as_link_matcher.rb │ │ ├── have_contents_list_matcher.rb │ │ ├── have_devolved_nations_component.rb │ │ └── honours_content_store_ttl_matcher.rb │ ├── meta_tags.rb │ ├── schema_org_helpers.rb │ ├── search_helpers.rb │ └── single_page_notification_helpers.rb ├── system │ ├── account_home_spec.rb │ ├── answer_spec.rb │ ├── bank_holidays_spec.rb │ ├── call_for_evidence_spec.rb │ ├── case_study_spec.rb │ ├── consultation_spec.rb │ ├── corporate_information_page_spec.rb │ ├── csv_preview_spec.rb │ ├── detailed_guide_spec.rb │ ├── developer_root_spec.rb │ ├── document_collection_email_notifications_spec.rb │ ├── document_collection_spec.rb │ ├── electoral_look_up_spec.rb │ ├── error_handling_spec.rb │ ├── fatality_notice_spec.rb │ ├── field_of_operation_spec.rb │ ├── fields_of_operation_spec.rb │ ├── find_local_council_spec.rb │ ├── flexible_page_spec.rb │ ├── get_involved_spec.rb │ ├── gone_spec.rb │ ├── guide_print_spec.rb │ ├── guide_spec.rb │ ├── gwyliau_banc_spec.rb │ ├── help_cookies_spec.rb │ ├── help_page_spec.rb │ ├── help_spec.rb │ ├── homepage_spec.rb │ ├── html_publication_spec.rb │ ├── icalendar_spec.rb │ ├── json_spec.rb │ ├── landing_page_spec.rb │ ├── licence_transaction_spec.rb │ ├── local_transactions_spec.rb │ ├── localisation_spec.rb │ ├── news_article_spec.rb │ ├── place_spec.rb │ ├── publication_spec.rb │ ├── service_manual_guide_spec.rb │ ├── service_manual_homepage_spec.rb │ ├── service_manual_service_standard_spec.rb │ ├── service_manual_topic_spec.rb │ ├── service_toolkit_spec.rb │ ├── sessions_spec.rb │ ├── sign_in_spec.rb │ ├── simple_smart_answers_spec.rb │ ├── specialist_document_spec.rb │ ├── speech_spec.rb │ ├── static_error_page_spec.rb │ ├── statistical_data_set_spec.rb │ ├── topical_event_about_page_spec.rb │ ├── transaction_spec.rb │ ├── travel_advice_atom_spec.rb │ ├── travel_advice_spec.rb │ ├── webchat_spec.rb │ └── when_do_the_clocks_change_spec.rb ├── unit │ ├── api_error_routing_constraint_spec.rb │ ├── content_item_loader_spec.rb │ ├── format_routing_constraint_spec.rb │ ├── full_path_format_routing_constraint_spec.rb │ ├── ics_renderer_spec.rb │ ├── locales_validation_spec.rb │ ├── postcode_sanitizer_spec.rb │ ├── sanitiser │ │ └── strategy_spec.rb │ └── simple_smart_answers │ │ ├── flow_spec.rb │ │ └── node_spec.rb └── views │ └── shared │ └── _published_dates_with_notification_button.html.erb_spec.rb ├── startup.sh └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.erb_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.erb_lint.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/jasmine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.github/workflows/jasmine.yml -------------------------------------------------------------------------------- /.github/workflows/pact-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.github/workflows/pact-verify.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.github/workflows/rspec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.govuk_dependabot_merger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.govuk_dependabot_merger.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.20.4 2 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.nycrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.5 2 | -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.5.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.yarn/releases/yarn-3.5.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/app-promo/govuk-app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/app-promo/govuk-app-icon.png -------------------------------------------------------------------------------- /app/assets/images/calendars/bunting-grey-string.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/calendars/bunting-grey-string.svg -------------------------------------------------------------------------------- /app/assets/images/campaign/fire-kills/320px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/fire-kills/320px.jpg -------------------------------------------------------------------------------- /app/assets/images/campaign/fire-kills/768px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/fire-kills/768px.jpg -------------------------------------------------------------------------------- /app/assets/images/campaign/fire-kills/960px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/fire-kills/960px.jpg -------------------------------------------------------------------------------- /app/assets/images/campaign/sort-my-tax/320px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/sort-my-tax/320px.jpg -------------------------------------------------------------------------------- /app/assets/images/campaign/sort-my-tax/768px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/sort-my-tax/768px.jpg -------------------------------------------------------------------------------- /app/assets/images/campaign/sort-my-tax/960px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/sort-my-tax/960px.jpg -------------------------------------------------------------------------------- /app/assets/images/campaign/uk-welcomes/eugo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/uk-welcomes/eugo-logo.png -------------------------------------------------------------------------------- /app/assets/images/campaign/unimoney/320px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/unimoney/320px.jpg -------------------------------------------------------------------------------- /app/assets/images/campaign/unimoney/768px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/unimoney/768px.jpg -------------------------------------------------------------------------------- /app/assets/images/campaign/unimoney/960px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/campaign/unimoney/960px.jpg -------------------------------------------------------------------------------- /app/assets/images/getsatisfaction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/getsatisfaction.jpg -------------------------------------------------------------------------------- /app/assets/images/homepage/find-a-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/homepage/find-a-job.png -------------------------------------------------------------------------------- /app/assets/images/landing_page/logo-nhs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/landing_page/logo-nhs.svg -------------------------------------------------------------------------------- /app/assets/images/landing_page/map/IC-symbol-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/landing_page/map/IC-symbol-key.svg -------------------------------------------------------------------------------- /app/assets/images/landing_page/placeholder/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/landing_page/placeholder/chart.png -------------------------------------------------------------------------------- /app/assets/images/ministry-of-defence-crest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/ministry-of-defence-crest.png -------------------------------------------------------------------------------- /app/assets/images/open-government-licence-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/open-government-licence-min.png -------------------------------------------------------------------------------- /app/assets/images/roadmap/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/roadmap/image.png -------------------------------------------------------------------------------- /app/assets/images/roadmap/updates-blog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/roadmap/updates-blog.jpg -------------------------------------------------------------------------------- /app/assets/images/roadmap/updates-goals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/roadmap/updates-goals.jpg -------------------------------------------------------------------------------- /app/assets/images/roadmap/updates-work.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/roadmap/updates-work.jpg -------------------------------------------------------------------------------- /app/assets/images/templogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/templogo.png -------------------------------------------------------------------------------- /app/assets/images/travel-advice/feed-icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/travel-advice/feed-icon-black.png -------------------------------------------------------------------------------- /app/assets/images/travel-advice/mail-icon-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/travel-advice/mail-icon-x2.png -------------------------------------------------------------------------------- /app/assets/images/travel-advice/mail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/images/travel-advice/mail-icon.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/dependencies.js -------------------------------------------------------------------------------- /app/assets/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/main.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/landing-page-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/modules/landing-page-map.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/main-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/modules/main-navigation.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/webchat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/modules/webchat.js -------------------------------------------------------------------------------- /app/assets/javascripts/static-error-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/static-error-pages.js -------------------------------------------------------------------------------- /app/assets/javascripts/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/support.js -------------------------------------------------------------------------------- /app/assets/javascripts/test-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/test-dependencies.js -------------------------------------------------------------------------------- /app/assets/javascripts/views/landing_page/map/leaflet.js: -------------------------------------------------------------------------------- 1 | //= require leaflet 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/views/travel-advice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/javascripts/views/travel-advice.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/components/_calendar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/helpers/_header.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_parts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/helpers/_parts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/helpers/_truncated-url.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/helpers/_truncated-url.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/mixins/_margins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/mixins/_margins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/static-error-pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/static-error-pages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_calendars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_calendars.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_cookie-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_cookie-settings.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_csv_preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_csv_preview.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_guide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_guide.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_homepage.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_html-publication.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_html-publication.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_landing_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_landing_page.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_landing_page/box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_landing_page/box.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_landing_page/card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_landing_page/card.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_landing_page/hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_landing_page/hero.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_landing_page/logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_landing_page/logo.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_landing_page/map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_landing_page/map.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_local-transaction.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_local-transaction.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_location_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_location_form.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_place-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_place-list.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_roadmap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_roadmap.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_service-toolkit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_service-toolkit.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_sign-in.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_sign-in.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_travel-advice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/assets/stylesheets/views/_travel-advice.scss -------------------------------------------------------------------------------- /app/controllers/account_home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/account_home_controller.rb -------------------------------------------------------------------------------- /app/controllers/answer_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/answer_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/local_authority_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/api/local_authority_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/calendar_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/calendar_controller.rb -------------------------------------------------------------------------------- /app/controllers/call_for_evidence_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/call_for_evidence_controller.rb -------------------------------------------------------------------------------- /app/controllers/case_study_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/case_study_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/bank_hol_ab_testable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/concerns/bank_hol_ab_testable.rb -------------------------------------------------------------------------------- /app/controllers/concerns/cacheable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/concerns/cacheable.rb -------------------------------------------------------------------------------- /app/controllers/concerns/previewable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/concerns/previewable.rb -------------------------------------------------------------------------------- /app/controllers/concerns/split_postcode_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/concerns/split_postcode_support.rb -------------------------------------------------------------------------------- /app/controllers/consultation_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/consultation_controller.rb -------------------------------------------------------------------------------- /app/controllers/content_items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/content_items_controller.rb -------------------------------------------------------------------------------- /app/controllers/csv_preview_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/csv_preview_controller.rb -------------------------------------------------------------------------------- /app/controllers/csv_preview_redirect_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/csv_preview_redirect_controller.rb -------------------------------------------------------------------------------- /app/controllers/detailed_guide_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/detailed_guide_controller.rb -------------------------------------------------------------------------------- /app/controllers/development_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/development_controller.rb -------------------------------------------------------------------------------- /app/controllers/document_collection_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/document_collection_controller.rb -------------------------------------------------------------------------------- /app/controllers/electoral_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/electoral_controller.rb -------------------------------------------------------------------------------- /app/controllers/error_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/error_controller.rb -------------------------------------------------------------------------------- /app/controllers/fatality_notice_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/fatality_notice_controller.rb -------------------------------------------------------------------------------- /app/controllers/favicon_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/favicon_controller.rb -------------------------------------------------------------------------------- /app/controllers/field_of_operation_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/field_of_operation_controller.rb -------------------------------------------------------------------------------- /app/controllers/fields_of_operation_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/fields_of_operation_controller.rb -------------------------------------------------------------------------------- /app/controllers/find_local_council_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/find_local_council_controller.rb -------------------------------------------------------------------------------- /app/controllers/flexible_page_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/flexible_page_controller.rb -------------------------------------------------------------------------------- /app/controllers/get_involved_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/get_involved_controller.rb -------------------------------------------------------------------------------- /app/controllers/gone_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/gone_controller.rb -------------------------------------------------------------------------------- /app/controllers/guide_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/guide_controller.rb -------------------------------------------------------------------------------- /app/controllers/help_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/help_controller.rb -------------------------------------------------------------------------------- /app/controllers/help_page_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/help_page_controller.rb -------------------------------------------------------------------------------- /app/controllers/homepage_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/homepage_controller.rb -------------------------------------------------------------------------------- /app/controllers/html_publication_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/html_publication_controller.rb -------------------------------------------------------------------------------- /app/controllers/landing_page_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/landing_page_controller.rb -------------------------------------------------------------------------------- /app/controllers/licence_transaction_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/licence_transaction_controller.rb -------------------------------------------------------------------------------- /app/controllers/local_transaction_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/local_transaction_controller.rb -------------------------------------------------------------------------------- /app/controllers/news_article_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/news_article_controller.rb -------------------------------------------------------------------------------- /app/controllers/place_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/place_controller.rb -------------------------------------------------------------------------------- /app/controllers/placeholder_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/placeholder_controller.rb -------------------------------------------------------------------------------- /app/controllers/publication_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/publication_controller.rb -------------------------------------------------------------------------------- /app/controllers/random_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/random_controller.rb -------------------------------------------------------------------------------- /app/controllers/roadmap_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/roadmap_controller.rb -------------------------------------------------------------------------------- /app/controllers/service_manual_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/service_manual_controller.rb -------------------------------------------------------------------------------- /app/controllers/service_toolkit_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/service_toolkit_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/simple_smart_answers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/simple_smart_answers_controller.rb -------------------------------------------------------------------------------- /app/controllers/specialist_document_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/specialist_document_controller.rb -------------------------------------------------------------------------------- /app/controllers/speech_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/speech_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_error_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/static_error_pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/statistical_data_set_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/statistical_data_set_controller.rb -------------------------------------------------------------------------------- /app/controllers/transaction_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/transaction_controller.rb -------------------------------------------------------------------------------- /app/controllers/travel_advice_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/travel_advice_controller.rb -------------------------------------------------------------------------------- /app/controllers/webchat_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/controllers/webchat_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/block_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/block_helper.rb -------------------------------------------------------------------------------- /app/helpers/calendar_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/calendar_helper.rb -------------------------------------------------------------------------------- /app/helpers/consultation_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/consultation_helper.rb -------------------------------------------------------------------------------- /app/helpers/contents_list_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/contents_list_helper.rb -------------------------------------------------------------------------------- /app/helpers/currency_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/currency_helper.rb -------------------------------------------------------------------------------- /app/helpers/date_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/date_helper.rb -------------------------------------------------------------------------------- /app/helpers/draft_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/draft_helper.rb -------------------------------------------------------------------------------- /app/helpers/error_items_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/error_items_helper.rb -------------------------------------------------------------------------------- /app/helpers/govuk_personalisation_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/govuk_personalisation_helper.rb -------------------------------------------------------------------------------- /app/helpers/link_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/link_helper.rb -------------------------------------------------------------------------------- /app/helpers/locale_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/locale_helper.rb -------------------------------------------------------------------------------- /app/helpers/location_form_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/location_form_helper.rb -------------------------------------------------------------------------------- /app/helpers/parts_navigation_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/parts_navigation_helper.rb -------------------------------------------------------------------------------- /app/helpers/phone_number_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/phone_number_helper.rb -------------------------------------------------------------------------------- /app/helpers/theme_type_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/theme_type_helper.rb -------------------------------------------------------------------------------- /app/helpers/travel_advice_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/travel_advice_helper.rb -------------------------------------------------------------------------------- /app/helpers/url_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/helpers/url_helper.rb -------------------------------------------------------------------------------- /app/models/calendar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/calendar.rb -------------------------------------------------------------------------------- /app/models/calendar/division.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/calendar/division.rb -------------------------------------------------------------------------------- /app/models/calendar/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/calendar/event.rb -------------------------------------------------------------------------------- /app/models/calendar/year.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/calendar/year.rb -------------------------------------------------------------------------------- /app/models/call_for_evidence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/call_for_evidence.rb -------------------------------------------------------------------------------- /app/models/case_study.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/case_study.rb -------------------------------------------------------------------------------- /app/models/concerns/attachments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/attachments.rb -------------------------------------------------------------------------------- /app/models/concerns/emphasised_organisations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/emphasised_organisations.rb -------------------------------------------------------------------------------- /app/models/concerns/manual.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/manual.rb -------------------------------------------------------------------------------- /app/models/concerns/manual_sections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/manual_sections.rb -------------------------------------------------------------------------------- /app/models/concerns/national_applicability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/national_applicability.rb -------------------------------------------------------------------------------- /app/models/concerns/news_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/news_image.rb -------------------------------------------------------------------------------- /app/models/concerns/parts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/parts.rb -------------------------------------------------------------------------------- /app/models/concerns/people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/people.rb -------------------------------------------------------------------------------- /app/models/concerns/phases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/phases.rb -------------------------------------------------------------------------------- /app/models/concerns/political.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/political.rb -------------------------------------------------------------------------------- /app/models/concerns/updatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/updatable.rb -------------------------------------------------------------------------------- /app/models/concerns/ways_to_respond.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/ways_to_respond.rb -------------------------------------------------------------------------------- /app/models/concerns/withdrawable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/withdrawable.rb -------------------------------------------------------------------------------- /app/models/concerns/worldwide_organisations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/concerns/worldwide_organisations.rb -------------------------------------------------------------------------------- /app/models/consultation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/consultation.rb -------------------------------------------------------------------------------- /app/models/content_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/content_item.rb -------------------------------------------------------------------------------- /app/models/content_item_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/content_item_factory.rb -------------------------------------------------------------------------------- /app/models/contents_outline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/contents_outline.rb -------------------------------------------------------------------------------- /app/models/corporate_information_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/corporate_information_page.rb -------------------------------------------------------------------------------- /app/models/detailed_guide.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/detailed_guide.rb -------------------------------------------------------------------------------- /app/models/document_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/document_collection.rb -------------------------------------------------------------------------------- /app/models/election_postcode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/election_postcode.rb -------------------------------------------------------------------------------- /app/models/fatality_notice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/fatality_notice.rb -------------------------------------------------------------------------------- /app/models/field_of_operation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/field_of_operation.rb -------------------------------------------------------------------------------- /app/models/fields_of_operation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/fields_of_operation.rb -------------------------------------------------------------------------------- /app/models/finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/finder.rb -------------------------------------------------------------------------------- /app/models/flexible_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/flexible_page.rb -------------------------------------------------------------------------------- /app/models/flexible_page/flexible_section/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/flexible_page/flexible_section/base.rb -------------------------------------------------------------------------------- /app/models/flexible_page/flexible_section/feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/flexible_page/flexible_section/feed.rb -------------------------------------------------------------------------------- /app/models/flexible_page/flexible_section_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/flexible_page/flexible_section_factory.rb -------------------------------------------------------------------------------- /app/models/get_involved.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/get_involved.rb -------------------------------------------------------------------------------- /app/models/gone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/gone.rb -------------------------------------------------------------------------------- /app/models/guide.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/guide.rb -------------------------------------------------------------------------------- /app/models/history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/history.rb -------------------------------------------------------------------------------- /app/models/homepage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/homepage.rb -------------------------------------------------------------------------------- /app/models/html_publication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/html_publication.rb -------------------------------------------------------------------------------- /app/models/landing_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/action_link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/action_link.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/base.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/block_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/block_error.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/blocks_container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/blocks_container.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/box.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/box.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/card.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/columns_layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/columns_layout.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/document_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/document_list.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/featured.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/featured.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/govspeak.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/govspeak.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/heading.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/heading.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/hero.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/hero.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/image.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/layout_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/layout_base.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/logo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/logo.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/main_navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/main_navigation.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/map.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/quote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/quote.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/share_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/share_links.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/side_navigation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/side_navigation.rb -------------------------------------------------------------------------------- /app/models/landing_page/block/two_column_layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block/two_column_layout.rb -------------------------------------------------------------------------------- /app/models/landing_page/block_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/landing_page/block_factory.rb -------------------------------------------------------------------------------- /app/models/licence_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/licence_transaction.rb -------------------------------------------------------------------------------- /app/models/local_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/local_authority.rb -------------------------------------------------------------------------------- /app/models/local_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/local_transaction.rb -------------------------------------------------------------------------------- /app/models/location_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/location_error.rb -------------------------------------------------------------------------------- /app/models/locations_api_postcode_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/locations_api_postcode_response.rb -------------------------------------------------------------------------------- /app/models/logo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/logo.rb -------------------------------------------------------------------------------- /app/models/manual_section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/manual_section.rb -------------------------------------------------------------------------------- /app/models/news_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/news_article.rb -------------------------------------------------------------------------------- /app/models/organisation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/organisation.rb -------------------------------------------------------------------------------- /app/models/place.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/place.rb -------------------------------------------------------------------------------- /app/models/places_manager_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/places_manager_response.rb -------------------------------------------------------------------------------- /app/models/postcode_lookup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/postcode_lookup.rb -------------------------------------------------------------------------------- /app/models/publication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/publication.rb -------------------------------------------------------------------------------- /app/models/record_not_found.rb: -------------------------------------------------------------------------------- 1 | class RecordNotFound < StandardError 2 | end 3 | -------------------------------------------------------------------------------- /app/models/service_manual_guide.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/service_manual_guide.rb -------------------------------------------------------------------------------- /app/models/service_manual_homepage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/service_manual_homepage.rb -------------------------------------------------------------------------------- /app/models/service_manual_service_standard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/service_manual_service_standard.rb -------------------------------------------------------------------------------- /app/models/service_manual_service_toolkit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/service_manual_service_toolkit.rb -------------------------------------------------------------------------------- /app/models/service_manual_topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/service_manual_topic.rb -------------------------------------------------------------------------------- /app/models/simple_smart_answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/simple_smart_answer.rb -------------------------------------------------------------------------------- /app/models/specialist_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/specialist_document.rb -------------------------------------------------------------------------------- /app/models/speech.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/speech.rb -------------------------------------------------------------------------------- /app/models/statistical_data_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/statistical_data_set.rb -------------------------------------------------------------------------------- /app/models/topical_event_about_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/topical_event_about_page.rb -------------------------------------------------------------------------------- /app/models/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/transaction.rb -------------------------------------------------------------------------------- /app/models/travel_advice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/travel_advice.rb -------------------------------------------------------------------------------- /app/models/uprn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/uprn.rb -------------------------------------------------------------------------------- /app/models/webchat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/models/webchat.rb -------------------------------------------------------------------------------- /app/presenters/address_list_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/address_list_presenter.rb -------------------------------------------------------------------------------- /app/presenters/call_for_evidence_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/call_for_evidence_presenter.rb -------------------------------------------------------------------------------- /app/presenters/concerns/contents_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/concerns/contents_list.rb -------------------------------------------------------------------------------- /app/presenters/concerns/national_statistics_logo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/concerns/national_statistics_logo.rb -------------------------------------------------------------------------------- /app/presenters/consultation_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/consultation_presenter.rb -------------------------------------------------------------------------------- /app/presenters/content_item_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/content_item_presenter.rb -------------------------------------------------------------------------------- /app/presenters/contents_outline_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/contents_outline_presenter.rb -------------------------------------------------------------------------------- /app/presenters/detailed_guide_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/detailed_guide_presenter.rb -------------------------------------------------------------------------------- /app/presenters/document_collection_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/document_collection_presenter.rb -------------------------------------------------------------------------------- /app/presenters/electoral_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/electoral_presenter.rb -------------------------------------------------------------------------------- /app/presenters/faq_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/faq_presenter.rb -------------------------------------------------------------------------------- /app/presenters/field_of_operation_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/field_of_operation_presenter.rb -------------------------------------------------------------------------------- /app/presenters/get_involved_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/get_involved_presenter.rb -------------------------------------------------------------------------------- /app/presenters/guide_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/guide_presenter.rb -------------------------------------------------------------------------------- /app/presenters/html_publication_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/html_publication_presenter.rb -------------------------------------------------------------------------------- /app/presenters/licence_details_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/licence_details_presenter.rb -------------------------------------------------------------------------------- /app/presenters/local_authority_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/local_authority_presenter.rb -------------------------------------------------------------------------------- /app/presenters/place_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/place_presenter.rb -------------------------------------------------------------------------------- /app/presenters/publication_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/publication_presenter.rb -------------------------------------------------------------------------------- /app/presenters/service_list_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/service_list_presenter.rb -------------------------------------------------------------------------------- /app/presenters/service_manual_guide_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/service_manual_guide_presenter.rb -------------------------------------------------------------------------------- /app/presenters/service_manual_homepage_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/service_manual_homepage_presenter.rb -------------------------------------------------------------------------------- /app/presenters/service_manual_topic_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/service_manual_topic_presenter.rb -------------------------------------------------------------------------------- /app/presenters/simple_smart_answer_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/simple_smart_answer_presenter.rb -------------------------------------------------------------------------------- /app/presenters/specialist_document_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/specialist_document_presenter.rb -------------------------------------------------------------------------------- /app/presenters/speech_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/speech_presenter.rb -------------------------------------------------------------------------------- /app/presenters/statistical_data_set_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/statistical_data_set_presenter.rb -------------------------------------------------------------------------------- /app/presenters/transaction_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/transaction_presenter.rb -------------------------------------------------------------------------------- /app/presenters/travel_advice_index_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/travel_advice_index_presenter.rb -------------------------------------------------------------------------------- /app/presenters/travel_advice_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/presenters/travel_advice_presenter.rb -------------------------------------------------------------------------------- /app/services/csv_preview_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/services/csv_preview_service.rb -------------------------------------------------------------------------------- /app/services/electoral_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/services/electoral_service.rb -------------------------------------------------------------------------------- /app/views/answer/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/answer/show.html.erb -------------------------------------------------------------------------------- /app/views/application/_draft_fields.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/application/_draft_fields.html.erb -------------------------------------------------------------------------------- /app/views/application/_location_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/application/_location_form.html.erb -------------------------------------------------------------------------------- /app/views/calendar/_calendar_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/calendar/_calendar_footer.html.erb -------------------------------------------------------------------------------- /app/views/calendar/_calendar_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/calendar/_calendar_head.html.erb -------------------------------------------------------------------------------- /app/views/calendar/bank_holidays.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/calendar/bank_holidays.html.erb -------------------------------------------------------------------------------- /app/views/call_for_evidence/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/call_for_evidence/show.html.erb -------------------------------------------------------------------------------- /app/views/case_study/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/case_study/show.html.erb -------------------------------------------------------------------------------- /app/views/components/_calendar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/components/_calendar.html.erb -------------------------------------------------------------------------------- /app/views/components/_download_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/components/_download_link.html.erb -------------------------------------------------------------------------------- /app/views/components/docs/calendar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/components/docs/calendar.yml -------------------------------------------------------------------------------- /app/views/components/docs/download_link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/components/docs/download_link.yml -------------------------------------------------------------------------------- /app/views/consultation/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/consultation/show.html.erb -------------------------------------------------------------------------------- /app/views/corporate_information_page/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/corporate_information_page/show.html.erb -------------------------------------------------------------------------------- /app/views/csv_preview/access_limited.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/csv_preview/access_limited.html.erb -------------------------------------------------------------------------------- /app/views/csv_preview/malformed_csv.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/csv_preview/malformed_csv.html.erb -------------------------------------------------------------------------------- /app/views/csv_preview/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/csv_preview/show.html.erb -------------------------------------------------------------------------------- /app/views/detailed_guide/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/detailed_guide/show.html.erb -------------------------------------------------------------------------------- /app/views/development/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/development/index.html.erb -------------------------------------------------------------------------------- /app/views/document_collection/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/document_collection/show.html.erb -------------------------------------------------------------------------------- /app/views/electoral/_contact_details.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/electoral/_contact_details.html.erb -------------------------------------------------------------------------------- /app/views/electoral/address_picker.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/electoral/address_picker.html.erb -------------------------------------------------------------------------------- /app/views/electoral/results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/electoral/results.html.erb -------------------------------------------------------------------------------- /app/views/fatality_notice/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/fatality_notice/show.html.erb -------------------------------------------------------------------------------- /app/views/field_of_operation/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/field_of_operation/show.html.erb -------------------------------------------------------------------------------- /app/views/fields_of_operation/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/fields_of_operation/index.html.erb -------------------------------------------------------------------------------- /app/views/find_local_council/_base_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/find_local_council/_base_page.html.erb -------------------------------------------------------------------------------- /app/views/find_local_council/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/find_local_council/index.html.erb -------------------------------------------------------------------------------- /app/views/find_local_council/one_council.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/find_local_council/one_council.html.erb -------------------------------------------------------------------------------- /app/views/flexible_page/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/flexible_page/show.html.erb -------------------------------------------------------------------------------- /app/views/get_involved/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/get_involved/show.html.erb -------------------------------------------------------------------------------- /app/views/gone/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/gone/show.html.erb -------------------------------------------------------------------------------- /app/views/guide/show.html+print.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/guide/show.html+print.erb -------------------------------------------------------------------------------- /app/views/guide/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/guide/show.html.erb -------------------------------------------------------------------------------- /app/views/help/ab_testing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/help/ab_testing.html.erb -------------------------------------------------------------------------------- /app/views/help/cookie_settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/help/cookie_settings.html.erb -------------------------------------------------------------------------------- /app/views/help/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/help/index.html.erb -------------------------------------------------------------------------------- /app/views/help/sign_in.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/help/sign_in.html.erb -------------------------------------------------------------------------------- /app/views/help_page/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/help_page/show.html.erb -------------------------------------------------------------------------------- /app/views/homepage/_government_activity.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/homepage/_government_activity.html.erb -------------------------------------------------------------------------------- /app/views/homepage/_homepage_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/homepage/_homepage_header.html.erb -------------------------------------------------------------------------------- /app/views/homepage/_more_on_govuk.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/homepage/_more_on_govuk.html.erb -------------------------------------------------------------------------------- /app/views/homepage/_popular_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/homepage/_popular_links.html.erb -------------------------------------------------------------------------------- /app/views/homepage/_promotion_slots.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/homepage/_promotion_slots.html.erb -------------------------------------------------------------------------------- /app/views/homepage/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/homepage/index.html.erb -------------------------------------------------------------------------------- /app/views/html_publication/_print_meta_data.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/html_publication/_print_meta_data.html.erb -------------------------------------------------------------------------------- /app/views/html_publication/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/html_publication/show.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_action_link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_action_link.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_block_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_block_error.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_box.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_card.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_featured.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_featured.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_govspeak.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_govspeak.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_heading.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_heading.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_hero.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_hero.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_image.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_image.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_logo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_logo.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_map.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_map.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_quote.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_quote.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/blocks/_share_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/blocks/_share_links.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/show.html.erb -------------------------------------------------------------------------------- /app/views/landing_page/themes/_default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/landing_page/themes/_default.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/full_width.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/layouts/full_width.html.erb -------------------------------------------------------------------------------- /app/views/licence_transaction/authority.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/licence_transaction/authority.html.erb -------------------------------------------------------------------------------- /app/views/licence_transaction/continues_on.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/licence_transaction/continues_on.html.erb -------------------------------------------------------------------------------- /app/views/licence_transaction/start.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/licence_transaction/start.html.erb -------------------------------------------------------------------------------- /app/views/local_transaction/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/local_transaction/index.html.erb -------------------------------------------------------------------------------- /app/views/local_transaction/results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/local_transaction/results.html.erb -------------------------------------------------------------------------------- /app/views/news_article/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/news_article/show.html.erb -------------------------------------------------------------------------------- /app/views/place/_place.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/place/_place.html.erb -------------------------------------------------------------------------------- /app/views/place/multiple_authorities.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/place/multiple_authorities.html.erb -------------------------------------------------------------------------------- /app/views/place/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/place/show.html.erb -------------------------------------------------------------------------------- /app/views/placeholder/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/placeholder/show.html.erb -------------------------------------------------------------------------------- /app/views/publication/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/publication/show.html.erb -------------------------------------------------------------------------------- /app/views/roadmap/_image.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/roadmap/_image.html.erb -------------------------------------------------------------------------------- /app/views/roadmap/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/roadmap/index.html.erb -------------------------------------------------------------------------------- /app/views/service_manual/_email_signup.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/service_manual/_email_signup.html.erb -------------------------------------------------------------------------------- /app/views/service_manual/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/service_manual/index.html.erb -------------------------------------------------------------------------------- /app/views/service_manual/service_standard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/service_manual/service_standard.html.erb -------------------------------------------------------------------------------- /app/views/service_toolkit/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/service_toolkit/index.html.erb -------------------------------------------------------------------------------- /app/views/shared/_attachments_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/_attachments_list.html.erb -------------------------------------------------------------------------------- /app/views/shared/_base_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/_base_page.html.erb -------------------------------------------------------------------------------- /app/views/shared/_body_with_related_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/_body_with_related_links.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/_footer_navigation.html.erb -------------------------------------------------------------------------------- /app/views/shared/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/_header.html.erb -------------------------------------------------------------------------------- /app/views/shared/_history_notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/_history_notice.html.erb -------------------------------------------------------------------------------- /app/views/shared/_publication_metadata.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/_publication_metadata.html.erb -------------------------------------------------------------------------------- /app/views/shared/_publisher_metadata.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/_publisher_metadata.html.erb -------------------------------------------------------------------------------- /app/views/shared/_sidebar_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/_sidebar_navigation.html.erb -------------------------------------------------------------------------------- /app/views/shared/phased/_notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/phased/_notice.html.erb -------------------------------------------------------------------------------- /app/views/shared/phased/_outcome_details.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/phased/_outcome_details.html.erb -------------------------------------------------------------------------------- /app/views/shared/phased/_summary_banner.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/phased/_summary_banner.html.erb -------------------------------------------------------------------------------- /app/views/shared/phased/_ways_to_respond.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/shared/phased/_ways_to_respond.html.erb -------------------------------------------------------------------------------- /app/views/simple_smart_answers/_outcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/simple_smart_answers/_outcome.html.erb -------------------------------------------------------------------------------- /app/views/simple_smart_answers/flow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/simple_smart_answers/flow.html.erb -------------------------------------------------------------------------------- /app/views/simple_smart_answers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/simple_smart_answers/show.html.erb -------------------------------------------------------------------------------- /app/views/specialist_document/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/specialist_document/show.html.erb -------------------------------------------------------------------------------- /app/views/speech/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/speech/show.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/400.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/400.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/401.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/401.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/403.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/403.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/404.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/404.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/405.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/405.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/406.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/406.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/410.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/410.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/422.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/422.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/429.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/429.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/500.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/500.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/501.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/501.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/502.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/502.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/503.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/503.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/504.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/504.html.erb -------------------------------------------------------------------------------- /app/views/static_error_pages/_error_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/static_error_pages/_error_page.html.erb -------------------------------------------------------------------------------- /app/views/statistical_data_set/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/statistical_data_set/show.html.erb -------------------------------------------------------------------------------- /app/views/transaction/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/transaction/show.html.erb -------------------------------------------------------------------------------- /app/views/travel_advice/_country.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/travel_advice/_country.atom.builder -------------------------------------------------------------------------------- /app/views/travel_advice/_first_part.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/travel_advice/_first_part.html.erb -------------------------------------------------------------------------------- /app/views/travel_advice/index.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/travel_advice/index.atom.builder -------------------------------------------------------------------------------- /app/views/travel_advice/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/travel_advice/index.html.erb -------------------------------------------------------------------------------- /app/views/travel_advice/show.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/travel_advice/show.atom.builder -------------------------------------------------------------------------------- /app/views/travel_advice/show.html+print.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/travel_advice/show.html+print.erb -------------------------------------------------------------------------------- /app/views/travel_advice/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/travel_advice/show.html.erb -------------------------------------------------------------------------------- /app/views/webchat/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/app/views/webchat/show.html.erb -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/govuk_examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/govuk_examples.yml -------------------------------------------------------------------------------- /config/i18n-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/i18n-tasks.yml -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/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/frontend/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/dartsass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/dartsass.rb -------------------------------------------------------------------------------- /config/initializers/date_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/date_formats.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/govuk_i18n.rb: -------------------------------------------------------------------------------- 1 | GovukI18n.configure 2 | -------------------------------------------------------------------------------- /config/initializers/govuk_publishing_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/govuk_publishing_components.rb -------------------------------------------------------------------------------- /config/initializers/govuk_web_banners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/govuk_web_banners.rb -------------------------------------------------------------------------------- /config/initializers/graphql_traffic_rates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/graphql_traffic_rates.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/local_links_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/local_links_manager.rb -------------------------------------------------------------------------------- /config/initializers/locations_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/locations_api.rb -------------------------------------------------------------------------------- /config/initializers/maintenance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/maintenance.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/places_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/places_manager.rb -------------------------------------------------------------------------------- /config/initializers/prometheus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/prometheus.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/website_root.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/website_root.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ar.yml -------------------------------------------------------------------------------- /config/locales/az.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/az.yml -------------------------------------------------------------------------------- /config/locales/be.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/be.yml -------------------------------------------------------------------------------- /config/locales/bg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/bg.yml -------------------------------------------------------------------------------- /config/locales/bn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/bn.yml -------------------------------------------------------------------------------- /config/locales/cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/cs.yml -------------------------------------------------------------------------------- /config/locales/cy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/cy.yml -------------------------------------------------------------------------------- /config/locales/da.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/da.yml -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/dr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/dr.yml -------------------------------------------------------------------------------- /config/locales/el.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/el.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es-419.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/es-419.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/et.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/et.yml -------------------------------------------------------------------------------- /config/locales/fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/fa.yml -------------------------------------------------------------------------------- /config/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/fi.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/gd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/gd.yml -------------------------------------------------------------------------------- /config/locales/gu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/gu.yml -------------------------------------------------------------------------------- /config/locales/he.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/he.yml -------------------------------------------------------------------------------- /config/locales/hi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/hi.yml -------------------------------------------------------------------------------- /config/locales/hr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/hr.yml -------------------------------------------------------------------------------- /config/locales/hu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/hu.yml -------------------------------------------------------------------------------- /config/locales/hy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/hy.yml -------------------------------------------------------------------------------- /config/locales/id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/id.yml -------------------------------------------------------------------------------- /config/locales/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/is.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/it.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/ka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ka.yml -------------------------------------------------------------------------------- /config/locales/kk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/kk.yml -------------------------------------------------------------------------------- /config/locales/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ko.yml -------------------------------------------------------------------------------- /config/locales/ku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ku.yml -------------------------------------------------------------------------------- /config/locales/ky.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ky.yml -------------------------------------------------------------------------------- /config/locales/lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/lt.yml -------------------------------------------------------------------------------- /config/locales/lv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/lv.yml -------------------------------------------------------------------------------- /config/locales/ms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ms.yml -------------------------------------------------------------------------------- /config/locales/mt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/mt.yml -------------------------------------------------------------------------------- /config/locales/ne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ne.yml -------------------------------------------------------------------------------- /config/locales/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/nl.yml -------------------------------------------------------------------------------- /config/locales/no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/no.yml -------------------------------------------------------------------------------- /config/locales/pa-pk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/pa-pk.yml -------------------------------------------------------------------------------- /config/locales/pa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/pa.yml -------------------------------------------------------------------------------- /config/locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/pl.yml -------------------------------------------------------------------------------- /config/locales/ps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ps.yml -------------------------------------------------------------------------------- /config/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/pt.yml -------------------------------------------------------------------------------- /config/locales/ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ro.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/si.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/si.yml -------------------------------------------------------------------------------- /config/locales/sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/sk.yml -------------------------------------------------------------------------------- /config/locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/sl.yml -------------------------------------------------------------------------------- /config/locales/so.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/so.yml -------------------------------------------------------------------------------- /config/locales/sq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/sq.yml -------------------------------------------------------------------------------- /config/locales/sr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/sr.yml -------------------------------------------------------------------------------- /config/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/sv.yml -------------------------------------------------------------------------------- /config/locales/sw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/sw.yml -------------------------------------------------------------------------------- /config/locales/ta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ta.yml -------------------------------------------------------------------------------- /config/locales/th.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/th.yml -------------------------------------------------------------------------------- /config/locales/ti.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ti.yml -------------------------------------------------------------------------------- /config/locales/tk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/tk.yml -------------------------------------------------------------------------------- /config/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/tr.yml -------------------------------------------------------------------------------- /config/locales/uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/uk.yml -------------------------------------------------------------------------------- /config/locales/ur.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/ur.yml -------------------------------------------------------------------------------- /config/locales/uz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/uz.yml -------------------------------------------------------------------------------- /config/locales/vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/vi.yml -------------------------------------------------------------------------------- /config/locales/yi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/yi.yml -------------------------------------------------------------------------------- /config/locales/zh-hk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/zh-hk.yml -------------------------------------------------------------------------------- /config/locales/zh-tw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/zh-tw.yml -------------------------------------------------------------------------------- /config/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/locales/zh.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /docs/adr/0001-render-csv-previews-in-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/adr/0001-render-csv-previews-in-frontend.md -------------------------------------------------------------------------------- /docs/adr/0002-flexible-landing-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/adr/0002-flexible-landing-pages.md -------------------------------------------------------------------------------- /docs/building_blocks_for_flexible_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/building_blocks_for_flexible_content.md -------------------------------------------------------------------------------- /docs/calendars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/calendars.md -------------------------------------------------------------------------------- /docs/elections-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/elections-api.md -------------------------------------------------------------------------------- /docs/images/app-promo-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/images/app-promo-homepage.png -------------------------------------------------------------------------------- /docs/images/homepage-promotion-slots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/images/homepage-promotion-slots.png -------------------------------------------------------------------------------- /docs/local-authorities-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/local-authorities-api.md -------------------------------------------------------------------------------- /docs/local-content-items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/local-content-items.md -------------------------------------------------------------------------------- /docs/managing-the-app-promo-on-the-homepage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/managing-the-app-promo-on-the-homepage.md -------------------------------------------------------------------------------- /docs/update-homepage-promotion-slots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/docs/update-homepage-promotion-slots.md -------------------------------------------------------------------------------- /lib/api_error_routing_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/api_error_routing_constraint.rb -------------------------------------------------------------------------------- /lib/content_item_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/content_item_loader.rb -------------------------------------------------------------------------------- /lib/content_item_loaders/content_store_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/content_item_loaders/content_store_loader.rb -------------------------------------------------------------------------------- /lib/content_item_loaders/graphql_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/content_item_loaders/graphql_loader.rb -------------------------------------------------------------------------------- /lib/content_item_loaders/hub_redirect_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/content_item_loaders/hub_redirect_loader.rb -------------------------------------------------------------------------------- /lib/content_item_loaders/json_file_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/content_item_loaders/json_file_loader.rb -------------------------------------------------------------------------------- /lib/content_item_loaders/local_file_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/content_item_loaders/local_file_loader.rb -------------------------------------------------------------------------------- /lib/content_item_loaders/unable_to_load.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/content_item_loaders/unable_to_load.rb -------------------------------------------------------------------------------- /lib/content_item_loaders/yaml_file_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/content_item_loaders/yaml_file_loader.rb -------------------------------------------------------------------------------- /lib/data/bank-holidays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/data/bank-holidays.json -------------------------------------------------------------------------------- /lib/data/local-content-items/test/flexible-page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/data/local-content-items/test/flexible-page.yml -------------------------------------------------------------------------------- /lib/data/when-do-the-clocks-change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/data/when-do-the-clocks-change.json -------------------------------------------------------------------------------- /lib/format_routing_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/format_routing_constraint.rb -------------------------------------------------------------------------------- /lib/frontend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/frontend.rb -------------------------------------------------------------------------------- /lib/full_path_format_routing_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/full_path_format_routing_constraint.rb -------------------------------------------------------------------------------- /lib/ics_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/ics_renderer.rb -------------------------------------------------------------------------------- /lib/postcode_sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/postcode_sanitizer.rb -------------------------------------------------------------------------------- /lib/sanitiser/strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/sanitiser/strategy.rb -------------------------------------------------------------------------------- /lib/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/services.rb -------------------------------------------------------------------------------- /lib/simple_smart_answers/base_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/simple_smart_answers/base_error.rb -------------------------------------------------------------------------------- /lib/simple_smart_answers/flow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/simple_smart_answers/flow.rb -------------------------------------------------------------------------------- /lib/simple_smart_answers/invalid_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/simple_smart_answers/invalid_response.rb -------------------------------------------------------------------------------- /lib/simple_smart_answers/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/simple_smart_answers/node.rb -------------------------------------------------------------------------------- /lib/simple_smart_answers/state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/simple_smart_answers/state.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/consolidation.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/tasks/consolidation.rake -------------------------------------------------------------------------------- /lib/tasks/jasmine.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/tasks/jasmine.rake -------------------------------------------------------------------------------- /lib/tasks/lint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/lib/tasks/lint.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/package.json -------------------------------------------------------------------------------- /spec/components/all_components_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/components/all_components_spec.rb -------------------------------------------------------------------------------- /spec/components/calendar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/components/calendar_spec.rb -------------------------------------------------------------------------------- /spec/components/download_link_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/components/download_link_spec.rb -------------------------------------------------------------------------------- /spec/factories/content_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/factories/content_items.rb -------------------------------------------------------------------------------- /spec/factories/landing_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/factories/landing_pages.rb -------------------------------------------------------------------------------- /spec/fixtures/bank-holidays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/fixtures/bank-holidays.json -------------------------------------------------------------------------------- /spec/fixtures/electoral-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/fixtures/electoral-result.json -------------------------------------------------------------------------------- /spec/fixtures/local-content-items/flexible-page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/fixtures/local-content-items/flexible-page.yml -------------------------------------------------------------------------------- /spec/fixtures/local-content-items/my-json-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema_name": "json_page" 3 | } -------------------------------------------------------------------------------- /spec/fixtures/local-content-items/my-yaml-item.yml: -------------------------------------------------------------------------------- 1 | schema_name: yaml_page 2 | -------------------------------------------------------------------------------- /spec/fixtures/single-calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/fixtures/single-calendar.json -------------------------------------------------------------------------------- /spec/fixtures/when-do-the-clocks-change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/fixtures/when-do-the-clocks-change.json -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/block_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/block_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/consultation_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/consultation_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/contents_list_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/contents_list_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/currency_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/currency_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/date_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/date_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/error_items_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/error_items_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/govuk_personalisation_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/govuk_personalisation_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/link_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/link_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/locale_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/locale_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/parts_navigation_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/parts_navigation_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/phone_number_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/phone_number_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/theme_type_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/helpers/theme_type_helper_spec.rb -------------------------------------------------------------------------------- /spec/initializers/graphql_traffic_rates_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/initializers/graphql_traffic_rates_spec.rb -------------------------------------------------------------------------------- /spec/javascripts/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/javascripts/unit/foreign-travel-advice.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/javascripts/unit/foreign-travel-advice.spec.js -------------------------------------------------------------------------------- /spec/javascripts/unit/modules/webchat.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/javascripts/unit/modules/webchat.spec.js -------------------------------------------------------------------------------- /spec/javascripts/unit/support.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/javascripts/unit/support.spec.js -------------------------------------------------------------------------------- /spec/javascripts/vendor/jasmine-ajax-3.4.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/javascripts/vendor/jasmine-ajax-3.4.0.js -------------------------------------------------------------------------------- /spec/javascripts/vendor/jquery-1.12.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/javascripts/vendor/jquery-1.12.4.js -------------------------------------------------------------------------------- /spec/models/calendar/division_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/calendar/division_spec.rb -------------------------------------------------------------------------------- /spec/models/calendar/event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/calendar/event_spec.rb -------------------------------------------------------------------------------- /spec/models/calendar/year_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/calendar/year_spec.rb -------------------------------------------------------------------------------- /spec/models/calendar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/calendar_spec.rb -------------------------------------------------------------------------------- /spec/models/call_for_evidence_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/call_for_evidence_spec.rb -------------------------------------------------------------------------------- /spec/models/case_study_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/case_study_spec.rb -------------------------------------------------------------------------------- /spec/models/consultation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/consultation_spec.rb -------------------------------------------------------------------------------- /spec/models/content_item_factory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/content_item_factory_spec.rb -------------------------------------------------------------------------------- /spec/models/content_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/content_item_spec.rb -------------------------------------------------------------------------------- /spec/models/contents_outline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/contents_outline_spec.rb -------------------------------------------------------------------------------- /spec/models/corporate_information_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/corporate_information_page_spec.rb -------------------------------------------------------------------------------- /spec/models/detailed_guide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/detailed_guide_spec.rb -------------------------------------------------------------------------------- /spec/models/document_collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/document_collection_spec.rb -------------------------------------------------------------------------------- /spec/models/election_postcode_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/election_postcode_spec.rb -------------------------------------------------------------------------------- /spec/models/fatality_notice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/fatality_notice_spec.rb -------------------------------------------------------------------------------- /spec/models/field_of_operation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/field_of_operation_spec.rb -------------------------------------------------------------------------------- /spec/models/fields_of_operation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/fields_of_operation_spec.rb -------------------------------------------------------------------------------- /spec/models/finder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/finder_spec.rb -------------------------------------------------------------------------------- /spec/models/get_involved_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/get_involved_spec.rb -------------------------------------------------------------------------------- /spec/models/gone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/gone_spec.rb -------------------------------------------------------------------------------- /spec/models/guide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/guide_spec.rb -------------------------------------------------------------------------------- /spec/models/history_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/history_spec.rb -------------------------------------------------------------------------------- /spec/models/homepage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/homepage_spec.rb -------------------------------------------------------------------------------- /spec/models/html_publication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/html_publication_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/action_link_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/action_link_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/base_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/block_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/block_error_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/box_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/box_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/card_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/card_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/document_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/document_list_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/featured_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/featured_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/govspeak_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/govspeak_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/heading_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/heading_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/hero_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/hero_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/image_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/layout_base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/layout_base_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/logo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/logo_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/map_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/map_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/quote_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/quote_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block/share_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block/share_links_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page/block_factory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page/block_factory_spec.rb -------------------------------------------------------------------------------- /spec/models/landing_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/landing_page_spec.rb -------------------------------------------------------------------------------- /spec/models/licence_transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/licence_transaction_spec.rb -------------------------------------------------------------------------------- /spec/models/local_authority_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/local_authority_spec.rb -------------------------------------------------------------------------------- /spec/models/local_transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/local_transaction_spec.rb -------------------------------------------------------------------------------- /spec/models/location_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/location_error_spec.rb -------------------------------------------------------------------------------- /spec/models/logo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/logo_spec.rb -------------------------------------------------------------------------------- /spec/models/manual_section_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/manual_section_spec.rb -------------------------------------------------------------------------------- /spec/models/news_article_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/news_article_spec.rb -------------------------------------------------------------------------------- /spec/models/organisation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/organisation_spec.rb -------------------------------------------------------------------------------- /spec/models/place_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/place_spec.rb -------------------------------------------------------------------------------- /spec/models/publication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/publication_spec.rb -------------------------------------------------------------------------------- /spec/models/service_manual_guide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/service_manual_guide_spec.rb -------------------------------------------------------------------------------- /spec/models/service_manual_homepage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/service_manual_homepage_spec.rb -------------------------------------------------------------------------------- /spec/models/service_manual_service_standard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/service_manual_service_standard_spec.rb -------------------------------------------------------------------------------- /spec/models/service_manual_service_toolkit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/service_manual_service_toolkit_spec.rb -------------------------------------------------------------------------------- /spec/models/service_manual_topic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/service_manual_topic_spec.rb -------------------------------------------------------------------------------- /spec/models/simple_smart_answer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/simple_smart_answer_spec.rb -------------------------------------------------------------------------------- /spec/models/specialist_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/specialist_document_spec.rb -------------------------------------------------------------------------------- /spec/models/speech_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/speech_spec.rb -------------------------------------------------------------------------------- /spec/models/statistical_data_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/statistical_data_set_spec.rb -------------------------------------------------------------------------------- /spec/models/topical_event_about_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/topical_event_about_page_spec.rb -------------------------------------------------------------------------------- /spec/models/transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/transaction_spec.rb -------------------------------------------------------------------------------- /spec/models/travel_advice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/travel_advice_spec.rb -------------------------------------------------------------------------------- /spec/models/uprn_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/uprn_spec.rb -------------------------------------------------------------------------------- /spec/models/webchat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/models/webchat_spec.rb -------------------------------------------------------------------------------- /spec/presenter/address_list_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/address_list_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/call_for_evidence_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/call_for_evidence_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/consultation_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/consultation_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/content_item_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/content_item_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/contents_outline_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/contents_outline_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/detailed_guide_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/detailed_guide_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/document_collection_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/document_collection_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/electoral_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/electoral_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/faq_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/faq_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/field_of_operation_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/field_of_operation_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/get_involved_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/get_involved_spec.rb -------------------------------------------------------------------------------- /spec/presenter/guide_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/guide_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/html_publication_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/html_publication_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/licence_details_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/licence_details_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/local_authority_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/local_authority_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/place_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/place_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/publication_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/publication_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/simple_smart_answer_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/simple_smart_answer_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/specialist_document_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/specialist_document_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/speech_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/speech_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/transaction_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/transaction_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/travel_advice_index_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/travel_advice_index_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenter/travel_advice_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/presenter/travel_advice_presenter_spec.rb -------------------------------------------------------------------------------- /spec/requests/answer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/answer_spec.rb -------------------------------------------------------------------------------- /spec/requests/calendars_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/calendars_spec.rb -------------------------------------------------------------------------------- /spec/requests/call_for_evidence_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/call_for_evidence_spec.rb -------------------------------------------------------------------------------- /spec/requests/case_study_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/case_study_spec.rb -------------------------------------------------------------------------------- /spec/requests/consultation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/consultation_spec.rb -------------------------------------------------------------------------------- /spec/requests/content_items_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/content_items_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/content_loading_problems_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/content_loading_problems_spec.rb -------------------------------------------------------------------------------- /spec/requests/corporate_information_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/corporate_information_page_spec.rb -------------------------------------------------------------------------------- /spec/requests/csv_preview_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/csv_preview_spec.rb -------------------------------------------------------------------------------- /spec/requests/detailed_guide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/detailed_guide_spec.rb -------------------------------------------------------------------------------- /spec/requests/document_collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/document_collection_spec.rb -------------------------------------------------------------------------------- /spec/requests/fatality_notice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/fatality_notice_spec.rb -------------------------------------------------------------------------------- /spec/requests/favicon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/favicon_spec.rb -------------------------------------------------------------------------------- /spec/requests/field_of_operation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/field_of_operation_spec.rb -------------------------------------------------------------------------------- /spec/requests/fields_of_operation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/fields_of_operation_spec.rb -------------------------------------------------------------------------------- /spec/requests/find_local_council_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/find_local_council_spec.rb -------------------------------------------------------------------------------- /spec/requests/flexible_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/flexible_page_spec.rb -------------------------------------------------------------------------------- /spec/requests/get_involved_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/get_involved_spec.rb -------------------------------------------------------------------------------- /spec/requests/gone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/gone_spec.rb -------------------------------------------------------------------------------- /spec/requests/guide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/guide_spec.rb -------------------------------------------------------------------------------- /spec/requests/help_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/help_spec.rb -------------------------------------------------------------------------------- /spec/requests/homepage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/homepage_spec.rb -------------------------------------------------------------------------------- /spec/requests/html_publication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/html_publication_spec.rb -------------------------------------------------------------------------------- /spec/requests/landing_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/landing_page_spec.rb -------------------------------------------------------------------------------- /spec/requests/licence_transactions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/licence_transactions_spec.rb -------------------------------------------------------------------------------- /spec/requests/local_authority_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/local_authority_api_spec.rb -------------------------------------------------------------------------------- /spec/requests/local_transactions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/local_transactions_spec.rb -------------------------------------------------------------------------------- /spec/requests/news_article_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/news_article_spec.rb -------------------------------------------------------------------------------- /spec/requests/placeholder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/placeholder_spec.rb -------------------------------------------------------------------------------- /spec/requests/places_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/places_spec.rb -------------------------------------------------------------------------------- /spec/requests/publication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/publication_spec.rb -------------------------------------------------------------------------------- /spec/requests/random_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/random_spec.rb -------------------------------------------------------------------------------- /spec/requests/roadmap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/roadmap_spec.rb -------------------------------------------------------------------------------- /spec/requests/sanitiser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/sanitiser_spec.rb -------------------------------------------------------------------------------- /spec/requests/service_manual_guide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/service_manual_guide_spec.rb -------------------------------------------------------------------------------- /spec/requests/service_manual_homepage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/service_manual_homepage_spec.rb -------------------------------------------------------------------------------- /spec/requests/service_manual_topic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/service_manual_topic_spec.rb -------------------------------------------------------------------------------- /spec/requests/service_toolkit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/service_toolkit_spec.rb -------------------------------------------------------------------------------- /spec/requests/sessions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/sessions_spec.rb -------------------------------------------------------------------------------- /spec/requests/simple_smart_answers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/simple_smart_answers_spec.rb -------------------------------------------------------------------------------- /spec/requests/specialist_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/specialist_document_spec.rb -------------------------------------------------------------------------------- /spec/requests/speech_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/speech_spec.rb -------------------------------------------------------------------------------- /spec/requests/static_error_pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/static_error_pages_spec.rb -------------------------------------------------------------------------------- /spec/requests/statistical_data_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/statistical_data_set_spec.rb -------------------------------------------------------------------------------- /spec/requests/topical_event_about_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/topical_event_about_page_spec.rb -------------------------------------------------------------------------------- /spec/requests/transactions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/transactions_spec.rb -------------------------------------------------------------------------------- /spec/requests/travel_advice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/requests/travel_advice_spec.rb -------------------------------------------------------------------------------- /spec/routing/calendars_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/routing/calendars_spec.rb -------------------------------------------------------------------------------- /spec/routing/csv_previews_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/routing/csv_previews_spec.rb -------------------------------------------------------------------------------- /spec/routing/landing_pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/routing/landing_pages_spec.rb -------------------------------------------------------------------------------- /spec/routing/simple_smart_answers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/routing/simple_smart_answers_spec.rb -------------------------------------------------------------------------------- /spec/service_consumers/pact_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/service_consumers/pact_helper.rb -------------------------------------------------------------------------------- /spec/services/csv_preview_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/services/csv_preview_service_spec.rb -------------------------------------------------------------------------------- /spec/services/electoral_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/services/electoral_service_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/asset_manager_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/asset_manager_helpers.rb -------------------------------------------------------------------------------- /spec/support/calendar_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/calendar_helpers.rb -------------------------------------------------------------------------------- /spec/support/component_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/component_helpers.rb -------------------------------------------------------------------------------- /spec/support/concerns/attachments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/attachments.rb -------------------------------------------------------------------------------- /spec/support/concerns/contents_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/contents_list.rb -------------------------------------------------------------------------------- /spec/support/concerns/emphasised_organisations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/emphasised_organisations.rb -------------------------------------------------------------------------------- /spec/support/concerns/manual.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/manual.rb -------------------------------------------------------------------------------- /spec/support/concerns/manual_sections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/manual_sections.rb -------------------------------------------------------------------------------- /spec/support/concerns/national_applicability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/national_applicability.rb -------------------------------------------------------------------------------- /spec/support/concerns/national_statistics_logo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/national_statistics_logo.rb -------------------------------------------------------------------------------- /spec/support/concerns/news_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/news_image.rb -------------------------------------------------------------------------------- /spec/support/concerns/parts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/parts.rb -------------------------------------------------------------------------------- /spec/support/concerns/people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/people.rb -------------------------------------------------------------------------------- /spec/support/concerns/phases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/phases.rb -------------------------------------------------------------------------------- /spec/support/concerns/political.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/political.rb -------------------------------------------------------------------------------- /spec/support/concerns/updatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/updatable.rb -------------------------------------------------------------------------------- /spec/support/concerns/ways_to_respond.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/ways_to_respond.rb -------------------------------------------------------------------------------- /spec/support/concerns/withdrawable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/withdrawable.rb -------------------------------------------------------------------------------- /spec/support/concerns/worldwide_organisations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/concerns/worldwide_organisations.rb -------------------------------------------------------------------------------- /spec/support/content_store_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/content_store_helpers.rb -------------------------------------------------------------------------------- /spec/support/election_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/election_helpers.rb -------------------------------------------------------------------------------- /spec/support/jasmine-browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/jasmine-browser.json -------------------------------------------------------------------------------- /spec/support/landing_page_blocks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/landing_page_blocks.rb -------------------------------------------------------------------------------- /spec/support/location_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/location_helpers.rb -------------------------------------------------------------------------------- /spec/support/matchers/have_button_as_link_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/matchers/have_button_as_link_matcher.rb -------------------------------------------------------------------------------- /spec/support/matchers/have_contents_list_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/matchers/have_contents_list_matcher.rb -------------------------------------------------------------------------------- /spec/support/meta_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/meta_tags.rb -------------------------------------------------------------------------------- /spec/support/schema_org_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/schema_org_helpers.rb -------------------------------------------------------------------------------- /spec/support/search_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/search_helpers.rb -------------------------------------------------------------------------------- /spec/support/single_page_notification_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/support/single_page_notification_helpers.rb -------------------------------------------------------------------------------- /spec/system/account_home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/account_home_spec.rb -------------------------------------------------------------------------------- /spec/system/answer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/answer_spec.rb -------------------------------------------------------------------------------- /spec/system/bank_holidays_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/bank_holidays_spec.rb -------------------------------------------------------------------------------- /spec/system/call_for_evidence_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/call_for_evidence_spec.rb -------------------------------------------------------------------------------- /spec/system/case_study_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/case_study_spec.rb -------------------------------------------------------------------------------- /spec/system/consultation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/consultation_spec.rb -------------------------------------------------------------------------------- /spec/system/corporate_information_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/corporate_information_page_spec.rb -------------------------------------------------------------------------------- /spec/system/csv_preview_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/csv_preview_spec.rb -------------------------------------------------------------------------------- /spec/system/detailed_guide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/detailed_guide_spec.rb -------------------------------------------------------------------------------- /spec/system/developer_root_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/developer_root_spec.rb -------------------------------------------------------------------------------- /spec/system/document_collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/document_collection_spec.rb -------------------------------------------------------------------------------- /spec/system/electoral_look_up_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/electoral_look_up_spec.rb -------------------------------------------------------------------------------- /spec/system/error_handling_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/error_handling_spec.rb -------------------------------------------------------------------------------- /spec/system/fatality_notice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/fatality_notice_spec.rb -------------------------------------------------------------------------------- /spec/system/field_of_operation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/field_of_operation_spec.rb -------------------------------------------------------------------------------- /spec/system/fields_of_operation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/fields_of_operation_spec.rb -------------------------------------------------------------------------------- /spec/system/find_local_council_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/find_local_council_spec.rb -------------------------------------------------------------------------------- /spec/system/flexible_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/flexible_page_spec.rb -------------------------------------------------------------------------------- /spec/system/get_involved_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/get_involved_spec.rb -------------------------------------------------------------------------------- /spec/system/gone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/gone_spec.rb -------------------------------------------------------------------------------- /spec/system/guide_print_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/guide_print_spec.rb -------------------------------------------------------------------------------- /spec/system/guide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/guide_spec.rb -------------------------------------------------------------------------------- /spec/system/gwyliau_banc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/gwyliau_banc_spec.rb -------------------------------------------------------------------------------- /spec/system/help_cookies_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/help_cookies_spec.rb -------------------------------------------------------------------------------- /spec/system/help_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/help_page_spec.rb -------------------------------------------------------------------------------- /spec/system/help_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/help_spec.rb -------------------------------------------------------------------------------- /spec/system/homepage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/homepage_spec.rb -------------------------------------------------------------------------------- /spec/system/html_publication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/html_publication_spec.rb -------------------------------------------------------------------------------- /spec/system/icalendar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/icalendar_spec.rb -------------------------------------------------------------------------------- /spec/system/json_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/json_spec.rb -------------------------------------------------------------------------------- /spec/system/landing_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/landing_page_spec.rb -------------------------------------------------------------------------------- /spec/system/licence_transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/licence_transaction_spec.rb -------------------------------------------------------------------------------- /spec/system/local_transactions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/local_transactions_spec.rb -------------------------------------------------------------------------------- /spec/system/localisation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/localisation_spec.rb -------------------------------------------------------------------------------- /spec/system/news_article_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/news_article_spec.rb -------------------------------------------------------------------------------- /spec/system/place_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/place_spec.rb -------------------------------------------------------------------------------- /spec/system/publication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/publication_spec.rb -------------------------------------------------------------------------------- /spec/system/service_manual_guide_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/service_manual_guide_spec.rb -------------------------------------------------------------------------------- /spec/system/service_manual_homepage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/service_manual_homepage_spec.rb -------------------------------------------------------------------------------- /spec/system/service_manual_topic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/service_manual_topic_spec.rb -------------------------------------------------------------------------------- /spec/system/service_toolkit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/service_toolkit_spec.rb -------------------------------------------------------------------------------- /spec/system/sessions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/sessions_spec.rb -------------------------------------------------------------------------------- /spec/system/sign_in_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/sign_in_spec.rb -------------------------------------------------------------------------------- /spec/system/simple_smart_answers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/simple_smart_answers_spec.rb -------------------------------------------------------------------------------- /spec/system/specialist_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/specialist_document_spec.rb -------------------------------------------------------------------------------- /spec/system/speech_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/speech_spec.rb -------------------------------------------------------------------------------- /spec/system/static_error_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/static_error_page_spec.rb -------------------------------------------------------------------------------- /spec/system/statistical_data_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/statistical_data_set_spec.rb -------------------------------------------------------------------------------- /spec/system/topical_event_about_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/topical_event_about_page_spec.rb -------------------------------------------------------------------------------- /spec/system/transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/transaction_spec.rb -------------------------------------------------------------------------------- /spec/system/travel_advice_atom_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/travel_advice_atom_spec.rb -------------------------------------------------------------------------------- /spec/system/travel_advice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/travel_advice_spec.rb -------------------------------------------------------------------------------- /spec/system/webchat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/webchat_spec.rb -------------------------------------------------------------------------------- /spec/system/when_do_the_clocks_change_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/system/when_do_the_clocks_change_spec.rb -------------------------------------------------------------------------------- /spec/unit/api_error_routing_constraint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/unit/api_error_routing_constraint_spec.rb -------------------------------------------------------------------------------- /spec/unit/content_item_loader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/unit/content_item_loader_spec.rb -------------------------------------------------------------------------------- /spec/unit/format_routing_constraint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/unit/format_routing_constraint_spec.rb -------------------------------------------------------------------------------- /spec/unit/ics_renderer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/unit/ics_renderer_spec.rb -------------------------------------------------------------------------------- /spec/unit/locales_validation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/unit/locales_validation_spec.rb -------------------------------------------------------------------------------- /spec/unit/postcode_sanitizer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/unit/postcode_sanitizer_spec.rb -------------------------------------------------------------------------------- /spec/unit/sanitiser/strategy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/unit/sanitiser/strategy_spec.rb -------------------------------------------------------------------------------- /spec/unit/simple_smart_answers/flow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/unit/simple_smart_answers/flow_spec.rb -------------------------------------------------------------------------------- /spec/unit/simple_smart_answers/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/spec/unit/simple_smart_answers/node_spec.rb -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/startup.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/frontend/HEAD/yarn.lock --------------------------------------------------------------------------------