add CTY-3201 prefixes

This commit is contained in:
Dirk Koopman 2022-01-08 08:37:38 +00:00
parent 4b207544da
commit 66a5726687
4 changed files with 7266 additions and 7192 deletions

View File

@ -1,3 +1,5 @@
09Jan22=======================================================================
1. Add New Year CTY 3201 prefix data.
07Jan22=======================================================================
1. Backport console.pl from the Mojo Branch.
06Jan22=======================================================================

82
cmd/unset/registered.pl Normal file
View File

@ -0,0 +1,82 @@
#
# show/registered
#
# show all registered users
#
# Copyright (c) 2001 Dirk Koopman G1TLH
#
#
#
sub handle
{
my ($self, $line) = @_;
return (1, $self->msg('e5')) unless $self->priv >= 9;
my @out;
use DB_File;
if ($line) {
$line =~ s/[^\w\-\/]+//g;
$line = "\U\Q$line";
}
if ($self->{_nospawn}) {
@out = generate($self, $line);
} else {
@out = $self->spawn_cmd("show/registered $line", sub { return (generate($self, $line)); });
}
return (1, @out);
}
sub generate
{
my $self = shift;
my $line = shift;
my @out;
my @val;
# dbg("set/register line: $line");
my %call = ();
$call{$_} = 1 for split /\s+/, $line;
delete $call{'ALL'};
my ($action, $count, $key, $data) = (0,0,0,0);
unless (keys %call) {
for ($action = DXUser::R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
if ($data =~ m{registered}) {
$call{$key} = 1; # possible candidate
}
}
}
foreach $key (sort keys %call) {
my $u = DXUser::get_current($key);
if ($u && defined (my $r = $u->registered)) {
push @val, "${key}($r)";
++$count;
}
}
my @l;
push @out, "Registration is " . ($main::reqreg ? "Required" : "NOT Required");
foreach my $call (@val) {
if (@l >= 5) {
push @out, sprintf "%-14s %-14s %-14s %-14s %-14s", @l;
@l = ();
}
push @l, $call;
}
if (@l) {
push @l, "" while @l < 5;
push @out, sprintf "%-14s %-14s %-14s %-14s %-14s", @l;
}
push @out, $self->msg('rec', $count);
return @out;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff