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

Commit

Permalink
Fixed restriction on special characters in URLs (#5868)
Browse files Browse the repository at this point in the history
Escaping special characters in URLs allows usage of calendar-ids with special characters, e.g. private-home --> private%2Dhome

Signed-off-by: CSchlipp <[email protected]>
  • Loading branch information
CSchlipp authored and kaikreuzer committed Dec 8, 2019
1 parent 597863e commit ac9e550
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit ac9e550

Please sign in to comment.