# HG changeset patch # User Dirkjan Ochtman # Date 2008-10-30 08:46:45 # Node ID f933076a19fc0ff2be956de978f96f5650d542a9 # Parent 3549659450e6ecdf86fd64d1d28d9c1b774dcb7f hgweb: pass more information about parent/child csets to templates diff --git a/mercurial/hgweb/webutil.py b/mercurial/hgweb/webutil.py --- a/mercurial/hgweb/webutil.py +++ b/mercurial/hgweb/webutil.py @@ -65,6 +65,9 @@ def siblings(siblings=[], hiderev=None, 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)