-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
67 lines (37 loc) · 1.21 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
libgcal README
== About ==
This is a library for accessing google calendar events and contacts,
enabling:
- provide easy access to available events/contacts
- common operations: add, delete, edit
- have few dependencies (up until now, only requires libcurl and libxml)
It implements Google Data API 2.0 for Calendar and API version 3.0
for contacts. It is tested on Linux and MacOSX.
== Status ==
=== Functional ===
- authentication
- get all events/contacts
- atom stream parsing
- access to individual events/contacts
- add/delete/edit
- query for updated events/contacts
- timezone support
- operate using only raw XML (without creating gcal_event or gcal_contact
objects).
- use of http proxy
- Contact photo upload/download
- Hosted accounts
- Creation of recurrent events (but is up to the user to format the
recurrence) e.g.
DTSTART;VALUE=DATE:20100505
DTEND;VALUE=DATE:20100506
RRULE:FREQ=WEEKLY;BYDAY=Tu;UNTIL=20100904
- User's calendar listing and operations on specific calendar.
=== Missing ===
- batch commit
=== Dependencies ===
- libxml
- libcurl
ps: you can format this document to HTML running
$txt2tags -t html README