comparison mercurial/hgweb/hgweb_mod.py @ 3401:3c8f0dc9a6d3

hgweb: add changeset description to file revision page
author Brendan Cully <brendan@kublai.com>
date Sat, 14 Oct 2006 16:27:51 -0700
parents be628f1cd3f4
children a004164dbeef
comparison
equal deleted inserted replaced
3400:be628f1cd3f4 3401:3c8f0dc9a6d3
359 mimetype=mt, 359 mimetype=mt,
360 rev=fctx.rev(), 360 rev=fctx.rev(),
361 node=hex(fctx.node()), 361 node=hex(fctx.node()),
362 author=fctx.user(), 362 author=fctx.user(),
363 date=fctx.date(), 363 date=fctx.date(),
364 desc=fctx.description(),
364 parent=self.siblings(fctx.parents()), 365 parent=self.siblings(fctx.parents()),
365 child=self.siblings(fctx.children()), 366 child=self.siblings(fctx.children()),
366 rename=self.renamelink(fl, n), 367 rename=self.renamelink(fl, n),
367 permissions=fctx.manifest().execf(f)) 368 permissions=fctx.manifest().execf(f))
368 369