Show More
@@ -819,6 +819,8 b' class basefilectx(object):' | |||||
819 | return self._changectx.phase() |
|
819 | return self._changectx.phase() | |
820 | def phasestr(self): |
|
820 | def phasestr(self): | |
821 | return self._changectx.phasestr() |
|
821 | return self._changectx.phasestr() | |
|
822 | def obsolete(self): | |||
|
823 | return self._changectx.obsolete() | |||
822 | def manifest(self): |
|
824 | def manifest(self): | |
823 | return self._changectx.manifest() |
|
825 | return self._changectx.manifest() | |
824 | def changectx(self): |
|
826 | def changectx(self): |
@@ -361,6 +361,7 b' def commonentry(repo, ctx):' | |||||
361 | 'date': ctx.date(), |
|
361 | 'date': ctx.date(), | |
362 | 'extra': ctx.extra(), |
|
362 | 'extra': ctx.extra(), | |
363 | 'phase': ctx.phasestr(), |
|
363 | 'phase': ctx.phasestr(), | |
|
364 | 'obsolete': ctx.obsolete(), | |||
364 | 'branch': nodebranchnodefault(ctx), |
|
365 | 'branch': nodebranchnodefault(ctx), | |
365 | 'inbranch': nodeinbranch(repo, ctx), |
|
366 | 'inbranch': nodeinbranch(repo, ctx), | |
366 | 'branches': nodebranchdict(repo, ctx), |
|
367 | 'branches': nodebranchdict(repo, ctx), |
General Comments 0
You need to be logged in to leave comments.
Login now