X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fannounce.pl;h=2820c6c7f665c0638be3cbefb9fd10b79996ceca;hb=bdb2057b06d14c2cdba899869ba7929f052b2b50;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=2546ef0cfaaca39e65985e414258071a636979af;p=spider.git diff --git a/cmd/show/announce.pl b/cmd/show/announce.pl index e69de29b..2820c6c7 100644 --- a/cmd/show/announce.pl +++ b/cmd/show/announce.pl @@ -0,0 +1,40 @@ +# +# print out the general log file for announces only +# +# Copyright (c) 1998 - Dirk Koopman G1TLH +# +# +# +my $self = shift; + +# this appears to be a reasonable thing for users to do (thank you JE1SGH) +# return (1, $self->msg('e5')) if $self->priv < 9; + +my $cmdline = shift; +my @f = split /\s+/, $cmdline; +my $f; +my @out; +my ($from, $to, $who); + +$from = 0; +while ($f = shift @f) { # next field + # print "f: $f list: ", join(',', @list), "\n"; + if (!$from && !$to) { + ($from, $to) = $f =~ /^(\d+)-(\d+)$/o; # is it a from -> to count? + next if $from && $to > $from; + } + if (!$to) { + ($to) = $f =~ /^(\d+)$/o if !$to; # is it a to count? + next if $to; + } + next if $who; + #($who) = $f =~ /^(\w+)/o; +} + +$to = 20 unless $to; +$from = 0 unless $from; + +return (1, DXLog::print($from, $to, $main::systime, 'ann', $who)) if $self->{_nospawn};; +return (1, $self->spawn_cmd("show/announce $cmdline", \&DXLog::print, args => [$from, $to, $main::systime, 'ann', $who])); + +return (1, @out);