X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fdx.pl;h=b10ee7cd61260a40e7b85b0332cbcd26b07e13b6;hb=f939c447ca5ef37073054a73e50b48a63533a9bc;hp=700138b6d27de3e55c40cf83409583fb7d2b5e83;hpb=af2f3a0a2f8e5d99e0072c194f20a1da2f559348;p=spider.git diff --git a/cmd/show/dx.pl b/cmd/show/dx.pl index 700138b6..b10ee7cd 100644 --- a/cmd/show/dx.pl +++ b/cmd/show/dx.pl @@ -18,6 +18,7 @@ my $pre; my $spotter; my $info; my $expr; +my ($doqsl, $doiota, $doqra); while ($f = shift @list) { # next field # print "f: $f list: ", join(',', @list), "\n"; @@ -31,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 @@ -56,6 +57,27 @@ while ($f = shift @list) { # next field $spotter = uc shift @list; next; } + if (lc $f eq 'qsl') { + $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; } @@ -96,6 +118,24 @@ if ($spotter) { $expr .= "\$f4 =~ m{$spotter}o"; } +# qsl requests +if ($doqsl) { + $expr .= " && " if $expr; + $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"; # now do the search