File: define.pl

package info (click to toggle)
autopsy 2.24-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,644 kB
  • sloc: perl: 12,439; sh: 322; makefile: 32
file content (39 lines) | stat: -rw-r--r-- 850 bytes parent folder | download | duplicates (5)
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
#
$VER = '2.24';

$HTTP_NL    = "\x0a";
$notes_file = "";

$PICTDIR       = "$INSTALLDIR/pict/";
$SANITIZE_TAG  = 'AutopsySanitized';
$SANITIZE_PICT = 'sanitized.jpg';

$PROGNAME = 'autopsy';

# Default directory names
$MKDIR_MASK = 0775;
$IMGDIR     = 'images';
$DATADIR    = 'output';
$LOGDIR     = 'logs';
$REPDIR     = 'reports';

# Colors
$BACK_COLOR       = "#CCCC99";
$BACK_COLOR_TABLE = "#CCCCCC";
$DEL_COLOR[0]     = "red";
$DEL_COLOR[1] = "#800000";  # used when meta data structure has been reallocated
$NORM_COLOR   = "";
$LINK_COLOR   = "blue";

$YEL_PIX = "pict/back_pix.jpg";

%m2d = (
    "Jan", 1, "Feb", 2, "Mar", 3, "Apr", 4,  "May", 5,  "Jun", 6,
    "Jul", 7, "Aug", 8, "Sep", 9, "Oct", 10, "Nov", 11, "Dec", 12
);
@d2m = (
    "",    "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
    "Aug", "Sep", "Oct", "Nov", "Dec"
);

1;