Comments
Patch
@@ -837,7 +837,7 @@
end = min(count, start + revcount) # last rev on this page
parity = paritygen(web.stripecount, offset=start - end)
- def entries(latestonly, **map):
+ def entries(latestonly):
l = []
repo = web.repo
@@ -872,8 +872,8 @@
revnav = webutil.filerevnav(web.repo, fctx.path())
nav = revnav.gen(end - 1, revcount, count)
return tmpl("filelog", file=f, node=fctx.hex(), nav=nav,
- entries=lambda **x: entries(latestonly=False, **x),
- latestentry=lambda **x: entries(latestonly=True, **x),
+ entries=lambda **x: entries(latestonly=False),
+ latestentry=lambda **x: entries(latestonly=True),
revcount=revcount, morevars=morevars, lessvars=lessvars)
def archive(web, req, tmpl):