spider.git
10 years agouse latest big cty.dat anyevent
Dirk Koopman [Sun, 21 Jul 2013 21:39:01 +0000 (22:39 +0100)]
use latest big cty.dat

10 years agoMerge branch 'master' into anyevent
Dirk Koopman [Thu, 6 Jun 2013 09:54:26 +0000 (10:54 +0100)]
Merge branch 'master' into anyevent

add 4mm band and latest prefix data

Conflicts:
perl/Version.pm

10 years agoupdates ands for 4mm and prefix data
Dirk Koopman [Thu, 6 Jun 2013 08:19:14 +0000 (09:19 +0100)]
updates ands for 4mm and prefix data

11 years agotry again with cty2210
Dirk Koopman [Thu, 31 May 2012 16:08:50 +0000 (17:08 +0100)]
try again with cty2210

11 years agoAdd CTY2210 prefix changes
Dirk Koopman [Thu, 31 May 2012 08:49:01 +0000 (09:49 +0100)]
Add CTY2210 prefix changes

11 years agoadd cty2209 prefix changes
Dirk Koopman [Tue, 29 May 2012 10:37:57 +0000 (11:37 +0100)]
add cty2209 prefix changes

12 years agoadd DXSql/Pg.pm and CTY-2206 Prefix changes
Dirk Koopman [Tue, 10 Apr 2012 13:50:26 +0000 (14:50 +0100)]
add DXSql/Pg.pm and CTY-2206 Prefix changes

12 years agomerge new wpxloc.raw + CTY2204 prefix changes
Dirk Koopman [Tue, 13 Mar 2012 18:33:11 +0000 (18:33 +0000)]
merge new wpxloc.raw + CTY2204 prefix changes

Conflicts:
perl/Version.pm

12 years agoadd new wpxloc.raw + CTY2204 prefix changes
Dirk Koopman [Tue, 13 Mar 2012 18:31:26 +0000 (18:31 +0000)]
add new wpxloc.raw + CTY2204 prefix changes

12 years agoMerge branch 'master' into anyevent
Dirk Koopman [Mon, 12 Mar 2012 23:44:36 +0000 (23:44 +0000)]
Merge branch 'master' into anyevent

Conflicts:
perl/DXUser.pm
perl/Version.pm

Add database handling changes from master

12 years agoalter index adding dbg statement order
Dirk Koopman [Mon, 12 Mar 2012 23:41:57 +0000 (23:41 +0000)]
alter index adding dbg statement order

12 years agobreath on database storage engines
Dirk Koopman [Mon, 12 Mar 2012 23:26:55 +0000 (23:26 +0000)]
breath on database storage engines

Check that Mysql / sqlite databases work
Add ipaddr column to spot table if required
from now on add ip addresses to table if present (NULL otherwise)

12 years agofix UNIVERSAL typo in DXProt for pc34
Dirk Koopman [Fri, 9 Mar 2012 23:02:43 +0000 (23:02 +0000)]
fix UNIVERSAL typo in DXProt for pc34

12 years agofix (different) pc34 UNIVERSAL typo in DXProt
Dirk Koopman [Fri, 9 Mar 2012 22:51:01 +0000 (22:51 +0000)]
fix (different) pc34 UNIVERSAL typo in DXProt

12 years agofix DXUser UNIVERSAL::isa typo
Dirk Koopman [Fri, 9 Mar 2012 22:42:35 +0000 (22:42 +0000)]
fix DXUser UNIVERSAL::isa typo

12 years agoupdate version
Dirk Koopman [Fri, 9 Mar 2012 22:38:30 +0000 (22:38 +0000)]
update version

12 years agofix errors in DXUser deserialising Users
Dirk Koopman [Fri, 9 Mar 2012 22:37:50 +0000 (22:37 +0000)]
fix errors in DXUser deserialising Users

