WebGUI 0.12.0 release

This commit is contained in:
JT Smith 2001-08-27 02:17:00 +00:00
parent f0d80bbfb3
commit 597b9ff2b0
28 changed files with 344 additions and 122 deletions

6
www/env.pl Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/perl
print "Content-type: text/html\n\n";
foreach (keys %ENV) {
print $_."=".$ENV{$_}."<br>\n";
}