Update of /cvsroot/sandweb/sandweb/bin
In directory usw-pr-cvs1:/tmp/cvs-serv11096/bin
Modified Files:
sandweb.cgi
Log Message:
oops, download_file wasn't implemented correctly. fixed.
Index: sandweb.cgi
===================================================================
RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v
retrieving revision 1.214
retrieving revision 1.215
diff -U2 -r1.214 -r1.215
--- sandweb.cgi 24 Feb 2002 06:43:21 -0000 1.214
+++ sandweb.cgi 24 Feb 2002 06:46:34 -0000 1.215
@@ -306,4 +306,14 @@
}
}
+ elsif ( $action eq 'download_file' ) {
+ # called file downloader
+ download_file_commit(
+ ck_auth => $ck_auth,
+ filename => CGI::param('filename'),
+ module_name => $module_name,
+ repo_name => $repo_name,
+ location => CGI::param('location'),
+ );
+ }
elsif ( $action eq 'repository' ) {
if ($submit) {
|