summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTobias Brox <tobixen@gmail.com>2013-09-28 09:34:01 +0200
committerTobias Brox <tobixen@gmail.com>2013-09-28 09:34:01 +0200
commitcd7bc11b4526729bf489cab57e05967374b81e0b (patch)
tree0260cecfec4e88d1d04ac706d08a5918a52efaa4 /README.md
parentdbd1a4051e5a35e597d17f73195e1d949f49023d (diff)
downloadcalendar-cli-cd7bc11b4526729bf489cab57e05967374b81e0b.zip
now possible to put calendar events to a calendar
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 14 insertions, 4 deletions
diff --git a/README.md b/README.md
index aaa05a6..a20fa9f 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ The config file may have a section for each CalDAV server ... (todo, think more
(only long options will be available in version 0.1; don't want to pollute the short option space yet)
* --interactive, -i: stop and query the user rather often
-* --caldav-host, --caldav-user, --caldav-pass: how to connect to the CalDAV server
+* --caldav-url, --caldav-user, --caldav-pass: how to connect to the CalDAV server
* --caldav-calendar: which calendar to access
* --config: use a specific configuration file (default: $HOME/.calendar-cli.conf)
* --config-section: use a specific section from the config file (i.e. to select a different
@@ -59,6 +59,12 @@ All of those would eventually be supported in future versions if it's not too di
Alternatively, endtime or duration can be given through options.
+### Examples
+
+Add a calendar item "testevent" at 2013-10-01:
+
+ ./calendar-cli.py --caldav-url=http://calendar.bekkenstenveien53c.oslo.no/caldav.php/ --caldav-user=tobias --caldav-pass=banana calendar --calendar-url=http://calendar.bekkenstenveien53c.oslo.no/caldav.php/tobias/calendar/ add 2013-10-01 testevent
+
Objectives
----------
@@ -71,9 +77,12 @@ Milestones
----------
* CLI-interface for creating ical calendar events (working as of version 0.01)
-* Push calendar item into CalDAV server
+* CalDAV login (working as of version 0.02)
+* Push calendar item into CalDAV server (working as of version 0.02, but both an URL for the caldav server and an URL for the actual calendar has to be given)
+* Replace calendar-URL with calendar-path
* Config file with CalDAV connection details
-* CalDAV login
+* Find default calendar-path
+* Show agenda
* CLI-interface for creating ical todo events
* Push todo item into CalDAV server
@@ -81,4 +90,5 @@ Status
------
2013-09-15: Made a repository at github and wrote up this README.
-2013-09-24: version 0.01 - supports creating an ical-file based on command line parameters \ No newline at end of file
+2013-09-24: version 0.01 - supports creating an ical-file based on command line parameters
+2013-09-28: version 0.02 - possible to add a calendar item to the caldav server