> does anybody know if there is a freeware tool, which makes it possible to add
> automaticaly lines to the analog output html. it should be the easiest way to
> add font face or background colors.
Why bother? Analog's output is very, very consistent in approach. I found
it trivial to parse the HTML output and reformat it as I saw fit.
Something like this is fine ... (perl5 subroutine)
# Read through the entire report, line by line..
seek REPORT, 0, 0;
while ( $line=<REPORT> ) {
# Find the named section(s)..
foreach $Name (@Names) {
if ($line =~ /^<h2><a NAME="Rep(\d+)">$Name/) {
print HTMLOUT $line;
# Print it out, until the next horizontal rule
FIND: while ($line=<REPORT>) {
if ($line =~ /<hr>/) { last FIND; }
print HTMLOUT $line;
}
}
}
--
Joe Rhett Systems Engineer
[EMAIL PROTECTED] ISite Services
PGP keys and contact information: http://www.noc.isite.net/Staff/
--------------------------------------------------------------------
This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe analog-help" in the main BODY OF THE MESSAGE.
--------------------------------------------------------------------