Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/webutil.py @ 18426:01638b51df44
hgweb: ignore filtered revision in revnav
This changeset checks that a revision is known before adding it to the
navigation.
This will prevent traceback on filtered repository. This changeset result in an
incorrect behaviors, Navigation link may be dropped without any replacement.
However this bad navigation generation is much better than a crash
author | Pierre-Yves David <pierre-yves.david@logilab.fr> |
---|---|
date | Wed, 16 Jan 2013 14:19:28 +0100 |
parents | 6da1e979340a |
children | 7f769d3a8ad2 |
line wrap: on
line diff
--- a/mercurial/hgweb/webutil.py Thu Jan 10 19:29:48 2013 +0100 +++ b/mercurial/hgweb/webutil.py Wed Jan 16 14:19:28 2013 +0100 @@ -88,6 +88,8 @@ navbefore = [("(0)", self.hex(0))] navafter = [] for rev in targets: + if rev not in self._revlog: + continue if pos < rev < limit: navafter.append(("+%d" % f, self.hex(rev))) if 0 < rev < pos: