Handle hostnames with upper-case letters
[webmin.git] / foobar / log_parser.pl
1 # log_parser.pl
2 # Functions for parsing this module's logs
3
4 do 'foobar-lib.pl';
5
6 =head2 parse_webmin_log(user, script, action, type, object, &params)
7
8 Converts logged information from this module into human-readable form
9
10 =cut
11 sub parse_webmin_log
12 {
13 my ($user, $script, $action, $type, $object, $p) = @_;
14 return &text('log_'.$action, '<tt>'.html_escape($object).'</tt>');
15 }
16