scripts/mcbot.cgi
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Nov 2010 08:14:04 +0100
changeset 58 500a5ea7fcb8
parent 33 56571d34d754
permissions -rwxr-xr-x
IPv6 Support for mcbot We initialize the socket functions with AF_UNSPEC and let the library fill in the proper values. Connects to IPv4 or IPv6. committer: Markus Bröker <mbroeker@largo.homelinux.org>

#!/usr/bin/perl -W

use strict;

my $line;
my $a;
my $b;

print "CONTENT-TYPE: text/html\n\n";

print "<html>\n\t<head>\n\t\t<title>Factoids</title>\n\t</head>\n<body>\n";
open(FD, "dbtool -l |") or die("Cannot open file");

foreach $line(<FD>) {
	($a, $b) = split(/:/, $line, 2);
	$a =~ s/^[\t ]+//;					# skip blanks
	$b =~ s/^[\t ]+//;					# skip blanks
	$b =~ s/[\n]+//;					# for html source :)

    if ( $b && !($a =~ /mcbot/)) {
        if($b =~ /^http/ ) {
            print "$a - <a href=\"$b\">$b</a><br>";
        } else {
            print "$a - $b<br>";
        }
    }
}

print "\n<br>$a\n";

print "</body></html>\n";
close(FD);