]> git.donarmstrong.com Git - infobot.git/commitdiff
- move unuseable files to old/
authordms <dms@c11ca15a-4712-0410-83d8-924469b57eb5>
Thu, 28 Nov 2002 12:28:19 +0000 (12:28 +0000)
committerdms <dms@c11ca15a-4712-0410-83d8-924469b57eb5>
Thu, 28 Nov 2002 12:28:19 +0000 (12:28 +0000)
- Freshmeat is gone because fm ][ is lacking in info
- Freshmeat I is kept for historical value.
- dbm.pl is kept for historical value.

git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@716 c11ca15a-4712-0410-83d8-924469b57eb5

old/Freshmeat_I.pl [new file with mode: 0644]
old/Freshmeat_II.pl [new file with mode: 0644]
old/News.pl [new file with mode: 0644]
old/dbm.pl [new file with mode: 0644]
src/Modules/Freshmeat.pl [deleted file]

diff --git a/old/Freshmeat_I.pl b/old/Freshmeat_I.pl
new file mode 100644 (file)
index 0000000..2936b9c
--- /dev/null
@@ -0,0 +1,270 @@
+#
+# Freshmeat.pl: Frontend to www.freshmeat.net
+#       Author: dms
+#      Version: v0.7d (20000923)
+#      Created: 19990930
+#
+
+package Freshmeat;
+
+use strict;
+
+### download compressed version instead?
+
+my %urls = (
+       'public'  => 'http://www.freshmeat.net/backend/appindex.txt',
+       'private' => 'http://feed.freshmeat.net/appindex/appindex.txt',
+);
+
+####
+# Usage: &Freshmeat($string);
+sub Freshmeat {
+    my $sstr   = lc($_[0]);
+    my $refresh        = &::getChanConfDefault("freshmeatRefreshInterval",
+                       "", 24) * 60 * 60;
+
+    my $last_refresh = &::dbGet("freshmeat", "name","_","stable");
+    my $renewtable   = 0;
+
+    if (defined $last_refresh) {
+       $renewtable++ if (time() - $last_refresh > $refresh);
+    } else {
+       $renewtable++;
+    }
+    $renewtable++ if (&::countKeys("freshmeat") < 10);
+
+    if ($renewtable and $$ == $::bot_pid) {
+       &::Forker("freshmeat", sub {
+               &downloadIndex();
+               &Freshmeat($sstr);
+       } );
+       # both parent/fork runs here, in case the following looks weird.
+       return if ($$ == $::bot_pid);
+    }
+
+    if (!&showPackage($sstr)) {                # no exact match.
+       my $start_time = &::timeget();
+       my %hash;
+
+       # search by key/NAME first.
+       foreach (&::searchTable("freshmeat", "name","name",$sstr)) {
+           $hash{$_} = 1 unless exists $hash{$_};
+       }
+
+       # search by description line.
+       foreach (&::searchTable("freshmeat", "name","oneliner", $sstr)) {
+           $hash{$_} = 1 unless exists $hash{$_};
+           last if (scalar keys %hash > 15);
+       }
+
+       my @list = keys %hash;
+       # search by value, if we have enough room to do it.
+       if (scalar @list == 1) {
+           &::status("only one match found; showing full info.");
+           &showPackage($list[0]);
+           return;
+       }
+
+       # show how long it took.
+       my $delta_time = &::timedelta($start_time);
+       &::status(sprintf("freshmeat: %.02f sec to complete query.", $delta_time)) if ($delta_time > 0);
+
+       for (@list) {
+           tr/A-Z/a-z/;
+           s/([\,\;]+)/\037$1\037/g;
+       }
+
+       &::performStrictReply( &::formListReply(1, "Freshmeat ", @list) );
+    }
+}
+
+sub showPackage {
+    my ($pkg)  = @_;
+    my @fm     = &::dbGet("freshmeat", "name",$pkg,"*");
+
+    if (scalar @fm) {          #1: perfect match of name.
+       my $retval;
+       $retval  = "$fm[0] \002(\002$fm[11]\002)\002, ";
+       $retval .= "section $fm[3], ";
+       $retval .= "is $fm[4]. ";
+       $retval .= "Stable: \002$fm[1]\002, ";
+       $retval .= "Development: \002$fm[2]\002. ";
+       $retval .= $fm[5] || $fm[6];             # fallback to 'download'.
+       $retval .= " deb: ".$fm[8] if ($fm[8] ne ""); # 'deb'.
+       &::performStrictReply($retval);
+       return 1;
+    } else {
+       return 0;
+    }
+}
+
+sub randPackage {
+    my @fm     = &::randKey("freshmeat","*");
+
+    if (scalar @fm) {          #1: perfect match of name.
+       my $retval;
+       $retval  = "$fm[0] \002(\002$fm[11]\002)\002, ";
+       $retval .= "section $fm[3], ";
+       $retval .= "is $fm[4]. ";
+       $retval .= "Stable: \002$fm[1]\002, ";
+       $retval .= "Development: \002$fm[2]\002. ";
+       $retval .= $fm[5] || $fm[6];             # fallback to 'download'.
+       $retval .= " deb: ".$fm[8] if ($fm[8] ne ""); # 'deb'.
+
+       return $retval;
+    } else {
+       return;
+    }
+}
+
+sub downloadIndex {
+    my $start_time     = &::timeget(); # set the start time.
+    my $idx            = "$::param{tempDir}/fm_index.txt";
+
+    &::msg($::who, "Updating freshmeat index... please wait");
+
+    if (&::isStale($idx, 1)) {
+       &::status("Freshmeat: fetching data.");
+       foreach (keys %urls) {
+           my $retval = &::getURLAsFile($urls{$_}, $idx);
+           next if ($retval =~ /^(403|500)$/);
+
+           &::DEBUG("FM: last! retval => '$retval'.");
+           last;
+       }
+    } else {
+       &::status("Freshmeat: local file hack.");
+    }
+
+    if (! -e $idx) {
+       &::msg($::who, "the freshmeat butcher is closed.");
+       return;
+    }
+
+    if ( -s $idx < 100000) {
+       &::DEBUG("FM: index too small?");
+       unlink $idx;
+       &::msg($::who, "internal error?");
+       return;
+    }
+
+    if ($idx =~ /bz2$/) {
+       open(IN, "bzcat $idx |");
+    } elsif ($idx =~ /gz$/) {
+       open(IN, "gzcat $idx |");
+    } else {
+       open(IN, $idx);
+    }
+
+    # delete the table before we redo it.
+    &::deleteTable("freshmeat");
+
+    ### lets get on with business.
+    # set the last refresh time. fixes multiple spawn bug.
+    &::dbSet("freshmeat", "name","_","stable",time());
+
+    my $i = 0;
+    while (my $line = <IN>) {
+       chop $line;
+       $i++ if ($line eq "%%");
+       last if ($i == 2);
+    }
+
+    &::dbRaw("LOCK", "LOCK TABLES freshmeat WRITE");
+    my @data;
+    my @done;
+    while (my $line = <IN>) {
+       chop $line;
+       if ($line ne "%%") {
+           push(@data,$line);
+           next;
+       }
+
+       if ($i % 200 == 0 and $i != 0) {
+           &::DEBUG("FM: unlocking and locking.");
+           &::dbRaw("UNLOCK", "UNLOCK TABLES");
+           ### another lame hack to "prevent" errors.
+           select(undef, undef, undef, 0.2);
+           &::dbRaw("LOCK", "LOCK TABLES freshmeat WRITE");
+       }
+
+       if (grep /^\Q$data[0]\E$/, @done) {
+           &::DEBUG("dupe? $data[0]");
+           @data = ();
+           next;
+       }
+
+       $i++;
+       pop @data;
+       $data[1] ||= "none";
+       $data[2] ||= "none";
+       &::dbSetRow("freshmeat", @data);
+       push(@done,$data[0]);
+       @data = ();
+    }
+    close IN;
+    &::DEBUG("FM: data ".scalar(@data) );
+    &::dbRaw("UNLOCK", "UNLOCK TABLES");
+
+    my $delta_time = &::timedelta($start_time);
+    &::status(sprintf("Freshmeat: %.02f sec to complete.", $delta_time)) if ($delta_time > 0);
+
+    my $count = &::countKeys("freshmeat");
+    &::status("Freshmeat: $count entries loaded.");
+}
+
+sub freshmeatAnnounce {
+    my $file = "$::param{tempDir}/fm_recent.txt";
+    my @old;
+
+    ### if file exists, lets read it.
+    if ( -f $file) {
+       open(IN, $file);
+       while (<IN>) {
+           chop;
+           push(@old,$_);
+       }
+       close IN;
+    }
+
+    my @array = &::getURL("http://core.freshmeat.net/backend/recentnews.txt");
+    my @now;
+
+    while (@array) {
+       my($what,$date,$url) = splice(@array,0,3);
+       push(@now, $what);
+    }
+
+    ### if file does not exist, write new.
+    if (! -f $file) {
+       open(OUT, ">$file");
+       foreach (@now) {
+           print OUT "$_\n";
+       }
+       close OUT;
+
+       return;
+    }
+
+    my @new;
+    for(my $i=0; $i<scalar(@old); $i++) {
+       last if ($now[$i] eq $old[0]);
+       push(@new, $now[$i]);
+    }
+
+    if (!scalar @new) {
+       &::DEBUG("fA: no new items.");
+       return;
+    }
+
+    ### output new file.
+    open(OUT, ">$file");
+    foreach (@now) {
+       print OUT "$_\n";
+    }
+    close OUT;
+
+    return "Freshmeat update: ".join(" \002::\002 ", @new);
+}
+
+1;
diff --git a/old/Freshmeat_II.pl b/old/Freshmeat_II.pl
new file mode 100644 (file)
index 0000000..f543c54
--- /dev/null
@@ -0,0 +1,359 @@
+#
+# Freshmeat.pl: Frontend to www.freshmeat.net
+#       Author: dms
+#      Version: v0.7d (20000923)
+#      Created: 19990930
+#
+
+package Freshmeat;
+
+use strict;
+use vars qw(@cols @data $string %pkg $i $locktime);
+
+my %urls = (
+       'public'  => 'http://www.freshmeat.net/backend/fm-projects.rdf.bz2',
+#      'private' => 'http://feed.freshmeat.net/appindex/appindex.txt',
+);
+
+####
+# Usage: &Freshmeat($string);
+sub Freshmeat {
+    my $sstr   = lc($_[0]);
+    my $refresh        = &::getChanConfDefault("freshmeatRefreshInterval",
+                       "", 24) * 60 * 60 * 7;
+
+    my $last_refresh = &::dbGet("freshmeat", "latest_version", "projectname_short=".&::dbQuote('_'));
+    my $renewtable   = 0;
+
+    if (defined $last_refresh and $last_refresh =~ /^\d+$/) {
+       $renewtable++ if (time() - $last_refresh > $refresh);
+    } else {
+       $renewtable++;
+    }
+    $renewtable++ if (&::countKeys("freshmeat") < 1000);
+
+    if ($renewtable) {
+       if ($$ == $::bot_pid) {
+           &::Forker("freshmeat", sub {
+               &Freshmeat($sstr) if &downloadIndex();
+           } );
+           # both parent/fork runs here, in case the following looks weird.
+       } else {
+           &downloadIndex();
+       }
+
+       return if ($$ == $::bot_pid);
+    }
+
+    if (!&showPackage($sstr)) {                # no exact match.
+       my $start_time = &::timeget();
+       my %hash;
+
+       # search by key/NAME first.
+       foreach (&::searchTable("freshmeat", "projectname_short", "projectname_short",$sstr)) {
+           $hash{$_} = 1 unless exists $hash{$_};
+       }
+
+       # search by description line.
+       foreach (&::searchTable("freshmeat", "projectname_short", "desc_short", $sstr)) {
+           $hash{$_} = 1 unless exists $hash{$_};
+           last if (scalar keys %hash > 15);
+       }
+
+       my @list = keys %hash;
+       # search by value, if we have enough room to do it.
+       if (scalar @list == 1) {
+           &::status("only one match found; showing full info.");
+           &showPackage($list[0]);
+           return;
+       }
+
+       # show how long it took.
+       my $delta_time = &::timedelta($start_time);
+       &::status(sprintf("freshmeat: %.02f sec to complete query.", $delta_time)) if ($delta_time > 0);
+
+       for (@list) {
+           tr/A-Z/a-z/;
+           s/([\,\;]+)/\037$1\037/g;
+       }
+
+       &::performStrictReply( &::formListReply(1, "Freshmeat ", @list) );
+    }
+}
+
+sub packageText {
+    my ($pkg)  = @_;
+    my %fm     = &::dbGetColNiceHash("freshmeat", "*", "projectname_short=".&::dbQuote($pkg));
+
+    if (scalar keys %fm) {             #1: perfect match of name.
+       my $retval;
+       $retval  = "$fm{'projectname_short'} \002(\002$fm{'desc_short'}\002)\002, ";
+       $retval .= "is $fm{'license'}. ";
+       $retval .= "Version: \002$fm{'latest_version'}\002, $fm{'url_homepage'}";
+       return $retval;
+    } else {
+       return;
+    }
+}
+
+sub showPackage {
+    my ($pkg) = @_;
+    my ($retval);
+    if ($retval = packageText($pkg)) {
+       &::performStrictReply($retval);
+       return 1;
+    } else {
+       return 0;
+    }
+}
+
+sub randPackage {
+    my @fm = &::randKey("freshmeat","*");
+    return &packageText($fm[0]);
+}
+
+sub downloadIndex {
+    my $start_time     = &::timeget(); # set the start time.
+    my $idx            = "$::param{tempDir}/fm-projects.rdf.bz2";
+
+    if (!&::loadPerlModule("XML::Parser")) {
+       &::WARN("don't have xml::parser...");
+       return 0;
+    }
+    my $p = new XML::Parser(Style => 'Objects');
+    my %pkg;
+    my $string;
+
+    $p->setHandlers(
+               Char    => \&xml_text,
+               End     => \&xml_end,
+    );
+
+    &::msg($::who, "Updating freshmeat index... please wait");
+
+    if (&::isStale($idx, 1)) {
+       &::status("Freshmeat: fetching data.");
+
+       foreach (keys %urls) {
+           $urls{$_}   =~ /^.*\/(.*)$/;
+           $idx        = "$::param{tempDir}/$1";
+           my $retval  = &::getURLAsFile($urls{$_}, $idx);
+           next if ($retval =~ /^(403|500)$/);
+
+           &::DEBUG("FM: last! retval => '$retval'.");
+           last;
+       }
+    } else {
+       &::status("Freshmeat: local file hack.");
+    }
+
+    if (! -e $idx) {
+       &::msg($::who, "the freshmeat butcher is closed.");
+       return 0;
+    }
+
+    if ( -s $idx < 100000) {
+       &::DEBUG("FM: index too small?");
+       unlink $idx;
+       &::msg($::who, "internal error?");
+       return 0;
+    }
+
+    if ($idx =~ /bz2$/) {
+       open(IN, "bzcat $idx |");
+    } elsif ($idx =~ /gz$/) {
+       open(IN, "gzcat $idx |");
+    } else {
+       open(IN, $idx);
+    }
+
+    # delete the table before we redo it.
+    &::deleteTable("freshmeat");
+
+    ### lets get on with business.
+    # set the last refresh time. fixes multiple spawn bug.
+    &::dbSet("freshmeat", 
+       { "projectname_short"   => "_" },
+       { "latest_version"      => time(),
+         "desc_short"          => "dummy project to track date" }
+    );
+
+#    &::dbRaw("LOCK", "LOCK TABLES freshmeat WRITE");
+    @cols      = &::dbGetColInfo("freshmeat");
+
+    $locktime  = time();
+
+    # this mess is to not dump IN to memory.
+    $_ = <IN>;
+    $_ = <IN>;
+    $_ = <IN>;
+
+    my $str;
+    while (<IN>) {
+       chop;
+
+       $str .= $_;
+
+       next unless (/<\/project>/);
+
+       # XML::Parser's parse() doesn't like the following.
+       # but parsefile() does... why!
+       for ($str) {
+               s/&reg;/_/g;
+               s/&ocirc;//g;
+               s/&quot;//g;
+               s/&eacute;/e/g;
+               s/&agrave;/a/g;
+               s/&iacute;/i/g;
+               s/&shy;/_/g;    # ???
+               s/&acute;/a/g;
+               s/&raquo;/_/g;  # ???
+               s/&laquo;/_/g;  # ???
+               s/&copy;/[C]/g;
+               s/&deg;/deg/g;
+               s/&AElig;/A/g;
+               s/\cN//g;               # fucking openbsd morons.
+               s/&nbsp;/-/g;
+               s/&ouml;/o/g;
+               s/&para;//g;    # ???
+               s/&atilde;//g;
+               s/\cM/ /g;              # stupid windows morons
+               s/&sup2;/square/g;
+               s/&uuml;/?/g;
+               s/&micro;/u/g;
+               s/&aelig;/a/g;
+               s/&oslash;/o/g;
+               s/&eth;/e/g;
+               s/&szlig;//g;
+               s/&middot;//g;
+       }
+
+       if (0 and $str =~ s/\&(\S+?);//g) {
+           &::DEBUG("fm: sarred $1 to ''.");
+       }
+
+       $p->parse($str, ProtocolEncoding => 'ISO-8859-1');
+       $str = "";
+    }
+    close IN;
+
+#    &::dbRaw("UNLOCK", "UNLOCK TABLES");
+
+    my $delta_time = &::timedelta($start_time);
+    &::status(sprintf("Freshmeat: %.02f sec to complete.", $delta_time)) if ($delta_time > 0);
+
+    my $count = &::countKeys("freshmeat");
+    &::status("Freshmeat: $count entries loaded.");
+    return 1;
+}
+
+sub freshmeatAnnounce {
+    my $file = "$::param{tempDir}/fm_recent.txt";
+    my @old;
+
+    ### if file exists, lets read it.
+    if ( -f $file) {
+       open(IN, $file);
+       while (<IN>) {
+           chop;
+           push(@old,$_);
+       }
+       close IN;
+    }
+
+    my @array = &::getURL("http://core.freshmeat.net/backend/recentnews.txt");
+    my @now;
+
+    while (@array) {
+       my($what,$date,$url) = splice(@array,0,3);
+       push(@now, $what);
+    }
+
+    ### if file does not exist, write new.
+    if (! -f $file) {
+       open(OUT, ">$file");
+       foreach (@now) {
+           print OUT "$_\n";
+       }
+       close OUT;
+
+       return;
+    }
+
+    my @new;
+    for(my $i=0; $i<scalar(@old); $i++) {
+       last if ($now[$i] eq $old[0]);
+       push(@new, $now[$i]);
+    }
+
+    if (!scalar @new) {
+       &::DEBUG("fA: no new items.");
+       return;
+    }
+
+    ### output new file.
+    open(OUT, ">$file");
+    foreach (@now) {
+       print OUT "$_\n";
+    }
+    close OUT;
+
+    return "Freshmeat update: ".join(" \002::\002 ", @new);
+}
+
+
+sub xml_text {
+    my ($e,$t) = @_;
+    return if ($t =~ /^\s*$/);
+
+    $string = $t;
+}
+
+sub xml_end {
+    my($expat,$text) = @_;
+
+    $pkg{$text} = $string;
+
+    if ($expat->depth == 0) {
+
+       # old code.
+       if (0) {
+       for (my $j=0; $j<scalar @cols; $j++) {
+           $data[$j] = $pkg{ $cols[$j] };
+       }
+       $i++;
+
+       &::dbSetRow("freshmeat", [@data], "DELAY");
+       undef @data;
+       }
+
+       # new code.
+       $i++;
+       my %data;
+       foreach(@cols) {
+           $data{$_} = $pkg{$_} if ($pkg{$_});
+       }
+       &::dbReplace("freshmeat", "projectname_short", %data);
+       undef %data;
+       # end of new code.
+
+       undef %pkg;
+
+       if ($i % 200 == 0 and $i != 0) {
+           &::showProc();
+           &::status("FM: unlocking and locking ($i): ". 
+               &::Time2String( time() - $locktime ) );
+           $locktime = time();
+
+           # I think the following leaks 120k of memory each time it's
+           # called... the wonders of libmysql-perl leaking!
+
+#          &::dbRaw("UNLOCK", "UNLOCK TABLES");
+           ### another lame hack to "prevent" errors.
+#          select(undef, undef, undef, 0.2);
+#          &::dbRaw("LOCK", "LOCK TABLES freshmeat WRITE");
+       }
+    }
+}
+
+1;
diff --git a/old/News.pl b/old/News.pl
new file mode 100644 (file)
index 0000000..1c1629d
--- /dev/null
@@ -0,0 +1,1031 @@
+#
+# News.pl: Advanced news management
+#   Author: dms
+#  Version: v0.3 (20010412)
+#  Created: 20010326
+#    Notes: Testing done by greycat, kudos!
+#
+### structure:
+# news{ channel }{ string } { item }
+# newsuser{ channel }{ user } = time()
+### where item is:
+#      Time    - when it was added (used for sorting)
+#      Author  - Who by.
+#      Expire  - Time to expire.
+#      Text    - Actual text.
+###
+
+package News;
+
+use strict;
+
+use vars qw($who $chan);
+
+sub Parse {
+    my($what)  = @_;
+    $chan      = undef;
+    $who       = lc $::who;
+
+    if (!keys %::news) {
+       if (!exists $::cache{newsFirst}) {
+           &::DEBUG("news: looks like we enabled news option just then; loading up news file just in case.");
+           $::cache{newsFirst} = 1;
+       }
+
+       &readNews();
+    }
+
+    if ($::msgType ne "private") {
+       $chan = $::chan;
+    }
+
+    if (defined $what and $what =~ s/^($::mask{chan})\s*//) {
+       # todo: check if the channel exists aswell.
+       $chan   = lc $1;
+
+       if (!&::IsNickInChan($who, $chan)) {
+           &::notice($who, "sorry but you're not on $chan.");
+           return;
+       }
+    }
+
+    if (!defined $chan) {
+       my @chans = &::getNickInChans($who);
+
+       if (scalar @chans > 1) {
+           &::notice($who, "error: I dunno which channel you are referring to since you're on more than one. Try 'news #chan ...' instead");
+           return;
+       }
+
+       if (scalar @chans == 0) {
+           &::notice($who, "error: I couldn't find you on any chan. This must be a bug!");
+           return;
+       }
+
+       $chan   = $chans[0];
+       &::VERB("Guessed $who being on chan $chan",2);
+       $::chan = $chan;        # hack for IsChanConf().
+    }
+
+    if (!defined $what or $what =~ /^\s*$/) {
+       &list();
+       return;
+    }
+
+    if ($what =~ /^add(\s+(.*))?$/i) {
+       &add($2);
+
+    } elsif ($what =~ /^del(\s+(.*))?$/i) {
+       &del($2);
+
+    } elsif ($what =~ /^mod(\s+(.*))?$/i) {
+       &mod($2);
+
+    } elsif ($what =~ /^set(\s+(.*))?$/i) {
+       &set($2);
+
+    } elsif ($what =~ /^(\d+)$/i) {
+       &::VERB("News: read shortcut called.",2);
+       &read($1);
+
+    } elsif ($what =~ /^read(\s+(.*))?$/i) {
+       &read($2);
+
+    } elsif ($what =~ /^(latest|new)(\s+(.*))?$/i) {
+       &latest($3 || $chan, 1);
+#      $::cmdstats{'News latest'}++;
+
+    } elsif ($what =~ /^stats?$/i) {
+       &stats();
+
+    } elsif ($what =~ /^list$/i) {
+       &list();
+
+    } elsif ($what =~ /^(expire|text|desc)(\s+(.*))?$/i) {
+       # shortcut/link.
+       # nice hack.
+       my $cmd = $1;
+       my($arg1,$arg2) = split(/\s+/, $3, 2);
+       &set("$arg1 $cmd $arg2");
+
+    } elsif ($what =~ /^help(\s+(.*))?$/i) {
+       &::help("news $2");
+
+    } elsif ($what =~ /^newsflush$/i) {
+       &::msg($who, "newsflush called... check out the logs!");
+       &::newsFlush();
+
+    } elsif ($what =~ /^(un)?notify$/i) {
+       my $state = ($1) ? 0 : 1;
+
+       # todo: don't notify even if "news" is called.
+       if (!&::IsChanConf("newsNotifyAll")) {
+           &::DEBUG("news: chan => $chan, ::chan => $::chan.");
+           &::notice($who, "not available for this channel or disabled altogether.");
+           return;
+       }
+
+       my $t = $::newsuser{$chan}{$who};
+       if ($state) {   # state = 1
+           if (defined $t and ($t == 0 or $t == -1)) {
+               &::notice($who, "enabled notify.");
+               delete $::newsuser{$chan}{$who};
+               return;
+           }
+           &::notice($who, "already enabled.");
+
+       } else {                # state = 0
+           my $x = $::newsuser{$chan}{$who};
+           if (defined $x and ($x == 0 or $x == -1)) {
+               &::notice($who, "notify already disabled");
+               return;
+           }
+           $::newsuser{$chan}{$who} = -1;
+           &::notice($who, "notify is now disabled.");
+       }
+
+    } else {
+       &::notice($who, "unknown command: $what");
+    }
+}
+
+sub readNews {
+    my $file = "$::bot_base_dir/blootbot-news.txt";
+    if (! -f $file or -z $file) {
+       return;
+    }
+
+    if (fileno NEWS) {
+       &::DEBUG("readNews: fileno exists, should never happen.");
+       return;
+    }
+
+    my($item,$chan);
+    my($ci,$cu) = (0,0);
+
+    open(NEWS, $file);
+    while (<NEWS>) {
+       chop;
+
+       # todo: allow commands.
+
+       if (/^[\s\t]+(\S+):[\s\t]+(.*)$/) {
+           if (!defined $item) {
+               &::DEBUG("news: !defined item, never happen!");
+               next;
+           }
+
+           $::news{$chan}{$item}{$1} = $2;
+           next;
+       }
+
+       # U <chan> <nick> <time>
+       if (/^U\s+(\S+)\s+(\S+)\s+(\d+)$/) {
+           $::newsuser{$1}{$2} = $3;
+           $cu++;
+           next;
+       }
+
+       if (/^(\S+)[\s\t]+(.*)$/) {
+           $chan = $1;
+           $item = $2;
+           $ci++;
+       }
+    }
+    close NEWS;
+
+    my $cn = scalar(keys %::news);
+    return unless ($ci or $cn or $cu);
+
+    &::status("News: read ".
+       $ci. &::fixPlural(" item", $ci). " for ".
+       $cn. &::fixPlural(" chan", $cn). ", ".
+       $cu. &::fixPlural(" user", $cu), " cache"
+    );
+}
+
+sub writeNews {
+    if (!scalar keys %::news and !scalar keys %::newsuser) {
+       &::VERB("wN: nothing to write.",2);
+       return;
+    }
+
+    # should define this at the top of file.
+    my $file = "$::bot_base_dir/blootbot-news.txt";
+
+    if (fileno NEWS) {
+       &::ERROR("News: write: fileno NEWS exists, should never happen.");
+       return;
+    }
+
+    # todo: add commands to output file.
+    my $c = 0;
+    my($cc,$ci,$cu) = (0,0,0);
+
+    open(NEWS, ">$file");
+    foreach $chan (sort keys %::news) {
+       $c = scalar keys %{ $::news{$chan} };
+       next unless ($c);
+       $cc++;
+       my $item;
+
+       foreach $item (sort keys %{ $::news{$chan} }) {
+           $c = scalar keys %{ $::news{$chan}{$item} };
+           next unless ($c);
+           $ci++;
+
+           print NEWS "$chan $item\n";
+           my $what;
+           foreach $what (sort keys %{ $::news{$chan}{$item} }) {
+               print NEWS "    $what: $::news{$chan}{$item}{$what}\n";
+           }
+           print NEWS "\n";
+       }
+    }
+
+    # todo: show how many users we wrote down.
+    if (&::getChanConfList("newsKeepRead")) {
+       # old users are removed in newsFlush(), perhaps it should be
+       # done here.
+
+       foreach $chan (sort keys %::newsuser) {
+
+           foreach (sort keys %{ $::newsuser{$chan} }) {
+               print NEWS "U $chan $_ $::newsuser{$chan}{$_}\n";
+               $cu++;
+           }
+       }
+    }
+
+    close NEWS;
+
+    &::status("News: Wrote $ci items for $cc chans, $cu user cache.");
+}
+
+sub add {
+    my($str) = @_;
+
+    if (!defined $chan or !defined $str or $str =~ /^\s*$/) {
+       &::help("news add");
+       return;
+    }
+
+    if (length $str > 64) {
+       &::notice($who, "That's not really an item (>64chars)");
+       return;
+    }
+
+    if (exists $::news{$chan}{$str}{Time}) {
+       &::notice($who, "'$str' for $chan already exists!");
+       return;
+    }
+
+    $::news{$chan}{$str}{Time} = time();
+    my $expire = &::getChanConfDefault("newsDefaultExpire",7);
+    $::news{$chan}{$str}{Expire}       = time() + $expire*60*60*24;
+    $::news{$chan}{$str}{Author}       = $::who;       # case!
+
+    my $agestr = &::Time2String($::news{$chan}{$str}{Expire} - time() );
+    my $item   = &newsS2N($str);
+    &::notice($who, "Added '\037$str\037' at [".localtime(time).
+               "] by \002$::who\002 for item #\002$item\002.");
+    &::notice($who, "Now do 'news text $item <your_description>'");
+    &::notice($who, "This item will expire at \002".
+       localtime($::news{$chan}{$str}{Expire})."\002 [$agestr from now] "
+    );
+
+    &writeNews();
+}
+
+sub del {
+    my($what)  = @_;
+    my $item   = 0;
+
+    if (!defined $what) {
+       &::help("news del");
+       return;
+    }
+
+    if ($what =~ /^\d+$/) {
+       my $count = scalar keys %{ $::news{$chan} };
+       if (!$count) {
+           &::notice($who, "No news for $chan.");
+           return;
+       }
+
+       if ($what > $count or $what < 0) {
+           &::notice($who, "$what is out of range (max $count)");
+           return;
+       }
+
+       $item   = &getNewsItem($what);
+       $what   = $item;                # hack hack hack.
+
+    } else {
+       $_      = &getNewsItem($what);  # hack hack hack.
+       $what   = $_ if (defined $_);
+
+       if (!exists $::news{$chan}{$what}) {
+           my @found;
+           foreach (keys %{ $::news{$chan} }) {
+               next unless (/\Q$what\E/);
+               push(@found, $_);
+           }
+
+           if (!scalar @found) {
+               &::notice($who, "could not find $what.");
+               return;
+           }
+
+           if (scalar @found > 1) {
+               &::notice($who, "too many matches for $what.");
+               return;
+           }
+
+           $what       = $found[0];
+           &::DEBUG("news: del: str: guessed what => $what");
+       }
+    }
+
+    if (exists $::news{$chan}{$what}) {
+       my $auth = 0;
+       $auth++ if ($::who eq $::news{$chan}{$what}{Author});
+       $auth++ if (&::IsFlag("o"));
+
+       if (!$auth) {
+           # todo: show when it'll expire.
+           &::notice($who, "Sorry, you cannot remove items; just let them expire on their own.");
+           return;
+       }
+
+       &::notice($who, "ok, deleted '$what' from \002$chan\002...");
+       delete $::news{$chan}{$what};
+    } else {
+       &::notice($who, "error: not found $what in news for $chan.");
+    }
+}
+
+sub list {
+    if (!scalar keys %{ $::news{$chan} }) {
+       &::notice($who, "No News for \002$chan\002.");
+       return;
+    }
+
+    if (&::IsChanConf("newsKeepRead")) {
+       my $x = $::newsuser{$chan}{$who};
+
+       if (defined $x and ($x == 0 or $x == -1)) {
+           &::DEBUG("news: not updating time for $who.");
+       } else {
+           if (!scalar keys %{ $::news{$chan} }) {
+               &::DEBUG("news: should not add $chan/$who to cache!");
+           }
+
+           $::newsuser{$chan}{$who} = time();
+       }
+    }
+
+    # &notice() breaks OPN :( - using msg() instead!
+    my $count = scalar keys %{ $::news{$chan} };
+    &::msg($who, "|==== News for \002$chan\002: ($count items)");
+    my $newest = 0;
+    my $expire = 0;
+    my $eno    = 0;
+    foreach (keys %{ $::news{$chan} }) {
+       my $t   = $::news{$chan}{$_}{Time};
+       my $e   = $::news{$chan}{$_}{Expire};
+       $newest = $t if ($t > $newest);
+       if ($e > 1 and $e < $expire) {
+           $expire     = $e;
+           &::DEBUG("before newsS2N($_)");
+           $eno        = &newsS2N($_);
+           &::DEBUG("after newsS2N($_) == $eno");
+       }
+    }
+    my $timestr = &::Time2String(time() - $newest);
+    &::msg($who, "|= Last updated $timestr ago.");
+    &::msg($who, " \037Num\037  \037Item ".(" "x40)." \037");
+
+#    &::DEBUG("news: list: expire = $expire");
+#    &::DEBUG("news: list: eno    = $eno");
+
+    my $i = 1;
+    foreach ( &getNewsAll() ) {
+       my $subtopic    = $_;
+       my $setby       = $::news{$chan}{$subtopic}{Author};
+       my $chr         = (exists $::News{$chan}{$subtopic}{Text}) ? "" : "*";
+
+       if (!defined $subtopic) {
+           &::DEBUG("news: warn: subtopic == undef.");
+           next;
+       }
+
+       # todo: show request stats aswell.
+       &::msg($who, sprintf("\002[\002%2d\002]\002%s %s",
+                               $i, $chr, $subtopic));
+       $i++;
+    }
+
+    my $z = $::newsuser{$who};
+    if (defined $z) {
+       &::DEBUG("cache $who: $z");
+    } else {
+       &::DEBUG("cache: $who doesn't have newscache set.");
+    }
+
+    &::msg($who, "|= End of News.");
+    &::msg($who, "use 'news read <#>' or 'news read <keyword>'");
+}
+
+sub read {
+    my($str) = @_;
+
+    if (!defined $chan or !defined $str or $str =~ /^\s*$/) {
+       &::help("news read");
+       return;
+    }
+
+    if (!scalar keys %{ $::news{$chan} }) {
+       &::notice($who, "No News for \002$chan\002.");
+       return;
+    }
+
+    my $item   = &getNewsItem($str);
+    if (!defined $item or !scalar keys %{ $::news{$chan}{$item} }) {
+       # todo: numerical check.
+       if ($str =~ /^(\d+)[-, ](\d+)$/ or
+           $str =~ /^-(\d+)$/ or
+           $str =~ /^(\d+)-$/ or 0
+       ) {
+           &::notice($who, "We don't support multiple requests of news items yet.  Sorry.");
+           return;
+       }
+
+       &::notice($who, "No news item called '$str'");
+       return;
+    }
+
+    if (!exists $::news{$chan}{$item}{Text}) {
+       &::notice($who, "Someone forgot to add info to this news item");
+       return;
+    }
+
+    my $t      = localtime( $::news{$chan}{$item}{Time} );
+    my $a      = $::news{$chan}{$item}{Author};
+    my $text   = $::news{$chan}{$item}{Text};
+    my $num    = &newsS2N($item);
+    my $rwho   = $::news{$chan}{$item}{Request_By} || $::who;
+    my $rcount = $::news{$chan}{$item}{Request_Count} || 0;
+
+    if (length $text < $::param{maxKeySize}) {
+       &::VERB("NEWS: Possible news->factoid redirection.",2);
+       my $f   = &::getFactoid($text);
+
+       if (defined $f) {
+           &::VERB("NEWS: ok, $text is factoid redirection.",2);
+           $f =~ s/^<REPLY>\s*//i;     # anything else?
+           $text = $f;
+       }
+    }
+
+    $_ = $::news{$chan}{$item}{'Expire'};
+    my $e;
+    if ($_) {
+       $e = sprintf("\037%s\037  [%s from now]",
+               scalar(localtime($_)),
+               &::Time2String($_ - time())
+       );
+    }
+
+    &::notice($who, "+- News \002$chan\002 #$num: $item");
+    &::notice($who, "| Added by $a at \037$t\037");
+    &::notice($who, "| Expire: $e") if (defined $e);
+    &::notice($who, $text);
+    &::notice($who, "| Requested \002$rcount\002 times, last by \002$rwho\002") if ($rcount and $rwho);
+
+    $::news{$chan}{$item}{'Request_By'}   = $::who;
+    $::news{$chan}{$item}{'Request_Time'} = time();
+    $::news{$chan}{$item}{'Request_Count'}++;
+}
+
+sub mod {
+    my($item, $str) = split /\s+/, $_[0], 2;
+
+    if (!defined $item or $item eq "" or $str =~ /^\s*$/) {
+       &::help("news mod");
+       return;
+    }
+
+    my $news = &getNewsItem($item);
+
+    if (!defined $news) {
+       &::DEBUG("news: error: mod: news == undefined.");
+       return;
+    }
+    my $nnews = $::news{$chan}{$news}{Text};
+    my $mod_news  = $news;
+    my $mod_nnews = $nnews;
+
+    # SAR patch. mu++
+    if ($str =~ m|^\s*s([/,#\|])(.+?)\1(.*?)\1([a-z]*);?\s*$|) {
+       my ($delim, $op, $np, $flags) = ($1,$2,$3,$4);
+
+       if ($flags !~ /^(g)?$/) {
+           &::notice($who, "error: Invalid flags to regex.");
+           return;
+       }
+
+       ### TODO: use m### to make code safe!
+       # todo: make code safer.
+       my $done = 0;
+       # todo: use eval to deal with flags easily.
+       if ($flags eq "") {
+           $done++ if (!$done and $mod_news  =~ s/\Q$op\E/$np/);
+           $done++ if (!$done and $mod_nnews =~ s/\Q$op\E/$np/);
+        } elsif ($flags eq "g") {
+           $done++ if ($mod_news  =~ s/\Q$op\E/$np/g);
+           $done++ if ($mod_nnews =~ s/\Q$op\E/$np/g);
+       }
+
+       if (!$done) {
+           &::notice($who, "warning: regex not found in news.");
+           return;
+       }
+
+       if ($mod_news ne $news) { # news item.
+           if (exists $::news{$chan}{$mod_news}) {
+               &::notice($who, "item '$mod_news' already exists.");
+               return;
+           }
+
+           &::notice($who, "Moving item '$news' to '$mod_news' with SAR s/$op/$np/.");
+           foreach (keys %{ $::news{$chan}{$news} }) {
+               $::news{$chan}{$mod_news}{$_} = $::news{$chan}{$news}{$_};
+               delete $::news{$chan}{$news}{$_};
+           }
+           # needed?
+           delete $::news{$chan}{$news};
+       }
+
+       if ($mod_nnews ne $nnews) { # news Text/Description.
+           &::notice($who, "Changing text for '$news' SAR s/$op/$np/.");
+           if ($mod_news ne $news) {
+               $::news{$chan}{$mod_news}{Text} = $mod_nnews;
+           } else {
+               $::news{$chan}{$news}{Text}     = $mod_nnews;
+           }
+       }
+
+       return;
+    } else {
+       &::notice($who, "error: that regex failed ;(");
+       return;
+    }
+
+    &::notice($who, "error: Invalid regex. Try s/1/2/, s#3#4#...");
+}
+
+sub set {
+    my($args) = @_;
+    my($item, $what, $value);
+
+    if (!defined $args) {
+       &::DEBUG("news: set: args == NULL.");
+       return;
+    }
+
+    $item = $1 if ($args =~ s/^(\S+)\s*//);
+    $what = $1 if ($args =~ s/^(\S+)\s*//);
+    $value = $args;
+
+    if ($item eq "") {
+       &::help("news set");
+       return;
+    }
+
+    my $news = &getNewsItem($item);
+
+    if (!defined $news) {
+       &::notice($who, "Could not find item '$item' substring or # in news list.");
+       return;
+    }
+
+    # list all values for chan.
+    if (!defined $what or $what =~ /^\s*$/) {
+       &::msg($who, "set: you didn't fill me on the arguments! (what and values)");
+       return;
+    }
+
+    my $ok = 0;
+    my @elements = ("Expire","Text");
+    foreach (@elements) {
+       next unless ($what =~ /^$_$/i);
+       $what = $_;
+       $ok++;
+       last;
+    }
+
+    if (!$ok) {
+       &::notice($who, "Invalid set.  Try: @elements");
+       return;
+    }
+
+    # show (read) what.
+    if (!defined $value or $value =~ /^\s*$/) {
+       &::msg($who, "set: you didn't fill me on the arguments! (value)");
+       return;
+    }
+
+    if (!exists $::news{$chan}{$news}) {
+       &::notice($who, "news '$news' does not exist");
+       return;
+    }
+
+    if ($what eq "Expire") {
+       # todo: use do_set().
+
+       my $time = 0;
+       my $plus = ($value =~ s/^\+//g);
+       while ($value =~ s/^(\d+)(\S*)\s*//) {
+           my($int,$unit) = ($1,$2);
+           $time += $int       if ($unit =~ /^s(ecs?)?$/i);
+           $time += $int*60    if ($unit =~ /^m(in(utes?)?)?$/i);
+           $time += $int*60*60 if ($unit =~ /^h(ours?)?$/i);
+           $time += $int*60*60*24 if (!$unit or $unit =~ /^d(ays?)?$/i);
+           $time += $int*60*60*24*7 if ($unit =~ /^w(eeks?)?$/i);
+           $time += $int*60*60*24*30 if ($unit =~ /^mon(th)?$/i);
+       }
+
+       if ($value =~ s/^never$//i) {
+           # never.
+           $time = -1;
+       } elsif ($plus) {
+           # from now.
+           $time += time();
+       } else {
+           # from creation of item.
+           $time += $::news{$chan}{$news}{Time};
+       }
+
+       if (!$time or ($value and $value !~ /^never$/i)) {
+           &::DEBUG("news: set: Expire... need to parse.");
+           &::msg($who, "hrm... couldn't parse that.");
+           return;
+       }
+
+       if ($time == -1) {
+           &::notice($who, "Set never expire for \002$item\002." );
+       } elsif ($time < -1) {
+           &::DEBUG("news: time should never be negative ($time).");
+           return;
+       } else {
+           &::notice($who, "Set expire for \002$item\002, to ".
+               localtime($time) ." [".&::Time2String($time - time())."]" );
+
+           if (time() > $time) {
+               &::DEBUG("news: hrm... time() > $time, should expire.");
+           }
+       }
+
+
+       $::news{$chan}{$news}{Expire} = $time;
+
+       return;
+    }
+
+    my $auth = 0;
+#    &::DEBUG("news: who => '$who'");
+    my $author = $::news{$chan}{$news}{Author};
+    $auth++ if ($::who eq $author);
+    $auth++ if (&::IsFlag("o"));
+    if (!defined $author) {
+       &::DEBUG("news: news{$chan}{$news}{Author} is not defined! auth'd anyway");
+       $::news{$chan}{$news}{Author} = $::who;
+       $author = $::who;
+       $auth++;
+    }
+
+    if (!$auth) {
+       # todo: show when it'll expire.
+       &::notice($who, "Sorry, you cannot set items. (author $author owns it)");
+       return;
+    }
+
+    # todo: clean this up.
+    my $old = $::news{$chan}{$news}{$what};
+    if (defined $old) {
+       &::DEBUG("news: old => $old.");
+    }
+    $::news{$chan}{$news}{$what} = $value;
+    &::notice($who, "Setting [$chan]/{$news}/<$what> to '$value'.");
+}
+
+sub latest {
+    my($tchan, $flag) = @_;
+
+    # hack hack hack.
+    $chan ||= $tchan;
+    $who    = $::who;
+
+    # todo: if chan = undefined, guess.
+#    if (!exists $::news{$chan}) {
+    if (!exists $::channels{$chan}) {
+       &::notice($who, "invalid chan $chan") if ($flag);
+       return;
+    }
+
+    my $t = $::newsuser{$chan}{$who};
+#    if (defined $t) {
+#      &::DEBUG("newsuser: $chan/$who == $t");
+#    } else {
+#      &::DEBUG("newsuser: $chan/$who == undefined");
+#    }
+
+    if (defined $t and ($t == 0 or $t == -1)) {
+       if ($flag) {
+           &::notice($who, "if you want to read news, try \002/msg $::ident news $chan\002 or \002/msg $::ident news $chan notify\002");
+       } else {
+           &::DEBUG("news: not displaying any new news for $who");
+           return;
+       }
+    }
+
+    $::chan    = $chan;
+    my $x = &::IsChanConf("newsNotifyAll");
+    if (&::IsChanConf("newsNotifyAll") and !defined $t) {
+       $t = 1;
+    }
+
+    if (!defined $t) {
+#      &::msg($who, "News is disabled for $chan");
+       &::DEBUG("news: something went really wrong.");
+       &::DEBUG("news: chan => $chan.");
+       return;
+    }
+
+    my @new;
+    foreach (keys %{ $::news{$chan} }) {
+       next if (!defined $t);
+       next if ($t > $::news{$chan}{$_}{Time});
+
+       # don't list new items if they don't have Text.
+       if (!exists $::news{$chan}{$_}{Text}) {
+           if (time() - $::news{$chan}{$_}{Time} > 60*60*24*3) {
+               &::DEBUG("deleting news{$chan}{$_} because it was too old and had no text info.");
+               delete $::news{$chan}{$_};
+           }
+
+           next;
+       }
+
+       push(@new, $_);
+    }
+
+    # !scalar @new, $flag
+    if (!scalar @new and $flag) {
+       &::notice($who, "no new news for $chan for $who.");
+       # valid to set this?
+       $::newsuser{$chan}{$who} = time();
+       return;
+    }
+
+    # scalar @new, !$flag
+    my $unread = scalar @new;
+    my $total  = scalar keys %{ $::news{$chan} };
+    if (!$flag && !&::IsChanConf("newsTellUnread")) {
+       return;
+    }
+
+    if (!$flag) {
+       return unless ($unread);
+
+       # just a temporary measure not to flood ourself off the 
+       # network with news until we get global notice() and msg()
+       # throttling.
+       if (time() - ($::cache{newsTime} || 0) < 5) {
+           &::status("news: not displaying latest notice to $who/$chan.");
+           return;
+       }
+
+       $::cache{newsTime} = time();
+       my $reply = "There are unread news in $chan ($unread unread, $total total). /msg $::ident news $::chan latest";
+       $reply   .= "  If you don't want further news notification, /msg $::ident news unnotify" if ($unread == $total);
+       &::notice($who, $reply);
+
+       return;
+    }
+
+    # scalar @new, $flag
+    if (scalar @new) {
+       &::notice($who, "+==== New news for \002$chan\002 ($unread new; $total total):");
+
+       my $t = $::newsuser{$chan}{$who};
+       if (defined $t and $t > 1) {
+           my $timestr = &::Time2String( time() - $t );
+           &::notice($who, "|= Last time read $timestr ago");
+       }
+
+       my $i;
+       my @sorted;
+       foreach (@new) {
+           $i   = &newsS2N($_);
+           $sorted[$i] = $_;
+       }
+       
+       for ($i=0; $i<=scalar(@sorted); $i++) {
+           my $news = $sorted[$i];
+           next unless (defined $news);
+
+#          my $age = time() - $::news{$chan}{$news}{Time};
+           my $msg = sprintf("\002[\002%2d\002]\002 %s", $i, $news);
+###                    $i, $_, &::Time2String($age)
+           $::conn->schedule(int((2+$i)/2), sub {
+               &::notice($who, $msg);
+           } );
+       }
+
+       # todo: implement throttling via schedule into &notice() / &msg().
+       $::conn->schedule(int((2+$i)/2), sub {
+           &::notice($who, "|= to read, do \002news $chan read <#>\002 or \002news $chan read <keyword>\002");
+       } );
+
+       # lame hack to prevent dupes if we just ignore it.
+       my $x = $::newsuser{$chan}{$who};
+       if (defined $x and ($x == 0 or $x == -1)) {
+           &::DEBUG("news: not updating time for $who. (2)");
+       } else {
+           $::newsuser{$chan}{$who} = time();
+       }
+    }
+}
+
+###
+### helpers...
+###
+
+sub getNewsAll {
+    my %time;
+    foreach (keys %{ $::news{$chan} }) {
+       $time{ $::news{$chan}{$_}{Time} } = $_;
+    }
+
+    my @items;
+    foreach (sort { $a <=> $b } keys %time) {
+       push(@items, $time{$_});
+    }
+
+    return @items;
+}
+
+sub newsS2N {
+    my($what)  = @_;
+    my $item   = 0;
+    my @items;
+    my $no;
+
+    my %time;
+    foreach (keys %{ $::news{$chan} }) {
+       my $t = $::news{$chan}{$_}{Time};
+
+       if (!defined $t or $t !~ /^\d+$/) {
+           &::DEBUG("news: warn: t is undefined for news{$chan}{$_}{Time}; removing item.");
+           delete $::news{$chan}{$_};
+           next;
+       }
+
+       $time{$t} = $_;
+    }
+
+    foreach (sort { $a <=> $b } keys %time) {
+       $item++;
+       return $item if ($time{$_} eq $what);
+    }
+
+    &::DEBUG("newsS2N($what): failed...");
+}
+
+sub getNewsItem {
+    my($what)  = @_;
+    my $item   = 0;
+
+    $what =~ s/^\#//;  # '#1' for example.
+
+    my %time;
+    foreach (keys %{ $::news{$chan} }) {
+       my $t = $::news{$chan}{$_}{Time};
+
+       if (!defined $t or $t !~ /^\d+$/) {
+           &::DEBUG("news: warn: t is undefined for news{$chan}{$_}{Time}; removing item.");
+           delete $::news{$chan}{$_};
+           next;
+       }
+
+       $time{$t} = $_;
+    }
+
+    # number to string resolution.
+    if ($what =~ /^\d+$/) {
+       foreach (sort { $a <=> $b } keys %time) {
+           $item++;
+           return $time{$_} if ($item == $what);
+       }
+
+    } else {
+       # partial string to full string resolution
+       # in some cases, string->number resolution.
+
+       my @items;
+       my $no;
+       foreach (sort { $a <=> $b } keys %time) {
+           $item++;
+#          $no = $item if ($time{$_} eq $what);
+##         if ($time{$_} eq $what) {
+##             $no = $item;
+##             next;
+##         }
+
+           push(@items, $time{$_}) if ($time{$_} =~ /\Q$what\E/i);
+       }
+
+##     if (defined $no and !@items) {
+##         &::DEBUG("news: string->number resolution: $what->$no.");
+##         return $no;
+##     }
+
+       if (scalar @items > 1) {
+           &::DEBUG("news: Multiple matches, not guessing.");
+           &::notice($who, "Multiple matches, not guessing.");
+           return;
+       }
+
+       if (@items) {
+#          &::DEBUG("news: gNI: part_string->full_string: $what->$items[0]");
+           return $items[0];
+       } else {
+           &::DEBUG("news: gNI: No match for '$what'");
+           return;
+       }
+    }
+
+    &::ERROR("news: gNI: should not happen (what = $what)");
+    return;
+}
+
+sub do_set {
+    my($what,$value) = @_;
+
+    if (!defined $chan) {
+       &::DEBUG("news: do_set: chan not defined.");
+       return;
+    }
+
+    if (!defined $what or $what =~ /^\s*$/) {
+       &::DEBUG("news: what $what is not defined.");
+       return;
+    }
+
+    if (!defined $value or $value =~ /^\s*$/) {
+       &::DEBUG("news: value $value is not defined.");
+       return;
+    }
+
+    &::DEBUG("news: do_set: TODO...");
+}
+
+sub stats {
+    &::DEBUG("News: stats called.");
+    &::msg($who, "check my logs/console.");
+    my($i,$j) = (0,0);
+
+    # total request count.
+    foreach $chan (keys %::news) {
+       foreach (keys %{ $::news{$chan} }) {
+           $i += $::news{$chan}{$_}{Request_Count};
+       }
+    }
+    &::DEBUG("news: stats: total request count => $i");
+    $i = 0;
+
+    # total user cached.
+    foreach $chan (keys %::newsuser) {
+       $i += $::newsuser{$chan}{$_};
+    }
+    &::DEBUG("news: stats: total user cache => $i");
+    $i = 0;
+
+    # average latest time read.
+    my $t = time();
+    foreach $chan (keys %::newsuser) {
+       $i += $t - $::newsuser{$chan}{$_};
+       &::DEBUG(" i = $i");
+       $j++;
+    }
+    &::DEBUG("news: stats: average latest time read: total time: $i");
+    &::DEBUG("news: ... count: $j");
+    &::DEBUG("news:   average: ".sprintf("%.02f", $i/($j||1))." sec/user");
+    $i = $j = 0;
+}
+
+sub AUTOLOAD { &::AUTOLOAD(@_); }
+
+1;
diff --git a/old/dbm.pl b/old/dbm.pl
new file mode 100644 (file)
index 0000000..b5067b6
--- /dev/null
@@ -0,0 +1,449 @@
+#
+#      dbm.pl: Extension on the factoid database.
+#  OrigAuthor: Kevin Lenzo  (c) 1997
+#  CurrAuthor: dms <dms@users.sourceforge.net>
+#     Version: v0.6 (20000707)
+#   FModified: 19991020
+#
+
+use strict;
+
+package main;
+
+use vars qw(%factoids %param);
+
+{
+    my %formats = (
+       'factoids', [
+           'factoid_key',
+           'factoid_value',
+           'created_by',
+           'created_time',
+           'modified_by',
+           'modified_time',
+           'requested_by',
+           'requested_time',
+           'requested_count',
+           'locked_by',
+           'locked_time'
+       ],
+       'freshmeat', [
+           'projectname_short',
+           'latest_version',
+           'license',
+           'url_homepage',
+           'desc_short'
+       ],
+       'rootwarn', [
+           'nick',
+           'attempt',
+           'time',
+           'host',
+           'channel'
+       ],
+       'seen', [
+           'nick',
+           'time',
+           'channel',
+           'host',
+           'messagecount',
+           'hehcount',
+           'karma',
+           'message'
+       ],
+       'stats', [
+           'nick',
+           'type',
+           'counter',
+           'time'
+       ]
+    );
+
+    sub openDB {
+       use DB_File;
+       foreach (keys %formats) {
+           next unless (&IsParam($_));
+
+           my $file = "$param{'DBName'}-$_";
+
+           if (dbmopen(%{ $_ }, $file, 0666)) {
+               &status("Opened DBM $_ ($file).");
+           } else {
+               &ERROR("Failed open to DBM $_ ($file).");
+               &shutdown();
+               exit 1;
+           }
+       }
+    }
+
+    sub closeDB {
+       foreach (keys %formats) {
+           next unless (&IsParam($_));
+
+           if (dbmclose(%{ $_ })) {
+               &status("Closed DBM $_ successfully.");
+               next;
+           }
+           &ERROR("Failed closing DBM $_.");
+       }
+    }
+
+    #####
+    # Usage: &dbGetColInfo($table);
+    sub dbGetColInfo {
+       my ($table) = @_;
+
+       if (scalar @{$formats{$table}}) {
+           return @{$formats{$table}};
+       } else {
+           &ERROR("dbGCI: no format for table ($table).");
+           return;
+       }
+    }
+}
+
+#####
+# Usage: &dbQuote($str);
+sub dbQuote {
+    return $_[0];
+}
+
+#####
+# Usage: &dbGet($table, $select, $where);
+sub dbGet {
+    my ($table, $select, $where) = @_;
+    my ($key, $val) = split('=',$where) if $where =~ /=/;
+    my $found = 0;
+    my @retval;
+    my $i;
+    &DEBUG("dbGet($table, $select, $where);");
+    return unless $key;
+
+    my @format = &dbGetColInfo($table);
+    if (!scalar @format) {
+       return;
+    }
+
+    if (!defined ${ "$table" }{lc $val}) {     # dbm hash exception.
+       &DEBUG("dbGet: '$val' does not exist in $table.");
+       return;
+    }
+
+    # return the whole row.
+    if ($select eq "*") {
+       @retval = split $;, ${"$table"}{lc $val};
+       unshift(@retval,$key);
+       return(@retval);
+    }
+
+    &DEBUG("dbGet: select=>'$select'.");
+    my @array = split "$;", ${"$table"}{lc $val};
+    unshift(@array,$val);
+    for (0 .. $#format) {
+       my $str = $format[$_];
+       next unless (grep /^$str$/, split(/\,/, $select));
+       $array[$_] ||= '';
+       &DEBUG("dG: '$format[$_]'=>'$array[$_]'.");
+       push(@retval, $array[$_]);
+    }
+
+    if (scalar @retval > 1) {
+       return @retval;
+    } elsif (scalar @retval == 1) {
+       return $retval[0];
+    } else {
+       return;
+    }
+}
+
+#####
+# Usage: &dbGetCol();
+# Usage: &dbGetCol($table, $select, $where, [$type]);
+sub dbGetCol {
+    my ($table, $select, $where, $type) = @_;
+    &FIXME("STUB: &dbGetCol($table, $select, $where, $type);");
+}
+
+#####
+# Usage: &dbGetColNiceHash($table, $select, $where);
+sub dbGetColNiceHash {
+    my ($table, $select, $where) = @_;
+    &DEBUG("dbGetColNiceHash($table, $select, $where);");
+    my ($key, $val) = split('=',$where) if $where =~ /=/;
+    return unless ${$table}{lc $val};
+    my (%hash) = ();
+    $hash{lc $key} = $val;
+    my (@format) = &dbGetColInfo($table);
+    shift @format;
+    @hash{@format} = split $;, ${$table}{lc $val};
+    return %hash;
+}
+
+#####
+# Usage: &dbInsert($table, $primkey, %hash);
+#  Note: dbInsert should do dbQuote.
+sub dbInsert {
+    my ($table, $primkey, %hash) = @_;
+    my $found = 0;
+    &DEBUG("dbInsert($table, $primkey, ...)");
+
+    my $info = ${$table}{lc $primkey} || '';   # primkey or primval?
+
+    my @format = &dbGetColInfo($table);
+    if (!scalar @format) {
+       return 0;
+    }
+
+    my $i;
+    my @array = split $;, $info;
+    delete $hash{$format[0]};
+    for $i (1 .. $#format) {
+       my $col = $format[$i];
+       $array[$i - 1]=$hash{$col};
+       $array[$i - 1]='' unless $array[$i - 1];
+       delete $hash{$col};
+       &DEBUG("dbI: '$col'=>'$array[$i - 1]'");
+    }
+
+    if (scalar keys %hash) {
+       &ERROR("dbI: not added...");
+       foreach (keys %hash) {
+           &ERROR("dbI: '$_'=>'$hash{$_}'");
+       }
+       return 0;
+    }
+
+    ${$table}{lc $primkey}     = join $;, @array;
+
+    return 1;
+}
+
+sub dbUpdate {
+    &FIXME("STUB: &dbUpdate(@_);=>somehow use dbInsert!");
+}
+
+#####
+# Usage: &dbSetRow($table, @values);
+sub dbSetRow {
+    my ($table, @values) = @_;
+    &DEBUG("dbSetRow(@_);");
+    my $key = lc $values[0];
+
+    my @format = &dbGetColInfo($table);
+    if (!scalar @format) {
+       return 0;
+    }
+
+    if (defined ${$table}{$key}) {
+       &WARN("dbSetRow: $table {$key} already exists?");
+    }
+
+    if (scalar @values != scalar @format) {
+       &WARN("dbSetRow: scalar values != scalar ${table} format.");
+    }
+
+    for (0 .. $#format) {
+       # @array? this is not defined anywhere. please fix, timriker!!!
+       if (defined $array[$_] and $array[$_] ne "") {
+           &DEBUG("dbSetRow: array[$_] != NULL($array[$_]).");
+       }
+       $array[$_] = $values[$_];
+    }
+
+    ${$table}{$key}    = join $;, @array;
+}
+
+#####
+# Usage: &dbDel($table, $primkey, $primval, [$key]);
+sub dbDel {
+    my ($table, $primkey, $primval, $key) = @_;
+    &DEBUG("dbDel($table, $primkey, $primval);");
+
+    if (!defined ${$table}{lc $primval}) {
+       &DEBUG("dbDel: lc $primval does not exist in $table.");
+    } else {
+       delete ${$table}{lc $primval};
+    }
+
+    return '';
+}
+
+#####
+# Usage: &dbReplace($table, $key, %hash);
+#  Note: dbReplace does optional dbQuote.
+sub dbReplace {
+    my ($table, $key, %hash) = @_;
+    &DEBUG("dbReplace($table, $key, %hash);");
+
+    &dbDel($table, $key, $hash{$key}, %hash);
+    &dbInsert($table, $hash{$key}, %hash);
+    return 1;
+}
+
+#####
+# Usage: &dbSet($table, $primhash_ref, $hash_ref);
+sub dbSet {
+    my ($table, $phref, $href) = @_;
+    &DEBUG("dbSet(@_)");
+    my ($key) = keys %{$phref};
+    my $where = $key . "=" . $phref->{$key};
+
+    my %hash = &dbGetColNiceHash($table, "*", $where);
+    $hash{$key}=$phref->{$key};
+    foreach (keys %{$href}) {
+       &DEBUG("dbSet: setting $_=${$href}{$_}");
+       $hash{$_} = ${$href}{$_};
+    }
+    &dbReplace($table, $key, %hash);
+    return 1;
+}
+
+sub dbRaw {
+    &FIXME("STUB: &dbRaw(@_);");
+}
+
+sub dbRawReturn {
+    &FIXME("STUB: &dbRawReturn(@_);");
+}
+
+
+
+####################################################################
+##### Factoid related stuff...
+#####
+
+sub countKeys {
+    return scalar keys %{$_[0]};
+}
+
+sub getKeys {
+    &FIXME("STUB: &getKeys(@_); -- REDUNDANT");
+}
+
+sub randKey {
+    &DEBUG("STUB: &randKey(@_);");
+    my ($table, $select) = @_;
+    my @format = &dbGetColInfo($table);
+    if (!scalar @format) {
+       return;
+    }
+
+    my $rand = int(rand(&countKeys($table) - 1));
+    my @keys = keys %{$table};
+    &dbGet($table, '$select', "$format[0]=$keys[$rand]");
+}
+
+#####
+# Usage: &deleteTable($table);
+sub deleteTable {
+    my ($table) = @_;
+    &FIXME("STUB: deleteTable($table)");
+}
+
+##### $select is misleading???
+# Usage: &searchTable($table, $returnkey, $primkey, $str);
+sub searchTable {
+    my ($table, $primkey, $key, $str) = @_;
+    &FIXME("STUB: searchTable($table, $primkey, $key, $str)");
+    return;
+    &DEBUG("searchTable($table, $primkey, $key, $str)");
+
+    if (!scalar &dbGetColInfo($table)) {
+       return;
+    }   
+
+    my @results;
+    foreach (keys %{$table}) {
+       my $val = &dbGet($table, "NULL", $_, $key) || '';
+       next unless ($val =~ /\Q$str\E/);
+       push(@results, $_);
+    }
+
+    &DEBUG("sT: ".scalar(@results) );
+
+    @results;
+}
+
+#####
+# Usage: &getFactInfo($faqtoid, $type);
+sub getFactInfo {
+    my ($faqtoid, $type) = @_;
+
+    my @format = &dbGetColInfo("factoids");
+    if (!scalar @format) {
+       return;
+    }
+
+    if (!defined $factoids{$faqtoid}) {        # dbm hash exception.
+       return;
+    }
+
+    if ($type eq "*") {                # all.
+       return split /$;/, $factoids{$faqtoid};
+    }
+
+    # specific.
+    if (!grep /^$type$/, @format) {
+       &ERROR("gFI: type '$type' not valid for factoids.");
+       return;
+    }
+
+    my @array  = split /$;/, $factoids{$faqtoid};
+    for (0 .. $#format) {
+       next unless ($type eq $format[$_]);
+       return $array[$_];
+    }
+
+    &ERROR("gFI: should never happen.");
+}   
+
+#####
+# Usage: &getFactoid($faqtoid);
+sub getFactoid {
+    my ($faqtoid) = @_;
+
+    if (!defined $faqtoid or $faqtoid =~ /^\s*$/) {
+       &WARN("getF: faqtoid == NULL.");
+       return;
+    }
+
+    if (defined $factoids{$faqtoid}) { # dbm hash exception.
+       # we assume 1 unfortunately.
+       ### TODO: use &getFactInfo() instead?
+       my $retval = (split $;, $factoids{$faqtoid})[1];
+
+       if (defined $retval) {
+           &DEBUG("getF: returning '$retval' for '$faqtoid'.");
+       } else {
+           &DEBUG("getF: returning NULL for '$faqtoid'.");
+       }
+       return $retval;
+    } else {
+       return;
+    }
+}
+
+#####
+# Usage: &delFactoid($faqtoid);
+sub delFactoid {
+    my ($faqtoid) = @_;
+
+    if (!defined $faqtoid or $faqtoid =~ /^\s*$/) {
+       &WARN("delF: faqtoid == NULL.");
+       return;
+    }
+
+    if (defined $factoids{$faqtoid}) { # dbm hash exception.
+       delete $factoids{$faqtoid};
+       &status("DELETED $faqtoid");
+    } else {
+       &WARN("delF: nothing to deleted? ($faqtoid)");
+       return;
+    }
+}
+
+sub checkTables {
+# nothing - DB_FIle will create them on openDB()
+}
+
+1;
diff --git a/src/Modules/Freshmeat.pl b/src/Modules/Freshmeat.pl
deleted file mode 100644 (file)
index f543c54..0000000
+++ /dev/null
@@ -1,359 +0,0 @@
-#
-# Freshmeat.pl: Frontend to www.freshmeat.net
-#       Author: dms
-#      Version: v0.7d (20000923)
-#      Created: 19990930
-#
-
-package Freshmeat;
-
-use strict;
-use vars qw(@cols @data $string %pkg $i $locktime);
-
-my %urls = (
-       'public'  => 'http://www.freshmeat.net/backend/fm-projects.rdf.bz2',
-#      'private' => 'http://feed.freshmeat.net/appindex/appindex.txt',
-);
-
-####
-# Usage: &Freshmeat($string);
-sub Freshmeat {
-    my $sstr   = lc($_[0]);
-    my $refresh        = &::getChanConfDefault("freshmeatRefreshInterval",
-                       "", 24) * 60 * 60 * 7;
-
-    my $last_refresh = &::dbGet("freshmeat", "latest_version", "projectname_short=".&::dbQuote('_'));
-    my $renewtable   = 0;
-
-    if (defined $last_refresh and $last_refresh =~ /^\d+$/) {
-       $renewtable++ if (time() - $last_refresh > $refresh);
-    } else {
-       $renewtable++;
-    }
-    $renewtable++ if (&::countKeys("freshmeat") < 1000);
-
-    if ($renewtable) {
-       if ($$ == $::bot_pid) {
-           &::Forker("freshmeat", sub {
-               &Freshmeat($sstr) if &downloadIndex();
-           } );
-           # both parent/fork runs here, in case the following looks weird.
-       } else {
-           &downloadIndex();
-       }
-
-       return if ($$ == $::bot_pid);
-    }
-
-    if (!&showPackage($sstr)) {                # no exact match.
-       my $start_time = &::timeget();
-       my %hash;
-
-       # search by key/NAME first.
-       foreach (&::searchTable("freshmeat", "projectname_short", "projectname_short",$sstr)) {
-           $hash{$_} = 1 unless exists $hash{$_};
-       }
-
-       # search by description line.
-       foreach (&::searchTable("freshmeat", "projectname_short", "desc_short", $sstr)) {
-           $hash{$_} = 1 unless exists $hash{$_};
-           last if (scalar keys %hash > 15);
-       }
-
-       my @list = keys %hash;
-       # search by value, if we have enough room to do it.
-       if (scalar @list == 1) {
-           &::status("only one match found; showing full info.");
-           &showPackage($list[0]);
-           return;
-       }
-
-       # show how long it took.
-       my $delta_time = &::timedelta($start_time);
-       &::status(sprintf("freshmeat: %.02f sec to complete query.", $delta_time)) if ($delta_time > 0);
-
-       for (@list) {
-           tr/A-Z/a-z/;
-           s/([\,\;]+)/\037$1\037/g;
-       }
-
-       &::performStrictReply( &::formListReply(1, "Freshmeat ", @list) );
-    }
-}
-
-sub packageText {
-    my ($pkg)  = @_;
-    my %fm     = &::dbGetColNiceHash("freshmeat", "*", "projectname_short=".&::dbQuote($pkg));
-
-    if (scalar keys %fm) {             #1: perfect match of name.
-       my $retval;
-       $retval  = "$fm{'projectname_short'} \002(\002$fm{'desc_short'}\002)\002, ";
-       $retval .= "is $fm{'license'}. ";
-       $retval .= "Version: \002$fm{'latest_version'}\002, $fm{'url_homepage'}";
-       return $retval;
-    } else {
-       return;
-    }
-}
-
-sub showPackage {
-    my ($pkg) = @_;
-    my ($retval);
-    if ($retval = packageText($pkg)) {
-       &::performStrictReply($retval);
-       return 1;
-    } else {
-       return 0;
-    }
-}
-
-sub randPackage {
-    my @fm = &::randKey("freshmeat","*");
-    return &packageText($fm[0]);
-}
-
-sub downloadIndex {
-    my $start_time     = &::timeget(); # set the start time.
-    my $idx            = "$::param{tempDir}/fm-projects.rdf.bz2";
-
-    if (!&::loadPerlModule("XML::Parser")) {
-       &::WARN("don't have xml::parser...");
-       return 0;
-    }
-    my $p = new XML::Parser(Style => 'Objects');
-    my %pkg;
-    my $string;
-
-    $p->setHandlers(
-               Char    => \&xml_text,
-               End     => \&xml_end,
-    );
-
-    &::msg($::who, "Updating freshmeat index... please wait");
-
-    if (&::isStale($idx, 1)) {
-       &::status("Freshmeat: fetching data.");
-
-       foreach (keys %urls) {
-           $urls{$_}   =~ /^.*\/(.*)$/;
-           $idx        = "$::param{tempDir}/$1";
-           my $retval  = &::getURLAsFile($urls{$_}, $idx);
-           next if ($retval =~ /^(403|500)$/);
-
-           &::DEBUG("FM: last! retval => '$retval'.");
-           last;
-       }
-    } else {
-       &::status("Freshmeat: local file hack.");
-    }
-
-    if (! -e $idx) {
-       &::msg($::who, "the freshmeat butcher is closed.");
-       return 0;
-    }
-
-    if ( -s $idx < 100000) {
-       &::DEBUG("FM: index too small?");
-       unlink $idx;
-       &::msg($::who, "internal error?");
-       return 0;
-    }
-
-    if ($idx =~ /bz2$/) {
-       open(IN, "bzcat $idx |");
-    } elsif ($idx =~ /gz$/) {
-       open(IN, "gzcat $idx |");
-    } else {
-       open(IN, $idx);
-    }
-
-    # delete the table before we redo it.
-    &::deleteTable("freshmeat");
-
-    ### lets get on with business.
-    # set the last refresh time. fixes multiple spawn bug.
-    &::dbSet("freshmeat", 
-       { "projectname_short"   => "_" },
-       { "latest_version"      => time(),
-         "desc_short"          => "dummy project to track date" }
-    );
-
-#    &::dbRaw("LOCK", "LOCK TABLES freshmeat WRITE");
-    @cols      = &::dbGetColInfo("freshmeat");
-
-    $locktime  = time();
-
-    # this mess is to not dump IN to memory.
-    $_ = <IN>;
-    $_ = <IN>;
-    $_ = <IN>;
-
-    my $str;
-    while (<IN>) {
-       chop;
-
-       $str .= $_;
-
-       next unless (/<\/project>/);
-
-       # XML::Parser's parse() doesn't like the following.
-       # but parsefile() does... why!
-       for ($str) {
-               s/&reg;/_/g;
-               s/&ocirc;//g;
-               s/&quot;//g;
-               s/&eacute;/e/g;
-               s/&agrave;/a/g;
-               s/&iacute;/i/g;
-               s/&shy;/_/g;    # ???
-               s/&acute;/a/g;
-               s/&raquo;/_/g;  # ???
-               s/&laquo;/_/g;  # ???
-               s/&copy;/[C]/g;
-               s/&deg;/deg/g;
-               s/&AElig;/A/g;
-               s/\cN//g;               # fucking openbsd morons.
-               s/&nbsp;/-/g;
-               s/&ouml;/o/g;
-               s/&para;//g;    # ???
-               s/&atilde;//g;
-               s/\cM/ /g;              # stupid windows morons
-               s/&sup2;/square/g;
-               s/&uuml;/?/g;
-               s/&micro;/u/g;
-               s/&aelig;/a/g;
-               s/&oslash;/o/g;
-               s/&eth;/e/g;
-               s/&szlig;//g;
-               s/&middot;//g;
-       }
-
-       if (0 and $str =~ s/\&(\S+?);//g) {
-           &::DEBUG("fm: sarred $1 to ''.");
-       }
-
-       $p->parse($str, ProtocolEncoding => 'ISO-8859-1');
-       $str = "";
-    }
-    close IN;
-
-#    &::dbRaw("UNLOCK", "UNLOCK TABLES");
-
-    my $delta_time = &::timedelta($start_time);
-    &::status(sprintf("Freshmeat: %.02f sec to complete.", $delta_time)) if ($delta_time > 0);
-
-    my $count = &::countKeys("freshmeat");
-    &::status("Freshmeat: $count entries loaded.");
-    return 1;
-}
-
-sub freshmeatAnnounce {
-    my $file = "$::param{tempDir}/fm_recent.txt";
-    my @old;
-
-    ### if file exists, lets read it.
-    if ( -f $file) {
-       open(IN, $file);
-       while (<IN>) {
-           chop;
-           push(@old,$_);
-       }
-       close IN;
-    }
-
-    my @array = &::getURL("http://core.freshmeat.net/backend/recentnews.txt");
-    my @now;
-
-    while (@array) {
-       my($what,$date,$url) = splice(@array,0,3);
-       push(@now, $what);
-    }
-
-    ### if file does not exist, write new.
-    if (! -f $file) {
-       open(OUT, ">$file");
-       foreach (@now) {
-           print OUT "$_\n";
-       }
-       close OUT;
-
-       return;
-    }
-
-    my @new;
-    for(my $i=0; $i<scalar(@old); $i++) {
-       last if ($now[$i] eq $old[0]);
-       push(@new, $now[$i]);
-    }
-
-    if (!scalar @new) {
-       &::DEBUG("fA: no new items.");
-       return;
-    }
-
-    ### output new file.
-    open(OUT, ">$file");
-    foreach (@now) {
-       print OUT "$_\n";
-    }
-    close OUT;
-
-    return "Freshmeat update: ".join(" \002::\002 ", @new);
-}
-
-
-sub xml_text {
-    my ($e,$t) = @_;
-    return if ($t =~ /^\s*$/);
-
-    $string = $t;
-}
-
-sub xml_end {
-    my($expat,$text) = @_;
-
-    $pkg{$text} = $string;
-
-    if ($expat->depth == 0) {
-
-       # old code.
-       if (0) {
-       for (my $j=0; $j<scalar @cols; $j++) {
-           $data[$j] = $pkg{ $cols[$j] };
-       }
-       $i++;
-
-       &::dbSetRow("freshmeat", [@data], "DELAY");
-       undef @data;
-       }
-
-       # new code.
-       $i++;
-       my %data;
-       foreach(@cols) {
-           $data{$_} = $pkg{$_} if ($pkg{$_});
-       }
-       &::dbReplace("freshmeat", "projectname_short", %data);
-       undef %data;
-       # end of new code.
-
-       undef %pkg;
-
-       if ($i % 200 == 0 and $i != 0) {
-           &::showProc();
-           &::status("FM: unlocking and locking ($i): ". 
-               &::Time2String( time() - $locktime ) );
-           $locktime = time();
-
-           # I think the following leaks 120k of memory each time it's
-           # called... the wonders of libmysql-perl leaking!
-
-#          &::dbRaw("UNLOCK", "UNLOCK TABLES");
-           ### another lame hack to "prevent" errors.
-#          select(undef, undef, undef, 0.2);
-#          &::dbRaw("LOCK", "LOCK TABLES freshmeat WRITE");
-       }
-    }
-}
-
-1;