From: Rob H. <for...@us...> - 2002-02-20 05:14:34
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv24997/bin Modified Files: sandweb.cgi Log Message: added lots of debug and fixed some more stuff Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.192 retrieving revision 1.193 diff -U2 -r1.192 -r1.193 --- sandweb.cgi 20 Feb 2002 04:46:55 -0000 1.192 +++ sandweb.cgi 20 Feb 2002 05:14:31 -0000 1.193 @@ -1146,4 +1146,8 @@ my %return; + $log->debug("module_name: $module_name"); + $log->debug("username: $username"); + $log->debug("location: $location"); + my $repo_server = $user->get_repo_server(repo => $repo_name); my $repo_username = $user->get_repo_username(repo => $repo_name); @@ -1172,4 +1176,10 @@ ); + $log->debug("Repo name: $repo_name"); + $log->debug("Repo root: $repo_root"); + $log->debug("VCS sandbox: $users_dir/$username/$module_name"); + $log->debug("Repo type: $repo_type"); + $log->debug("Filename(s): @filename"); + if ( $vcs_command eq 'commit' ) { if ($message) { @@ -1189,4 +1199,5 @@ MENU => 'vcs_output', LOCATION => $location, + FILENAME => @filename, PROGNAME => $progname, VCS_OUTPUT => "@vcs_output", @@ -1207,4 +1218,6 @@ MENU => 'commit', LOCATION => $location, + MODULE_NAME => $module_name, + REPO_NAME => $repo_name, PROGNAME => $progname, FILENAME => "@filename", |