Initial checkin.

Signed-off-by: Thomas Hochstein <thh@thh.name>
This commit is contained in:
Thomas Hochstein 2022-01-29 10:22:11 +01:00
commit 30132626b8
68 changed files with 5497 additions and 0 deletions

12
cgi-bin/modtable.pl Normal file
View file

@ -0,0 +1,12 @@
#!/usr/bin/perl -w
use strict;
use warnings;
use CGI::Carp 'fatalsToBrowser';
$ENV{'CONTENT_TYPE'} = "multipart/form-data";
BEGIN { push (@INC, $ENV{'HUHU_DIR'}); }
use MOD::Handler;
my $h = MOD::Handler->new( $ENV{'HUHU_PUB_CONFIG'} );
$h->run();