Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/webcommands.py @ 37363:d3a2344446e6
hgweb: don't include hidden revisions in /filelog/ view
This is a very crude way of doing it, but it seems to be working well
enough. The number of entries on the page won't be the usual maximum
number per page, but this is good enough for me.
Differential Revision: https://phab.mercurial-scm.org/D3122
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Wed, 04 Apr 2018 23:55:47 -0700 |
parents | f0b6fbea00cf |
children | 83d537162894 |
line wrap: on
line diff
--- a/mercurial/hgweb/webcommands.py Thu Apr 05 00:00:48 2018 -0700 +++ b/mercurial/hgweb/webcommands.py Wed Apr 04 23:55:47 2018 -0700 @@ -1058,7 +1058,9 @@ parity = paritygen(web.stripecount, offset=start - end) repo = web.repo - revs = fctx.filelog().revs(start, end - 1) + filelog = fctx.filelog() + revs = [filerev for filerev in filelog.revs(start, end - 1) + if filelog.linkrev(filerev) in repo] entries = [] diffstyle = web.config('web', 'style')