Comments
Patch
@@ -974,12 +974,12 @@ def filelog(web, req, tmpl):
count = fctx.filerev() + 1
start = max(0, fctx.filerev() - revcount + 1) # first rev on this page
end = min(count, start + revcount) # last rev on this page
- parity = paritygen(web.stripecount, offset=start - end + 1)
+ parity = paritygen(web.stripecount, offset=start - end)
repo = web.repo
revs = fctx.filelog().revs(start, end - 1)
entries = []
- for i in reversed(revs):
+ for i in revs:
iterfctx = fctx.filectx(i)
entries.append(dict(
parity=next(parity),
@@ -987,6 +987,7 @@ def filelog(web, req, tmpl):
file=f,
rename=webutil.renamelink(iterfctx),
**webutil.commonentry(repo, iterfctx)))
+ entries.reverse()
latestentry = entries[:1]