#!/usr/bin/env python # Configuration for the CalDAV server urlBase = 'https://cloud.ruinelli.ch/remote.php/dav/calendars/gruinelli' urlSuffix = "?export" userN = "gruinelli" passW = "attgigoc1" """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']