From: Rob H. <for...@us...> - 2001-12-18 09:07:41
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv17511/lib/SandWeb Modified Files: Repository.pm Log Message: multi-file VCS commands now work. fixed some other bugs throughout the program, mostly fallout from adding the file pulldown to the browse template. Index: Repository.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository.pm,v retrieving revision 1.14 retrieving revision 1.15 diff -U2 -r1.14 -r1.15 --- Repository.pm 2001/12/16 09:12:49 1.14 +++ Repository.pm 2001/12/18 09:07:38 1.15 @@ -429,13 +429,14 @@ my $sandbox = $self->get_sandbox(); my %return = {}; - my $vcs = SandWeb::Repository::CVS->new(root => $root, - sandbox => $sandbox, - ); - + my $vcs = SandWeb::Repository::CVS->new( + root => $root, + sandbox => $sandbox, + ); if ($repo_type eq 'CVS') { - %return = $vcs->status(verbose => $verbose, - recurse => $recurse, - file => $file, - ); + %return = $vcs->status( + verbose => $verbose, + recurse => $recurse, + file => $file, + ); } |