scripts/mcbot.cgi
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 03 Jan 2009 21:41:51 +0100
changeset 33 56571d34d754
parent 25 a0fad312ea30
permissions -rwxr-xr-x
safe buffers, a memory leak and cleanups sizeof(buffer) is always the right choice for a static buffer... The error handler must appear before the printf Useful make targets like deb and debclean Trivial changes like removing trailing white spaces 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);