mercurial/hgweb/hgweb_mod.py
changeset 3172 76ab39df0917
parent 3171 0d0d7317bbc8
child 3205 48395d2692de
--- a/mercurial/hgweb/hgweb_mod.py
+++ b/mercurial/hgweb/hgweb_mod.py
@@ -292,9 +292,12 @@ class hgweb(object):
 
         files = []
         mf = self.repo.manifest.read(changes[0])
+        parity = 0
         for f in changes[3]:
             files.append(self.t("filenodelink",
-                                filenode=hex(mf.get(f, nullid)), file=f))
+                                filenode=hex(mf.get(f, nullid)), file=f,
+                                parity=parity))
+            parity = 1 - parity
 
         def diff(**map):
             yield self.diff(p1, n, None)