From: Rob H. <for...@us...> - 2003-04-22 18:02:20
|
Update of /cvsroot/sandweb/sandweb/bin In directory sc8-pr-cvs1:/tmp/cvs-serv13568/bin Modified Files: sandweb.cgi Log Message: merged ongoing tag/branch fixage going on in the 1.0 branch Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.349 retrieving revision 1.350 diff -U2 -r1.349 -r1.350 --- sandweb.cgi 22 Apr 2003 17:40:20 -0000 1.349 +++ sandweb.cgi 22 Apr 2003 18:02:12 -0000 1.350 @@ -240,4 +240,6 @@ my $previous_url = $cgi->param('previous_url') || ''; my $main_window_url = $cgi->param('main_window_url') || ''; + # whether or not this is a submenu + my $submenu = $cgi->param('submenu') || ''; $log->debug("action: $action - submit: $submit"); @@ -326,5 +328,5 @@ my $create_tag = $cgi->param('create_tag') || ''; my $remove_tag = $cgi->param('remove_tag') || ''; - if ($submit) { + if ($submenu) { tag_commit( ck_auth => $ck_auth, @@ -1904,4 +1906,5 @@ my $params = $args{'params'}; my $main_window_url = $args{'main_window_url'} || ''; + my $submenu = $args{'submenu'} || ''; my @filename_loop = (); my $count = 0; @@ -1984,4 +1987,5 @@ MAIN_WINDOW_URL => $main_window_url, IMAGE_DIR => $image_dir, + SUBMENU => $submenu, ); print $cgi->header( -cookie => $ck_auth ); @@ -2527,5 +2531,5 @@ # vcs_commit # -# all browse VCS actions are caught by this subroutine, and dealt +# all VCS actions are caught by this subroutine, and dealt # with by calling the appropriate Repository method. # @@ -3226,4 +3230,5 @@ main_window_url => $main_window_url, ); + exit; } if ($tag_switch) { @@ -3244,4 +3249,5 @@ main_window_url => $main_window_url, ); + exit; } if ($trunk_sync) { @@ -3261,4 +3267,5 @@ main_window_url => $main_window_url, ); + exit; } if ($trunk_switch) { @@ -3279,4 +3286,5 @@ main_window_url => $main_window_url, ); + exit; } @@ -3297,4 +3305,5 @@ main_window_url => $main_window_url, ); + exit; } if ($remove_tag) { @@ -3315,4 +3324,5 @@ main_window_url => $main_window_url, ); + exit; } |