summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2004-10-06 13:39:17 +0000
committerivan <ivan>2004-10-06 13:39:17 +0000
commit85277a99fc463da9da890d0fa11df4abf0af6fe0 (patch)
treee7290f9dde4bf5f6f16de054fa7ce0750f900525
parent8590a91eb0d64755dff5622a152ab6b5136d8520 (diff)
more formatting updates to RADIUS report
-rw-r--r--httemplate/search/sqlradius.cgi11
1 files changed, 10 insertions, 1 deletions
diff --git a/httemplate/search/sqlradius.cgi b/httemplate/search/sqlradius.cgi
index bb51acb7a..11edf3cf9 100644
--- a/httemplate/search/sqlradius.cgi
+++ b/httemplate/search/sqlradius.cgi
@@ -125,7 +125,7 @@
my $time = shift;
return '&nbsp;' if $time == 0;
my $pretty = time2str('%T%P %a&nbsp;%b&nbsp;%o&nbsp;%Y', $time );
- $pretty =~ s/ (\d)(st|dn|rd|th)/&nbsp;$1$2/;
+ $pretty =~ s/ (\d)(st|dn|rd|th)/$1$2/;
$pretty;
};
@@ -161,15 +161,18 @@
name => 'User',
attrib => 'UserName',
fmt => $user_format,
+ align => 'left',
},
'realm' => {
name => 'Realm',
attrib => 'Realm',
+ align => 'left',
},
'dummy' => {
name => 'Customer',
attrib => '',
fmt => $customer_format,
+ align => 'left',
},
'framedipaddress' => {
name => 'IP&nbsp;Address',
@@ -177,31 +180,37 @@
fmt => sub { my $ip = shift;
length($ip) ? $ip : '&nbsp';
},
+ align => 'right',
},
'acctstarttime' => {
name => 'Start&nbsp;time',
attrib => 'Acct-Start-Time',
fmt => $time_format,
+ align => 'left',
},
'acctstoptime' => {
name => 'End&nbsp;time',
attrib => 'Acct-Stop-Time',
fmt => $time_format,
+ align => 'left',
},
'acctsessiontime' => {
name => 'Duration',
attrib => 'Acct-Session-Time',
fmt => $duration_format,
+ align => 'right',
},
'acctinputoctets' => {
name => 'Upload', # (from user)',
attrib => 'Acct-Input-Octets',
fmt => $octets_format,
+ align => 'right',
},
'acctoutputoctets' => {
name => 'Download', # (to user)',
attrib => 'Acct-Output-Octets',
fmt => $octets_format,
+ align => 'right',
},
;
$fields{$_}->{fmt} ||= sub { length($_[0]) ? shift : '&nbsp'; }