sapling/edenscm/hgext/phabdiff.py
Nikita Lutsenko 60d802c29b hg | phabdiff | Properly handle both 't' and 'T' prefixes for tasks when parsing them out of commit messages.
Summary:
D15053374 changed this to a great regex, but lost a single piece in translation - which is the fact that both `T` and `t` are valid prefixes.
And majority of tooling (like Tasks tool) is actually using `T` prefix for tasks.
This fixes it.

Reviewed By: mitrandir77

Differential Revision: D15125683

fbshipit-source-id: 30a5f5e01bff93613a964d6a0a13ed08067f8323
2019-04-29 14:41:38 -07:00

66 lines
2.0 KiB
Python

# phabdiff.py
#
# Copyright 2013 Facebook, Inc.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
import re
from edenscm.mercurial import cmdutil, registrar, templatekw
from edenscm.mercurial.node import hex
from .extlib.phabricator import diffprops
templatekeyword = registrar.templatekeyword()
@templatekeyword("phabdiff")
def showphabdiff(repo, ctx, templ, **args):
"""String. Return the phabricator diff id for a given hg rev."""
descr = ctx.description()
revision = diffprops.parserevfromcommitmsg(descr)
return "D" + revision if revision else ""
@templatekeyword("tasks")
def showtasks(**args):
"""String. Return the tasks associated with given hg rev."""
tasks = []
descr = args["ctx"].description()
match = re.search(r"Tasks?([\s-]?ID)?:\s*?[tT\d ,]+", descr)
if match:
tasks = re.findall(r"\d+", match.group(0))
return templatekw.showlist("task", tasks, args)
@templatekeyword("singlepublicbase")
def singlepublicbase(repo, ctx, templ, **args):
"""String. Return the public base commit hash."""
base = repo.revs("last(::%d - not public())", ctx.rev())
if len(base):
return hex(repo[base.first()].node())
return ""
@templatekeyword("reviewers")
def showreviewers(repo, ctx, templ, **args):
"""String. Return the phabricator diff id for a given hg rev."""
if ctx.node() is None:
# working copy - use committemplate.reviewers, which can be found at
# templ.t.cache.
props = templ.cache
reviewersconfig = props.get("reviewers")
if reviewersconfig:
return cmdutil.rendertemplate(repo.ui, reviewersconfig, props)
else:
return None
else:
reviewers = []
descr = ctx.description()
match = re.search("Reviewers:(.*)", descr)
if match:
reviewers = filter(None, re.split(r"[\s,]", match.group(1)))
return templatekw.showlist("reviewer", reviewers, args)