Restore Script.pm to master's version

This commit is contained in:
Dirk Koopman 2020-05-12 23:26:37 +01:00
parent b7bac13101
commit 3b932bf2af
2 changed files with 11 additions and 24 deletions

10
Changes
View File

@ -1,6 +1,14 @@
10May20=======================================================================
1. Added basic changes so that users *could* have multiple connections to the
same node if it is allowed.
same node if it is allowed. This is work in progress and is there to see
if it deals with some networking problems encountered on very high volume
sites which can see more than 1000 users (although the problems can occur
with many hundreds or by the practices of certain ISPs). More information
will be forthcoming if I get to the bottom of what's REALLY going on and
whether this is (or maybe just one part of) the solution. It won't be
ready for general use until then.
2. Fixed the script import error reported by Joaquin (EA3CV?), by the simple
expedient of restoring the version from the master branch.
09May20=======================================================================
1. Show the route by which this PCxx came in progress debugging reports. In
some other words: the spot/wwv/wcy/ann message arrived first from this

View File

@ -22,7 +22,7 @@ my $base = "$main::root/scripts";
sub clean
{
my $s = shift;
$s =~ s/([-\w\d_]+)/$1/g;
$s =~ s/[^-\w\.]//g;
return $s;
}
@ -118,26 +118,5 @@ sub lines
sub erase
{
my $self = shift;
my $call = clean($self->{call});
my $fn;
my $try;
$try = "$base/" . clean(lc $self->call);
if (-w $try) {
$fn = $try;
} else {
$try = "$base/" . clean(uc $self->call);
if (-w $try) {
$fn = $try;
}
}
if ($fn && -w $fn) {
unless (unlink $fn) {
return ($self->msg('m22'. $call));
}
return ($self->msg('m20', $call));
}
return ($self->msg('e3', "unset/startup", $call));
unlink $self->{fn};
}