Check-in Number:
|
3048 | |
Date: |
2002-Dec-23 15:21:57 (local)
2002-Dec-23 14:21:57 (UTC) |
User: | rse |
Branch: | |
Comment: |
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. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/shiela/ChangeLog 1.33 -> 1.34
--- 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 <variable <value>" configuration command to
"Environment" configuration section which allows one to set
environment variables like PATH, etc. This especially allows now
|
|
ossp-pkg/shiela/shiela.pl 1.46 -> 1.47
--- 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};
|
|