Mercurial > p > roundup > code
view website/issues/detectors/statusauditor.py @ 6281:042c50d5e06e
Make rev 2345:acbed367 use hash not revision number
Change regexp to make rev[whitespace][rev#]:[hash] refer to repo using
hash not rev#.
Similar for hg[whitespace][rev#]:[hash].
Also enhance quicktest to search for input token in output by
default. Set substr=False on invocation if you don't want this
check. Using substr can show incorrect parsing/reconstitution of
original string in output.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 29 Oct 2020 23:43:05 -0400 |
| parents | 0942fe89e82e |
| children | 13e8f188f8dd |
line wrap: on
line source
def preset_new(db, cl, nodeid, newvalues): """ Make sure the status is set on new issues""" if 'status' in newvalues and newvalues['status']: return new = db.status.lookup('new') newvalues['status'] = new def init(db): # fire before changes are made db.issue.audit('create', preset_new)
