Initial checkin.
Signed-off-by: Thomas Hochstein <thh@thh.name>
This commit is contained in:
commit
30132626b8
68 changed files with 5497 additions and 0 deletions
12
cgi-bin/modtable.pl
Normal file
12
cgi-bin/modtable.pl
Normal 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();
|
||||
13
cgi-bin/public.pl
Normal file
13
cgi-bin/public.pl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/perl -w
|
||||
use strict;
|
||||
use warnings;
|
||||
use CGI::Carp 'fatalsToBrowser';
|
||||
|
||||
$ENV{'CONTENT_TYPE'} = "multipart/form-data";
|
||||
|
||||
BEGIN { push (@INC, $ENV{'HUHU_DIR'}); }
|
||||
|
||||
require MOD::PublicHandler;
|
||||
|
||||
my $h = MOD::PublicHandler->new( $ENV{'HUHU_PUB_CONFIG'} );
|
||||
$h->run();
|
||||
Loading…
Add table
Add a link
Reference in a new issue