decoder wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
after I saw that there are incompatiblities with SA 3.2 and FuzzyOcr,
I decided to try to fix them although I'm still very busy (preparing
for Bachelor thesis).
There is still another problem though, the formatting of the rule
descriptions changed in SA 3.2 and I can't seem to get it to do the
"old" formatting (listing the words etc), the wrapper screws it up
totally.
Hi
I fixed this for me - it's a dirty hack but it seems to work for quite a
while now by just padding every line to 45 with spaces and removing the
newlines.
For example:
Instead of
push( @cfound, "\"$w\" in $wcnt lines" );
I'm using:
my $text = "\"$w\" in $wcnt lines";
$text .= " " x (45-length($text));
push( @cfound, $text );
Dont forget the initial line and the reports look fine to me - only
downside is, the log is now pretty unreadable but I can live with that....
Matt
btw: this issue also arises with 3.1.8, not only 3.2 !