changeset 7294:f933076a19fc

hgweb: pass more information about parent/child csets to templates
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Thu, 30 Oct 2008 09:46:45 +0100
parents 3549659450e6
children 66d0fc108044
files mercurial/hgweb/webutil.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/hgweb/webutil.py	Thu Oct 30 08:21:20 2008 +0100
+++ b/mercurial/hgweb/webutil.py	Thu Oct 30 09:46:45 2008 +0100
@@ -65,6 +65,9 @@
         return
     for s in siblings:
         d = {'node': hex(s.node()), 'rev': s.rev()}
+        d['user'] = s.user()
+        d['date'] = s.date()
+        d['description'] = s.description()
         if hasattr(s, 'path'):
             d['file'] = s.path()
         d.update(args)