File Coverage

lib/Date/Manip/DM5abbrevs.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Date::Manip::DM5abbrevs;
2             # Copyright (c) 2003-2023 Sullivan Beck. All rights reserved.
3             # This program is free software; you can redistribute it and/or modify it
4             # under the same terms as Perl itself.
5              
6             ########################################################################
7             ########################################################################
8              
9             =pod
10              
11             =head1 NAME
12              
13             Date::Manip::DM5abbrevs - A list of all timezone abbreviations
14              
15             =head1 SYNPOSIS
16              
17             This module is not intended to be used directly. Date::Manip 5.xx
18             will load it as needed.
19              
20             This module contains all of the time zone abbreviations from
21             Date::Manip 6.xx copied backwards to 5.xx to provide slightly
22             better support for time zones.
23              
24             Note that this is only a bandaid fix, and does not add proper
25             time zone handling to version 5.xx .
26              
27             =cut
28              
29             require 5.000;
30              
31 36     36   721 use strict;
  36         80  
  36         967  
32 36     36   176 use warnings;
  36         63  
  36         10309  
33              
34             our($VERSION);
35             $VERSION='6.91';
36              
37             END {
38 36     36   14735 my $tmp;
39 36           $tmp = \$Date::Manip::DM5::Abbrevs;
40             }
41              
42             $Date::Manip::DM5::Abbrevs = join(' ',qw(
43             idlw -1200
44             nt -1100
45             sat -0400
46             cldt -0300
47             at -0200
48             utc +0000
49             mewt +0100
50             mez +0100
51             fwt +0100
52             gb +0100
53             swt +0100
54             mesz +0200
55             fst +0200
56             metdst +0200
57             eetdst +0300
58             eetedt +0300
59             bt +0300
60             it +0330
61             zp4 +0400
62             zp5 +0500
63             ist +0530
64             zp6 +0600
65             awst +0800
66             rok +0900
67             aest +1000
68             acdt +1030
69             cadt +1030
70             aedt +1100
71             eadt +1100
72             nzt +1200
73             idle +1200
74              
75             a -0100
76             acdt +1030
77             acst +0930
78             addt -0200
79             adt -0300
80             aedt +1100
81             aest +1000
82             ahdt -0900
83             ahst -1000
84             akdt -0800
85             akst -0900
86             apt -0900
87             ast -0400
88             awdt +0900
89             awst +0800
90             awt -0300
91             b -0200
92             bdst +0200
93             bdt -1000
94             bst +0100
95             c -0300
96             cast +0300
97             cat +0200
98             cdt -0500
99             cemt +0300
100             cest +0200
101             cet +0100
102             chst +1000
103             cmt +0155
104             cpt -0500
105             cst -0600
106             cwt -0500
107             d -0400
108             e -0500
109             eat +0300
110             edt -0400
111             eest +0300
112             eet +0200
113             ept -0400
114             est -0500
115             ewt -0400
116             f -0600
117             g -0700
118             gdt +1100
119             gmt +0000
120             gmt+1 +0100
121             gmt+10 +1000
122             gmt+11 +1100
123             gmt+12 +1200
124             gmt+2 +0200
125             gmt+3 +0300
126             gmt+4 +0400
127             gmt+5 +0500
128             gmt+6 +0600
129             gmt+7 +0700
130             gmt+8 +0800
131             gmt+9 +0900
132             gmt-1 -0100
133             gmt-10 -1000
134             gmt-11 -1100
135             gmt-12 -1200
136             gmt-13 -1300
137             gmt-14 -1400
138             gmt-2 -0200
139             gmt-3 -0300
140             gmt-4 -0400
141             gmt-5 -0500
142             gmt-6 -0600
143             gmt-7 -0700
144             gmt-8 -0800
145             gmt-9 -0900
146             gst +1000
147             h -0800
148             hdt -0900
149             hkst +0900
150             hkt +0800
151             hkwt +0830
152             hpt -0930
153             hst -1000
154             hwt -0930
155             i -0900
156             iddt +0400
157             idt +0300
158             ist +0530
159             jdt +1000
160             jst +0900
161             k -1000
162             kdt +1000
163             kst +0900
164             l -1100
165             m -1200
166             mdt -0600
167             mest +0200
168             met +0100
169             mmt +0454
170             mpt -0600
171             msd +0400
172             msk +0300
173             mst -0700
174             mwt -0600
175             n +0100
176             nddt -0130
177             ndt -0230
178             npt -1000
179             nst -0330
180             nwt -1000
181             nzdt +1300
182             nzmt +1130
183             nzst +1200
184             o +0200
185             p +0300
186             pdt -0700
187             pkst +0600
188             pkt +0500
189             ppmt -0449
190             ppt -0700
191             pst -0800
192             pwt -0700
193             q +0400
194             qmt -0514
195             r +0500
196             s +0600
197             sast +0200
198             sdmt -0440
199             smt +0216
200             sst -1100
201             t +0700
202             tmt +0139
203             u +0800
204             ut +0000
205             utc +0000
206             v +0900
207             w +1000
208             wast +0200
209             wat +0100
210             wemt +0200
211             west +0100
212             wet +0000
213             wib +0700
214             wit +0900
215             wita +0800
216             wmt +0124
217             x +1100
218             y +1200
219             yddt -0700
220             ydt -0800
221             ypt -0800
222             yst -0900
223             ywt -0800
224             z +0000
225             ));
226              
227             =pod
228              
229             =head1 TIMEZONES
230              
231             The following timezones are defined:
232              
233             A -0100
234             ACDT +1030
235             ACST +0930
236             ADDT -0200
237             ADT -0300
238             AEDT +1100
239             AEST +1000
240             AHDT -0900
241             AHST -1000
242             AKDT -0800
243             AKST -0900
244             APT -0900
245             AST -0400
246             AT -0200
247             AWDT +0900
248             AWST +0800
249             AWT -0300
250             B -0200
251             BDST +0200
252             BDT -1000
253             BST +0100
254             BT +0300
255             C -0300
256             CADT +1030
257             CAST +0300
258             CAT +0200
259             CDT -0500
260             CEMT +0300
261             CEST +0200
262             CET +0100
263             CHST +1000
264             CLDT -0300
265             CMT +0155
266             CPT -0500
267             CST -0600
268             CWT -0500
269             D -0400
270             E -0500
271             EADT +1100
272             EAT +0300
273             EDT -0400
274             EEST +0300
275             EET +0200
276             EETDST +0300
277             EETEDT +0300
278             EPT -0400
279             EST -0500
280             EWT -0400
281             F -0600
282             FST +0200
283             FWT +0100
284             G -0700
285             GB +0100
286             GDT +1100
287             GMT +0000
288             GMT+1 +0100
289             GMT+10 +1000
290             GMT+11 +1100
291             GMT+12 +1200
292             GMT+2 +0200
293             GMT+3 +0300
294             GMT+4 +0400
295             GMT+5 +0500
296             GMT+6 +0600
297             GMT+7 +0700
298             GMT+8 +0800
299             GMT+9 +0900
300             GMT-1 -0100
301             GMT-10 -1000
302             GMT-11 -1100
303             GMT-12 -1200
304             GMT-13 -1300
305             GMT-14 -1400
306             GMT-2 -0200
307             GMT-3 -0300
308             GMT-4 -0400
309             GMT-5 -0500
310             GMT-6 -0600
311             GMT-7 -0700
312             GMT-8 -0800
313             GMT-9 -0900
314             GST +1000
315             H -0800
316             HDT -0900
317             HKST +0900
318             HKT +0800
319             HKWT +0830
320             HPT -0930
321             HST -1000
322             HWT -0930
323             I -0900
324             IDDT +0400
325             IDLE +1200
326             IDLW -1200
327             IDT +0300
328             IST +0530
329             IT +0330
330             JDT +1000
331             JST +0900
332             K -1000
333             KDT +1000
334             KST +0900
335             L -1100
336             M -1200
337             MDT -0600
338             MEST +0200
339             MESZ +0200
340             MET +0100
341             METDST +0200
342             MEWT +0100
343             MEZ +0100
344             MMT +0454
345             MPT -0600
346             MSD +0400
347             MSK +0300
348             MST -0700
349             MWT -0600
350             N +0100
351             NDDT -0130
352             NDT -0230
353             NPT -1000
354             NST -0330
355             NT -1100
356             NWT -1000
357             NZDT +1300
358             NZMT +1130
359             NZST +1200
360             NZT +1200
361             O +0200
362             P +0300
363             PDT -0700
364             PKST +0600
365             PKT +0500
366             PPMT -0449
367             PPT -0700
368             PST -0800
369             PWT -0700
370             Q +0400
371             QMT -0514
372             R +0500
373             ROK +0900
374             S +0600
375             SAST +0200
376             SAT -0400
377             SDMT -0440
378             SMT +0216
379             SST -1100
380             SWT +0100
381             T +0700
382             TMT +0139
383             U +0800
384             UT +0000
385             UTC +0000
386             V +0900
387             W +1000
388             WAST +0200
389             WAT +0100
390             WEMT +0200
391             WEST +0100
392             WET +0000
393             WIB +0700
394             WIT +0900
395             WITA +0800
396             WMT +0124
397             X +1100
398             Y +1200
399             YDDT -0700
400             YDT -0800
401             YPT -0800
402             YST -0900
403             YWT -0800
404             Z +0000
405             ZP4 +0400
406             ZP5 +0500
407             ZP6 +0600
408              
409              
410             =head1 LICENSE
411              
412             This script is free software; you can redistribute it and/or modify it
413             under the same terms as Perl itself.
414              
415             =head1 AUTHOR
416              
417             Sullivan Beck (sbeck@cpan.org)
418              
419             =cut
420              
421             1;