CalDAV Resources


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris BigAdmin RSS CalDAV Resources
# 1  
Old 01-07-2010
CalDAV Resources

This web site describes the CalDAV protocol, and includes details about the protocol, related standards, CalDAV products and other related information. It is hosted by The Calendaring and Scheduling Consortium.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. AIX

How much resources is left on the P7?

I know that it is possible to login into the HMC console and view all the specs like, how much CPU/RAM every LPAR has. But how can I check how much the whole P7 has in total and how much is left to creat a new LPAR:wall: (5 Replies)
Discussion started by: DiViN3
5 Replies

2. AIX

The partition keeps the resources

Hello, On a PL1650, with AIX partitions (micropartitionning). When a partition is "Not Actived", the processor and memory resources are not free (display in the HMC) and I can't by DLPAR. The partition keeps the resources. An idea ? Thanks, Trunk. (5 Replies)
Discussion started by: Trunk
5 Replies

3. Solaris

CPU resources

Hi, I got a solarsi 10 box with 9 zones and the cpu shares as following ID NAME SHARES 0 global 1 1 FMW1 100 2 FMW2 100 3 OID1 100 4 OID2 100 5 OVD1 100 6 OID0 100 7 FMW5 100 8... (2 Replies)
Discussion started by: fugitive
2 Replies

4. Programming

C - Freeing resources

I was wondering what is the function in C to free a resource(usually a variable) I know in C# there a Garbage collector, but in c and C++ there are none. I believe in c++ the function is free(); (8 Replies)
Discussion started by: james2432
8 Replies

5. UNIX for Dummies Questions & Answers

Who is using up all of my resources?!

For some reason, I'm having a bit of a brain fart here and cannot think of a simple solution to this problem... We have a samba server installed on one of our Darwin boxes. Someone is doing massive amounts of work through a samba share, and in turn in pegging samba and the box. I can see how... (1 Reply)
Discussion started by: fender177
1 Replies

6. UNIX for Dummies Questions & Answers

Unix Resources

Good morning all! Does any know of any good resources to read up on why people would use Unix, what the weaknesses are of the platform and how it is used! Many thanks: Note: This is for an assignment, I know you are not suppose to ask for help or post assignment questions but all I am... (2 Replies)
Discussion started by: Zeta_Acosta
2 Replies

7. Programming

Motif resources

I am very glad to be a member of you. where can i look for the resource programe examples about motif? please help me!Thanks a lot. (3 Replies)
Discussion started by: q30
3 Replies
Login or Register to Ask a Question
Cal::DAV(3pm)						User Contributed Perl Documentation					     Cal::DAV(3pm)

NAME
Cal::DAV - a CalDAV client SYNOPSIS
my $cal = Cal::DAV->new( user => $user, pass => $pass, url => $url); # the ics data will be fetched automatically if it's there # ... or you can parse some ics $cal->parse(filename => $data); # cal now has all the methods of Data::ICal # you can now monkey around with the object # saves the updated calendar $cal->save; # deletes the calendar $cal->delete; # lock the file on the server $cal->lock; # unlock the file on the server $cal->unlock # steal the lock $cal->steal_lock; # also $cal->forcefully_unlock_all # and $cal->lockdiscovery # resyncs it with the server $cal->get; # Get the underlying HTTP::DAV object my $dav = $cal->dav; DESCRIPTION
"Cal::DAV" is actually a very thin wrapper round "HTTP::DAV" and "Data::ICal" but it may gain more functionality later and, in the mean time, serves as something that TESTING
In order to test you need to define three environment variables: "CAL_DAV_USER", "CAL_DAV_PASS" and "CAL_DAV_URL_BASE" which points to a DAV collection that the user supplied has write permissions for. It should be noted that, at the moment, I'm having problems finding a CalDAV server that allows me to create files and so I can't run all the tests. METHODS
new <arg[s]> Must have at least "user", "pass" and "url" args where "url" is the url of a remote, DAV accessible ".ics" file. Can optionally take an "auto_commit" option. See "auto_commit()" method below. parse <arg[s]> Make a new calendar object using same arguments as "Data::ICal"'s "new()" or "parse()" methods. Does not auto save for you. Returns 1 on success and 0 on failure. save [url] Save the calendar back to the server (or optionally to another path). Returns 1 on success and 0 on failure. delete [url] Delete the file on the server or optionally another url. Returns 1 on success and 0 on failure. get [url] Refetch the file from the sever to sync it - Alternatively fetch an alternative url. These will lose any local changes. lock Same options as "HTTP::DAV"'s "unlock". unlock Same options as "HTTP::DAV"'s "unlock". steal_lock Same options as "HTTP::DAV"'s "steal_lock". lockdiscovery Same options as "HTTP::DAV::Response"'s "lockdiscovery". forcefully_unlock_all Same options as "HTTP::DAV::Response"'s "forcefully_unlock_all". dav [HTTP::DAV] Get the underlying "HTTP::DAV" object or, alterntively, replace it with a a new one. cal Get the underlying cal object auto_commit [boolean] Whether to auto save on desctruction or not. Defaults to 0. message Same as "HTTP::DAV"'s "message" function. errors Same as "HTTP::DAV"'s "errors" function. AUTHOR
Simon Wistow <simon@thegestalt.org> COPYRIGHT
Copyright 2007, Simon Wistow Released under the same terms as Perl itself. SEE ALSO
HTTP::DAV Data::ICal http://tools.ietf.org/html/rfc4791 perl v5.12.3 2011-05-08 Cal::DAV(3pm)