remove $Id$ strings from everywhere that I can find
[spider.git] / cmd / set / wx.pl
1 #
2 # set the wx flag
3 #
4 # Copyright (c) 1999 - Dirk Koopman
5 #
6 #
7 #
8
9 my ($self, $line) = @_;
10 my @args = split /\s+/, $line;
11 my $call;
12 my @out;
13
14 @args = $self->call if (!@args || $self->priv < 9);
15
16 foreach $call (@args) {
17   $call = uc $call;
18   my $chan = DXChannel::get($call);
19   if ($chan) {
20     $chan->wx(1);
21     $chan->user->wantwx(1);
22         push @out, $self->msg('wxs', $call);
23   } else {
24     push @out, $self->msg('e3', "Set WX Spots", $call);
25   }
26 }
27 return (1, @out);