Merge branch 'master' into recentchanges
commit
0f95adbd1d
|
@ -37,7 +37,7 @@ sub rcs_recentchanges ($) {
|
||||||
# Examine the RCS history and generate a list of recent changes.
|
# Examine the RCS history and generate a list of recent changes.
|
||||||
# The data structure returned for each change is:
|
# 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,
|
# user => # name of user who made the change,
|
||||||
# committype => # either "web" or the name of the rcs,
|
# committype => # either "web" or the name of the rcs,
|
||||||
# when => # time when the change was made,
|
# when => # time when the change was made,
|
||||||
|
|
|
@ -407,7 +407,7 @@ sub rcs_recentchanges ($) { #{{{
|
||||||
}
|
}
|
||||||
|
|
||||||
push @rets, {
|
push @rets, {
|
||||||
id => $sha1,
|
rev => $sha1,
|
||||||
user => $user,
|
user => $user,
|
||||||
committype => $type,
|
committype => $type,
|
||||||
when => $when,
|
when => $when,
|
||||||
|
|
|
@ -139,7 +139,7 @@ sub rcs_recentchanges ($) { #{{{
|
||||||
$user =~ s/^\s*//;
|
$user =~ s/^\s*//;
|
||||||
|
|
||||||
push @ret, {
|
push @ret, {
|
||||||
id => $info->{"changeset"},
|
rev => $info->{"changeset"},
|
||||||
user => $user,
|
user => $user,
|
||||||
committype => "mercurial",
|
committype => "mercurial",
|
||||||
when => time - str2time($info->{"date"}),
|
when => time - str2time($info->{"date"}),
|
||||||
|
|
|
@ -438,7 +438,7 @@ sub rcs_recentchanges ($) { #{{{
|
||||||
}
|
}
|
||||||
|
|
||||||
push @ret, {
|
push @ret, {
|
||||||
id => $rev,
|
rev => $rev,
|
||||||
user => $user,
|
user => $user,
|
||||||
committype => $committype,
|
committype => $committype,
|
||||||
when => $when,
|
when => $when,
|
||||||
|
|
|
@ -204,7 +204,7 @@ sub rcs_recentchanges ($) { #{{{
|
||||||
} if length $file;
|
} if length $file;
|
||||||
}
|
}
|
||||||
push @ret, {
|
push @ret, {
|
||||||
id => $rev,
|
rev => $rev,
|
||||||
user => $user,
|
user => $user,
|
||||||
committype => $committype,
|
committype => $committype,
|
||||||
when => $when,
|
when => $when,
|
||||||
|
|
|
@ -146,7 +146,7 @@ sub rcs_recentchanges ($) {
|
||||||
} if length $file;
|
} if length $file;
|
||||||
}
|
}
|
||||||
push @ret, {
|
push @ret, {
|
||||||
id => $change,
|
rev => $change,
|
||||||
user => $user,
|
user => $user,
|
||||||
committype => $committype,
|
committype => $committype,
|
||||||
when => $when,
|
when => $when,
|
||||||
|
|
Loading…
Reference in New Issue