12 years agoMerge PC34 unbless ref changes from main line
Dirk Koopman [Fri, 9 Mar 2012 22:20:03 +0000 (22:20 +0000)]
Merge PC34 unbless ref changes from main line

Conflicts:
perl/DXUser.pm

12 years agoadd yet more changes in pc34
Dirk Koopman [Fri, 9 Mar 2012 22:15:30 +0000 (22:15 +0000)]
add yet more changes in pc34

12 years agotry to fix unblessed refs in PC34s
Dirk Koopman [Fri, 9 Mar 2012 22:13:29 +0000 (22:13 +0000)]
try to fix unblessed refs in PC34s

12 years agoMerge branch 'master' into anyevent
Dirk Koopman [Wed, 15 Feb 2012 15:47:15 +0000 (15:47 +0000)]
Merge branch 'master' into anyevent

Conflicts:
data/cty.dat
data/prefix_data.pl
perl/Version.pm

12 years agoupdate version
Dirk Koopman [Wed, 15 Feb 2012 15:44:26 +0000 (15:44 +0000)]
update version

12 years agoadd CTY-2202 prefix data
Dirk Koopman [Wed, 15 Feb 2012 15:43:50 +0000 (15:43 +0000)]
add CTY-2202 prefix data

and also fix mysql show tables

12 years agoadded support for subroutines in commands
Dirk Koopman [Sun, 29 Jan 2012 18:02:02 +0000 (18:02 +0000)]
added support for subroutines in commands

Traditionally, a command is a piece of perl that is a simple
in line lump of code e.g (blank.pl):

my ($self, $line) = @_;
my $lines = 1;
my $data = ' ';
my @f = split /\s+/, $line;
if (@f && $f[0] !~ /^\d+$/) {
$data = shift @f;
$data = $data x int(($self->width-1) / length($data));
$data .= substr $data, 0, int(($self->width-1) % length($data))
}
if (@f && $f[0] =~ /^\d+$/) {
$lines = shift @f;
$lines = 9 if $lines > 9;
$lines = 1 if $lines < 1;
}
my @out;
push @out, $data for (1..$lines);
return (1, @out);

It is now possible to have a 'handler' and any other code you like in
a command file, for instance (again blank.pl):

sub this {}

sub that {}

sub another {}

sub handle
{
my ($self, $line) = @_;
my $lines = 1;
my $data = ' ';
my @f = split /\s+/, $line;
if (@f && $f[0] !~ /^\d+$/) {
$data = shift @f;
$data = $data x int(($self->width-1) / length($data));
$data .= substr $data, 0, int(($self->width-1) % length($data))
}
if (@f && $f[0] =~ /^\d+$/) {
$lines = shift @f;
$lines = 9 if $lines > 9;
$lines = 1 if $lines < 1;
}
my @out;
push @out, $data for (1..$lines);
return (1, @out);
}

The 'sub handle' being the cue that distiguishes one form from the other.

The first form has the 'sub handle { <code> }' wrapped around it so, internally
they are treated the same. Each command is placed in its own DXCommandmode sub
package with a standard set of packages "use"d in front of it.

For now (at least) any functions you declare are just that. "$self" is a DXCommandmode
not a blessed reference to this command's full package name, you cannot use things like

$self->this() or $self->that()

they must be called as local functions.

This may change in the future.

12 years agoer.. actually generate the CTY-2201 prefixes
Dirk Koopman [Sun, 29 Jan 2012 10:41:58 +0000 (10:41 +0000)]
er.. actually generate the CTY-2201 prefixes

12 years agoadd CTY-2201 prefixes
Dirk Koopman [Sun, 29 Jan 2012 10:41:23 +0000 (10:41 +0000)]
add CTY-2201 prefixes

12 years agoadd CTY-2201
Dirk Koopman [Sun, 29 Jan 2012 10:39:58 +0000 (10:39 +0000)]
add CTY-2201

