templatekw.py
874 lines
| 32.3 KiB
| text/x-python
|
PythonLexer
/ mercurial / templatekw.py
Patrick Mezard
|
r10053 | # templatekw.py - common changeset template keywords | ||
# | ||||
# Copyright 2005-2009 Matt Mackall <mpm@selenic.com> | ||||
# | ||||
# This software may be used and distributed according to the terms of the | ||||
Matt Mackall
|
r10264 | # GNU General Public License version 2 or any later version. | ||
Patrick Mezard
|
r10053 | |||
Gregory Szorc
|
r25984 | from __future__ import absolute_import | ||
Yuya Nishihara
|
r31807 | from .i18n import _ | ||
Yuya Nishihara
|
r32656 | from .node import ( | ||
hex, | ||||
nullid, | ||||
Yuya Nishihara
|
r39832 | wdirid, | ||
wdirrev, | ||||
Yuya Nishihara
|
r32656 | ) | ||
Gregory Szorc
|
r25984 | from . import ( | ||
Yuya Nishihara
|
r38607 | diffutil, | ||
Yuya Nishihara
|
r28239 | encoding, | ||
Gregory Szorc
|
r25984 | error, | ||
hbisect, | ||||
Yuya Nishihara
|
r35213 | i18n, | ||
Boris Feld
|
r32879 | obsutil, | ||
Gregory Szorc
|
r25984 | patch, | ||
Pulkit Goyal
|
r32972 | pycompat, | ||
FUJIWARA Katsunori
|
r28539 | registrar, | ||
Gregory Szorc
|
r25984 | scmutil, | ||
Yuya Nishihara
|
r36939 | templateutil, | ||
Gregory Szorc
|
r25984 | util, | ||
) | ||||
Yuya Nishihara
|
r37102 | from .utils import ( | ||
stringutil, | ||||
) | ||||
Patrick Mezard
|
r10053 | |||
Yuya Nishihara
|
r36939 | _hybrid = templateutil.hybrid | ||
hybriddict = templateutil.hybriddict | ||||
hybridlist = templateutil.hybridlist | ||||
compatdict = templateutil.compatdict | ||||
compatlist = templateutil.compatlist | ||||
Yuya Nishihara
|
r37086 | _showcompatlist = templateutil._showcompatlist | ||
Yuya Nishihara
|
r36614 | def getlatesttags(context, mapping, pattern=None): | ||
Patrick Mezard
|
r10057 | '''return date, distance and name for the latest tag of rev''' | ||
Yuya Nishihara
|
r36614 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
cache = context.resource(mapping, 'cache') | ||||
Patrick Mezard
|
r10057 | |||
Matt Harbison
|
r26482 | cachename = 'latesttags' | ||
if pattern is not None: | ||||
cachename += '-' + pattern | ||||
Yuya Nishihara
|
r37102 | match = stringutil.stringmatcher(pattern)[2] | ||
Matt Harbison
|
r26482 | else: | ||
match = util.always | ||||
if cachename not in cache: | ||||
Patrick Mezard
|
r10057 | # Cache mapping from rev to a tuple with tag date, tag | ||
# distance and tag name | ||||
Matt Harbison
|
r26482 | cache[cachename] = {-1: (0, 0, ['null'])} | ||
latesttags = cache[cachename] | ||||
Patrick Mezard
|
r10057 | |||
rev = ctx.rev() | ||||
todo = [rev] | ||||
while todo: | ||||
rev = todo.pop() | ||||
if rev in latesttags: | ||||
continue | ||||
ctx = repo[rev] | ||||
Andrew Shadura
|
r20218 | tags = [t for t in ctx.tags() | ||
Matt Harbison
|
r26482 | if (repo.tagtype(t) and repo.tagtype(t) != 'local' | ||
and match(t))] | ||||
Patrick Mezard
|
r10057 | if tags: | ||
Matt Harbison
|
r25700 | latesttags[rev] = ctx.date()[0], 0, [t for t in sorted(tags)] | ||
Patrick Mezard
|
r10057 | continue | ||
try: | ||||
Martin von Zweigbergk
|
r33866 | ptags = [latesttags[p.rev()] for p in ctx.parents()] | ||
if len(ptags) > 1: | ||||
if ptags[0][2] == ptags[1][2]: | ||||
# The tuples are laid out so the right one can be found by | ||||
# comparison in this case. | ||||
pdate, pdist, ptag = max(ptags) | ||||
else: | ||||
def key(x): | ||||
changessincetag = len(repo.revs('only(%d, %s)', | ||||
ctx.rev(), x[2][0])) | ||||
# Smallest number of changes since tag wins. Date is | ||||
# used as tiebreaker. | ||||
return [-changessincetag, x[0]] | ||||
pdate, pdist, ptag = max(ptags, key=key) | ||||
else: | ||||
pdate, pdist, ptag = ptags[0] | ||||
Patrick Mezard
|
r10057 | except KeyError: | ||
# Cache miss - recurse | ||||
todo.append(rev) | ||||
todo.extend(p.rev() for p in ctx.parents()) | ||||
continue | ||||
latesttags[rev] = pdate, pdist + 1, ptag | ||||
return latesttags[rev] | ||||
Patrick Mezard
|
r10060 | def getrenamedfn(repo, endrev=None): | ||
rcache = {} | ||||
if endrev is None: | ||||
endrev = len(repo) | ||||
def getrenamed(fn, rev): | ||||
'''looks up all renames for a file (up to endrev) the first | ||||
time the file is given. It indexes on the changerev and only | ||||
parses the manifest if linkrev != changerev. | ||||
Returns rename info for fn at changerev rev.''' | ||||
if fn not in rcache: | ||||
rcache[fn] = {} | ||||
fl = repo.file(fn) | ||||
for i in fl: | ||||
lr = fl.linkrev(i) | ||||
renamed = fl.renamed(fl.node(i)) | ||||
Martin von Zweigbergk
|
r38185 | rcache[fn][lr] = renamed and renamed[0] | ||
Patrick Mezard
|
r10060 | if lr >= endrev: | ||
break | ||||
if rev in rcache[fn]: | ||||
return rcache[fn][rev] | ||||
# If linkrev != rev (i.e. rev not found in rcache) fallback to | ||||
# filectx logic. | ||||
try: | ||||
Martin von Zweigbergk
|
r38185 | renamed = repo[rev][fn].renamed() | ||
return renamed and renamed[0] | ||||
Patrick Mezard
|
r10060 | except error.LookupError: | ||
return None | ||||
return getrenamed | ||||
Yuya Nishihara
|
r35213 | def getlogcolumns(): | ||
"""Return a dict of log column labels""" | ||||
_ = pycompat.identity # temporarily disable gettext | ||||
# i18n: column positioning for "hg log" | ||||
columns = _('bookmark: %s\n' | ||||
'branch: %s\n' | ||||
'changeset: %s\n' | ||||
'copies: %s\n' | ||||
'date: %s\n' | ||||
'extra: %s=%s\n' | ||||
'files+: %s\n' | ||||
'files-: %s\n' | ||||
'files: %s\n' | ||||
'instability: %s\n' | ||||
'manifest: %s\n' | ||||
'obsolete: %s\n' | ||||
'parent: %s\n' | ||||
'phase: %s\n' | ||||
'summary: %s\n' | ||||
'tag: %s\n' | ||||
'user: %s\n') | ||||
return dict(zip([s.split(':', 1)[0] for s in columns.splitlines()], | ||||
i18n._(columns).splitlines(True))) | ||||
Yuya Nishihara
|
r40508 | # basic internal templates | ||
_changeidtmpl = '{rev}:{node|formatnode}' | ||||
Yuya Nishihara
|
r31171 | # default templates internally used for rendering of lists | ||
defaulttempl = { | ||||
Yuya Nishihara
|
r40508 | 'parent': _changeidtmpl + ' ', | ||
'manifest': _changeidtmpl, | ||||
Yuya Nishihara
|
r31171 | 'file_copy': '{name} ({source})', | ||
'envvar': '{key}={value}', | ||||
'extra': '{key}={value|stringescape}' | ||||
} | ||||
# filecopy is preserved for compatibility reasons | ||||
defaulttempl['filecopy'] = defaulttempl['file_copy'] | ||||
Yuya Nishihara
|
r36463 | # keywords are callables (see registrar.templatekeyword for details) | ||
FUJIWARA Katsunori
|
r28539 | keywords = {} | ||
templatekeyword = registrar.templatekeyword(keywords) | ||||
Yuya Nishihara
|
r36463 | @templatekeyword('author', requires={'ctx'}) | ||
def showauthor(context, mapping): | ||||
Yuya Nishihara
|
r38983 | """Alias for ``{user}``""" | ||
return showuser(context, mapping) | ||||
Patrick Mezard
|
r10054 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('bisect', requires={'repo', 'ctx'}) | ||
def showbisect(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """String. The changeset bisection status.""" | ||
Yuya Nishihara
|
r36531 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
"Yann E. MORIN"
|
r15155 | return hbisect.label(repo, ctx.node()) | ||
Yuya Nishihara
|
r36531 | @templatekeyword('branch', requires={'ctx'}) | ||
def showbranch(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """String. The name of the branch on which the changeset was | ||
Patrick Mezard
|
r13585 | committed. | ||
""" | ||||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
return ctx.branch() | ||||
Eric Eisner
|
r13156 | |||
Yuya Nishihara
|
r37086 | @templatekeyword('branches', requires={'ctx'}) | ||
Yuya Nishihara
|
r36609 | def showbranches(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. The name of the branch on which the | ||
Patrick Mezard
|
r13585 | changeset was committed. Will be empty if the branch name was | ||
Yuya Nishihara
|
r26437 | default. (DEPRECATED) | ||
Patrick Mezard
|
r13585 | """ | ||
Yuya Nishihara
|
r36609 | ctx = context.resource(mapping, 'ctx') | ||
branch = ctx.branch() | ||||
Patrick Mezard
|
r10054 | if branch != 'default': | ||
Yuya Nishihara
|
r36609 | return compatlist(context, mapping, 'branch', [branch], | ||
plural='branches') | ||||
return compatlist(context, mapping, 'branch', [], plural='branches') | ||||
Patrick Mezard
|
r10054 | |||
Yuya Nishihara
|
r37087 | @templatekeyword('bookmarks', requires={'repo', 'ctx'}) | ||
Yuya Nishihara
|
r36616 | def showbookmarks(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. Any bookmarks associated with the | ||
Ryan McElroy
|
r25348 | changeset. Also sets 'active', the name of the active bookmark. | ||
Patrick Mezard
|
r13592 | """ | ||
Yuya Nishihara
|
r36616 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
bookmarks = ctx.bookmarks() | ||||
Ryan McElroy
|
r25348 | active = repo._activebookmark | ||
makemap = lambda v: {'bookmark': v, 'active': active, 'current': active} | ||||
Yuya Nishihara
|
r37087 | f = _showcompatlist(context, mapping, 'bookmark', bookmarks) | ||
Yuya Nishihara
|
r34329 | return _hybrid(f, bookmarks, makemap, pycompat.identity) | ||
David Soria Parra
|
r13386 | |||
Yuya Nishihara
|
r37086 | @templatekeyword('children', requires={'ctx'}) | ||
Yuya Nishihara
|
r36538 | def showchildren(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. The children of the changeset.""" | ||
Yuya Nishihara
|
r36538 | ctx = context.resource(mapping, 'ctx') | ||
Gregory Szorc
|
r36419 | childrevs = ['%d:%s' % (cctx.rev(), cctx) for cctx in ctx.children()] | ||
Yuya Nishihara
|
r36538 | return compatlist(context, mapping, 'children', childrevs, element='child') | ||
Jason Harris
|
r11655 | |||
Ryan McElroy
|
r25013 | # Deprecated, but kept alive for help generation a purpose. | ||
Yuya Nishihara
|
r36531 | @templatekeyword('currentbookmark', requires={'repo', 'ctx'}) | ||
def showcurrentbookmark(context, mapping): | ||||
Yuya Nishihara
|
r34657 | """String. The active bookmark, if it is associated with the changeset. | ||
(DEPRECATED)""" | ||||
Yuya Nishihara
|
r36531 | return showactivebookmark(context, mapping) | ||
Ryan McElroy
|
r25013 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('activebookmark', requires={'repo', 'ctx'}) | ||
def showactivebookmark(context, mapping): | ||||
Yuya Nishihara
|
r34657 | """String. The active bookmark, if it is associated with the changeset.""" | ||
Yuya Nishihara
|
r36531 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
active = repo._activebookmark | ||||
if active and active in ctx.bookmarks(): | ||||
Ryan McElroy
|
r25387 | return active | ||
FUJIWARA Katsunori
|
r21896 | return '' | ||
Yuya Nishihara
|
r36531 | @templatekeyword('date', requires={'ctx'}) | ||
def showdate(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """Date information. The date when the changeset was committed.""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
Yuya Nishihara
|
r38318 | # the default string format is '<float(unixtime)><tzoffset>' because | ||
# python-hglib splits date at decimal separator. | ||||
return templateutil.date(ctx.date(), showfmt='%d.0%d') | ||||
Patrick Mezard
|
r10054 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('desc', requires={'ctx'}) | ||
def showdescription(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """String. The text of the changeset description.""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
Yuya Nishihara
|
r28239 | s = ctx.description() | ||
if isinstance(s, encoding.localstr): | ||||
# try hard to preserve utf-8 bytes | ||||
return encoding.tolocal(encoding.fromlocal(s).strip()) | ||||
Yuya Nishihara
|
r37966 | elif isinstance(s, encoding.safelocalstr): | ||
return encoding.safelocalstr(s.strip()) | ||||
Yuya Nishihara
|
r28239 | else: | ||
return s.strip() | ||||
Patrick Mezard
|
r10054 | |||
Yuya Nishihara
|
r38602 | @templatekeyword('diffstat', requires={'ui', 'ctx'}) | ||
Yuya Nishihara
|
r36531 | def showdiffstat(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """String. Statistics of changes with the following format: | ||
Patrick Mezard
|
r13585 | "modified files: +added/-removed lines" | ||
""" | ||||
Yuya Nishihara
|
r38602 | ui = context.resource(mapping, 'ui') | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
Yuya Nishihara
|
r38606 | diffopts = diffutil.diffallopts(ui, {'noprefix': False}) | ||
Boris Feld
|
r38583 | diff = ctx.diff(opts=diffopts) | ||
Boris Feld
|
r38538 | stats = patch.diffstatdata(util.iterlines(diff)) | ||
Steven Brown
|
r14437 | maxname, maxtotal, adds, removes, binary = patch.diffstatsum(stats) | ||
Yuya Nishihara
|
r36517 | return '%d: +%d/-%d' % (len(stats), adds, removes) | ||
Patrick Mezard
|
r10055 | |||
Yuya Nishihara
|
r37086 | @templatekeyword('envvars', requires={'ui'}) | ||
Yuya Nishihara
|
r36537 | def showenvvars(context, mapping): | ||
Matt Harbison
|
r30833 | """A dictionary of environment variables. (EXPERIMENTAL)""" | ||
Yuya Nishihara
|
r36537 | ui = context.resource(mapping, 'ui') | ||
Yuya Nishihara
|
r36460 | env = ui.exportableenviron() | ||
Matt Harbison
|
r30833 | env = util.sortdict((k, env[k]) for k in sorted(env)) | ||
Yuya Nishihara
|
r36537 | return compatdict(context, mapping, 'envvar', env, plural='envvars') | ||
Matt Harbison
|
r30833 | |||
Yuya Nishihara
|
r37087 | @templatekeyword('extras', requires={'ctx'}) | ||
Yuya Nishihara
|
r36616 | def showextras(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of dicts with key, value entries of the 'extras' | ||
Matthew Turk
|
r20015 | field of this changeset.""" | ||
Yuya Nishihara
|
r36616 | ctx = context.resource(mapping, 'ctx') | ||
extras = ctx.extra() | ||||
Yuya Nishihara
|
r24237 | extras = util.sortdict((k, extras[k]) for k in sorted(extras)) | ||
Yuya Nishihara
|
r24238 | makemap = lambda k: {'key': k, 'value': extras[k]} | ||
c = [makemap(k) for k in extras] | ||||
Yuya Nishihara
|
r37087 | f = _showcompatlist(context, mapping, 'extra', c, plural='extras') | ||
Yuya Nishihara
|
r24239 | return _hybrid(f, extras, makemap, | ||
Yuya Nishihara
|
r37102 | lambda k: '%s=%s' % (k, stringutil.escapestr(extras[k]))) | ||
Patrick Mezard
|
r10054 | |||
Yuya Nishihara
|
r39635 | def _getfilestatus(context, mapping, listall=False): | ||
Yuya Nishihara
|
r36609 | ctx = context.resource(mapping, 'ctx') | ||
revcache = context.resource(mapping, 'revcache') | ||||
Yuya Nishihara
|
r39635 | if 'filestatus' not in revcache or revcache['filestatusall'] < listall: | ||
stat = ctx.p1().status(ctx, listignored=listall, listclean=listall, | ||||
listunknown=listall) | ||||
revcache['filestatus'] = stat | ||||
revcache['filestatusall'] = listall | ||||
Yuya Nishihara
|
r39634 | return revcache['filestatus'] | ||
Yuya Nishihara
|
r39633 | |||
Yuya Nishihara
|
r39636 | def _getfilestatusmap(context, mapping, listall=False): | ||
revcache = context.resource(mapping, 'revcache') | ||||
if 'filestatusmap' not in revcache or revcache['filestatusall'] < listall: | ||||
stat = _getfilestatus(context, mapping, listall=listall) | ||||
revcache['filestatusmap'] = statmap = {} | ||||
for char, files in zip(pycompat.iterbytestr('MAR!?IC'), stat): | ||||
statmap.update((f, char) for f in files) | ||||
return revcache['filestatusmap'] # {path: statchar} | ||||
Yuya Nishihara
|
r39633 | def _showfilesbystat(context, mapping, name, index): | ||
stat = _getfilestatus(context, mapping) | ||||
files = stat[index] | ||||
Yuya Nishihara
|
r39403 | return templateutil.compatfileslist(context, mapping, name, files) | ||
Yuya Nishihara
|
r36532 | |||
Martin von Zweigbergk
|
r38797 | @templatekeyword('file_adds', requires={'ctx', 'revcache'}) | ||
Yuya Nishihara
|
r36609 | def showfileadds(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. Files added by this changeset.""" | ||
Yuya Nishihara
|
r36609 | return _showfilesbystat(context, mapping, 'file_add', 1) | ||
Patrick Mezard
|
r10056 | |||
Yuya Nishihara
|
r36608 | @templatekeyword('file_copies', | ||
Yuya Nishihara
|
r37086 | requires={'repo', 'ctx', 'cache', 'revcache'}) | ||
Yuya Nishihara
|
r36608 | def showfilecopies(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. Files copied in this changeset with | ||
Patrick Mezard
|
r13585 | their sources. | ||
""" | ||||
Yuya Nishihara
|
r36608 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
cache = context.resource(mapping, 'cache') | ||||
copies = context.resource(mapping, 'revcache').get('copies') | ||||
Patrick Mezard
|
r10060 | if copies is None: | ||
if 'getrenamed' not in cache: | ||||
Yuya Nishihara
|
r36608 | cache['getrenamed'] = getrenamedfn(repo) | ||
Patrick Mezard
|
r10060 | copies = [] | ||
getrenamed = cache['getrenamed'] | ||||
for fn in ctx.files(): | ||||
rename = getrenamed(fn, ctx.rev()) | ||||
if rename: | ||||
Martin von Zweigbergk
|
r38185 | copies.append((fn, rename)) | ||
Yuya Nishihara
|
r39404 | return templateutil.compatfilecopiesdict(context, mapping, 'file_copy', | ||
copies) | ||||
Patrick Mezard
|
r10060 | |||
# showfilecopiesswitch() displays file copies only if copy records are | ||||
# provided before calling the templater, usually with a --copies | ||||
# command line switch. | ||||
Yuya Nishihara
|
r37086 | @templatekeyword('file_copies_switch', requires={'revcache'}) | ||
Yuya Nishihara
|
r36608 | def showfilecopiesswitch(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. Like "file_copies" but displayed | ||
Patrick Mezard
|
r13585 | only if the --copied switch is set. | ||
""" | ||||
Yuya Nishihara
|
r36608 | copies = context.resource(mapping, 'revcache').get('copies') or [] | ||
Yuya Nishihara
|
r39404 | return templateutil.compatfilecopiesdict(context, mapping, 'file_copy', | ||
copies) | ||||
Patrick Mezard
|
r10058 | |||
Martin von Zweigbergk
|
r38797 | @templatekeyword('file_dels', requires={'ctx', 'revcache'}) | ||
Yuya Nishihara
|
r36609 | def showfiledels(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. Files removed by this changeset.""" | ||
Yuya Nishihara
|
r36609 | return _showfilesbystat(context, mapping, 'file_del', 2) | ||
Patrick Mezard
|
r10056 | |||
Martin von Zweigbergk
|
r38797 | @templatekeyword('file_mods', requires={'ctx', 'revcache'}) | ||
Yuya Nishihara
|
r36609 | def showfilemods(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. Files modified by this changeset.""" | ||
Yuya Nishihara
|
r36609 | return _showfilesbystat(context, mapping, 'file_mod', 0) | ||
Patrick Mezard
|
r10056 | |||
Yuya Nishihara
|
r37086 | @templatekeyword('files', requires={'ctx'}) | ||
Yuya Nishihara
|
r36609 | def showfiles(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. All files modified, added, or removed by this | ||
Patrick Mezard
|
r13585 | changeset. | ||
""" | ||||
Yuya Nishihara
|
r36609 | ctx = context.resource(mapping, 'ctx') | ||
Yuya Nishihara
|
r39403 | return templateutil.compatfileslist(context, mapping, 'file', ctx.files()) | ||
Patrick Mezard
|
r10054 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('graphnode', requires={'repo', 'ctx'}) | ||
def showgraphnode(context, mapping): | ||||
Yuya Nishihara
|
r34657 | """String. The character representing the changeset node in an ASCII | ||
revision graph.""" | ||||
Yuya Nishihara
|
r36531 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
Yuya Nishihara
|
r36530 | return getgraphnode(repo, ctx) | ||
def getgraphnode(repo, ctx): | ||||
r37927 | return getgraphnodecurrent(repo, ctx) or getgraphnodesymbol(ctx) | |||
def getgraphnodecurrent(repo, ctx): | ||||
Yuya Nishihara
|
r27215 | wpnodes = repo.dirstate.parents() | ||
if wpnodes[1] == nullid: | ||||
wpnodes = wpnodes[:1] | ||||
Yuya Nishihara
|
r27214 | if ctx.node() in wpnodes: | ||
return '@' | ||||
r37927 | else: | |||
return '' | ||||
def getgraphnodesymbol(ctx): | ||||
if ctx.obsolete(): | ||||
Yuya Nishihara
|
r27214 | return 'x' | ||
r35524 | elif ctx.isunstable(): | |||
return '*' | ||||
Yuya Nishihara
|
r27214 | elif ctx.closesbranch(): | ||
return '_' | ||||
else: | ||||
return 'o' | ||||
Yuya Nishihara
|
r36531 | @templatekeyword('graphwidth', requires=()) | ||
def showgraphwidth(context, mapping): | ||||
Danny Hooper
|
r33860 | """Integer. The width of the graph drawn by 'log --graph' or zero.""" | ||
Yuya Nishihara
|
r36459 | # just hosts documentation; should be overridden by template mapping | ||
return 0 | ||||
Danny Hooper
|
r33860 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('index', requires=()) | ||
def showindex(context, mapping): | ||||
Yuya Nishihara
|
r31807 | """Integer. The current iteration of the loop. (0 indexed)""" | ||
# just hosts documentation; should be overridden by template mapping | ||||
raise error.Abort(_("can't use index in this context")) | ||||
Yuya Nishihara
|
r37087 | @templatekeyword('latesttag', requires={'repo', 'ctx', 'cache'}) | ||
Yuya Nishihara
|
r36614 | def showlatesttag(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. The global tags on the most recent globally | ||
Matt Harbison
|
r31850 | tagged ancestor of this changeset. If no such tags exist, the list | ||
consists of the single string "null". | ||||
Patrick Mezard
|
r13585 | """ | ||
Yuya Nishihara
|
r36614 | return showlatesttags(context, mapping, None) | ||
Patrick Mezard
|
r10057 | |||
Yuya Nishihara
|
r36614 | def showlatesttags(context, mapping, pattern): | ||
Matt Harbison
|
r26484 | """helper method for the latesttag keyword and function""" | ||
Yuya Nishihara
|
r36614 | latesttags = getlatesttags(context, mapping, pattern) | ||
Matt Harbison
|
r26484 | |||
# latesttag[0] is an implementation detail for sorting csets on different | ||||
# branches in a stable manner- it is the date the tagged cset was created, | ||||
# not the date the tag was created. Therefore it isn't made visible here. | ||||
makemap = lambda v: { | ||||
'changes': _showchangessincetag, | ||||
'distance': latesttags[1], | ||||
'latesttag': v, # BC with {latesttag % '{latesttag}'} | ||||
'tag': v | ||||
} | ||||
tags = latesttags[2] | ||||
Yuya Nishihara
|
r37087 | f = _showcompatlist(context, mapping, 'latesttag', tags, separator=':') | ||
Yuya Nishihara
|
r34329 | return _hybrid(f, tags, makemap, pycompat.identity) | ||
Matt Harbison
|
r26484 | |||
Yuya Nishihara
|
r36614 | @templatekeyword('latesttagdistance', requires={'repo', 'ctx', 'cache'}) | ||
def showlatesttagdistance(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """Integer. Longest path to the latest tag.""" | ||
Yuya Nishihara
|
r36614 | return getlatesttags(context, mapping)[1] | ||
Patrick Mezard
|
r10057 | |||
Yuya Nishihara
|
r36614 | @templatekeyword('changessincelatesttag', requires={'repo', 'ctx', 'cache'}) | ||
def showchangessincelatesttag(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """Integer. All ancestors not in the latest tag.""" | ||
Yuya Nishihara
|
r37092 | tag = getlatesttags(context, mapping)[2][0] | ||
mapping = context.overlaymap(mapping, {'tag': tag}) | ||||
Yuya Nishihara
|
r36614 | return _showchangessincetag(context, mapping) | ||
Matt Harbison
|
r26483 | |||
Yuya Nishihara
|
r36614 | def _showchangessincetag(context, mapping): | ||
repo = context.resource(mapping, 'repo') | ||||
ctx = context.resource(mapping, 'ctx') | ||||
Matt Harbison
|
r25724 | offset = 0 | ||
revs = [ctx.rev()] | ||||
Yuya Nishihara
|
r36614 | tag = context.symbol(mapping, 'tag') | ||
Matt Harbison
|
r25724 | |||
# The only() revset doesn't currently support wdir() | ||||
if ctx.rev() is None: | ||||
offset = 1 | ||||
revs = [p.rev() for p in ctx.parents()] | ||||
Matt Harbison
|
r26483 | return len(repo.revs('only(%ld, %s)', revs, tag)) + offset | ||
Matt Harbison
|
r25724 | |||
Yuya Nishihara
|
r36614 | # teach templater latesttags.changes is switched to (context, mapping) API | ||
_showchangessincetag._requires = {'repo', 'ctx'} | ||||
Yuya Nishihara
|
r37086 | @templatekeyword('manifest', requires={'repo', 'ctx'}) | ||
Yuya Nishihara
|
r36615 | def showmanifest(context, mapping): | ||
repo = context.resource(mapping, 'repo') | ||||
ctx = context.resource(mapping, 'ctx') | ||||
Yuya Nishihara
|
r24676 | mnode = ctx.manifestnode() | ||
Yuya Nishihara
|
r25736 | if mnode is None: | ||
Yuya Nishihara
|
r39832 | mnode = wdirid | ||
mrev = wdirrev | ||||
else: | ||||
mrev = repo.manifestlog.rev(mnode) | ||||
Yuya Nishihara
|
r34331 | mhex = hex(mnode) | ||
Yuya Nishihara
|
r37092 | mapping = context.overlaymap(mapping, {'rev': mrev, 'node': mhex}) | ||
Yuya Nishihara
|
r37086 | f = context.process('manifest', mapping) | ||
Yuya Nishihara
|
r38302 | return templateutil.hybriditem(f, None, f, | ||
lambda x: {'rev': mrev, 'node': mhex}) | ||||
Patrick Mezard
|
r10055 | |||
Yuya Nishihara
|
r37087 | @templatekeyword('obsfate', requires={'ui', 'repo', 'ctx'}) | ||
Yuya Nishihara
|
r36612 | def showobsfate(context, mapping): | ||
Boris Feld
|
r34848 | # this function returns a list containing pre-formatted obsfate strings. | ||
# | ||||
# This function will be replaced by templates fragments when we will have | ||||
# the verbosity templatekw available. | ||||
Yuya Nishihara
|
r36612 | succsandmarkers = showsuccsandmarkers(context, mapping) | ||
Boris Feld
|
r34848 | |||
Yuya Nishihara
|
r36612 | ui = context.resource(mapping, 'ui') | ||
Yuya Nishihara
|
r37344 | repo = context.resource(mapping, 'repo') | ||
Boris Feld
|
r34848 | values = [] | ||
Yuya Nishihara
|
r37521 | for x in succsandmarkers.tovalue(context, mapping): | ||
Yuya Nishihara
|
r37344 | v = obsutil.obsfateprinter(ui, repo, x['successors'], x['markers'], | ||
scmutil.formatchangeid) | ||||
values.append(v) | ||||
Boris Feld
|
r34848 | |||
Yuya Nishihara
|
r36612 | return compatlist(context, mapping, "fate", values) | ||
Boris Feld
|
r34848 | |||
Yuya Nishihara
|
r36611 | def shownames(context, mapping, namespace): | ||
Yuya Nishihara
|
r27893 | """helper method to generate a template keyword for a namespace""" | ||
Yuya Nishihara
|
r36611 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
Yuya Nishihara
|
r27893 | ns = repo.names[namespace] | ||
names = ns.names(repo, ctx.node()) | ||||
Yuya Nishihara
|
r36611 | return compatlist(context, mapping, ns.templatename, names, | ||
plural=namespace) | ||||
Yuya Nishihara
|
r27893 | |||
Yuya Nishihara
|
r37087 | @templatekeyword('namespaces', requires={'repo', 'ctx'}) | ||
Yuya Nishihara
|
r36611 | def shownamespaces(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """Dict of lists. Names attached to this changeset per | ||
Yuya Nishihara
|
r27894 | namespace.""" | ||
Yuya Nishihara
|
r36611 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
Gregory Szorc
|
r33047 | |||
namespaces = util.sortdict() | ||||
Yuya Nishihara
|
r34542 | def makensmapfn(ns): | ||
# 'name' for iterating over namespaces, templatename for local reference | ||||
return lambda v: {'name': v, ns.templatename: v} | ||||
Gregory Szorc
|
r33047 | |||
for k, ns in repo.names.iteritems(): | ||||
Yuya Nishihara
|
r34542 | names = ns.names(repo, ctx.node()) | ||
Yuya Nishihara
|
r37087 | f = _showcompatlist(context, mapping, 'name', names) | ||
Yuya Nishihara
|
r34542 | namespaces[k] = _hybrid(f, names, makensmapfn(ns), pycompat.identity) | ||
Gregory Szorc
|
r33047 | |||
Yuya Nishihara
|
r37087 | f = _showcompatlist(context, mapping, 'namespace', list(namespaces)) | ||
Gregory Szorc
|
r33047 | |||
def makemap(ns): | ||||
return { | ||||
'namespace': ns, | ||||
'names': namespaces[ns], | ||||
Yuya Nishihara
|
r34541 | 'builtin': repo.names[ns].builtin, | ||
'colorname': repo.names[ns].colorname, | ||||
Gregory Szorc
|
r33047 | } | ||
Yuya Nishihara
|
r34329 | return _hybrid(f, namespaces, makemap, pycompat.identity) | ||
Yuya Nishihara
|
r27894 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('node', requires={'ctx'}) | ||
def shownode(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """String. The changeset identification hash, as a 40 hexadecimal | ||
Patrick Mezard
|
r13585 | digit string. | ||
""" | ||||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
Patrick Mezard
|
r10054 | return ctx.hex() | ||
Yuya Nishihara
|
r36531 | @templatekeyword('obsolete', requires={'ctx'}) | ||
def showobsolete(context, mapping): | ||||
Yuya Nishihara
|
r34658 | """String. Whether the changeset is obsolete. (EXPERIMENTAL)""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
Denis Laxalde
|
r31699 | if ctx.obsolete(): | ||
return 'obsolete' | ||||
return '' | ||||
Yuya Nishihara
|
r39407 | @templatekeyword('path', requires={'fctx'}) | ||
def showpath(context, mapping): | ||||
"""String. Repository-absolute path of the current file. (EXPERIMENTAL)""" | ||||
fctx = context.resource(mapping, 'fctx') | ||||
return fctx.path() | ||||
Yuya Nishihara
|
r36531 | @templatekeyword('peerurls', requires={'repo'}) | ||
def showpeerurls(context, mapping): | ||||
Yuya Nishihara
|
r33414 | """A dictionary of repository locations defined in the [paths] section | ||
Yuya Nishihara
|
r34540 | of your configuration file.""" | ||
Yuya Nishihara
|
r36531 | repo = context.resource(mapping, 'repo') | ||
Yuya Nishihara
|
r33414 | # see commands.paths() for naming of dictionary keys | ||
Yuya Nishihara
|
r34539 | paths = repo.ui.paths | ||
urls = util.sortdict((k, p.rawloc) for k, p in sorted(paths.iteritems())) | ||||
def makemap(k): | ||||
p = paths[k] | ||||
d = {'name': k, 'url': p.rawloc} | ||||
Yuya Nishihara
|
r33414 | d.update((o, v) for o, v in sorted(p.suboptions.iteritems())) | ||
Yuya Nishihara
|
r34539 | return d | ||
return _hybrid(None, urls, makemap, lambda k: '%s=%s' % (k, urls[k])) | ||||
Yuya Nishihara
|
r33414 | |||
Yuya Nishihara
|
r36531 | @templatekeyword("predecessors", requires={'repo', 'ctx'}) | ||
def showpredecessors(context, mapping): | ||||
Yuya Nishihara
|
r34658 | """Returns the list if the closest visible successors. (EXPERIMENTAL)""" | ||
Yuya Nishihara
|
r36531 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
Boris Feld
|
r32879 | predecessors = sorted(obsutil.closestpredecessors(repo, ctx.node())) | ||
Yuya Nishihara
|
r38325 | predecessors = pycompat.maplist(hex, predecessors) | ||
Boris Feld
|
r32879 | |||
Yuya Nishihara
|
r32910 | return _hybrid(None, predecessors, | ||
Yuya Nishihara
|
r37121 | lambda x: {'ctx': repo[x]}, | ||
Yuya Nishihara
|
r34329 | lambda x: scmutil.formatchangeid(repo[x])) | ||
Boris Feld
|
r32879 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('reporoot', requires={'repo'}) | ||
def showreporoot(context, mapping): | ||||
Yuya Nishihara
|
r36261 | """String. The root directory of the current repository.""" | ||
Yuya Nishihara
|
r36531 | repo = context.resource(mapping, 'repo') | ||
Yuya Nishihara
|
r36261 | return repo.root | ||
Yuya Nishihara
|
r39623 | @templatekeyword('size', requires={'fctx'}) | ||
def showsize(context, mapping): | ||||
"""Integer. Size of the current file in bytes. (EXPERIMENTAL)""" | ||||
fctx = context.resource(mapping, 'fctx') | ||||
return fctx.size() | ||||
Yuya Nishihara
|
r39636 | # requires 'fctx' to denote {status} depends on (ctx, path) pair | ||
@templatekeyword('status', requires={'ctx', 'fctx', 'revcache'}) | ||||
def showstatus(context, mapping): | ||||
"""String. Status code of the current file. (EXPERIMENTAL)""" | ||||
path = templateutil.runsymbol(context, mapping, 'path') | ||||
path = templateutil.stringify(context, mapping, path) | ||||
if not path: | ||||
return | ||||
statmap = _getfilestatusmap(context, mapping) | ||||
if path not in statmap: | ||||
statmap = _getfilestatusmap(context, mapping, listall=True) | ||||
return statmap.get(path) | ||||
Yuya Nishihara
|
r36531 | @templatekeyword("successorssets", requires={'repo', 'ctx'}) | ||
def showsuccessorssets(context, mapping): | ||||
Yuya Nishihara
|
r34657 | """Returns a string of sets of successors for a changectx. Format used | ||
is: [ctx1, ctx2], [ctx3] if ctx has been splitted into ctx1 and ctx2 | ||||
Yuya Nishihara
|
r34658 | while also diverged into ctx3. (EXPERIMENTAL)""" | ||
Yuya Nishihara
|
r36531 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
Boris Feld
|
r33276 | if not ctx.obsolete(): | ||
return '' | ||||
ssets = obsutil.successorssets(repo, ctx.node(), closest=True) | ||||
ssets = [[hex(n) for n in ss] for ss in ssets] | ||||
data = [] | ||||
for ss in ssets: | ||||
Yuya Nishihara
|
r37121 | h = _hybrid(None, ss, lambda x: {'ctx': repo[x]}, | ||
Yuya Nishihara
|
r34329 | lambda x: scmutil.formatchangeid(repo[x])) | ||
Boris Feld
|
r33276 | data.append(h) | ||
# Format the successorssets | ||||
def render(d): | ||||
Yuya Nishihara
|
r37292 | return templateutil.stringify(context, mapping, d) | ||
Boris Feld
|
r33276 | |||
def gen(data): | ||||
yield "; ".join(render(d) for d in data) | ||||
return _hybrid(gen(data), data, lambda x: {'successorset': x}, | ||||
Yuya Nishihara
|
r34329 | pycompat.identity) | ||
Boris Feld
|
r33276 | |||
Yuya Nishihara
|
r37087 | @templatekeyword("succsandmarkers", requires={'repo', 'ctx'}) | ||
Yuya Nishihara
|
r36612 | def showsuccsandmarkers(context, mapping): | ||
Yuya Nishihara
|
r34657 | """Returns a list of dict for each final successor of ctx. The dict | ||
contains successors node id in "successors" keys and the list of | ||||
obs-markers from ctx to the set of successors in "markers". | ||||
Boris Feld
|
r33913 | (EXPERIMENTAL) | ||
""" | ||||
Yuya Nishihara
|
r36612 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
Boris Feld
|
r33913 | |||
values = obsutil.successorsandmarkers(repo, ctx) | ||||
if values is None: | ||||
values = [] | ||||
# Format successors and markers to avoid exposing binary to templates | ||||
data = [] | ||||
for i in values: | ||||
# Format successors | ||||
successors = i['successors'] | ||||
successors = [hex(n) for n in successors] | ||||
successors = _hybrid(None, successors, | ||||
Yuya Nishihara
|
r37121 | lambda x: {'ctx': repo[x]}, | ||
Yuya Nishihara
|
r34329 | lambda x: scmutil.formatchangeid(repo[x])) | ||
Boris Feld
|
r33913 | |||
# Format markers | ||||
finalmarkers = [] | ||||
for m in i['markers']: | ||||
hexprec = hex(m[0]) | ||||
hexsucs = tuple(hex(n) for n in m[1]) | ||||
hexparents = None | ||||
if m[5] is not None: | ||||
hexparents = tuple(hex(n) for n in m[5]) | ||||
newmarker = (hexprec, hexsucs) + m[2:5] + (hexparents,) + m[6:] | ||||
finalmarkers.append(newmarker) | ||||
data.append({'successors': successors, 'markers': finalmarkers}) | ||||
Yuya Nishihara
|
r37521 | return templateutil.mappinglist(data) | ||
Boris Feld
|
r33913 | |||
Yuya Nishihara
|
r40510 | @templatekeyword('p1', requires={'ctx'}) | ||
def showp1(context, mapping): | ||||
"""Changeset. The changeset's first parent. ``{p1.rev}`` for the revision | ||||
number, and ``{p1.node}`` for the identification hash.""" | ||||
ctx = context.resource(mapping, 'ctx') | ||||
return templateutil.mappingdict({'ctx': ctx.p1()}, tmpl=_changeidtmpl) | ||||
@templatekeyword('p2', requires={'ctx'}) | ||||
def showp2(context, mapping): | ||||
"""Changeset. The changeset's second parent. ``{p2.rev}`` for the revision | ||||
number, and ``{p2.node}`` for the identification hash.""" | ||||
ctx = context.resource(mapping, 'ctx') | ||||
return templateutil.mappingdict({'ctx': ctx.p2()}, tmpl=_changeidtmpl) | ||||
Yuya Nishihara
|
r36531 | @templatekeyword('p1rev', requires={'ctx'}) | ||
def showp1rev(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """Integer. The repository-local revision number of the changeset's | ||
Yuya Nishihara
|
r40511 | first parent, or -1 if the changeset has no parents. (DEPRECATED)""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
epriestley
|
r17357 | return ctx.p1().rev() | ||
epriestley
|
r17355 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('p2rev', requires={'ctx'}) | ||
def showp2rev(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """Integer. The repository-local revision number of the changeset's | ||
Yuya Nishihara
|
r40511 | second parent, or -1 if the changeset has no second parent. (DEPRECATED)""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
epriestley
|
r17357 | return ctx.p2().rev() | ||
epriestley
|
r17355 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('p1node', requires={'ctx'}) | ||
def showp1node(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """String. The identification hash of the changeset's first parent, | ||
epriestley
|
r17357 | as a 40 digit hexadecimal string. If the changeset has no parents, all | ||
Yuya Nishihara
|
r40511 | digits are 0. (DEPRECATED)""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
epriestley
|
r17357 | return ctx.p1().hex() | ||
epriestley
|
r17355 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('p2node', requires={'ctx'}) | ||
def showp2node(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """String. The identification hash of the changeset's second | ||
epriestley
|
r17357 | parent, as a 40 digit hexadecimal string. If the changeset has no second | ||
Yuya Nishihara
|
r40511 | parent, all digits are 0. (DEPRECATED)""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
epriestley
|
r17357 | return ctx.p2().hex() | ||
epriestley
|
r17355 | |||
Yuya Nishihara
|
r37087 | @templatekeyword('parents', requires={'repo', 'ctx'}) | ||
Yuya Nishihara
|
r36616 | def showparents(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. The parents of the changeset in "rev:node" | ||
Yuya Nishihara
|
r26434 | format. If the changeset has only one "natural" parent (the predecessor | ||
revision) nothing is shown.""" | ||||
Yuya Nishihara
|
r36616 | repo = context.resource(mapping, 'repo') | ||
ctx = context.resource(mapping, 'ctx') | ||||
Yuya Nishihara
|
r28270 | pctxs = scmutil.meaningfulparents(repo, ctx) | ||
Yuya Nishihara
|
r34582 | prevs = [p.rev() for p in pctxs] | ||
Yuya Nishihara
|
r26435 | parents = [[('rev', p.rev()), | ||
('node', p.hex()), | ||||
('phase', p.phasestr())] | ||||
Yuya Nishihara
|
r28270 | for p in pctxs] | ||
Yuya Nishihara
|
r37087 | f = _showcompatlist(context, mapping, 'parent', parents) | ||
Yuya Nishihara
|
r37121 | return _hybrid(f, prevs, lambda x: {'ctx': repo[x]}, | ||
Yuya Nishihara
|
r34582 | lambda x: scmutil.formatchangeid(repo[x]), keytype=int) | ||
Yuya Nishihara
|
r26434 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('phase', requires={'ctx'}) | ||
def showphase(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """String. The changeset phase name.""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
Pierre-Yves David
|
r15823 | return ctx.phasestr() | ||
Yuya Nishihara
|
r36531 | @templatekeyword('phaseidx', requires={'ctx'}) | ||
def showphaseidx(context, mapping): | ||||
Yuya Nishihara
|
r34992 | """Integer. The changeset phase index. (ADVANCED)""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
Pierre-Yves David
|
r15422 | return ctx.phase() | ||
Yuya Nishihara
|
r36531 | @templatekeyword('rev', requires={'ctx'}) | ||
def showrev(context, mapping): | ||||
FUJIWARA Katsunori
|
r28539 | """Integer. The repository-local changeset revision number.""" | ||
Yuya Nishihara
|
r36531 | ctx = context.resource(mapping, 'ctx') | ||
Yuya Nishihara
|
r32654 | return scmutil.intrev(ctx) | ||
Patrick Mezard
|
r10054 | |||
Yuya Nishihara
|
r36613 | def showrevslist(context, mapping, name, revs): | ||
Yuya Nishihara
|
r26234 | """helper to generate a list of revisions in which a mapped template will | ||
be evaluated""" | ||||
Yuya Nishihara
|
r36613 | repo = context.resource(mapping, 'repo') | ||
Yuya Nishihara
|
r37087 | f = _showcompatlist(context, mapping, name, ['%d' % r for r in revs]) | ||
Yuya Nishihara
|
r26234 | return _hybrid(f, revs, | ||
Yuya Nishihara
|
r37121 | lambda x: {name: x, 'ctx': repo[x]}, | ||
Yuya Nishihara
|
r34582 | pycompat.identity, keytype=int) | ||
Yuya Nishihara
|
r26234 | |||
Yuya Nishihara
|
r37086 | @templatekeyword('subrepos', requires={'ctx'}) | ||
Yuya Nishihara
|
r36609 | def showsubrepos(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. Updated subrepositories in the changeset.""" | ||
Yuya Nishihara
|
r36609 | ctx = context.resource(mapping, 'ctx') | ||
FUJIWARA Katsunori
|
r21897 | substate = ctx.substate | ||
if not substate: | ||||
Yuya Nishihara
|
r36609 | return compatlist(context, mapping, 'subrepo', []) | ||
FUJIWARA Katsunori
|
r21897 | psubstate = ctx.parents()[0].substate or {} | ||
subrepos = [] | ||||
for sub in substate: | ||||
if sub not in psubstate or substate[sub] != psubstate[sub]: | ||||
subrepos.append(sub) # modified or newly added in ctx | ||||
for sub in psubstate: | ||||
if sub not in substate: | ||||
subrepos.append(sub) # removed in ctx | ||||
Yuya Nishihara
|
r36609 | return compatlist(context, mapping, 'subrepo', sorted(subrepos)) | ||
FUJIWARA Katsunori
|
r21897 | |||
FUJIWARA Katsunori
|
r23977 | # don't remove "showtags" definition, even though namespaces will put | ||
# a helper function for "tags" keyword into "keywords" map automatically, | ||||
# because online help text is built without namespaces initialization | ||||
Yuya Nishihara
|
r37086 | @templatekeyword('tags', requires={'repo', 'ctx'}) | ||
Yuya Nishihara
|
r36611 | def showtags(context, mapping): | ||
FUJIWARA Katsunori
|
r28539 | """List of strings. Any tags associated with the changeset.""" | ||
Yuya Nishihara
|
r36611 | return shownames(context, mapping, 'tags') | ||
FUJIWARA Katsunori
|
r23977 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('termwidth', requires={'ui'}) | ||
def showtermwidth(context, mapping): | ||||
Simon Farnsworth
|
r30088 | """Integer. The width of the current terminal.""" | ||
Yuya Nishihara
|
r36531 | ui = context.resource(mapping, 'ui') | ||
Yuya Nishihara
|
r36460 | return ui.termwidth() | ||
Simon Farnsworth
|
r30088 | |||
Yuya Nishihara
|
r38983 | @templatekeyword('user', requires={'ctx'}) | ||
def showuser(context, mapping): | ||||
"""String. The unmodified author of the changeset.""" | ||||
ctx = context.resource(mapping, 'ctx') | ||||
return ctx.user() | ||||
Yuya Nishihara
|
r37086 | @templatekeyword('instabilities', requires={'ctx'}) | ||
Yuya Nishihara
|
r36609 | def showinstabilities(context, mapping): | ||
Boris Feld
|
r33675 | """List of strings. Evolution instabilities affecting the changeset. | ||
Denis Laxalde
|
r30712 | (EXPERIMENTAL) | ||
""" | ||||
Yuya Nishihara
|
r36609 | ctx = context.resource(mapping, 'ctx') | ||
return compatlist(context, mapping, 'instability', ctx.instabilities(), | ||||
plural='instabilities') | ||||
Denis Laxalde
|
r30712 | |||
Yuya Nishihara
|
r36531 | @templatekeyword('verbosity', requires={'ui'}) | ||
def showverbosity(context, mapping): | ||||
Yuya Nishihara
|
r34994 | """String. The current output verbosity in 'debug', 'quiet', 'verbose', | ||
or ''.""" | ||||
Yuya Nishihara
|
r36531 | ui = context.resource(mapping, 'ui') | ||
Yuya Nishihara
|
r35906 | # see logcmdutil.changesettemplater for priority of these flags | ||
Yuya Nishihara
|
r34994 | if ui.debugflag: | ||
return 'debug' | ||||
elif ui.quiet: | ||||
return 'quiet' | ||||
elif ui.verbose: | ||||
return 'verbose' | ||||
return '' | ||||
r37703 | @templatekeyword('whyunstable', requires={'repo', 'ctx'}) | |||
def showwhyunstable(context, mapping): | ||||
"""List of dicts explaining all instabilities of a changeset. | ||||
(EXPERIMENTAL) | ||||
""" | ||||
repo = context.resource(mapping, 'repo') | ||||
ctx = context.resource(mapping, 'ctx') | ||||
def formatnode(ctx): | ||||
r37725 | return '%s (%s)' % (scmutil.formatchangeid(ctx), ctx.phasestr()) | |||
r37703 | ||||
entries = obsutil.whyunstable(repo, ctx) | ||||
for entry in entries: | ||||
if entry.get('divergentnodes'): | ||||
dnodes = entry['divergentnodes'] | ||||
r37704 | dnhybrid = _hybrid(None, [dnode.hex() for dnode in dnodes], | |||
lambda x: {'ctx': repo[x]}, | ||||
lambda x: formatnode(repo[x])) | ||||
entry['divergentnodes'] = dnhybrid | ||||
r37703 | ||||
r37725 | tmpl = ('{instability}:{if(divergentnodes, " ")}{divergentnodes} ' | |||
'{reason} {node|short}') | ||||
r37703 | return templateutil.mappinglist(entries, tmpl=tmpl, sep='\n') | |||
Yuya Nishihara
|
r34993 | def loadkeyword(ui, extname, registrarobj): | ||
"""Load template keyword from specified registrarobj | ||||
""" | ||||
for name, func in registrarobj._table.iteritems(): | ||||
keywords[name] = func | ||||
Patrick Mezard
|
r13585 | # tell hggettext to extract docstrings from these functions: | ||
Yuya Nishihara
|
r26436 | i18nfunctions = keywords.values() | ||