Index: ossp-pkg/shiela/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v rcsdiff -q -kk '-r1.34' '-r1.35' -u '/v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v' 2>/dev/null --- ChangeLog 2002/12/23 14:21:57 1.34 +++ ChangeLog 2002/12/23 14:33:55 1.35 @@ -14,7 +14,9 @@ *) 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. + information. Additionally the seperator character in the OSSP + shiela logfile was changed from a comma (",") to a bar ("|") + character in order to be more similar to CVSROOT/history. [Ralf S. Engelschall] *) Added "Setenv " configuration command to Index: ossp-pkg/shiela/shiela.pl RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v rcsdiff -q -kk '-r1.47' '-r1.48' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v' 2>/dev/null --- shiela.pl 2002/12/23 14:21:57 1.47 +++ shiela.pl 2002/12/23 14:33:55 1.48 @@ -859,15 +859,15 @@ foreach my $file (keys(%{$IN->{file}})) { my $e = $IN->{file}->{$file}; $O .= $IN->{handle}; - $O .= ",".$RT->{userid}; - $O .= ",".$file; - $O .= ",".$e->{oldrev}; - $O .= ",".$e->{newrev}; - $O .= ",".$e->{branch}; - $O .= ",".$e->{op}; - $O .= ",".$e->{keysub}; - $O .= ",".$e->{date}; - $O .= ",".$e->{delta}; + $O .= "|".$RT->{userid}; + $O .= "|".$file; + $O .= "|".$e->{oldrev}; + $O .= "|".$e->{newrev}; + $O .= "|".$e->{branch}; + $O .= "|".$e->{op}; + $O .= "|".$e->{keysub}; + $O .= "|".$e->{date}; + $O .= "|".$e->{delta}; $O .= "\n"; } my $io = new IO::File ">>".$RT->{historydb}