You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(28) |
Nov
(58) |
Dec
(85) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(125) |
Feb
(222) |
Mar
(274) |
Apr
(51) |
May
(22) |
Jun
(50) |
Jul
(15) |
Aug
(33) |
Sep
(11) |
Oct
(29) |
Nov
(17) |
Dec
(1) |
2003 |
Jan
(100) |
Feb
(21) |
Mar
(7) |
Apr
(45) |
May
|
Jun
(43) |
Jul
(27) |
Aug
(24) |
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
(1) |
Feb
|
Mar
(13) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(7) |
Sep
|
Oct
|
Nov
|
Dec
(4) |
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Rob H. <for...@us...> - 2003-06-01 10:04:48
|
Update of /cvsroot/sandweb/sandweb/bin In directory sc8-pr-cvs1:/tmp/cvs-serv3030 Modified Files: sandweb.cgi Log Message: merged tag/branch fixed from release branch Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.352 retrieving revision 1.353 diff -U2 -r1.352 -r1.353 --- sandweb.cgi 1 Jun 2003 07:16:13 -0000 1.352 +++ sandweb.cgi 1 Jun 2003 10:04:45 -0000 1.353 @@ -242,6 +242,9 @@ # whether or not this is a submenu my $submenu = $cgi->param('submenu') || ''; + # whether or not this is the final submenu + my $submenu_final = $cgi->param('submenu_final') || ''; $log->debug("submenu: $submenu\n"); + $log->debug("submenu_final: $submenu_final\n"); $log->debug("action: $action - submit: $submit"); $log->debug("module_description: $module_description\n"); @@ -323,5 +326,12 @@ } + my %params; + + if ( $cgi->param('params')) { + %params = $cgi->param('params'), + } + if ( $vcs_command eq "tag" ) { + $log->debug("called tag.."); my $tag_sync = $cgi->param('tag_sync') || ''; my $tag_switch = $cgi->param('tag_switch') || ''; @@ -330,5 +340,7 @@ my $create_tag = $cgi->param('create_tag') || ''; my $remove_tag = $cgi->param('remove_tag') || ''; - if ($submenu) { + + if (($submenu == 1) + && ($submenu_final != 1)){ tag_commit( ck_auth => $ck_auth, @@ -345,7 +357,8 @@ location => $location, submenu => $submenu, + submenu_final => 1, ); exit; - } else { + } elsif ($submenu_final != 1){ tag_menu( ck_auth => $ck_auth, @@ -357,5 +370,4 @@ exit; } - exit; } @@ -367,5 +379,8 @@ my $create_branch = $cgi->param('create_branch') || ''; my $remove_branch = $cgi->param('remove_branch') || ''; - if ($submit) { + + if (($submenu == 1) + && ($submenu_final != 1)){ + $log->debug("branch commit.."); branch_commit( ck_auth => $ck_auth, @@ -381,6 +396,9 @@ filename => \@filename, location => $location, + submenu_final => 1, ); - } else { + exit; + } elsif ($submenu_final != 1){ + $log->debug("branch menu.."); branch_menu( ck_auth => $ck_auth, @@ -390,6 +408,6 @@ location => $location, ); + exit; } - exit; } @@ -399,4 +417,5 @@ vcs_command => $vcs_command, module_name => $module_name, + params => \%params, repo_name => $repo_name, repo_password => $repo_password, @@ -960,7 +979,7 @@ ); - $log->debug("current_location: ".$location); - my %localstatus = $repository->status(file => ".", recurse => "false" ); - my @localstatusoutput=$localstatus{output}; + $log->debug("current_location: ".$location); + my %localstatus = $repository->status(file => ".", recurse => "false" ); + my @localstatusoutput=$localstatus{output}; my %browser = $browse->get_browser( @@ -1911,6 +1930,13 @@ my $main_window_url = $args{'main_window_url'} || ''; my $submenu = $args{'submenu'} || ''; + my $submenu_final = $args{'submenu_final'} || ''; $log->debug("submenu in vcs_menu : $submenu"); my @filename_loop = (); + my @params_loop = (); + # dereference params hash, turn into array + my @params_array; + if ($params){ + @params_array = %$params; + } my $count = 0; @@ -1938,4 +1964,22 @@ } + $count = 0; + while ( @params_array->[$count] ) { + # build loop to pass params through template + # + my %entry; + $entry{'PARAMS'} = @params_array->[$count]; + push (@params_loop, \%entry); + $count++; + } + + my @params= (); + $count = 0; + + while ( @params_array->[$count] ) { + push (@params, @params_array->[$count]); + $count++; + } + unless ( @filename || @filename eq '.' ) { $log->debug("no file was selected for vcs action"); @@ -1946,4 +1990,5 @@ PROGNAME => $progname, SUBMENU => $submenu, + SUBMENU_FINAL => $submenu_final, OUTPUT => "Please select file(s) or folder(s) to perform vcs action on", ERROR => "No file(s) or folder(s) selected", @@ -1987,4 +2032,5 @@ LOCATION => $location, FILENAME_LOOP => \@filename_loop, + PARAMS_LOOP => \@params_loop, VCS_COMMAND => $vcs_command, VCS_MESSAGE => $vcs_message, @@ -1994,4 +2040,5 @@ IMAGE_DIR => $image_dir, SUBMENU => $submenu, + SUBMENU_FINAL => $submenu_final, ); print $cgi->header( -cookie => $ck_auth ); @@ -2591,8 +2638,10 @@ } + $log->debug("in vcs_commit"); $log->debug("module_name: $module_name"); $log->debug("username: $username"); $log->debug("location: $location"); $log->debug("main_window_url: $main_window_url"); + $log->debug("params: ".Dumper(%params)); my $repo_server = $user->get_repo_server(repo => $repo_name); @@ -2667,4 +2716,8 @@ $log->debug("Filename(s): @filename"); + if ( $vcs_command eq 'branch' ) { + $vcs_command = 'tag'; + } + if ( $vcs_command eq 'commit' ) { if ($message) { @@ -3194,4 +3247,5 @@ my $repo_name = $args{'repo_name'}; my $submenu = $args{'submenu'} || ''; + my $submenu_final = $args{'submenu_final'} || ''; my $prev_url = "$ENV{'HTTP_REFERER'}"; $log->debug("prev_url $prev_url"); @@ -3205,4 +3259,5 @@ my $remove_tag = $args{'remove_tag'} || ''; + $log->debug("in tag_commit"); $log->debug("module_name: $module_name"); $log->debug("username: $username"); @@ -3242,4 +3297,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3261,4 +3317,5 @@ repo_name => $repo_name, submenu => $submenu, + submenu_final => $submenu_final, repo_password => $repo_password, filename => \@filename, @@ -3280,4 +3337,5 @@ repo_name => $repo_name, submenu => $submenu, + submenu_final => $submenu_final, repo_password => $repo_password, filename => \@filename, @@ -3301,4 +3359,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3315,4 +3374,5 @@ $log->debug("submenu passed from create_tag: $submenu"); + $log->debug("cvs params passed: $create_tag"); vcs_menu( ck_auth => $ck_auth, @@ -3322,4 +3382,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3342,4 +3403,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3420,4 +3482,5 @@ my $prev_url = "$ENV{'HTTP_REFERER'}"; my $submenu = $args{'submenu'} || ''; + my $submenu_final = $args{'submenu_final'} || ''; $log->debug("prev_url $prev_url"); my %return; @@ -3430,4 +3493,5 @@ my $remove_branch = $args{'remove_branch'} || ''; + $log->debug("in branch_commit"); $log->debug("module_name: $module_name"); $log->debug("username: $username"); @@ -3467,4 +3531,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3472,4 +3537,5 @@ main_window_url => $main_window_url, ); + exit; } if ($branch_switch) { @@ -3487,8 +3553,10 @@ filename => \@filename, submenu => $submenu, + submenu_final => $submenu_final, location => $location, params => \%params, main_window_url => $main_window_url, ); + exit; } if ($trunk_sync) { @@ -3504,4 +3572,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3509,4 +3578,5 @@ main_window_url => $main_window_url, ); + exit; } if ($trunk_switch) { @@ -3523,4 +3593,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3528,4 +3599,5 @@ main_window_url => $main_window_url, ); + exit; } @@ -3538,9 +3610,10 @@ vcs_menu( ck_auth => $ck_auth, - vcs_command => 'tag', + vcs_command => 'branch', module_name => $module_name, repo_name => $repo_name, repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3548,4 +3621,5 @@ main_window_url => $main_window_url, ); + exit; } if ($remove_branch) { @@ -3557,9 +3631,10 @@ vcs_menu( ck_auth => $ck_auth, - vcs_command => 'tag', + vcs_command => 'branch', module_name => $module_name, repo_name => $repo_name, repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3567,4 +3642,5 @@ main_window_url => $main_window_url, ); + exit; } |
From: Rob H. <for...@us...> - 2003-06-01 10:01:07
|
Update of /cvsroot/sandweb/sandweb/templates In directory sc8-pr-cvs1:/tmp/cvs-serv1953/templates Modified Files: Tag: release-1_0-branch commit.html Log Message: hmm.. not sure if this'll need the submenu param or not, might as well pass it along. Index: commit.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/commit.html,v retrieving revision 1.21 retrieving revision 1.21.2.1 diff -U2 -r1.21 -r1.21.2.1 --- commit.html 26 Jan 2003 05:46:19 -0000 1.21 +++ commit.html 1 Jun 2003 10:01:04 -0000 1.21.2.1 @@ -12,4 +12,5 @@ <input type="hidden" name="repo_name" value="<TMPL_VAR NAME=REPO_NAME>"> <input type="hidden" name="repo_password" value="<TMPL_VAR NAME=REPO_PASSWORD>"> + <input type="hidden" name="submenu" value="<TMPL_VAR NAME=SUBMENU>"> <input name="Submit" value="1" type="hidden"> <input type="text" name="message"> |
From: Rob H. <for...@us...> - 2003-06-01 09:57:26
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory sc8-pr-cvs1:/tmp/cvs-serv622/lib/SandWeb/Repository Modified Files: Tag: release-1_0-branch cvs.pm Log Message: oops, too many quotes around "$rev" in "-r $rev" for update CVS command, caused the tag-sync to fail ( took me a while to figure that one out, it kept saying 'tag "foo" does not exist', I didn't realize it literally was saying quote foo quote :) Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.46.2.2 retrieving revision 1.46.2.3 diff -U2 -r1.46.2.2 -r1.46.2.3 --- cvs.pm 1 Jun 2003 07:45:56 -0000 1.46.2.2 +++ cvs.pm 1 Jun 2003 09:57:21 -0000 1.46.2.3 @@ -2323,5 +2323,5 @@ if ($clobber) { push @param, " -C" }; if ($directories) { push @param, " -d" }; - if ($rev) { push @param, " -r \\\"$rev\\\"" }; + if ($rev) { push @param, " -r $rev" }; if ($date) { push @param, " -D" }; if ($merge) { push @param, " -j" }; |
From: Rob H. <for...@us...> - 2003-06-01 09:53:36
|
Update of /cvsroot/sandweb/sandweb/bin In directory sc8-pr-cvs1:/tmp/cvs-serv32313/bin Modified Files: Tag: release-1_0-branch sandweb.cgi Log Message: cool, branch is working too :) Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.348.2.3 retrieving revision 1.348.2.4 diff -U2 -r1.348.2.3 -r1.348.2.4 --- sandweb.cgi 1 Jun 2003 09:27:03 -0000 1.348.2.3 +++ sandweb.cgi 1 Jun 2003 09:53:33 -0000 1.348.2.4 @@ -376,5 +376,8 @@ my $create_branch = $cgi->param('create_branch') || ''; my $remove_branch = $cgi->param('remove_branch') || ''; - if ($submit) { + + if (($submenu == 1) + && ($submenu_final != 1)){ + $log->debug("branch commit.."); branch_commit( ck_auth => $ck_auth, @@ -390,6 +393,9 @@ filename => \@filename, location => $location, + submenu_final => 1, ); - } else { + exit; + } elsif ($submenu_final != 1){ + $log->debug("branch menu.."); branch_menu( ck_auth => $ck_auth, @@ -399,6 +405,6 @@ location => $location, ); + exit; } - exit; } @@ -1921,5 +1927,8 @@ my @params_loop = (); # dereference params hash, turn into array - my @params_array = %$params; + my @params_array; + if ($params){ + @params_array = %$params; + } my $count = 0; @@ -2699,4 +2708,8 @@ $log->debug("Filename(s): @filename"); + if ( $vcs_command eq 'branch' ) { + $vcs_command = 'tag'; + } + if ( $vcs_command eq 'commit' ) { if ($message) { @@ -3461,4 +3474,5 @@ my $prev_url = "$ENV{'HTTP_REFERER'}"; my $submenu = $args{'submenu'} || ''; + my $submenu_final = $args{'submenu_final'} || ''; $log->debug("prev_url $prev_url"); my %return; @@ -3509,4 +3523,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3514,4 +3529,5 @@ main_window_url => $main_window_url, ); + exit; } if ($branch_switch) { @@ -3529,8 +3545,10 @@ filename => \@filename, submenu => $submenu, + submenu_final => $submenu_final, location => $location, params => \%params, main_window_url => $main_window_url, ); + exit; } if ($trunk_sync) { @@ -3546,4 +3564,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3551,4 +3570,5 @@ main_window_url => $main_window_url, ); + exit; } if ($trunk_switch) { @@ -3565,4 +3585,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3570,4 +3591,5 @@ main_window_url => $main_window_url, ); + exit; } @@ -3580,9 +3602,10 @@ vcs_menu( ck_auth => $ck_auth, - vcs_command => 'tag', + vcs_command => 'branch', module_name => $module_name, repo_name => $repo_name, repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3590,4 +3613,5 @@ main_window_url => $main_window_url, ); + exit; } if ($remove_branch) { @@ -3599,9 +3623,10 @@ vcs_menu( ck_auth => $ck_auth, - vcs_command => 'tag', + vcs_command => 'branch', module_name => $module_name, repo_name => $repo_name, repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3609,4 +3634,5 @@ main_window_url => $main_window_url, ); + exit; } |
From: Rob H. <for...@us...> - 2003-06-01 09:53:36
|
Update of /cvsroot/sandweb/sandweb/templates In directory sc8-pr-cvs1:/tmp/cvs-serv32313/templates Modified Files: Tag: release-1_0-branch branch.html Log Message: cool, branch is working too :) Index: branch.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/branch.html,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -U2 -r1.7 -r1.7.2.1 --- branch.html 13 Jan 2003 08:33:00 -0000 1.7 +++ branch.html 1 Jun 2003 09:53:33 -0000 1.7.2.1 @@ -6,4 +6,5 @@ <input type="hidden" name="vcs_command" value="branch"> <input type="hidden" name="main_window_url" value="<TMPL_VAR NAME=MAIN_WINDOW_URL>"> + <input type="hidden" name="submenu" value="1"> <TMPL_LOOP NAME="FILENAME_LOOP"> <input type="hidden" name="filename" value="<TMPL_VAR NAME=FILENAME>"> |
From: Rob H. <for...@us...> - 2003-06-01 09:27:11
|
Update of /cvsroot/sandweb/sandweb/templates In directory sc8-pr-cvs1:/tmp/cvs-serv25558/templates Modified Files: Tag: release-1_0-branch vcs.html Log Message: tag is working again! finally :) I ended up passing the params as a loop through the html ( params is a hash ), then picking up the array in the CGI and turning it back into a hash. sweet! Index: vcs.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/vcs.html,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -U2 -r1.10 -r1.10.2.1 --- vcs.html 22 Apr 2003 17:12:51 -0000 1.10 +++ vcs.html 1 Jun 2003 09:27:06 -0000 1.10.2.1 @@ -7,4 +7,5 @@ <input type="hidden" name="main_window_url" value="<TMPL_VAR NAME=MAIN_WINDOW_URL>"> <input type="hidden" name="submenu" value="<TMPL_VAR NAME=SUBMENU>"> + <input type="hidden" name="submenu_final" value="<TMPL_VAR NAME=SUBMENU_FINAL>"> Please enter VCS password : <br> @@ -12,4 +13,7 @@ <TMPL_LOOP NAME="FILENAME_LOOP"> <input type="hidden" name="filename" value="<TMPL_VAR NAME=FILENAME>"> + </TMPL_LOOP> + <TMPL_LOOP NAME="PARAMS_LOOP"> + <input type="hidden" name="params" value="<TMPL_VAR NAME=PARAMS>"> </TMPL_LOOP> <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>"> |
From: Rob H. <for...@us...> - 2003-06-01 09:27:11
|
Update of /cvsroot/sandweb/sandweb/bin In directory sc8-pr-cvs1:/tmp/cvs-serv25558/bin Modified Files: Tag: release-1_0-branch sandweb.cgi Log Message: tag is working again! finally :) I ended up passing the params as a loop through the html ( params is a hash ), then picking up the array in the CGI and turning it back into a hash. sweet! Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.348.2.2 retrieving revision 1.348.2.3 diff -U2 -r1.348.2.2 -r1.348.2.3 --- sandweb.cgi 1 Jun 2003 07:58:24 -0000 1.348.2.2 +++ sandweb.cgi 1 Jun 2003 09:27:03 -0000 1.348.2.3 @@ -239,6 +239,9 @@ # whether or not this is a submenu my $submenu = $cgi->param('submenu') || ''; + # whether or not this is the final submenu + my $submenu_final = $cgi->param('submenu_final') || ''; $log->debug("submenu: $submenu\n"); + $log->debug("submenu_final: $submenu_final\n"); $log->debug("action: $action - submit: $submit"); $log->debug("module_description: $module_description\n"); @@ -320,5 +323,12 @@ } + my %params; + + if ( $cgi->param('params')) { + %params = $cgi->param('params'), + } + if ( $vcs_command eq "tag" ) { + $log->debug("called tag.."); my $tag_sync = $cgi->param('tag_sync') || ''; my $tag_switch = $cgi->param('tag_switch') || ''; @@ -327,5 +337,7 @@ my $create_tag = $cgi->param('create_tag') || ''; my $remove_tag = $cgi->param('remove_tag') || ''; - if ($submenu) { + + if (($submenu == 1) + && ($submenu_final != 1)){ tag_commit( ck_auth => $ck_auth, @@ -342,7 +354,8 @@ location => $location, submenu => $submenu, + submenu_final => 1, ); exit; - } else { + } elsif ($submenu_final != 1){ tag_menu( ck_auth => $ck_auth, @@ -354,5 +367,4 @@ exit; } - exit; } @@ -396,4 +408,5 @@ vcs_command => $vcs_command, module_name => $module_name, + params => \%params, repo_name => $repo_name, repo_password => $repo_password, @@ -1903,6 +1916,10 @@ my $main_window_url = $args{'main_window_url'} || ''; my $submenu = $args{'submenu'} || ''; + my $submenu_final = $args{'submenu_final'} || ''; $log->debug("submenu in vcs_menu : $submenu"); my @filename_loop = (); + my @params_loop = (); + # dereference params hash, turn into array + my @params_array = %$params; my $count = 0; @@ -1930,4 +1947,22 @@ } + $count = 0; + while ( @params_array->[$count] ) { + # build loop to pass params through template + # + my %entry; + $entry{'PARAMS'} = @params_array->[$count]; + push (@params_loop, \%entry); + $count++; + } + + my @params= (); + $count = 0; + + while ( @params_array->[$count] ) { + push (@params, @params_array->[$count]); + $count++; + } + unless ( @filename || @filename eq '.' ) { $log->debug("no file was selected for vcs action"); @@ -1938,4 +1973,5 @@ PROGNAME => $progname, SUBMENU => $submenu, + SUBMENU_FINAL => $submenu_final, OUTPUT => "Please select file(s) or folder(s) to perform vcs action on", ERROR => "No file(s) or folder(s) selected", @@ -1979,4 +2015,5 @@ LOCATION => $location, FILENAME_LOOP => \@filename_loop, + PARAMS_LOOP => \@params_loop, VCS_COMMAND => $vcs_command, VCS_MESSAGE => $vcs_message, @@ -1986,4 +2023,5 @@ IMAGE_DIR => $image_dir, SUBMENU => $submenu, + SUBMENU_FINAL => $submenu_final, ); print $cgi->header( -cookie => $ck_auth ); @@ -2583,8 +2621,10 @@ } + $log->debug("in vcs_commit"); $log->debug("module_name: $module_name"); $log->debug("username: $username"); $log->debug("location: $location"); $log->debug("main_window_url: $main_window_url"); + $log->debug("params: ".Dumper(%params)); my $repo_server = $user->get_repo_server(repo => $repo_name); @@ -3186,4 +3226,5 @@ my $repo_name = $args{'repo_name'}; my $submenu = $args{'submenu'} || ''; + my $submenu_final = $args{'submenu_final'} || ''; my $prev_url = "$ENV{'HTTP_REFERER'}"; $log->debug("prev_url $prev_url"); @@ -3197,4 +3238,5 @@ my $remove_tag = $args{'remove_tag'} || ''; + $log->debug("in tag_commit"); $log->debug("module_name: $module_name"); $log->debug("username: $username"); @@ -3234,4 +3276,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3253,4 +3296,5 @@ repo_name => $repo_name, submenu => $submenu, + submenu_final => $submenu_final, repo_password => $repo_password, filename => \@filename, @@ -3272,4 +3316,5 @@ repo_name => $repo_name, submenu => $submenu, + submenu_final => $submenu_final, repo_password => $repo_password, filename => \@filename, @@ -3293,4 +3338,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3307,4 +3353,5 @@ $log->debug("submenu passed from create_tag: $submenu"); + $log->debug("cvs params passed: $create_tag"); vcs_menu( ck_auth => $ck_auth, @@ -3314,4 +3361,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3334,4 +3382,5 @@ repo_password => $repo_password, submenu => $submenu, + submenu_final => $submenu_final, filename => \@filename, location => $location, @@ -3422,4 +3471,5 @@ my $remove_branch = $args{'remove_branch'} || ''; + $log->debug("in branch_commit"); $log->debug("module_name: $module_name"); $log->debug("username: $username"); |
From: Rob H. <for...@us...> - 2003-06-01 07:58:28
|
Update of /cvsroot/sandweb/sandweb/templates In directory sc8-pr-cvs1:/tmp/cvs-serv4034/templates Modified Files: Tag: release-1_0-branch vcs_output.html Log Message: copying submenu work (for tag bug) over from trunk Index: vcs_output.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/vcs_output.html,v retrieving revision 1.21 retrieving revision 1.21.2.1 diff -U2 -r1.21 -r1.21.2.1 --- vcs_output.html 16 Sep 2002 05:06:48 -0000 1.21 +++ vcs_output.html 1 Jun 2003 07:58:25 -0000 1.21.2.1 @@ -5,4 +5,5 @@ <br> <form> + <input name="<TMPL_VAR NAME=SUBMENU>" type="hidden"> <input name="<TMPL_VAR NAME=LOCATION>" type="hidden"> <input name="<TMPL_VAR NAME=FULLPATH>" type="hidden"> |
From: Rob H. <for...@us...> - 2003-06-01 07:58:28
|
Update of /cvsroot/sandweb/sandweb/bin In directory sc8-pr-cvs1:/tmp/cvs-serv4034/bin Modified Files: Tag: release-1_0-branch sandweb.cgi Log Message: copying submenu work (for tag bug) over from trunk Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.348.2.1 retrieving revision 1.348.2.2 diff -U2 -r1.348.2.1 -r1.348.2.2 --- sandweb.cgi 22 Apr 2003 17:55:40 -0000 1.348.2.1 +++ sandweb.cgi 1 Jun 2003 07:58:24 -0000 1.348.2.2 @@ -239,5 +239,6 @@ # whether or not this is a submenu my $submenu = $cgi->param('submenu') || ''; - + + $log->debug("submenu: $submenu\n"); $log->debug("action: $action - submit: $submit"); $log->debug("module_description: $module_description\n"); @@ -289,4 +290,5 @@ module_name => $module_name, module_description => $module_description, + submenu => $submenu, submit => $submit, ); @@ -339,4 +341,5 @@ filename => \@filename, location => $location, + submenu => $submenu, ); exit; @@ -406,4 +409,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -872,4 +876,5 @@ 'bindir' => $bindir, 'log_obj' => $log, + 'sandbox' => "$users_dir/$username/$repo_name/$module_name", ); @@ -951,5 +956,6 @@ LOCATION_LOOP => \@loop_data, ); - + + $log->debug("current_location: ".$location); my %browser = $browse->get_browser( 'location' => $location, @@ -1887,14 +1893,15 @@ my %args = @_; - my $ck_auth = $args{'ck_auth'} || ''; - my $location = $args{'location'} || ''; - my $module_name = $args{'module_name'} || ''; - my $repo_name = $args{'repo_name'} || ''; - my $repo_password = $args{'repo_password'} || ''; - my $vcs_command = $args{'vcs_command'} || ''; - my $vcs_message = $args{'message'} || ''; - my $params = $args{'params'} || ''; + my $ck_auth = $args{'ck_auth'}; + my $location = $args{'location'}; + my $module_name = $args{'module_name'}; + my $repo_name = $args{'repo_name'}; + my $repo_password = $args{'repo_password'}; + my $vcs_command = $args{'vcs_command'}; + my $vcs_message = $args{'message'}; + my $params = $args{'params'}; my $main_window_url = $args{'main_window_url'} || ''; my $submenu = $args{'submenu'} || ''; + $log->debug("submenu in vcs_menu : $submenu"); my @filename_loop = (); my $count = 0; @@ -1930,4 +1937,5 @@ FILENAME => '', PROGNAME => $progname, + SUBMENU => $submenu, OUTPUT => "Please select file(s) or folder(s) to perform vcs action on", ERROR => "No file(s) or folder(s) selected", @@ -2564,4 +2572,5 @@ my $main_window_url = $args{'main_window_url'}; my $params = $args{'params'} || ''; + my $submenu = $args{'submenu'} || ''; my %return; @@ -2609,4 +2618,5 @@ FILENAME => @filename, PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2665,4 +2675,5 @@ FILENAME => @filename, PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2688,4 +2699,5 @@ MODULE_NAME => $module_name, REPO_NAME => $repo_name, + SUBMENU => $submenu, FILENAME => "@filename", IMAGE_DIR => $image_dir, @@ -2722,4 +2734,5 @@ FILENAME => @filename, PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2746,4 +2759,5 @@ FILENAME => @filename, PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2798,4 +2812,5 @@ FILENAME => "@filename", PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2838,4 +2853,5 @@ my $module_description = $args{'module_description'}; my $submit = $args{'submit'}; + my $submenu = $args{'submenu'} || ''; my $repo_server = $user->get_repo_server(repo => $repo_name); @@ -2911,4 +2927,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => '', @@ -3168,4 +3185,5 @@ my $users_dir = $config->{'paths'}->{'users_dir'}; my $repo_name = $args{'repo_name'}; + my $submenu = $args{'submenu'} || ''; my $prev_url = "$ENV{'HTTP_REFERER'}"; $log->debug("prev_url $prev_url"); @@ -3215,4 +3233,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3233,4 +3252,5 @@ module_name => $module_name, repo_name => $repo_name, + submenu => $submenu, repo_password => $repo_password, filename => \@filename, @@ -3251,4 +3271,5 @@ module_name => $module_name, repo_name => $repo_name, + submenu => $submenu, repo_password => $repo_password, filename => \@filename, @@ -3271,4 +3292,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3284,4 +3306,5 @@ ); + $log->debug("submenu passed from create_tag: $submenu"); vcs_menu( ck_auth => $ck_auth, @@ -3290,4 +3313,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3309,4 +3333,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3386,4 +3411,5 @@ my $repo_name = $args{'repo_name'}; my $prev_url = "$ENV{'HTTP_REFERER'}"; + my $submenu = $args{'submenu'} || ''; $log->debug("prev_url $prev_url"); my %return; @@ -3432,4 +3458,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3451,4 +3478,5 @@ repo_password => $repo_password, filename => \@filename, + submenu => $submenu, location => $location, params => \%params, @@ -3467,4 +3495,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3485,4 +3514,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3504,4 +3534,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3522,4 +3553,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, |
From: Rob H. <for...@us...> - 2003-06-01 07:46:02
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory sc8-pr-cvs1:/tmp/cvs-serv1299/lib/SandWeb Modified Files: Tag: release-1_0-branch File.pm Log Message: "make test" now works on release branch too Index: File.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File.pm,v retrieving revision 1.64 retrieving revision 1.64.2.1 diff -U2 -r1.64 -r1.64.2.1 --- File.pm 14 Jan 2003 09:49:47 -0000 1.64 +++ File.pm 1 Jun 2003 07:45:55 -0000 1.64.2.1 @@ -757,5 +757,5 @@ my $return; - $log->debug("removing file : $location/$filename"); + #$log->debug("removing file : $location/$filename"); my $module = SandWeb::File::Unix->new( filename => $filename, |
From: Rob H. <for...@us...> - 2003-06-01 07:46:01
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/File In directory sc8-pr-cvs1:/tmp/cvs-serv1299/lib/SandWeb/File Modified Files: Tag: release-1_0-branch Unix.pm Log Message: "make test" now works on release branch too Index: Unix.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File/Unix.pm,v retrieving revision 1.11 retrieving revision 1.11.2.1 diff -U2 -r1.11 -r1.11.2.1 --- Unix.pm 14 Jan 2003 09:49:47 -0000 1.11 +++ Unix.pm 1 Jun 2003 07:45:55 -0000 1.11.2.1 @@ -784,5 +784,5 @@ my $return; - $log->debug("removing file : $location/$filename"); + #$log->debug("removing file : $location/$filename"); my $result = _shell( @@ -791,5 +791,5 @@ log_obj => $log, ); - $log->debug("error code : $result"); + #$log->debug("error code : $result"); if ($result) { |
From: Rob H. <for...@us...> - 2003-06-01 07:46:01
|
Update of /cvsroot/sandweb/sandweb/t In directory sc8-pr-cvs1:/tmp/cvs-serv1299/t Modified Files: Tag: release-1_0-branch repository.t Log Message: "make test" now works on release branch too Index: repository.t =================================================================== RCS file: /cvsroot/sandweb/sandweb/t/repository.t,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -U2 -r1.8 -r1.8.2.1 --- repository.t 14 Aug 2002 02:13:56 -0000 1.8 +++ repository.t 1 Jun 2003 07:45:56 -0000 1.8.2.1 @@ -27,4 +27,5 @@ 'sandbox' => "t/", 'cvs_bin' => "cvs", + 'users_dir' => "$path/t/", )); |
From: Rob H. <for...@us...> - 2003-06-01 07:46:01
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory sc8-pr-cvs1:/tmp/cvs-serv1299/lib/SandWeb/Repository Modified Files: Tag: release-1_0-branch cvs.pm Log Message: "make test" now works on release branch too Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.46.2.1 retrieving revision 1.46.2.2 diff -U2 -r1.46.2.1 -r1.46.2.2 --- cvs.pm 24 Apr 2003 18:20:53 -0000 1.46.2.1 +++ cvs.pm 1 Jun 2003 07:45:56 -0000 1.46.2.2 @@ -2601,5 +2601,5 @@ if ($file_obj) { - $log->debug("Deleting temporary file"); + #$log->debug("Deleting temporary file"); $file_obj->delete(); } |
From: Rob H. <for...@us...> - 2003-06-01 07:44:46
|
Update of /cvsroot/sandweb/sandweb/templates In directory sc8-pr-cvs1:/tmp/cvs-serv27382/templates Modified Files: vcs_output.html Log Message: more work on the whole tag w/out saved passwords bug :P still not working right but this is a step in the right direction. we *Really* need to make the menu stuff more generic, it's a huge pain in the ass right now. I'll tackle this after 1.0; for now I just want what we have to work :) (it's not that bad, just tedious to work with. too much copy/pasting to add or extend menus). Index: vcs_output.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/vcs_output.html,v retrieving revision 1.21 retrieving revision 1.22 diff -U2 -r1.21 -r1.22 --- vcs_output.html 16 Sep 2002 05:06:48 -0000 1.21 +++ vcs_output.html 1 Jun 2003 07:16:14 -0000 1.22 @@ -5,4 +5,5 @@ <br> <form> + <input name="<TMPL_VAR NAME=SUBMENU>" type="hidden"> <input name="<TMPL_VAR NAME=LOCATION>" type="hidden"> <input name="<TMPL_VAR NAME=FULLPATH>" type="hidden"> |
From: Rob H. <for...@us...> - 2003-06-01 07:44:45
|
Update of /cvsroot/sandweb/sandweb/bin In directory sc8-pr-cvs1:/tmp/cvs-serv27382/bin Modified Files: sandweb.cgi Log Message: more work on the whole tag w/out saved passwords bug :P still not working right but this is a step in the right direction. we *Really* need to make the menu stuff more generic, it's a huge pain in the ass right now. I'll tackle this after 1.0; for now I just want what we have to work :) (it's not that bad, just tedious to work with. too much copy/pasting to add or extend menus). Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.351 retrieving revision 1.352 diff -U2 -r1.351 -r1.352 --- sandweb.cgi 23 Apr 2003 22:45:47 -0000 1.351 +++ sandweb.cgi 1 Jun 2003 07:16:13 -0000 1.352 @@ -242,5 +242,6 @@ # whether or not this is a submenu my $submenu = $cgi->param('submenu') || ''; - + + $log->debug("submenu: $submenu\n"); $log->debug("action: $action - submit: $submit"); $log->debug("module_description: $module_description\n"); @@ -292,4 +293,5 @@ module_name => $module_name, module_description => $module_description, + submenu => $submenu, submit => $submit, ); @@ -342,4 +344,5 @@ filename => \@filename, location => $location, + submenu => $submenu, ); exit; @@ -409,4 +412,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -1907,4 +1911,5 @@ my $main_window_url = $args{'main_window_url'} || ''; my $submenu = $args{'submenu'} || ''; + $log->debug("submenu in vcs_menu : $submenu"); my @filename_loop = (); my $count = 0; @@ -1940,4 +1945,5 @@ FILENAME => '', PROGNAME => $progname, + SUBMENU => $submenu, OUTPUT => "Please select file(s) or folder(s) to perform vcs action on", ERROR => "No file(s) or folder(s) selected", @@ -2574,4 +2580,5 @@ my $main_window_url = $args{'main_window_url'}; my $params = $args{'params'} || ''; + my $submenu = $args{'submenu'} || ''; my %return; @@ -2619,4 +2626,5 @@ FILENAME => @filename, PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2675,4 +2683,5 @@ FILENAME => @filename, PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2698,4 +2707,5 @@ MODULE_NAME => $module_name, REPO_NAME => $repo_name, + SUBMENU => $submenu, FILENAME => "@filename", IMAGE_DIR => $image_dir, @@ -2732,4 +2742,5 @@ FILENAME => @filename, PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2756,4 +2767,5 @@ FILENAME => @filename, PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2808,4 +2820,5 @@ FILENAME => "@filename", PROGNAME => $progname, + SUBMENU => $submenu, VCS_OUTPUT => join('', @vcs_output), VCS_ERROR => join('', @vcs_error), @@ -2848,4 +2861,5 @@ my $module_description = $args{'module_description'}; my $submit = $args{'submit'}; + my $submenu = $args{'submenu'} || ''; my $repo_server = $user->get_repo_server(repo => $repo_name); @@ -2921,4 +2935,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => '', @@ -3178,4 +3193,5 @@ my $users_dir = $config->{'paths'}->{'users_dir'}; my $repo_name = $args{'repo_name'}; + my $submenu = $args{'submenu'} || ''; my $prev_url = "$ENV{'HTTP_REFERER'}"; $log->debug("prev_url $prev_url"); @@ -3225,4 +3241,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3243,4 +3260,5 @@ module_name => $module_name, repo_name => $repo_name, + submenu => $submenu, repo_password => $repo_password, filename => \@filename, @@ -3261,4 +3279,5 @@ module_name => $module_name, repo_name => $repo_name, + submenu => $submenu, repo_password => $repo_password, filename => \@filename, @@ -3281,4 +3300,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3294,4 +3314,5 @@ ); + $log->debug("submenu passed from create_tag: $submenu"); vcs_menu( ck_auth => $ck_auth, @@ -3300,4 +3321,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3319,4 +3341,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3396,4 +3419,5 @@ my $repo_name = $args{'repo_name'}; my $prev_url = "$ENV{'HTTP_REFERER'}"; + my $submenu = $args{'submenu'} || ''; $log->debug("prev_url $prev_url"); my %return; @@ -3442,4 +3466,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3461,4 +3486,5 @@ repo_password => $repo_password, filename => \@filename, + submenu => $submenu, location => $location, params => \%params, @@ -3477,4 +3503,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3495,4 +3522,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3514,4 +3542,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, @@ -3532,4 +3561,5 @@ repo_name => $repo_name, repo_password => $repo_password, + submenu => $submenu, filename => \@filename, location => $location, |
From: Rob H. <for...@us...> - 2003-06-01 07:43:22
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory sc8-pr-cvs1:/tmp/cvs-serv31475/lib/SandWeb Modified Files: File.pm Log Message: "make test" works now. had some problem with debug statements in the pm files i modified, just commented out the debug for now ( will revisit later ) Index: File.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File.pm,v retrieving revision 1.64 retrieving revision 1.65 diff -U2 -r1.64 -r1.65 --- File.pm 14 Jan 2003 09:49:47 -0000 1.64 +++ File.pm 1 Jun 2003 07:35:11 -0000 1.65 @@ -757,5 +757,5 @@ my $return; - $log->debug("removing file : $location/$filename"); + #$log->debug("removing file : $location/$filename"); my $module = SandWeb::File::Unix->new( filename => $filename, |
From: Rob H. <for...@us...> - 2003-06-01 07:43:21
|
Update of /cvsroot/sandweb/sandweb/t In directory sc8-pr-cvs1:/tmp/cvs-serv31475/t Modified Files: repository.t Log Message: "make test" works now. had some problem with debug statements in the pm files i modified, just commented out the debug for now ( will revisit later ) Index: repository.t =================================================================== RCS file: /cvsroot/sandweb/sandweb/t/repository.t,v retrieving revision 1.8 retrieving revision 1.9 diff -U2 -r1.8 -r1.9 --- repository.t 14 Aug 2002 02:13:56 -0000 1.8 +++ repository.t 1 Jun 2003 07:35:11 -0000 1.9 @@ -27,4 +27,5 @@ 'sandbox' => "t/", 'cvs_bin' => "cvs", + 'users_dir' => "$path/t/", )); |
From: Rob H. <for...@us...> - 2003-06-01 07:43:04
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/File In directory sc8-pr-cvs1:/tmp/cvs-serv31475/lib/SandWeb/File Modified Files: Unix.pm Log Message: "make test" works now. had some problem with debug statements in the pm files i modified, just commented out the debug for now ( will revisit later ) Index: Unix.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File/Unix.pm,v retrieving revision 1.11 retrieving revision 1.12 diff -U2 -r1.11 -r1.12 --- Unix.pm 14 Jan 2003 09:49:47 -0000 1.11 +++ Unix.pm 1 Jun 2003 07:35:11 -0000 1.12 @@ -784,5 +784,5 @@ my $return; - $log->debug("removing file : $location/$filename"); + #$log->debug("removing file : $location/$filename"); my $result = _shell( @@ -791,5 +791,5 @@ log_obj => $log, ); - $log->debug("error code : $result"); + #$log->debug("error code : $result"); if ($result) { |
From: Rob H. <for...@us...> - 2003-06-01 07:43:04
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory sc8-pr-cvs1:/tmp/cvs-serv31475/lib/SandWeb/Repository Modified Files: cvs.pm Log Message: "make test" works now. had some problem with debug statements in the pm files i modified, just commented out the debug for now ( will revisit later ) Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.47 retrieving revision 1.48 diff -U2 -r1.47 -r1.48 --- cvs.pm 23 Apr 2003 20:36:34 -0000 1.47 +++ cvs.pm 1 Jun 2003 07:35:11 -0000 1.48 @@ -2602,5 +2602,5 @@ if ($file_obj) { - $log->debug("Deleting temporary file"); + #$log->debug("Deleting temporary file"); $file_obj->delete(); } |
From: Nick J. <nje...@us...> - 2003-04-24 18:42:38
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory sc8-pr-cvs1:/tmp/cvs-serv1714/lib/SandWeb Modified Files: Tag: release-1_0-branch Shell.pm Log Message: Merged system timeout bug and some formatting changes from HEAD. Index: Shell.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Shell.pm,v retrieving revision 1.32 retrieving revision 1.32.2.1 diff -U2 -r1.32 -r1.32.2.1 --- Shell.pm 1 Apr 2003 02:46:27 -0000 1.32 +++ Shell.pm 24 Apr 2003 18:42:33 -0000 1.32.2.1 @@ -162,5 +162,5 @@ # system_password is the user's password on the local box ( optional ) - my $system_timeout = $args{'system_timeout'} || ''; + my $system_timeout = $args{'system_timeout'} || 300; # users_dir is the user's SandWeb home directory ( required ) @@ -288,11 +288,10 @@ my %return = ( - output => "$output", - error => "$error_message", - ); - - return %return; - } + output => "$output", + error => "$error_message", + ); + return %return; + } $error = $?/256; @@ -313,8 +312,7 @@ if ( "$@" ) { - my $output = ""; my $error_message = "Timeout reached of $system_timeout seconds reached, operation aborted.\n"; - + my %return = ( output => "$output", @@ -324,11 +322,11 @@ return %return; } - + $error = $?/256; - $raw_output =~ s/^M/\n/g; - my @lined_output = split(/\n/, $raw_output); - shift @lined_output; - shift @lined_output; - $output = join('', @lined_output); + $raw_output =~ s/^M/\n/g; + my @lined_output = split(/\n/, $raw_output); + shift @lined_output; + shift @lined_output; + $output = join('', @lined_output); } } elsif ( $vcs ) { @@ -376,11 +374,12 @@ } + $raw_output =~ s/^M/\n/g; + my @lined_output = split(/\n/, $raw_output); + shift @lined_output; - $raw_output =~ s/^M/\n/g; - my @lined_output = split(/\n/, $raw_output); - shift @lined_output; - if ( "@lined_output" =~ "'s password:" ) { + if ( "@lined_output" =~ "'s password:" ) { shift @lined_output; } + if ( "@lined_output" =~ "^RSA key fingerprint is" ) { shift @lined_output; @@ -392,5 +391,5 @@ shift @lined_output; } - $output = join('', @lined_output); + $output = join('', @lined_output); } else { if ($log) { @@ -479,5 +478,5 @@ my %args = @_; - my $system_timeout = $self{'system_timeout'}; + my $system_timeout = $self->{'system_timeout'}; my $log = $self->{'log'} || ''; |
From: Nick J. <nje...@us...> - 2003-04-24 18:40:33
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory sc8-pr-cvs1:/tmp/cvs-serv658/lib/SandWeb Modified Files: Tag: release-1_0-branch Config.pm Log Message: Merged syntax fixes from HEAD (For Perl 5.8). Index: Config.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Config.pm,v retrieving revision 1.35 retrieving revision 1.35.2.1 diff -U2 -r1.35 -r1.35.2.1 --- Config.pm 14 Jan 2003 09:49:47 -0000 1.35 +++ Config.pm 24 Apr 2003 18:40:24 -0000 1.35.2.1 @@ -350,6 +350,6 @@ my %data = (); - $data{'personal'} = ( %$self->{'personal'} ); - $data{'repo'} = ( %$self->{'repo'} ); + $data{'personal'} = $self->{'personal'}; + $data{'repo'} = $self->{'repo'}; open(F, ">$config_dir/$config_file") or |
From: Nick J. <nje...@us...> - 2003-04-24 18:38:26
|
Update of /cvsroot/sandweb/sandweb/tools In directory sc8-pr-cvs1:/tmp/cvs-serv32241/tools Modified Files: Tag: release-1_0-branch install_script.pl Log Message: Merged change from HEAD. Index: install_script.pl =================================================================== RCS file: /cvsroot/sandweb/sandweb/tools/install_script.pl,v retrieving revision 1.22 retrieving revision 1.22.2.1 diff -U2 -r1.22 -r1.22.2.1 --- install_script.pl 1 Apr 2003 01:21:40 -0000 1.22 +++ install_script.pl 24 Apr 2003 18:38:21 -0000 1.22.2.1 @@ -136,7 +136,7 @@ print "sandweb.cgi, "; system('tools/change-entry.pl', "$bindir/sandweb-admin", "config_dir = '../etc'", "config_dir = '$cfgdir'"); -print "sandweb-admin\n"; +print "sandweb-admin, "; system('tools/change-entry.pl', "$bindir/sandweb-expect", "#!expect", "#!$expectbin"); -print "sandweb-expect\n"; +print "sandweb-expect.\n"; # set execute permissions for scripts |
From: Nick J. <nje...@us...> - 2003-04-24 18:28:42
|
Update of /cvsroot/sandweb/sandweb In directory sc8-pr-cvs1:/tmp/cvs-serv27035 Modified Files: Tag: release-1_0-branch Makefile.PL Log Message: Added perl CGI.pm dependancy merged from HEAD. Index: Makefile.PL =================================================================== RCS file: /cvsroot/sandweb/sandweb/Makefile.PL,v retrieving revision 1.12 retrieving revision 1.12.2.1 diff -U2 -r1.12 -r1.12.2.1 --- Makefile.PL 28 Mar 2002 04:46:59 -0000 1.12 +++ Makefile.PL 24 Apr 2003 18:28:37 -0000 1.12.2.1 @@ -20,4 +20,5 @@ 'HTML::Template' => '2.2', 'Digest::MD5' => '0', + 'CGI' => '0', }, |
From: Nick J. <nje...@us...> - 2003-04-24 18:20:58
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory sc8-pr-cvs1:/tmp/cvs-serv23220/lib/SandWeb/Repository Modified Files: Tag: release-1_0-branch cvs.pm Log Message: Minor syntax fix. Merged from HEAD. Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.46 retrieving revision 1.46.2.1 diff -U2 -r1.46 -r1.46.2.1 --- cvs.pm 1 Apr 2003 02:46:27 -0000 1.46 +++ cvs.pm 24 Apr 2003 18:20:53 -0000 1.46.2.1 @@ -715,5 +715,5 @@ 'file_obj' => $file_obj, ); - }; + } if ($output) { |
From: Nick J. <nje...@us...> - 2003-04-24 01:39:33
|
Update of /cvsroot/sandweb/sandweb/images In directory sc8-pr-cvs1:/tmp/cvs-serv14200 Modified Files: create_folder.png create_folder.xcf delete.png delete.xcf go.png go.xcf rename.png rename.xcf upload.png upload.xcf Added Files: no.png no.xcf yes.png yes.xcf Log Message: new images --- NEW FILE --- PNG OÂgM-&ö>áJÀ?K'-sâV8ïÜ --- NEW FILE --- gimp xcf file ÿùáõúÒÒáÿÿ÷áÒ×ÿðÒÒáÿÿõáÒÒðÿÿðÒÒáÿÿûáÒÒðÿÿûðÒÒáÿÿûáÒÒðÿÿõæÒÒáÿÿáÒÒðÿÿ÷áÒÒááÒÒðÿÿþáÒÒþðÿ ÿû×ÒÒÜÿ ÿþáÒÒþáÿÿ÷áÒÒððÒÒáÿÿõáÒÒðÿÿðÒÒëÿÿûáÒÒðÿÿûðÒÒðÿÿûáÒÒðÿÿõæÒÒðÿÿáÒÒðÿÿ÷áÒÒðõÒÒðÿÿùáÒ×ÿððÿ ÿþæúüÿªUÿ ÿùUÇã ÿû ÿþU ÿþrãüÿªUÿ ÿùUÇã ÿû ÿþU ÿþrãû7ÿ ÿÿË --- NEW FILE --- PNG 4Eþ¡GAÖ$v¼2ÚWyGÖ~óó<2×£ÊYýY2éSÚÓK}G2¾÷{-+WJ)Xð¾^é×&w´JÀ5_ÍKpÌÐW¤:ñÒK}^´séÆ[H1ó FjwÖMU³ÝÔ¿7hPiôClÀ9wÓ«zÌØÆtÝ¡mªd\pd*aSx]ð©)uJ(ÎÕeãÜõ --- NEW FILE --- gimp xcf file ÿþÇ ÿúã ÿþr ÿþÇ ÿþã ÿþõÒÒþæÿ ÿúú×ÒÒáÿÿúÜÒÒ×úÿ ÿþæÒÒþúÿ ÿþõÒÒþðÿÿû×ÒÒæÿÿûáÒÒÜÿÿúðÒÒ×úÿÿöúõÿÿú×ÒÒðÿÿúáÒÒúÿÒÒþáÿÿþðÒÒúëðÒÒ×ÿÿþúÒÒ×ÒþõÿÿÒþæÿ ÿÒþ×ÿ ÿþúÒÒþõÿÿûæÒÒáÿ ÿúÿÿüãªãÿÿúÇ9 ÿþÇ ÿúã ÿþr ÿþÇ ÿþã Index: create_folder.png =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/create_folder.png,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvs4xlXCt and /tmp/cvsechq0M differ Index: create_folder.xcf =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/create_folder.xcf,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvsENeTZv and /tmp/cvsUVCGFR differ Index: delete.png =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/delete.png,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvsFjPfGy and /tmp/cvsIm0H8W differ Index: delete.xcf =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/delete.xcf,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvsWt4OOz and /tmp/cvsc9fZlZ differ Index: go.png =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/go.png,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvszFOaPy and /tmp/cvsck6ysX differ Index: go.xcf =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/go.xcf,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvswTCbrC and /tmp/cvsgtwkO6 differ Index: rename.png =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/rename.png,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvsD69xxF and /tmp/cvsOxk5Pa differ Index: rename.xcf =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/rename.xcf,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvsy1yhEG and /tmp/cvsqcWmWc differ Index: upload.png =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/upload.png,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvstMIDJH and /tmp/cvsCHXYaf differ Index: upload.xcf =================================================================== RCS file: /cvsroot/sandweb/sandweb/images/upload.xcf,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 Binary files /tmp/cvsyIFEzK and /tmp/cvsIVvvbn differ |