App-SocialCalc-Multiplayer
view release on metacpan or search on metacpan
socialcalc/simpleedit14.pl view on Meta::CPAN
use SocialCalcServersideUtilities;
my $datadir = "se2-data/";
my $versionstr = "2.01";
my $jsdir = "/sgi/scjstest/";
#
# This whole first section lets this code run either as a CGI script on a server
# or standalone on the desktop run from the Perl command line.
#
# The main processing starts with process_request.
#
if ($ENV{REQUEST_METHOD}) { # being run as a CGI on a server
print "Content-type: text/html\n\n";
my $q = new CGI;
print process_request($q);
exit;
}
socialcalc/simpleedit15.pl view on Meta::CPAN
use SocialCalcServersideUtilities;
my $datadir = "se2-data/";
my $versionstr = "2.02";
my $jsdir = "/sgi/scjstest/";
#
# This whole first section lets this code run either as a CGI script on a server
# or standalone on the desktop run from the Perl command line.
#
# The main processing starts with process_request.
#
if ($ENV{REQUEST_METHOD}) { # being run as a CGI on a server
print "Content-type: text/html\n\n";
my $q = new CGI;
print process_request($q);
exit;
}
socialcalc/socialcalcserver.pl view on Meta::CPAN
my $settingsfile = "socialcalcserversettings.txt"; # file with values for the following
my $datadir = "se2-data/"; # The subdirectory of where the code is that holds the socialcalc data files
my $versionstr = "0.2.3";
my $titlestr = "SocialCalc Server $versionstr";
my $jsdir = "/sgi/scjs/"; # The subdirectory of the server home page (when run thru CGI)
# where the .js files are, and ./images/ subdirectory.
my $imagedir = "/images/sc-";
#
# This whole first section lets this code run either as a CGI script on a server
# or standalone on the desktop run from the Perl command line.
#
# The main processing starts with process_request.
#
if ($ENV{REQUEST_METHOD}) { # being run as a CGI on a server
print "Content-type: text/html\n\n";
my $q = new CGI;
print process_request($q);
exit;
}
( run in 0.667 second using v1.01-cache-2.11-cpan-299005ec8e3 )