X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FAnnTalk.pm;h=982e9c49afc9eb99b679ac180ecbdab8a48af0a4;hb=15abf289110563e5246d38a0621ad26c0bfd247d;hp=341857450be90e8e45dd5003fed742875d645682;hpb=8e0eef80216fbb2bca3606daf5797e39b2889d7a;p=spider.git diff --git a/perl/AnnTalk.pm b/perl/AnnTalk.pm index 34185745..982e9c49 100644 --- a/perl/AnnTalk.pm +++ b/perl/AnnTalk.pm @@ -15,11 +15,32 @@ use DXDebug; use DXDupe; use DXVars; -use vars qw(%dup $duplth $dupage); +use vars qw(%dup $duplth $dupage $filterdef); $duplth = 60; # the length of text to use in the deduping $dupage = 5*24*3600; # the length of time to hold spot dups +$filterdef = bless ([ + # tag, sort, field, priv, special parser + ['by', 'c', 0], + ['dest', 'c', 1], + ['info', 't', 2], + ['group', 't', 3], + ['origin', 'c', 4], + ['wx', 't', 5], + ['channel', 'n', 6], + ['by_dxcc', 'n', 7], + ['by_itu', 'n', 8], + ['by_zone', 'n', 9], + ['origin_dxcc', 'n', 10], + ['origin_itu', 'n', 11], + ['origin_itu', 'n', 12], + ], 'Filter::Cmd'); +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; # enter the spot for dup checking and return true if it is already a dup sub dup @@ -28,8 +49,10 @@ sub dup chomp $text; unpad($text); - $text =~ s/[^a-zA-Z0-9]//g; + $text =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg; $text = substr($text, 0, $duplth) if length $text > $duplth; + $text = pack("C*", map {$_ & 127} unpack("C*", $text)); + $text =~ s/[^a-zA-Z0-9]//g; my $dupkey = "A$to|\L$text"; return DXDupe::check($dupkey, $main::systime + $dupage); }