X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fdx.pl;h=b10ee7cd61260a40e7b85b0332cbcd26b07e13b6;hb=81a5b9bf8d3101bbc1a8190a9de72de0117d302a;hp=52467faaa8fb1ca7515e27f663e7bdbe718b9f19;hpb=2e60042c452f5f5c10747474fd622055c18229ed;p=spider.git diff --git a/cmd/show/dx.pl b/cmd/show/dx.pl index 52467faa..b10ee7cd 100644 --- a/cmd/show/dx.pl +++ b/cmd/show/dx.pl @@ -18,7 +18,7 @@ my $pre; my $spotter; my $info; my $expr; -my $qsl; +my ($doqsl, $doiota, $doqra); while ($f = shift @list) { # next field # print "f: $f list: ", join(',', @list), "\n"; @@ -32,7 +32,7 @@ while ($f = shift @list) { # next field } if (lc $f eq 'on' && $list[0]) { # is it freq range? # print "yup freq\n"; - my @r = split '/', $list[0]; + my @r = split '/', lc $list[0]; # print "r0: $r[0] r1: $r[1]\n"; my @fr = Bands::get_freq($r[0], $r[1]); if (@fr) { # yup, get rid of extranous param @@ -61,6 +61,23 @@ while ($f = shift @list) { # next field $doqsl = 1; next; } + if (lc $f eq 'iota') { + my ($a, $b); +# $DB::single =1; + + if ($list[0] && (($a, $b) = $list[0] =~ /(AF|AN|NA|SA|EU|AS|OC)-?(\d?\d\d)/oi)) { + $a = uc $a; + $doiota = "\\b$a\[\-\ \]\?$b\\b"; + shift @list; + } + $doiota = '\b(IOTA|(AF|AN|NA|SA|EU|AS|OC)[- ]?\d?\d\d)\b' unless $doiota; + next; + } + if (lc $f eq 'qra') { + $doqra = uc shift @list if $list[0] =~ /[A-Z][A-Z]\d\d/oi; + $doqra = '\b([A-Z][A-Z]\d\d|[A-Z][A-Z]\d\d[A-Z][A-Z])\b' unless $doqra; + next; + } if (!$pre) { $pre = uc $f; } @@ -104,7 +121,19 @@ if ($spotter) { # qsl requests if ($doqsl) { $expr .= " && " if $expr; - $expr .= "\$f3 =~ m{(QSL|VIA)}io"; + $expr .= "\$f3 =~ m{(\@|>|QSL|VIA)}io"; +} + +# iota requests +if ($doiota) { + $expr .= " && " if $expr; + $expr .= "\$f3 =~ m{$doiota}io"; +} + +# iota requests +if ($doqra) { + $expr .= " && " if $expr; + $expr .= "\$f3 =~ m{$doqra}io"; } #print "expr: $expr from: $from to: $to fromday: $fromday today: $today\n";