12 years agoput back some command debugging
Dirk Koopman [Tue, 17 Jan 2012 21:48:36 +0000 (21:48 +0000)]
put back some command debugging

to do with cached/uncached commands

12 years agovarious small speed up changes
Dirk Koopman [Thu, 5 Jan 2012 15:19:44 +0000 (15:19 +0000)]
various small speed up changes

12 years agofix export_user and create_sysop.pl
Dirk Koopman [Mon, 2 Jan 2012 20:23:01 +0000 (20:23 +0000)]
fix export_user and create_sysop.pl

12 years agomake DXUser use JSON::XS and Sqlite
Dirk Koopman [Mon, 2 Jan 2012 18:07:30 +0000 (18:07 +0000)]
make DXUser use JSON::XS and Sqlite

We are starting the removal of DB_File out of the product.

12 years agoadd by_dxcc to sh/dx
Dirk Koopman [Mon, 2 Jan 2012 18:06:40 +0000 (18:06 +0000)]
add by_dxcc to sh/dx

12 years agoadd logging to show/dxsql
Dirk Koopman [Tue, 27 Dec 2011 15:28:24 +0000 (15:28 +0000)]
add logging to show/dxsql

this is to find out whether anyone is using this command.

12 years agomake sh/contest async
Dirk Koopman [Tue, 27 Dec 2011 15:19:34 +0000 (15:19 +0000)]
make sh/contest async

12 years agonow with async sh/qrz!
Dirk Koopman [Tue, 27 Dec 2011 13:59:32 +0000 (13:59 +0000)]
now with async sh/qrz!

There is a new DXCommandmode::http_get() async http get routine
that is callable from a command such as sh/qrz.

12 years agofix error message on disconnect from peer
Dirk Koopman [Fri, 23 Dec 2011 13:06:31 +0000 (13:06 +0000)]
fix error message on disconnect from peer

12 years agofix disconnect from peer
Dirk Koopman [Fri, 23 Dec 2011 11:23:15 +0000 (11:23 +0000)]
fix disconnect from peer

12 years agonormalise peerhost on outgoing connects
Dirk Koopman [Thu, 22 Dec 2011 23:51:10 +0000 (23:51 +0000)]
normalise peerhost on outgoing connects

12 years agofix (remove) peerhost on connect error
Dirk Koopman [Thu, 22 Dec 2011 23:13:46 +0000 (23:13 +0000)]
fix (remove) peerhost on connect error

12 years agoupissue version
Dirk Koopman [Thu, 22 Dec 2011 23:03:06 +0000 (23:03 +0000)]
upissue version

12 years agofix echoing (?)
Dirk Koopman [Thu, 22 Dec 2011 23:02:35 +0000 (23:02 +0000)]
fix echoing (?)

12 years agofix console.pl so it ends gracefully
Dirk Koopman [Thu, 22 Dec 2011 22:42:15 +0000 (22:42 +0000)]
fix console.pl so it ends gracefully

12 years agoGot something basically working
Dirk Koopman [Thu, 22 Dec 2011 22:06:04 +0000 (22:06 +0000)]
Got something basically working

Need to sort out shutdown and related things

12 years agoWIP AnyEvent version
Dirk Koopman [Thu, 22 Dec 2011 20:41:45 +0000 (20:41 +0000)]
WIP AnyEvent version

12 years agostart of AnyEvent conversion 1.56
Dirk Koopman [Wed, 21 Dec 2011 22:25:16 +0000 (22:25 +0000)]
start of AnyEvent conversion

12 years agoadd CTY2118 changes
Dirk Koopman [Wed, 21 Dec 2011 13:35:57 +0000 (13:35 +0000)]
add CTY2118 changes

12 years agofix barf on encountering an empty lockfile
Dirk Koopman [Tue, 20 Dec 2011 19:47:28 +0000 (19:47 +0000)]
fix barf on encountering an empty lockfile

