X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FBadWords.pm;h=59f516e8fe480293841a354291655277b78df64d;hb=b9dffeff7239952814342dad19db3a51def6fab7;hp=7ae0373f436f007edcd259af76b2699f3f210a6d;hpb=21ee7b1845f8fc5ab10c6a33a058cfbd11d7a705;p=spider.git diff --git a/perl/BadWords.pm b/perl/BadWords.pm index 7ae0373f..59f516e8 100644 --- a/perl/BadWords.pm +++ b/perl/BadWords.pm @@ -29,12 +29,6 @@ filecopy("$bwfn.issue", $bwfn) unless -e $bwfn; $badword = new DXHash "badword"; -use vars qw($VERSION $BRANCH); -$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ ); -$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0; -$main::build += $VERSION; -$main::branch += $BRANCH; - # load the badwords file sub load { @@ -75,7 +69,7 @@ sub create_regex my $w = uc $_; my @l = split //, $w; my $e = join '+[\s\W]*', @l; - $s .= "push \@out, \$1 if \$str =~ /($e)/;\n"; + $s .= "push \@out, \$1 if \$str =~ /\\b($e)/;\n"; } } $s .= "return \@out;\n}"; @@ -106,8 +100,7 @@ sub check return @out if @out; - for (split(/\s+/, $s)) { - s/\'?S$//; + for (split(/\b/, $s)) { push @out, $_ if $badword->in($_); }