Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Fixed restriction on special characters in URLs #5868

Merged
merged 1 commit into from
Dec 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ openhab.cfg
* `caldavio:timeZone=<Timezone>`

**Restrictions**
* The calendar-id must be just upper- and lowercase characters. (e. g. private or work, something like 1 or private-home is not allowed)
* The calendar-id must either be only upper- and lowercase characters (e. g. private or work), or special characters must be escaped, ref. https://www.w3schools.com/tags/ref_urlencode.asp (e.g. 'calendar1' -> 'calendar%31' or 'private-home' -> 'private%2Dhome')
* disableCertificateVerification can just be set to true (default is false) if ssl is used.
* timeZone must just be used if the local timezone of the pc is not the correct one. E. g. if you are living in Berlin and your calendar timezone is Berlin and your local pc timezone is Berlin you must not define this setting
* '' for item configurations are optional (eventNr:1 and eventNr:'1' is the same). I prefer to use ''
Expand Down