X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FAnnTalk.pm;h=f9fd7828513382c8d2807cc48c44b0103845d264;hb=06cf973726ecfc228d68bc82b63feb026d897a68;hp=987b885d05bb06403559192714c947cc8ef4ac27;hpb=44bab9382ffb0bf12639af84729d1c42ac4d9ae2;p=spider.git diff --git a/perl/AnnTalk.pm b/perl/AnnTalk.pm index 987b885d..f9fd7828 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], + ['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'); + # enter the spot for dup checking and return true if it is already a dup sub dup @@ -26,8 +44,10 @@ sub dup chomp $text; unpad($text); + $text =~ s/[\\\%]\d+//g; + $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); }