Changeset 315

Show
Ignore:
Timestamp:
04/21/06 13:43:25 (2 years ago)
Author:
ogawa
Message:

Fix incorrect VERSION property for iCalendar.
Skip processing recurrent events. They should be handled properly in the future.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cybozu2ical/trunk/cybozu2ical

    • Property svn:executable set to *
    r314 r315  
    4747my $vcalendar = Data::ICal->new(); 
    4848$vcalendar->add_properties( 
    49     prodid => 'Cybozu2ICal', 
    50     version => $VERSION, 
     49    prodid => "-//as-is.net/Cybozu2ICal $VERSION//EN", 
    5150    calscale => 'GREGORIAN', 
    5251    method => 'PUBLISH', 
     
    6362    my @fields = $csv->fields; 
    6463    next if $#fields < 13; # num. of fields 
     64 
     65    next if $fields[2]; # skip recurrent events 
    6566 
    6667    my $epoch = $fields[1];