Removing scrape split token, now TinderboxPrint: just prints out the rest of the line. If you want 3 lines of output on tbox, you need 3 TinderboxPrint: statements. This will just be simpler, no ambiguous cases.

git-svn-id: svn://10.0.0.236/trunk@135652 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcafee%netscape.com 2002-12-27 09:34:58 +00:00
parent 413ac4fdf5
commit 6186262753

View File

@ -80,14 +80,13 @@ sub find_scrape_data {
while (<$fh>) {
if (/TinderboxPrint:/) {
# Line format:
# TinderboxPrint:aaa;bbb;ccc;ddd
# TinderboxPrint:<general html>
# Strip off the TinderboxPrint: part of the line
chomp;
s/.*TinderboxPrint://;
#@line = split(';', $_);
push(@line, $_);
push(@rv, @line);
push(@rv, $_);
}
}
return @rv;