Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/hgweb.py @ 1574:32b091ce4026
[hgweb] More gitweb style related fixes
Fixed manifest link on tags page
Fixed changeset link on manifest page
author | Josef "Jeff" Sipek <jeffpc@optonline.net> |
---|---|
date | Mon, 05 Dec 2005 05:01:28 -0500 |
parents | 385b8872b8e3 |
children | 0a1cca912fda |
comparison
equal
deleted
inserted
replaced
1573:28305666f4c9 | 1574:32b091ce4026 |
---|---|
630 def entries(**map): | 630 def entries(**map): |
631 parity = 0 | 631 parity = 0 |
632 for k,n in i: | 632 for k,n in i: |
633 yield {"parity": parity, | 633 yield {"parity": parity, |
634 "tag": k, | 634 "tag": k, |
635 "manifest": hex(cl.read(n)[0]), | |
635 "date": cl.read(n)[2], | 636 "date": cl.read(n)[2], |
636 "node": hex(n)} | 637 "node": hex(n)} |
637 parity = 1 - parity | 638 parity = 1 - parity |
638 | 639 |
639 yield self.t("tags", | 640 yield self.t("tags", |