From 329bb508acac5d0d3871ac2ed2b2fee2177e8f9b Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 16 Mar 2024 08:32:07 +0100 Subject: [PATCH] Created Collection Storage (markdown) --- Collection-Storage.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 Collection-Storage.md diff --git a/Collection-Storage.md b/Collection-Storage.md new file mode 100644 index 0000000..a2b69e1 --- /dev/null +++ b/Collection-Storage.md @@ -0,0 +1,43 @@ +# Radicale >= 3.0.0 + +Collection on storage is always a directory containing + +## Files: *.ics / *.vcf + +| **Collection Type** | **Files** | +|-|-| +| VCALENDAR | *.ics | +| VADDRESSBOOK | *.vcf | + +## File: .Radicale.props + +Property file of collection + +Example using `jq` for pretty-print + +``` +jq . .Radicale.props +{ + "C:calendar-description": "Schedules", + "C:supported-calendar-component-set": "VEVENT,VJOURNAL,VTODO", + "D:displayname": "Schedules", + "ICAL:calendar-color": "#ffc000ff", + "tag": "VCALENDAR" +} +``` + +## Directory: .Radicale.cache + +### Directory: .Radicale.cache/history + +(TODO) + +### Directory: .Radicale.cache/item + +(TODO) + +### Directory: .Radicale.cache/sync-token + +(TODO) + +