Handle hostnames with upper-case letters
[webmin.git] / vgetty / log_parser.pl
1 # log_parser.pl
2 # Functions for parsing this module's logs
3
4 do 'vgetty-lib.pl';
5
6 # parse_webmin_log(user, script, action, type, object, &params)
7 # Converts logged information from this module into human-readable form
8 sub parse_webmin_log
9 {
10 local ($user, $script, $action, $type, $object, $p) = @_;
11 if ($type eq "vgetty") {
12         return &text("log_vgetty_$action",
13                      "<tt>".&html_escape($object)."</tt>");
14         }
15 elsif ($action eq "delete") {
16         return &text("log_delete$type", scalar(split(/\0/, $p->{'del'})));
17         }
18 elsif ($action eq "move") {
19         return &text("log_move", scalar(split(/\0/, $p->{'del'})));
20         }
21 elsif ($action eq "upload") {
22         return &text("log_upload", "<tt>".&html_escape($p->{'file'})."</tt>");
23         }
24 else {
25         return $text{"log_$action"};
26         }
27 }
28