comparison mercurial/hgweb/__init__.py @ 2328:f789602ba840

hgweb.manifest: revno of manifest and changelog aren't always the same In the v4l-dvb repo, the manifest revno and the changelog revno are not in sync. This happened because the same patch was applied to the same revision in two different branches, resulting in the same manifest text, with the same parents and so the first revision was reused. Since hgweb.manifest was assuming the revnos of the manifest and of the changelog were always the same, clicking on manifest -> bz2 in the v4l-dvb site would download the wrong revision. Use the linkrev to go from manifest revision to changelog revision. This still won't be perfect since the page will still talk about "manifest for changeset XYZ", where XYZ was the first changeset to have this manifest, which is not necessarily the same changeset that the user clicked to get to this page - but at least the contents will be the same.
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Sat, 20 May 2006 15:34:19 -0300
parents b832b6eb65ab
children eb08fb4d41e1
comparison
equal deleted inserted replaced
2327:185cb7fffbeb 2328:f789602ba840
517 man = self.repo.manifest 517 man = self.repo.manifest
518 mn = man.lookup(mnode) 518 mn = man.lookup(mnode)
519 mnode = hex(mn) 519 mnode = hex(mn)
520 mf = man.read(mn) 520 mf = man.read(mn)
521 rev = man.rev(mn) 521 rev = man.rev(mn)
522 node = self.repo.changelog.node(rev) 522 changerev = man.linkrev(mn)
523 node = self.repo.changelog.node(changerev)
523 mff = man.readflags(mn) 524 mff = man.readflags(mn)
524 525
525 files = {} 526 files = {}
526 527
527 p = path[1:] 528 p = path[1:]