author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
Thu, 30 Oct 2008 09:46:45 +0100 | |
changeset 7294 | f933076a19fc |
parent 7293 | 3549659450e6 |
child 7295 | 66d0fc108044 |
--- 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)