a6dc6613502bc3207fb6f55c787bb0867edbcf6a
[spider.git] / perl / Console.pm
1 #
2 # These are the default variables for the console program
3 #
4 # DON'T ALTER this file, copy it to ../local and alter that
5 # instead. This file will be overwritten with new releases
6 #
7 # Copyright (c) 1999 Dirk Koopman G1TLH
8 #
9 #
10 #
11 # The colour pairs are:-
12 #
13 # 0 - $foreground, $background
14 # 1 - RED, $background
15 # 2 - BROWN, $background
16 # 3 - GREEN, $background
17 # 4 - CYAN, $background
18 # 5 - BLUE, $background
19 # 6 - MAGENTA, $background
20 # 7 - RED, BLUE
21 # 8 - BROWN, BLUE
22 # 9 - GREEN, BLUE
23 # 10 - CYAN, BLUE
24 # 11 - BLUE, RED
25 # 12 - MAGENTA, BLUE
26 # 13 - BROWN, GREEN
27 # 14 - RED, GREEN
28
29 # You can or these with A_BOLD and or A_REVERSE for a different effect
30 #
31
32 package main;
33
34 $maxkhist = 100;
35 $maxshist = 500;
36 if ($ENV{'TERM'} =~ /(xterm|ansi)/) {
37 #       $ENV{'TERM'} = 'color_xterm';
38         $foreground = COLOR_BLACK();
39         $background = COLOR_WHITE();
40         $mycallcolor = COLOR_PAIR(1);
41         @colors = (
42                    [ '^DX de [\-A-Z0-9]+:\s+([57][01]\d\d\d\.|\d\d\d\d\d\d+.)', COLOR_PAIR(1) ],
43                    [ '^DX', COLOR_PAIR(5) ],
44                    [ '^To', COLOR_PAIR(3) ],
45                    [ '^(?:WWV|WCY)', COLOR_PAIR(4) ],
46                    [ '^[-A-Z0-9]+ de [-A-Z0-9]+ \d\d-\w\w\w-\d\d\d\d \d\d\d\dZ', COLOR_PAIR(0) ],
47                    [ '^[-A-Z0-9]+ de [-A-Z0-9]+ ', COLOR_PAIR(6) ],
48                    [ '^WX', COLOR_PAIR(3) ],
49                    [ '^(User|Node|Buddy)\b', COLOR_PAIR(8) ],
50                    [ '^New mail', A_BOLD|COLOR_PAIR(5) ],
51                     
52                    );
53 }
54 if ($ENV{'TERM'} =~ /(console|linux)/) {
55         $foreground = COLOR_WHITE();
56         $background = COLOR_BLACK();
57         $mycallcolor = COLOR_PAIR(1);
58         @colors = (
59                    [ '^DX de [\-A-Z0-9]+:\s+([57][01]\d\d\d\.|\d\d\d\d\d\d+.)', COLOR_PAIR(1) ],
60                    [ '^DX', COLOR_PAIR(4) ],
61                    [ '^To', COLOR_PAIR(3) ],
62                    [ '^(?:WWV|WCY)', COLOR_PAIR(5) ],
63                    [ '^[-A-Z0-9]+ de [-A-Z0-9]+ \d\d-\w\w\w-\d\d\d\d \d\d\d\dZ', COLOR_PAIR(0) ],
64                    [ '^[-A-Z0-9]+ de [-A-Z0-9]+ ', COLOR_PAIR(6) ],
65                    [ '^WX', COLOR_PAIR(3) ],
66                    [ '^(User|Node)\b', A_BOLD|COLOR_PAIR(8) ],
67                    [ '^New mail', A_BOLD|COLOR_PAIR(5) ],
68                    );
69 }
70
71
72 1;