# HG changeset patch # User Josef "Jeff" Sipek # Date 1124334208 18000 # Node ID 289975641886a1769fd7353753ed1295d74f65a1 # Parent 5d5ab159d19734b5154d178d5b65b828023cc0b6 hgweb: Changed annotate page to list format syntax diff -r 5d5ab159d197 -r 289975641886 mercurial/hgweb.py --- a/mercurial/hgweb.py Wed Aug 17 21:59:02 2005 -0500 +++ b/mercurial/hgweb.py Wed Aug 17 22:03:28 2005 -0500 @@ -487,13 +487,12 @@ parity = 1 - parity last = cnode - yield self.t("annotateline", - parity = parity, - node = hex(cnode), - rev = r, - author = name, - file = f, - line = l) + yield {"parity": parity, + "node": hex(cnode), + "rev": r, + "author": name, + "file": f, + "line": l} yield self.t("fileannotate", file = f, diff -r 5d5ab159d197 -r 289975641886 templates/fileannotate.tmpl --- a/templates/fileannotate.tmpl Wed Aug 17 21:59:02 2005 -0500 +++ b/templates/fileannotate.tmpl Wed Aug 17 22:03:28 2005 -0500 @@ -36,7 +36,7 @@
-#annotate# +#annotate%annotateline#
#footer#