Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Newport_uk - Move to itouchvision #2293

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@ Waste collection schedules in the following formats and countries are supported.
- [Newark & Sherwood District Council](/doc/source/newark_sherwooddc_gov_uk.md) / newark-sherwooddc.gov.uk
- [Newcastle City Council](/doc/source/newcastle_gov_uk.md) / community.newcastle.gov.uk
- [Newcastle Under Lyme Borough Council](/doc/source/newcastle_staffs_gov_uk.md) / newcastle-staffs.gov.uk
- [Newport City Council](/doc/source/newport_gov_uk.md) / newport.gov.uk
- [Newport City Council](/doc/source/iweb_itouchvision_com.md) / newport.gov.uk/
- [North Ayrshire Council](/doc/source/north_ayrshire_gov_uk.md) / north-ayrshire.gov.uk
- [North Herts Council](/doc/source/northherts_gov_uk.md) / north-herts.gov.uk
- [North Kesteven District Council](/doc/source/north_kesteven_org_uk.md) / n-kesteven.org.uk
Expand Down
6 changes: 4 additions & 2 deletions custom_components/waste_collection_schedule/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -7359,8 +7359,10 @@
},
{
"title": "Newport City Council",
"module": "newport_gov_uk",
"default_params": {}
"module": "iweb_itouchvision_com",
"default_params": {
"council": "NEWPORT"
}
},
{
"title": "North Ayrshire Council",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,15 @@
"country": "uk",
"default_params": {"council": "TEST_VALLEY"},
},
{
"title": "Newport City Council",
"url": "https://www.newport.gov.uk//",
"country": "uk",
"default_params": {"council": "NEWPORT"},
},
]
DESCRIPTION = """Consolidated source for waste collection services from:
Newport City Council
Somerset Council, comprising four former District Councils (Mendip, Sedgemoor, Somerset West & Taunton, South Somerset) and Somerset County Council
Test Valley Borough Council
"""
Expand All @@ -66,6 +73,7 @@
URLS = {
"TEST_VALLEY": "https://iweb.itouchvision.com/portal/f?p=customer:BIN_DAYS:::NO:RP:UID:13353F039C4B1454827EE05536414091A8C058F4",
"SOMERSET": "https://iweb.itouchvision.com/portal/f?p=customer:BIN_DAYS:::NO:RP:UID:625C791B4D9301137723E9095361401AE8C03934",
"NEWPORT": "https://iweb.itouchvision.com/portal/f?p=customer:BIN_DAYS:::NO:RP:UID:6CDD2A34C912312074D8E2410531401A8C00EFF7",
"FLOW.ACCEPT": "https://iweb.itouchvision.com/portal/wwv_flow.accept",
"BIN_DAYS": "https://iweb.itouchvision.com/portal/itouchvision/r/customer/bin_days",
}
Expand Down Expand Up @@ -114,6 +122,11 @@
"uprn": 100060571645,
"council": "TEST_VALLEY",
},
"Newport #1": {
"postcode": "NP20 2QL",
"uprn": "10090955364",
"council": "NEWPORT",
},
}
ICON_MAP = {
"GARDEN": "mdi:leaf",
Expand Down

This file was deleted.

Loading