Net::ICal::Standard -- class for representing STANDARD timezone sections


NAME

Net::ICal::Standard -- class for representing STANDARD timezone sections


DESCRIPTION

This module represents a STANDARD section in a VTIMEZONE, which details information about when a particular timezone is on ``standard'' (not daylight-savings) time.


SYNOPSIS

    # 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


METHODS

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