Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Manage/Website
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15564
Modified Files:
InstallPackage.pm
Log Message:
OIN-125: use package name + version when updating progress
Index: InstallPackage.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Manage/Website/InstallPackage.pm,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** InstallPackage.pm 2 Feb 2005 13:07:12 -0000 1.15
--- InstallPackage.pm 28 Feb 2005 02:03:10 -0000 1.16
***************
*** 51,54 ****
--- 51,55 ----
package_file => $package_file
});
+ my $full_package_name = $package->full_name;
my $repository = CTX->repository;
my $rep_package = $repository->fetch_package( $package->name );
***************
*** 92,96 ****
}
$self->notify_observers(
! progress => "Finished with installation of $package_file" );
$self->_add_status( \%status );
--- 93,97 ----
}
$self->notify_observers(
! progress => "Finished with installation of $full_package_name" );
$self->_add_status( \%status );
|