-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDefinition.pm
More file actions
executable file
·61 lines (52 loc) · 1.47 KB
/
Definition.pm
File metadata and controls
executable file
·61 lines (52 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/perl -I ./thirds
# author: lilong'en(lilongen@163.com)
# date: 11/07/2011
#
package Definition;
use strict;
use English;
use Data::Dumper;
use Storable;
sub new() {
my $pkg = shift;
my $self = {};
bless $self, $pkg;
$self->{MID_OUT_FILE_NAME} = {
PROGRESS_LOG => "operate.log",
SVN_ALL_REVS_DF => "all.revs.df",
ALL_MODULES_SUM_HEADER => "all.modules.sum.header.csv",
BRIEF_REPORT => "brief.report.csv"
};
$self->{MID_DATA_FILE_NAME} = {
PMS => "pms.ccv",
TASK_QUEUE => "tasks.queue",
LOG_PARSED_INFO => "log.parsed.info",
ALL_MODULES_SUM_INFO => "all.modules.sum.info",
MODULE_FILES_INFO => "module.files.info.json",
CVS_GD_DATA_USER_INFO => "graph.user.data.info",
CVS_GD_DATA => "graph.data.info",
GRAPH_DATA => "graph.data.json"
};
$self->{RPT_TPL_NAME} = {
FRAME => "frame.html",
TOP => "top.html",
LOG => "log_report.html",
DIFF => "diff_report.html"
};
$self->{OUTPUT_RPT_NAME} = {
FRAME => "rpt.html",
TOP => "top.html",
LOG_USERS => "log.users.html",
LOG_FILES => "log.files.html",
DIFF_GROUP => "diff.group.html",
DIFF_FLAT => "diff.flat.html"
};
return $self;
}
#===============================================================================
#
# END of the module.
#
#===============================================================================
1;
__END__