X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FAnnTalk.pm;h=a74c0e250495bfdd7c1ae0603a285ddbeb8f45ed;hb=956e3acab807900fdbccc0e2fa5e999327a1c1ce;hp=658c21b82ee52380b0c1b49735bf018774cd9074;hpb=19b30b579e7e8f79becc58aba2e3d0a2516a375c;p=spider.git diff --git a/perl/AnnTalk.pm b/perl/AnnTalk.pm index 658c21b8..a74c0e25 100644 --- a/perl/AnnTalk.pm +++ b/perl/AnnTalk.pm @@ -13,11 +13,29 @@ use strict; use DXUtil; 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], + ['wx', 't', 5], + ['origin', 'c', 7, 4], + ['origin_dxcc', 'c', 10], + ['origin_itu', 'c', 11], + ['origin_itu', 'c', 12], + ['by_dxcc', 'n', 7], + ['by_itu', 'n', 8], + ['by_zone', 'n', 9], + ['channel', 'n', 6], + ], 'Filter::Cmd'); + # enter the spot for dup checking and return true if it is already a dup sub dup @@ -28,7 +46,7 @@ sub dup unpad($text); $text =~ s/[^a-zA-Z0-9]//g; $text = substr($text, 0, $duplth) if length $text > $duplth; - my $dupkey = "A$to|$text"; + my $dupkey = "A$to|\L$text"; return DXDupe::check($dupkey, $main::systime + $dupage); }