Mercurial > hg
view tests/revnamesext.py @ 51276:03665fd8ccb9
narrow: strip trailing `/` from manifest dir before matching it
Commit 17a822d7943e broke some of our internal tests at Google because the `dir`
variable contains a trailing slash since that commit. Let's restore the old
behavior by stripping that trailing slash.
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Sat, 16 Dec 2023 10:48:20 -0800 |
parents | 6000f5b25c9b |
children |
line wrap: on
line source
# Dummy extension to define a namespace containing revision names from mercurial import namespaces def reposetup(ui, repo): names = {b'r%d' % rev: repo[rev].node() for rev in repo} namemap = lambda r, name: names.get(name) nodemap = lambda r, node: [b'r%d' % repo[node].rev()] ns = namespaces.namespace( b'revnames', templatename=b'revname', logname=b'revname', listnames=lambda r: names.keys(), namemap=namemap, nodemap=nodemap, ) repo.names.addnamespace(ns)