File: log_parser.pl

package info (click to toggle)
webmin-extra 1.180-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 12,324 kB
  • ctags: 1,200
  • sloc: perl: 39,117; makefile: 125
file content (32 lines) | stat: -rw-r--r-- 852 bytes parent folder | download
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
# log_parser.pl
# Functions for parsing this module's logs

do 'lilo-lib.pl';
&foreign_require("mount", "mount-lib.pl");

# parse_webmin_log(user, script, action, type, object, &params)
# Converts logged information from this module into human-readable form
sub parse_webmin_log
{
local ($user, $script, $action, $type, $object, $p, $long) = @_;
local $ll = $long ? "_l" : "";
if ($type eq 'image') {
	return &text("log_${action}_image${ll}", "<tt>$object</tt>",
		     "<tt>".&html_escape($p->{'image'})."</tt>");
	}
elsif ($type eq 'other') {
	local $other = &foreign_call("mount", "device_name", $p->{'other'})
		if ($long);
	return &text("log_${action}_other${ll}", "<tt>$object</tt>", $other);
	}
elsif ($action eq 'apply') {
	return $text{'log_apply'};
	}
elsif ($action eq 'global') {
	return $text{'log_global'};
	}
else {
	return undef;
	}
}