Check-in Number:
|
3050 | |
Date: |
2002-Dec-23 15:33:55 (local)
2002-Dec-23 14:33:55 (UTC) |
User: | rse |
Branch: | |
Comment: |
switch to bar character to be more similar to CVSROOT/history |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/shiela/ChangeLog 1.34 -> 1.35
--- 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 <variable <value>" configuration command to
|
|
ossp-pkg/shiela/shiela.pl 1.47 -> 1.48
--- 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}
|
|