scripts/mcbot.cgi
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Dec 2008 15:38:37 +0100
changeset 6 7eb12be31bb5
parent 0 586472add385
child 25 a0fad312ea30
permissions -rwxr-xr-x
Various Bug Fixes including * connects to the proper server from the config file * feof (stream) loop is better than the prior solution Still missing / correctable * valgrind complains about uninitialized values * strdup must be freed, but i don't know where... 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) {
		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);