Index: ossp-pkg/shiela/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v rcsdiff -q -kk '-r1.33' '-r1.34' -u '/v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v' 2>/dev/null --- ChangeLog 2002/12/23 14:08:38 1.33 +++ ChangeLog 2002/12/23 14:21:57 1.34 @@ -11,6 +11,12 @@ Changes between 1.0.3 and 1.0.4 (23-Dec-2002 to 23-Dec-2002): + *) Log also the user id of the committer in the OSSP shiela logfile + to remove the burden on foreign applications having to merge + the CVSROOT/history and the shiela logfile in order to get all + information. + [Ralf S. Engelschall] + *) Added "Setenv " configuration command to "Environment" configuration section which allows one to set environment variables like PATH, etc. This especially allows now Index: ossp-pkg/shiela/shiela.pl RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v rcsdiff -q -kk '-r1.46' '-r1.47' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v' 2>/dev/null --- shiela.pl 2002/12/23 14:08:38 1.46 +++ shiela.pl 2002/12/23 14:21:57 1.47 @@ -859,7 +859,8 @@ foreach my $file (keys(%{$IN->{file}})) { my $e = $IN->{file}->{$file}; $O .= $IN->{handle}; - $O .= ",$file"; + $O .= ",".$RT->{userid}; + $O .= ",".$file; $O .= ",".$e->{oldrev}; $O .= ",".$e->{newrev}; $O .= ",".$e->{branch};