12 years agofix shutdown() error and add CTY2117
Dirk Koopman [Tue, 29 Nov 2011 18:50:47 +0000 (18:50 +0000)]
fix shutdown() error and add CTY2117

12 years agoadded cty2116 changes with fixed version
Dirk Koopman [Sat, 5 Nov 2011 17:20:43 +0000 (17:20 +0000)]
added cty2116 changes with fixed version

12 years agoMerge branch 'master' of ssh://server/scm/spider
Dirk Koopman [Fri, 4 Nov 2011 18:06:34 +0000 (18:06 +0000)]
Merge branch 'master' of ssh://server/scm/spider

Conflicts:
Changes
data/cty.dat
data/prefix_data.pl

12 years agoadd CTY2115 prefixes
Dirk Koopman [Fri, 4 Nov 2011 18:00:03 +0000 (18:00 +0000)]
add CTY2115 prefixes

12 years agoadd CTY2113 prefixes
Dirk Koopman [Tue, 25 Oct 2011 14:23:41 +0000 (15:23 +0100)]
add CTY2113 prefixes

12 years agochange internal 40m band areas
Dirk Koopman [Sun, 2 Oct 2011 12:18:15 +0000 (13:18 +0100)]
change internal 40m band areas

12 years agoadd CTY2110 changes
Dirk Koopman [Mon, 25 Jul 2011 20:14:04 +0000 (21:14 +0100)]
add CTY2110 changes

12 years agoadd ST0 to prefixes
Dirk Koopman [Sat, 23 Jul 2011 12:20:36 +0000 (13:20 +0100)]
add ST0 to prefixes

12 years agoadd CTY-2108 prefixes
Dirk Koopman [Tue, 24 May 2011 09:23:19 +0000 (10:23 +0100)]
add CTY-2108 prefixes

13 years agofix IPV4 handling on non-IPV6 capable hosts
Dirk Koopman [Mon, 4 Apr 2011 21:08:02 +0000 (22:08 +0100)]
fix IPV4 handling on non-IPV6 capable hosts

13 years agoitry to fix outgoing IPV6 connects
Dirk Koopman [Mon, 4 Apr 2011 20:54:43 +0000 (21:54 +0100)]
itry to fix outgoing IPV6 connects

13 years agoadd CTY-2106 prefixes
Dirk Koopman [Tue, 29 Mar 2011 18:51:52 +0000 (19:51 +0100)]
add CTY-2106 prefixes

13 years agoadd CTY-2105 prefixes
Dirk Koopman [Wed, 16 Mar 2011 10:36:52 +0000 (10:36 +0000)]
add CTY-2105 prefixes

13 years agooops forgot to use gcommit...
Dirk Koopman [Fri, 11 Mar 2011 17:16:47 +0000 (17:16 +0000)]
oops forgot to use gcommit...

13 years agoadd CTY-2104 data
Dirk Koopman [Fri, 11 Mar 2011 08:47:13 +0000 (08:47 +0000)]
add CTY-2104 data

13 years agoadd CTY-2103 prefixes
Dirk Koopman [Tue, 1 Mar 2011 21:24:50 +0000 (21:24 +0000)]
add CTY-2103 prefixes

13 years agoincrease PC92 A/D slug time to 5 minutes
Dirk Koopman [Sun, 31 Oct 2010 16:26:30 +0000 (16:26 +0000)]
increase PC92 A/D slug time to 5 minutes

13 years agoallow debug to track cluster config
Dirk Koopman [Fri, 29 Oct 2010 16:02:41 +0000 (17:02 +0100)]
allow debug to track cluster config

This is for Jim AD1C really. But "set/debug cluster" will put out
lines like:

CLUSTER: node N0VD-7 added
CLUSTER: user AD6KH added
and
CLUSTER: user AD6KH deleted
CLUSTER: node N0VD-7 deleted

and represent this node's view of which nodes and users are
available on the cluster as a whole.

