Mercurial > public > mercurial-scm > hg
comparison mercurial/hgweb/hgweb_mod.py @ 3391:defadc26e674
hgweb: add changeset description to annotate page
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Sat, 14 Oct 2006 15:28:45 -0700 |
parents | 80721b86a448 |
children | 17894d1d9eea |
comparison
equal
deleted
inserted
replaced
3390:a74addddd092 | 3391:defadc26e674 |
---|---|
391 path=_up(f), | 391 path=_up(f), |
392 rev=fctx.rev(), | 392 rev=fctx.rev(), |
393 node=hex(fctx.node()), | 393 node=hex(fctx.node()), |
394 author=fctx.user(), | 394 author=fctx.user(), |
395 date=fctx.date(), | 395 date=fctx.date(), |
396 desc=fctx.description(), | |
396 rename=self.renamelink(fl, n), | 397 rename=self.renamelink(fl, n), |
397 parent=self.siblings(fctx.parents(), file=f), | 398 parent=self.siblings(fctx.parents(), file=f), |
398 child=self.siblings(fctx.children(), file=f), | 399 child=self.siblings(fctx.children(), file=f), |
399 permissions=fctx.manifest().execf(f)) | 400 permissions=fctx.manifest().execf(f)) |
400 | 401 |