-
-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added service delmenhorst_de (#3253)
* added delmenhorst_de * added splitting * implemented macro {%Y} fr year * fix typo + ./update_docu_links.py --------- Co-authored-by: 5ila5 <5ila5@users.noreply.github.com>
- Loading branch information
Showing
9 changed files
with
200 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Abfallkalender Delmenhorst | ||
|
||
Abfallkalender Delmenhorst is supported by the generic [ICS](/doc/source/ics.md) source. For all available configuration options, please refer to the source description. | ||
|
||
|
||
## How to get the configuration arguments | ||
|
||
- Go to <https://www.delmenhorst.de/leben/umwelt/abfallentsorgung/abfallkalender.php> | ||
- Open the pdf file _"Abfuhrbezirke [YYYY] - Straßenverzeichnis mit Zuordnung zur Altpapiertour"_ | ||
- Find your street in the pdf and copy the link labeled "iCalendar" | ||
- Replace the `url` in the example configuration with this link. | ||
- **IMPORTANT** Replace the year `20xx` *(first 4 digits in the name of the .ics file)* with the variable `{%Y}` to make sure that the schedule for the upcoming year will already be present from December on. | ||
|
||
## Examples | ||
|
||
### Delmenhorst Abfuhrbezirk 5 / Altpapiertour B | ||
|
||
```yaml | ||
waste_collection_schedule: | ||
sources: | ||
- name: ics | ||
args: | ||
split_at: ' und ' | ||
url: https://www.delmenhorst.de/medien/bindata/leben/umwelt-abfall/{%Y}_AB05B.ics | ||
``` | ||
### Delmenhorst Abfuhrbezirk 10 / Altpapiertour A | ||
```yaml | ||
waste_collection_schedule: | ||
sources: | ||
- name: ics | ||
args: | ||
split_at: ' und ' | ||
url: https://www.delmenhorst.de/medien/bindata/leben/umwelt-abfall/{%Y}_AB10A.ics | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: Abfallkalender Delmenhorst | ||
url: https://www.delmenhorst.de | ||
country: de | ||
howto: | ||
de: | | ||
- Öffnen Sie die Seite <https://www.delmenhorst.de/leben/umwelt/abfallentsorgung/abfallkalender.php> | ||
- Öffnen Sie die PDF-Datei unter _"Abfuhrbezirke [YYYY] - Straßenverzeichnis mit Zuordnung zur Altpapiertour"_ | ||
- Suchen Sie in der Übersicht die passende Straße heraus und kopieren Sie den rechts stehenden Link zu _"iCalendar"_ | ||
- Fügen Sie den Link in diesem Formular unter `URL` ein. | ||
- **WICHTIG** Ersetzen Sie die Jahreszahl `20xx` *(die ersten vier Ziffern im Namen der .ics Datei)* durch die Variable `{%Y}`. Damit werden ab Dezember bereits die Einträge für das Folgejahr automatisch mit berücksichtigt. | ||
en: | | ||
- Go to <https://www.delmenhorst.de/leben/umwelt/abfallentsorgung/abfallkalender.php> | ||
- Open the pdf file _"Abfuhrbezirke [YYYY] - Straßenverzeichnis mit Zuordnung zur Altpapiertour"_ | ||
- Find your street in the pdf and copy the link labeled "iCalendar" | ||
- Replace the `url` in the example configuration with this link. | ||
- **IMPORTANT** Replace the year `20xx` *(first 4 digits in the name of the .ics file)* with the variable `{%Y}` to make sure that the schedule for the upcoming year will already be present from December on. | ||
default_params: | ||
split_at: ' und ' | ||
|
||
test_cases: | ||
Delmenhorst Abfuhrbezirk 5 / Altpapiertour B: | ||
url: https://www.delmenhorst.de/medien/bindata/leben/umwelt-abfall/{%Y}_AB05B.ics | ||
split_at: ' und ' | ||
Delmenhorst Abfuhrbezirk 10 / Altpapiertour A: | ||
url: https://www.delmenhorst.de/medien/bindata/leben/umwelt-abfall/{%Y}_AB10A.ics | ||
split_at: ' und ' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.