Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into refactor/splitRequest…
Browse files Browse the repository at this point in the history
…DataClass
  • Loading branch information
GeorgeGoodall committed May 30, 2024
2 parents b08cc89 + 3f8c4f7 commit c4e572f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion config/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ aws: {
}
redis: false
url: 'https://publish-planning.data.gov.uk'
serviceName: 'Publish planning and housing data for England'
serviceName: 'Check planning and housing data for England'
feedbackLink: 'https://docs.google.com/forms/d/e/1FAIpQLSdYXqY0Aaket9XJBiGDhSL_CD_cxHZxgvQCFZZtdURdvvIY5A/viewform'
18 changes: 9 additions & 9 deletions src/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ export const finishedProcessingStatuses = [
]

export const allowedFileTypes = {
csv: ['text/csv', 'text/plain'],
xls: ['application/vnd.ms-excel'],
xlsx: ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'],
json: ['application/json'],
geojson: ['application/vnd.geo+json'],
gml: ['application/gml+xml'],
gpkg: ['application/gpkg'],
sqlite: ['application/geopackage+sqlite3'],
zip: ['application/zip']
csv: ['text/csv', 'text/plain', 'application/octet-stream'],
xls: ['application/vnd.ms-excel', 'application/octet-stream'],
xlsx: ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/octet-stream'],
json: ['application/json', 'application/octet-stream'],
geojson: ['application/vnd.geo+json', 'application/octet-stream'],
gml: ['application/gml+xml', 'application/octet-stream'],
gpkg: ['application/gpkg', 'application/octet-stream'],
sqlite: ['application/geopackage+sqlite3', 'application/octet-stream'],
zip: ['application/zip', 'application/octet-stream']
}
6 changes: 3 additions & 3 deletions src/views/accessibility.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{% extends "layouts/main.html" %}

{% set pageName = 'Accessibility statement for publish planning and housing data for England' %}
{% set pageName = 'Accessibility statement for check planning and housing data for England' %}

{% set markdownContent %}

# Accessibility statement for publish planning and housing data for England
# Accessibility statement for check planning and housing data for England

This accessibility statement applies to the publish planning and housing data for England service (publish.development.digital-land.info).
This accessibility statement applies to the check planning and housing data for England service (publish.development.digital-land.info).

This service is run by the Department for Levelling Up, Housing and Communities (DLUHC). We want as many people as possible to be able to use this service. For example, that means you should be able to:

Expand Down
2 changes: 1 addition & 1 deletion src/views/start.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

{% set content %}

Use this service to check and publish your:
Use this service to check your:

- article 4 direction area data
- conservation area data
Expand Down
2 changes: 1 addition & 1 deletion src/views/statusPage/checkingFileMacro.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% macro checkingFileContent() %}
<h1 class="govuk-heading-l" id="js-async-processing-heading">Checking file</h1>
<p id="js-async-processing-message">Please wait</p>
<p id="js-async-processing-message"></p>
{% endmacro %}

0 comments on commit c4e572f

Please sign in to comment.