WebGUI 1.3.1 release
This commit is contained in:
parent
5687f5ee66
commit
6cf30b32bd
13 changed files with 69 additions and 83 deletions
|
|
@ -10,13 +10,17 @@
|
|||
# http://www.plainblack.com info@plainblack.com
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
my $webguiRoot = "..";
|
||||
|
||||
BEGIN {
|
||||
unshift (@INC, "../lib");
|
||||
}
|
||||
|
||||
#-----------------DO NOT MODIFY BELOW THIS LINE--------------------
|
||||
|
||||
use CGI::Carp qw(fatalsToBrowser);
|
||||
use strict;
|
||||
use WebGUI;
|
||||
|
||||
print WebGUI::page();
|
||||
print WebGUI::page($webguiRoot);
|
||||
|
||||
|
|
|
|||
26
www/sub/index.pl
Executable file
26
www/sub/index.pl
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
# WebGUI is Copyright 2001 Plain Black Software.
|
||||
#-------------------------------------------------------------------
|
||||
# Please read the legal notices (docs/legal.txt) and the license
|
||||
# (docs/license.txt) that came with this distribution before using
|
||||
# this software.
|
||||
#-------------------------------------------------------------------
|
||||
# http://www.plainblack.com info@plainblack.com
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
my $webguiRoot = "../..";
|
||||
|
||||
BEGIN {
|
||||
unshift (@INC, "../../lib");
|
||||
}
|
||||
|
||||
#-----------------DO NOT MODIFY BELOW THIS LINE--------------------
|
||||
|
||||
use CGI::Carp qw(fatalsToBrowser);
|
||||
use strict;
|
||||
use WebGUI;
|
||||
|
||||
print WebGUI::page($webguiRoot);
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue