From 20cbf462bd8084e22bc097f6029b5a7455d9f92c Mon Sep 17 00:00:00 2001 From: Dirk Koopman Date: Wed, 8 Jul 2020 23:58:42 +0100 Subject: [PATCH] rm rbn from Aliases, change help Add a callsign to invalid characters in command handling --- cmd/Aliases | 1 - cmd/Commands_en.hlp | 4 ---- perl/DXCommandmode.pm | 2 +- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/cmd/Aliases b/cmd/Aliases index f776d430..59c1255e 100644 --- a/cmd/Aliases +++ b/cmd/Aliases @@ -94,7 +94,6 @@ package CmdAlias; ], 'r' => [ '^r$', 'read', 'read', - '^rbn$', 'apropos rbn', 'apropos', '^reje?c?t?$', 'apropos reject', 'apropos', '^rcmd/(\S+)', 'rcmd $1', 'rcmd', ], diff --git a/cmd/Commands_en.hlp b/cmd/Commands_en.hlp index a44426a3..e2dd0c0d 100644 --- a/cmd/Commands_en.hlp +++ b/cmd/Commands_en.hlp @@ -1120,10 +1120,6 @@ is a good indication of the quality of the link. The actual time it takes is output to the console in seconds. Any visible cluster node can be PINGed. -=== 9^RBN^The Reverse Beacon or Skimmer System -Please read the document /spider/RBN.mojo. This has the latest information -about RBN/Skimmer setup. - === 0^RBN^The Reverse Beacon or Skimmer System DXSpider now has the ability to show spots from the Reverse Beacon Network or "Skimmers", if your sysop has enabled the feed(s) (and has the bandwidth diff --git a/perl/DXCommandmode.pm b/perl/DXCommandmode.pm index 38773783..bef5626d 100644 --- a/perl/DXCommandmode.pm +++ b/perl/DXCommandmode.pm @@ -516,7 +516,7 @@ sub run_cmd # check cmd if ($cmd =~ m|^/| || $cmd =~ m|[^-?\w/]|) { - LogDbg('DXCommand', "cmd: invalid characters in '$cmd'"); + LogDbg('DXCommand', "cmd: $self->{call} - invalid characters in '$cmd'"); return $self->_error_out('e1'); } -- 2.34.1