|
@@ -40,7 +40,9 @@ begin
|
|
currentmsg:='';
|
|
currentmsg:='';
|
|
currentauthor:='';
|
|
currentauthor:='';
|
|
currentdate:='';
|
|
currentdate:='';
|
|
- currentrevision:='';
|
|
|
|
|
|
+ { get revision }
|
|
|
|
+ with entry as tdomelement do
|
|
|
|
+ currentrevision:=AttribStrings['revision'];
|
|
if entry.haschildnodes then
|
|
if entry.haschildnodes then
|
|
begin
|
|
begin
|
|
currentinfo:=entry.firstchild;
|
|
currentinfo:=entry.firstchild;
|
|
@@ -98,7 +100,11 @@ begin
|
|
currentdate:=copy(currentdate,1,16);
|
|
currentdate:=copy(currentdate,1,16);
|
|
{ replaced T }
|
|
{ replaced T }
|
|
currentdate[11]:=' ';
|
|
currentdate[11]:=' ';
|
|
- writeln(currentdate,' ',currentauthor);
|
|
|
|
|
|
+ write(currentdate,' ',currentauthor);
|
|
|
|
+ if currentrevision<>'' then
|
|
|
|
+ writeln(' r',currentrevision)
|
|
|
|
+ else
|
|
|
|
+ writeln;
|
|
writeln;
|
|
writeln;
|
|
{ search for common prefix }
|
|
{ search for common prefix }
|
|
maxequal:=65535;
|
|
maxequal:=65535;
|