On Thu, Oct 25, 2007 at 11:23:00PM -0700, Yigal Weinstein wrote: > addcalendar.cc works great - except for bash line completion and history > of previous entries, really really small things I would like.
Excellent, thanks. It is meant to be a simple example of how to use the library, so I likely won't add any fancy features. Do you think a command line utility like this would be useful in general though? > VERSION:2.0 > METHOD:PUBLISH > BEGIN:VTIMEZONE > TZID:/softwarestudio.org/Tzfile/America/Los_Angeles > X-LIC-LOCATION:America/Los_Angeles > BEGIN:STANDARD > TZNAME:PST > DTSTART:19701104T010000 > RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 > TZOFFSETFROM:-0700 > TZOFFSETTO:-0800 > END:STANDARD [snip] > [1193371338.238576] >>>>>>> barry_sync: vBase::GetAttr > [1193371338.238626] barry_sync: getting attr: DTSTART > [1193371338.238677] barry_sync: attr value: 19701104T010000 > [1193371338.238720] <<<<<<< barry_sync: vBase::GetAttr > [1193371338.238764] barry_sync: DTSTART attr retrieved: 19701104T010000 > [1193371338.238808] >>>>>>> barry_sync: vBase::GetAttr > [1193371338.238851] barry_sync: getting attr: DTEND Thanks very much for the log. The bug was that there was no support for the BEGIN/END hierarchy in the iCalendar format, so when it searched for DTSTART, it got the timezone definition instead of the event start time. There is still no support for timezones in the plugin, but I did add code to parse the hierarchy, and do a smarter search. In my testing here, this fixes the issue. The latest code is in CVS. Please let me know if you see further bugs. Thanks again for the feedback! - Chris ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Barry-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/barry-devel
