Update of /cvsroot/sandweb/sandweb/bin
In directory sc8-pr-cvs1:/tmp/cvs-serv11138/bin
Modified Files:
sandweb.cgi
Log Message:
ah, fixed the remaining bugs I know about right now -
* removed the "submit" attribute from the <form> tag everywhere
so IE will ( hopefully ) work, required removing PROGNAME HTML::Template
variable from sandweb.cgi in some places
* made it so popups that are supposed to close after being used ( upload,
rename, create_folder ) actually works with the new HREF submits.
Index: sandweb.cgi
===================================================================
RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v
retrieving revision 1.341
retrieving revision 1.342
diff -U2 -r1.341 -r1.342
--- sandweb.cgi 13 Jan 2003 08:10:21 -0000 1.341
+++ sandweb.cgi 13 Jan 2003 08:32:59 -0000 1.342
@@ -742,5 +742,4 @@
my $content = $ui->get_menu(
MENU => 'sandbox',
- PROGNAME => "$progname",
NO_MODULES => ($no_modules) ? "No exisiting modules.\n" : "",
MODULE_LOOP => \@module_loop,
@@ -994,5 +993,4 @@
my $content = $ui->get_menu(
MENU => 'configuration',
- PROGNAME => $progname,
FULL_NAME => $full_name,
CONFIRM_DELETE => $confirm_delete_checked,
@@ -1544,5 +1542,4 @@
LOCATION => $location,
FILENAME => '',
- PROGNAME => $progname,
OUTPUT => "Please select file or folders to delete",
ERROR => "No files selected",
@@ -1577,5 +1574,4 @@
my $content = $ui->get_menu(
MENU => 'delete',
- PROGNAME => $progname,
LOCATION => $location,
FILENAME_LOOP => \@filename_loop,
@@ -1649,5 +1645,4 @@
LOCATION => $location,
FILENAME => '',
- PROGNAME => $progname,
OUTPUT => "Please select file or folders to rename",
ERROR => "No files selected",
@@ -1669,5 +1664,4 @@
my $content = $ui->get_menu(
MENU => 'rename',
- PROGNAME => $progname,
MODULE_NAME => $module_name,
REPO_NAME => $repo_name,
@@ -1997,5 +1991,4 @@
my $content = $ui->get_menu(
MENU => 'tag',
- PROGNAME => $progname,
LOCATION => $location,
FILENAME_LOOP => \@filename_loop,
@@ -2054,5 +2047,4 @@
my $content = $ui->get_menu(
MENU => 'branch',
- PROGNAME => $progname,
LOCATION => $location,
FILENAME_LOOP => \@filename_loop,
|