fix badword, ipv6 address detect, add CTY
[spider.git] / perl / DXHash.pm
index 36f882eba0c61180b5e4fb72acd80b280b2618e6..28dc77d3ba4656ac03f5773db147a9531ea647d1 100644 (file)
@@ -8,13 +8,13 @@
 # Things entered into the list are always upper
 # cased.
 # 
-# The files that are created live in /spider/data
+# The files that are created live in /spider/local_data (was data)
 # 
 # Dunno why I didn't do this earlier but heyho..
 #
 # Copyright (c) 2001 Dirk Koopman G1TLH
 #
-# $Id$
+#
 #
 
 package DXHash;
@@ -28,7 +28,10 @@ use strict;
 sub new
 {
        my ($pkg, $name) = @_;
-       my $s = readfilestr($main::data, $name);
+
+       # move existing file
+       localdata_mv($name);
+       my $s = readfilestr($main::local_data, localdata($name));
        my $self = undef;
        $self = eval $s if $s;
        dbg("error in reading $name in DXHash $@") if $@;
@@ -39,7 +42,7 @@ sub new
 sub put
 {
        my $self = shift;
-       writefilestr($main::data, $self->{name}, undef, $self);
+       writefilestr($main::local_data, $self->{name}, undef, $self);
 }
 
 sub add