A digital life memoir of your life
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# CalDav Capturer
|
|
|
|
|
|
|
|
The CalDav capturer captures new events in a calendar.
|
|
|
|
|
|
|
|
CalDav uses the [iCalendar](https://en.wikipedia.org/wiki/ICalendar) format.
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
The CalDav capturer needs the URL for the CalDav, besides the IP and PORT of
|
|
|
|
Store.
|
|
|
|
|
|
|
|
## Internals
|
|
|
|
|
|
|
|
There is no single event ID, so we need to keep the DSTART and DEND as unique
|
|
|
|
identifiers of each event. New events are the ones not in this list.
|
|
|
|
|
|
|
|
- `dstart`: Event start.
|
|
|
|
- `end`: Event end.
|
|
|
|
|
|
|
|
## Output
|
|
|
|
|
|
|
|
```
|
|
|
|
{% for event in new_events %}
|
|
|
|
Have a new event: {{ event.description }}
|
|
|
|
{% endfor %}
|
|
|
|
```
|