13 years agofix chat problem introdcued last update
Dirk Koopman [Wed, 27 Oct 2010 17:02:15 +0000 (18:02 +0100)]
fix chat problem introdcued last update

13 years agoadd CTY-2009 prefixes (from cty_wt.dat)
Dirk Koopman [Mon, 25 Oct 2010 18:52:41 +0000 (19:52 +0100)]
add CTY-2009 prefixes (from cty_wt.dat)

13 years agoadd CTY-2008 from cty_wt.dat, stop chat on pc12
Dirk Koopman [Mon, 25 Oct 2010 18:46:02 +0000 (19:46 +0100)]
add CTY-2008 from cty_wt.dat, stop chat on pc12

Try using cty_wt.dat instead of cty.dat as it is more complete.

Prevent PC93 chat being downgraded to PC12.

13 years agoDrop PC12 from pc9x nodes, increase ann dup age.
Dirk Koopman [Mon, 25 Oct 2010 09:42:08 +0000 (10:42 +0100)]
Drop PC12 from pc9x nodes, increase ann dup age.

Assume that PC12s coming from pc9x nodes are coming via some other
route and have been converted.

Increase the default announce dup age from 5 to 18 hrs.

13 years agofix dxqsl_export titling in help
Dirk Koopman [Sun, 24 Oct 2010 09:34:44 +0000 (10:34 +0100)]
fix dxqsl_export titling in help

13 years agoadded dbexport & dxqsl_import/export cmds
Dirk Koopman [Sat, 23 Oct 2010 22:39:19 +0000 (23:39 +0100)]
added dbexport & dxqsl_import/export cmds

13 years agoadd cty-2007
Dirk Koopman [Fri, 15 Oct 2010 19:42:58 +0000 (20:42 +0100)]
add cty-2007

13 years agoup issue version...
Dirk Koopman [Mon, 4 Oct 2010 23:38:41 +0000 (00:38 +0100)]
up issue version...

13 years agoadded CTY-2006
Dirk Koopman [Mon, 4 Oct 2010 20:45:47 +0000 (21:45 +0100)]
added CTY-2006

13 years agoallow 4 letter callsigns, add git id sh/version
Dirk Koopman [Thu, 17 Jun 2010 12:26:29 +0000 (13:26 +0100)]
allow 4 letter callsigns, add git id sh/version

13 years agoadd ip addresses to dxspots emitted as PC61
Dirk Koopman [Thu, 17 Jun 2010 10:45:21 +0000 (11:45 +0100)]
add ip addresses to dxspots emitted as PC61

13 years agoincrease PC41 dupe time, add CTY-2004 data
Dirk Koopman [Wed, 16 Jun 2010 16:14:58 +0000 (17:14 +0100)]
increase PC41 dupe time, add CTY-2004 data

13 years agoadd start of DB_File -> SQLite changes
Dirk Koopman [Fri, 14 May 2010 23:15:25 +0000 (00:15 +0100)]
add start of DB_File -> SQLite changes

14 years agofix console.pl for Windows better
Dirk Koopman [Thu, 8 Apr 2010 12:29:13 +0000 (13:29 +0100)]
fix console.pl for Windows better

so that it continues to work OK on Linux.

14 years agomake priv 0 stick on nodes if set
Dirk Koopman [Thu, 18 Mar 2010 20:22:19 +0000 (20:22 +0000)]
make priv 0 stick on nodes if set

14 years agoadd setting csort to to_connected
Dirk Koopman [Sat, 13 Mar 2010 20:42:00 +0000 (20:42 +0000)]
add setting csort to to_connected

14 years agoadd more fixes for peerhosts
Dirk Koopman [Sat, 13 Mar 2010 19:41:54 +0000 (19:41 +0000)]
add more fixes for peerhosts

