got routing essentially working
[spider.git] / cmd / show / channel.pl
diff --git a/cmd/show/channel.pl b/cmd/show/channel.pl
deleted file mode 100644 (file)
index 147c150..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# show the channel status
-#
-# $Id$
-#
-
-use strict;
-my ($self, $line) = @_;
-my @list = split /\s+/, $line;           # generate a list of callsigns
-@list = ($self->call) if !@list || $self->priv < 9;  # my channel if no callsigns
-
-my $call;
-my @out;
-foreach $call (@list) {
-  $call = uc $call;
-  my $ref = DXChannel->get($call);
-  if ($ref) {
-    @out = print_all_fields($self, $ref, "Channe Information $call");
-  } else {
-    return (0, "Channel: $call not found") if !$ref;
-  }
-  push @out, "" if @list > 1;
-}
-
-return (1, @out);
-
-