while(1) {
open(HTML, ">${outdir}/index.html.new");
- print HTML '<html><head><meta http-equiv="refresh" content="60"/><meta http-equiv="cache-control" content="no-cache"/><meta http-equiv="pragma" content="no-cache"/><meta http_equiv="expires" content="Sat, 26 Jul 1997 05:00:00 GMT"/><title>USV status</title></head>';
+ print HTML '<html><head><meta http-equiv="refresh" content="60"/><meta http-equiv="cache-control" content="no-cache"/><meta http-equiv="pragma" content="no-cache"/><meta http_equiv="expires" content="Sat, 26 Jul 1997 05:00:00 GMT"/><title>Status</title></head>';
print HTML '<body bgcolor="#ffffff">';
foreach my $host (@$hosts) {
+ print HTML "[<a href=\"#".${host}->{'name'}."\">".${host}->{'name'}."</a>] ";
+ }
+ print HTML "<br>\n";
+
+ foreach my $host (@$hosts) {
+ print HTML "<br>\n";
+ print HTML "<a name=\"".${host}->{'name'}."\"></a>\n";
my $vars = $host->{'vars'};
my $rrdfile = $host->{'rrdfile'};
my $hostname = $host->{'name'};
rename("${outdir}/${hostname}.${var}.png.new", "${outdir}/${hostname}.${var}.png");
}
- print HTML "<a href=\"${hostname}.${var}.html\"><img src=\"${hostname}.${var}.png\" width=\"${width}\" height=\"${height}\" border=\"0\"></a>";
+ print HTML "<a href=\"${hostname}.${var}.html\"><img src=\"${hostname}.${var}.png\" width=\"${width}\" height=\"${height}\" border=\"0\"></a><br>\n";
open (HTML2, ">${outdir}/${hostname}.${var}.html.new");
print HTML2 "<html><head><title>" . $vars->{$var}->{'name'} . "</title></head>";