+20Jan03=======================================================================
+1. changed sh/c so that, by default, it only shows the caller's country nodes
+sh/c all will show the old style full list. "sh/c sk gb" will show the config
+of all the GB and SK nodes.
19Jan03=======================================================================
1. I have made a fundemental change to the way PC19s are dealt with as a
result of the discussions on the mailing list. From now on, only nodes that
'^set$', 'apropos set', 'apropos',
'^sho?w?/u$', 'show/user', 'show/user',
'^sho?w?/bu', 'show/files bulletins', 'show/files',
+ '^sho?w?/c/a', 'show/configuration all', 'show/configuration',
'^sho?w?/c/n', 'show/configuration nodes', 'show/configuration',
'^sho?w?/c$', 'show/configuration', 'show/configuration',
'^sho?w?/com', 'dbavail', 'dbavail',
This command is normally abbreviated to: sh/c
+Normally, the list returned will be just for the nodes from your
+country (because the list otherwise will be very long).
+
+ SH/C ALL
+
+will produce a complete list of all nodes.
+
BE WARNED: the list that is returned can be VERY long
+It is possible to supply a node or part of a prefix and you will get
+a list of the users for that node or list of nodes starting with
+that prefix.
+
+ SH/C GB7DJK
+
+ SH/C SK
+
=== 0^SHOW/CONFIGURATION/NODE^Show all the nodes connected locally
Show all the nodes connected to this node.
push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l;
}
} else {
+ my $printall;
+
+ $printall = 1 if @list && $list[0] =~ /^ALL/i;
+
# build up the screen from the Node table
foreach $node (@nodes) {
- next if scalar @list && !grep $node->call =~ /^$_/, @list;
+ unless ($printall) {
+ if (@list) {
+ next unless grep $node->call =~ /^$_/, @list;
+ } else {
+ next unless $node->dxcc == $self->dxcc;
+ }
+ }
my $call = $node->call;
@l = ();
$call ||= '???';