14 years agotry to fix crashes on AGW with peerhost.
Dirk Koopman [Sat, 13 Mar 2010 15:55:04 +0000 (15:55 +0000)]
try to fix crashes on AGW with peerhost.

14 years agoadd CTY-2002 changes
Dirk Koopman [Wed, 3 Mar 2010 15:10:13 +0000 (15:10 +0000)]
add CTY-2002 changes

14 years agoMerge commit '64461bf14f8ce1a'
Dirk Koopman [Wed, 3 Mar 2010 14:50:44 +0000 (14:50 +0000)]
Merge commit '64461bf14f8ce1a'

merge in 500khz changes

Conflicts:

Changes
perl/Version.pm

14 years agoMerge branch 'ip_address'
Dirk Koopman [Wed, 3 Mar 2010 14:47:15 +0000 (14:47 +0000)]
Merge branch 'ip_address'

Add ip addresses to PC92 A records

Conflicts:

perl/Version.pm

14 years agoAdd clear/cmd_cache command to git
dirk [Fri, 26 Feb 2010 18:28:43 +0000 (18:28 +0000)]
Add clear/cmd_cache command to git

14 years agoadd 500khz band and CTY-1923 prefixes
Dirk Koopman [Fri, 27 Nov 2009 12:13:33 +0000 (12:13 +0000)]
add 500khz band and CTY-1923 prefixes

14 years agoadd logging of PC92A ip addresses ip_address
Dirk Koopman [Thu, 26 Nov 2009 12:58:28 +0000 (12:58 +0000)]
add logging of PC92A ip addresses

14 years agofix IP addresses on multiple entries in PC92 A
Dirk Koopman [Thu, 26 Nov 2009 11:22:16 +0000 (11:22 +0000)]
fix IP addresses on multiple entries in PC92 A

14 years agoadd IP Address to PC92 A record
Dirk Koopman [Thu, 26 Nov 2009 11:10:33 +0000 (11:10 +0000)]
add IP Address to PC92 A record

Start some extra auditing.

14 years agoiadd CTY-1922 changes
Dirk Koopman [Wed, 25 Nov 2009 17:21:34 +0000 (17:21 +0000)]
iadd CTY-1922 changes

14 years agoadd xml version of sh/qrz
Dirk Koopman [Wed, 25 Nov 2009 17:15:57 +0000 (17:15 +0000)]
add xml version of sh/qrz

you will need a subscription to the xml service. See:
http://www.qrz.com/XML/index.html for more info.

Disable the incomplete Encoding of textual data. Work out what to do after
more agreement with people.

14 years agoadd version
Dirk Koopman [Sat, 14 Nov 2009 11:47:02 +0000 (11:47 +0000)]
add version

14 years agoadd CTY-1921 prefixes
Dirk Koopman [Sat, 14 Nov 2009 11:46:13 +0000 (11:46 +0000)]
add CTY-1921 prefixes

14 years agofix ssid handling on (un)set/badnode.pl
Dirk Koopman [Sat, 14 Nov 2009 11:38:43 +0000 (11:38 +0000)]
fix ssid handling on (un)set/badnode.pl

14 years agolimit sh/newc et al to 10 levels
Dirk Koopman [Fri, 28 Aug 2009 14:23:27 +0000 (15:23 +0100)]
limit sh/newc et al to 10 levels

One can change this with a set/var $Route::maxlevel = 10

14 years agoadd CTY-1912 changes
Dirk Koopman [Wed, 8 Jul 2009 07:29:41 +0000 (08:29 +0100)]
add CTY-1912 changes

14 years agoadd CTY-1911 prefixes
Dirk Koopman [Fri, 26 Jun 2009 20:08:21 +0000 (21:08 +0100)]
add CTY-1911 prefixes

14 years agoAdd CTY-1910 cty .dat
Dirk Koopman [Mon, 15 Jun 2009 10:53:28 +0000 (11:53 +0100)]
Add CTY-1910 cty .dat