diff options
author | Tobias Brox <tobias@redpill-linpro.com> | 2022-11-30 20:55:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-30 20:55:27 +0100 |
commit | cfea5bde72e2d28ff7d409e40f51fa6e6f2b3a7a (patch) | |
tree | 1ab58883b4d2476c923c3b649dfb0ed3c5130ff6 | |
parent | f655b6b64765216f9f09a2049ccee76e83c7b05f (diff) | |
parent | fb4b6117741f6248f1aa37000a5fc9b9333dfd16 (diff) | |
download | calendar-cli-cfea5bde72e2d28ff7d409e40f51fa6e6f2b3a7a.zip |
Merge pull request #95 from fauxmight/readme-cleanups
README.md cleanups
-rw-r--r-- | README.md | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -144,12 +144,14 @@ The file may look like this: A configuration with multiple sections may look like this: ```json -{ "default": +{ +"default": { "caldav_url": "http://foo.bar.example.com/caldav/", "caldav_user": "luser", "caldav_pass": "insecure" }, - "caldav_url": "http://foo.baz.example.com/caldav/", +"baz": + { "caldav_url": "http://foo.baz.example.com/caldav/", "caldav_user": "luser2", "caldav_pass": "insecure2" } @@ -166,7 +168,7 @@ Add a calendar item "testevent" at 2013-10-01: ./calendar-cli.py --calendar-url=http://calendar.bekkenstenveien53c.oslo.no/caldav.php/tobias/calendar/ calendar add 2013-10-01 testevent -(assumes that `caldav-url`, `calldav-pass` and `caldav-user` has been added into configuration file. Those may also be added as command line options) +(assumes that `caldav-url`, `caldav-pass` and `caldav-user` has been added into configuration file. Those may also be added as command line options) Objectives ---------- |