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:
parent
413ac4fdf5
commit
6186262753
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user