+10Aug05=======================================================================
+1. trim dx spot duplicate length after normalisation
+2. Do the same for announces
08Jul05=======================================================================
1. new CTY.DAT encorporated
27May05=======================================================================
chomp $text;
unpad($text);
$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;
+ $text = substr($text, 0, $duplth) if length $text > $duplth;
my $dupkey = "A$to|\L$text";
return DXDupe::check($dupkey, $t);
}
$text = "" if $cty == $try[0];
}
}
- $text = substr($text, 0, $duplth) if length $text > $duplth;
$text = pack("C*", map {$_ & 127} unpack("C*", $text));
$text =~ s/[^\w]//g;
+ $text = substr($text, 0, $duplth) if length $text > $duplth;
my $ldupkey = "X$freq|$call|$by|$text";
my $t = DXDupe::find($ldupkey);
return 1 if $t && $t - $main::systime > 0;