1#
2$VER = '2.24';
3
4$HTTP_NL    = "\x0a";
5$notes_file = "";
6
7$PICTDIR       = "$INSTALLDIR/pict/";
8$SANITIZE_TAG  = 'AutopsySanitized';
9$SANITIZE_PICT = 'sanitized.jpg';
10
11$PROGNAME = 'autopsy';
12
13# Default directory names
14$MKDIR_MASK = 0775;
15$IMGDIR     = 'images';
16$DATADIR    = 'output';
17$LOGDIR     = 'logs';
18$REPDIR     = 'reports';
19
20# Colors
21$BACK_COLOR       = "#CCCC99";
22$BACK_COLOR_TABLE = "#CCCCCC";
23$DEL_COLOR[0]     = "red";
24$DEL_COLOR[1] = "#800000";  # used when meta data structure has been reallocated
25$NORM_COLOR   = "";
26$LINK_COLOR   = "blue";
27
28$YEL_PIX = "pict/back_pix.jpg";
29
30%m2d = (
31    "Jan", 1, "Feb", 2, "Mar", 3, "Apr", 4,  "May", 5,  "Jun", 6,
32    "Jul", 7, "Aug", 8, "Sep", 9, "Oct", 10, "Nov", 11, "Dec", 12
33);
34@d2m = (
35    "",    "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
36    "Aug", "Sep", "Oct", "Nov", "Dec"
37);
38
391;
40