$shost = (split( /\./, $self->host() ))[0] unless $shost;
print $self->color(), " "x(7-length($self->color()));
+ my($type) = substr($self->type,0,1); $type =~ tr/a-z/A-Z/;
+ print " $type ";
print sprintf( "%2.2d:%2.2d ", $hour, $min );
print substr( $shost, 0, 12 ), " "x(14-length(substr($shost, 0, 12)));
print substr( $self->service(), 0, 5 );
$shost = (split( /\./, $self->host() ))[0] unless $shost;
- print "<tr><td width=7% align=left valign=top>";
+ print "<tr><td width=5% align=left valign=top>";
if( $main::WWW_USE_IMAGES == 1 ) {
print "<a href=\"" . $main::WWWSPONG . "/histservice/".$self->host()
print "</td></tr></table>";
}
- print "</td><td width=12% align=center valign=top>";
+ print "</td>\n";
+ print "<td width=5% align=center>";
+ my($type) = substr($self->type,0,1); $type =~ tr/a-z/A-Z/;
+ print "$type</td>\n";
+ print "<td width=10% align=center valign=top>";
printf ( "%2.2d:%2.2d</td>", $hour, $min );
print "<td width=15% align=left valign=top>$shost </td>\n";
print "<td width=15% align=left valign=top>$service</td>\n";