PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package DateTime::TimeZone::Local::VMS; use strict; use warnings; use namespace::autoclean; our $VERSION = '2.63'; use parent 'DateTime::TimeZone::Local'; sub Methods { return qw( FromEnv ) } sub EnvVars { return qw( TZ SYS$TIMEZONE_RULE SYS$TIMEZONE_NAME UCX$TZ TCPIP$TZ ); } 1; # ABSTRACT: Determine the local system's time zone on VMS __END__ =pod =encoding UTF-8 =head1 NAME DateTime::TimeZone::Local::VMS - Determine the local system's time zone on VMS =head1 VERSION version 2.63 =head1 SYNOPSIS my $tz = DateTime::TimeZone->new( name => 'local' ); my $tz = DateTime::TimeZone::Local->TimeZone(); =head1 DESCRIPTION This module provides methods for determining the local time zone on a VMS platform. NOTE: This is basically a stub pending an implementation by someone who knows something about VMS. =head1 HOW THE TIME ZONE IS DETERMINED This class tries the following methods of determining the local time zone: =over 4 =item * %ENV We check the following environment variables: =over 8 =item * TZ =item * SYS$TIMEZONE_RULE =item * SYS$TIMEZONE_NAME =item * UCX$TZ =item * TCPIP$TZ =back =back =head1 SUPPORT Bugs may be submitted at L. =head1 SOURCE The source code repository for DateTime-TimeZone can be found at L. =head1 AUTHOR Dave Rolsky =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2024 by Dave Rolsky. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. The full text of the license can be found in the F file included with this distribution. =cut