From: Chris W. <la...@us...> - 2005-01-24 17:12:03
|
Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17967 Modified Files: Repository.pm Log Message: cosmetic (logging content changes, doc changes) Index: Repository.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Repository.pm,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Repository.pm 13 Jun 2004 02:05:31 -0000 1.20 --- Repository.pm 24 Jan 2005 17:11:54 -0000 1.21 *************** *** 155,160 **** }; if ( $@ ) { ! oi_error "Failed to add package [", $package->name, "] since ", ! "old version [", $old_package->version, "] was not ", "successfully removed: $@"; } --- 155,160 ---- }; if ( $@ ) { ! oi_error "Failed to add package '", $package->name, "' since ", ! "old version '", $old_package->version, "' was not ", "successfully removed: $@"; } *************** *** 256,260 **** my $ini_file = $self->repository_file; unless ( -f $ini_file ) { ! oi_error "Cannot read repository because file [$ini_file] ", "does not exist"; } --- 256,260 ---- my $ini_file = $self->repository_file; unless ( -f $ini_file ) { ! oi_error "Cannot read repository because file '$ini_file' ", "does not exist"; } *************** *** 314,319 **** "to the proper file. THIS MEANS YOU DO NOT ", "HAVE A VALID REPOSITORY FILE. Please rename ", ! "by hand the file [$tmp_ini_file] to ", ! "[$ini_file] and the system should function ", "ok. Renaming error: $!"; return $ini_file; --- 314,319 ---- "to the proper file. THIS MEANS YOU DO NOT ", "HAVE A VALID REPOSITORY FILE. Please rename ", ! "by hand the file '$tmp_ini_file' to ", ! "'$ini_file' and the system should function ", "ok. Renaming error: $!"; return $ini_file; *************** *** 335,339 **** my $repository = OpenInteract2::Repository->new( CTX->base_config ); ! # OR a handy shortcut my $repository = CTX->repository; --- 335,339 ---- my $repository = OpenInteract2::Repository->new( CTX->base_config ); ! # OR a handy shortcut once the setup actions have run my $repository = CTX->repository; *************** *** 518,529 **** package corresponding to C<$package_name> not found. - =head1 TO DO - - Nothing known. - - =head1 BUGS - - None known. - =head1 SEE ALSO --- 518,521 ---- |