1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

Created Collection Storage (markdown)

Peter Bieringer 2024-03-16 08:32:07 +01:00
parent 15cafd58eb
commit 329bb508ac

43
Collection-Storage.md Normal file

@ -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)