# HG changeset patch # User Dirkjan Ochtman # Date 1225356405 -3600 # Node ID f933076a19fc0ff2be956de978f96f5650d542a9 # Parent 3549659450e6ecdf86fd64d1d28d9c1b774dcb7f hgweb: pass more information about parent/child csets to templates diff -r 3549659450e6 -r f933076a19fc mercurial/hgweb/webutil.py --- 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)