calendar-fetcher/config.py

27 lines
1.3 KiB
Python
Raw Normal View History

2023-10-08 21:12:55 +00:00
#!/usr/bin/env python
# Configuration for the CalDAV server
2024-06-12 19:23:56 +00:00
urlBase = 'https://cloud.ruinelli.ch/remote.php/dav/calendars/gruinelli'
urlSuffix = "?export"
2023-10-08 21:12:55 +00:00
userN = "gruinelli"
passW = "attgigoc1"
2024-06-12 19:23:56 +00:00
"""calendar metaData
Fetched with the helper.py script"""
calendarsMetadata = [
{'calendarName': 'george', 'color': '#55aaff', 'displayName': 'George'},
{'calendarName': 'gemeinsam', 'color': '#ffff00', 'displayName': 'Gemeinsam'},
{'calendarName': 'todo', 'color': '#ffaaff', 'displayName': 'ToDo'},
{'calendarName': 'todogemeinsam', 'color': '#cc66cc', 'displayName': 'ToDo Gemeinsam'},
{'calendarName': 'contact_birthdays', 'color': '#FFFFCA', 'displayName': 'Geburtstage von Kontakten'},
{'calendarName': 'geburtstage', 'color': '#74e7d2', 'displayName': 'Geburtstage'},
{'calendarName': 'jael', 'color': '#16fb04', 'displayName': 'Kinder'},
{'calendarName': 'infos', 'color': '#0090a1', 'displayName': 'Infos'},
{'calendarName': 'anita_shared_by_anita', 'color': '#FF8000', 'displayName': 'Anita'},
{'calendarName': 'anitagesch%C3%A4ft%28bga%2Cpa%29_shared_by_anita', 'color': '#007B00', 'displayName': 'Anita Arbeit (Alixon, PAI)'},
{'calendarName': 'evtermine_shared_by_anita', 'color': '#FFE5CC', 'displayName': 'ev Termine'}
]
excludedCalendarIDs = ['ToDo', 'ToDo Gemeinsam', 'Geburtstage von Kontakten', 'Geburtstage', 'Infos']