line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::Framework::Settings ; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
App::Framework::Settings - Application framework configuration |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 DESCRIPTION |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
Contains various configuration settings for the application framework objects. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=cut |
12
|
|
|
|
|
|
|
|
13
|
29
|
|
|
29
|
|
145
|
use strict ; |
|
29
|
|
|
|
|
46
|
|
|
29
|
|
|
|
|
1051
|
|
14
|
29
|
|
|
29
|
|
148
|
use Carp ; |
|
29
|
|
|
|
|
45
|
|
|
29
|
|
|
|
|
4474
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
our $VERSION = "1.000" ; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
#============================================================================================ |
20
|
|
|
|
|
|
|
# GLOBALS |
21
|
|
|
|
|
|
|
#============================================================================================ |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 MODULES |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
An array of the modules that will be imported into the application automatically: |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Cwd |
28
|
|
|
|
|
|
|
File::Basename |
29
|
|
|
|
|
|
|
File::Path |
30
|
|
|
|
|
|
|
File::Temp |
31
|
|
|
|
|
|
|
File::Spec |
32
|
|
|
|
|
|
|
File::Find |
33
|
|
|
|
|
|
|
File::Copy |
34
|
|
|
|
|
|
|
Pod::Usage |
35
|
|
|
|
|
|
|
File::DosGlob qw(glob) |
36
|
|
|
|
|
|
|
Date::Manip |
37
|
|
|
|
|
|
|
Getopt::Long qw(:config no_ignore_case) |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
our @MODULES = ( |
42
|
|
|
|
|
|
|
'Cwd', |
43
|
|
|
|
|
|
|
'File::Basename', |
44
|
|
|
|
|
|
|
'File::Path', |
45
|
|
|
|
|
|
|
'File::Temp', |
46
|
|
|
|
|
|
|
'File::Spec', |
47
|
|
|
|
|
|
|
'File::Find', |
48
|
|
|
|
|
|
|
'File::Copy', |
49
|
|
|
|
|
|
|
"File::DosGlob 'glob'", |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
'Pod::Usage', |
52
|
|
|
|
|
|
|
'Date::Manip', |
53
|
|
|
|
|
|
|
'Getopt::Long qw(:config no_ignore_case)', |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
) ; |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 DATE_TZ |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
If Date::Manip is automatically imported, then this variable should be set to the local timezone setting. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=cut |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
our $DATE_TZ = 'GMT' ; |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 DATE_FORMAT |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
If Date::Manip is automatically imported, then this variable should be set to the local date format setting. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
our $DATE_FORMAT = 'non-US' ; |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 AUTHOR |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
Steve Price, C<< >> |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=cut |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
# ============================================================================================ |
82
|
|
|
|
|
|
|
# END OF PACKAGE |
83
|
|
|
|
|
|
|
1; |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
__END__ |