Net::ICal::Standard -- class for representing STANDARD timezone sections |
Net::ICal::Standard -- class for representing STANDARD timezone sections
This module represents a STANDARD section in a VTIMEZONE, which details information about when a particular timezone is on ``standard'' (not daylight-savings) time.
# really, look at Timezone.pm for a better usage example; # this is totally untested
my $s = Net::ICal::Standard->new( tzoffsetto => '-0500', tzoffsetfrom => '-0400', rdate => Net::ICal::Recurrence->new ( ...) tzname => 'EST' ); =cut
new(%args)
Makes a new Standard object. Permissible arguments are:
See RFC2445 4.6.5 for more details on how this all works.
Net::ICal::Standard -- class for representing STANDARD timezone sections |