# Examine the RCS history and generate a list of recent changes.
# The data structure returned for each change is:
# {
- # id => # the RCSs id for this commit
+ # rev => # the RCSs id for this commit
# user => # name of user who made the change,
# committype => # either "web" or the name of the rcs,
# when => # time when the change was made,
$user =~ s/^\s*//;
push @ret, {
- id => $info->{"changeset"},
+ rev => $info->{"changeset"},
user => $user,
committype => "mercurial",
when => time - str2time($info->{"date"}),