diff mercurial/hgweb.py @ 1575:0a1cca912fda

[hgweb] gitweb style: File annotate converted, file revision made more like the deafault style Namespace polution prevention (manifest vs. tagmanifest - shouldn't be a problem yet) File annotate updated File revision now has commit info
author Josef "Jeff" Sipek <jeffpc@optonline.net>
date Mon, 05 Dec 2005 07:07:40 -0500
parents 32b091ce4026
children 85803ec2daab
line wrap: on
line diff
--- a/mercurial/hgweb.py	Mon Dec 05 05:01:28 2005 -0500
+++ b/mercurial/hgweb.py	Mon Dec 05 07:07:40 2005 -0500
@@ -632,7 +632,7 @@
             for k,n in i:
                 yield {"parity": parity,
                        "tag": k,
-		       "manifest": hex(cl.read(n)[0]),
+		       "tagmanifest": hex(cl.read(n)[0]),
 		       "date": cl.read(n)[2],
                        "node": hex(n)}
                 parity = 1 - parity
@@ -668,7 +668,7 @@
                              tag = k,
                              node = hex(n),
                              date = t,
-                             manifest = hex(m))
+                             tagmanifest = hex(m))
                 parity = 1 - parity
         
         def changelist(**map):