##// END OF EJS Templates
flagutil: move addflagprocessor to the new module (API)
flagutil: move addflagprocessor to the new module (API)

File last commit:

r41344:15fd3069 default
r42958:6d61be15 default
Show More
notcapable
24 lines | 812 B | text/plain | TextLexer
Steven Brown
tests: add script to disable a selected wire protocol capability...
r14011 # Disable the $CAP wire protocol capability.
if test -z "$CAP"
then
echo "CAP environment variable not set."
fi
cat > notcapable-$CAP.py << EOF
Gregory Szorc
wireproto: use new peer interface...
r33805 from mercurial import extensions, localrepo, repository
Matt Harbison
extensions: deprecate extsetup without a `ui` argument (API)...
r41098 def extsetup(ui):
Gregory Szorc
wireproto: use new peer interface...
r33805 extensions.wrapfunction(repository.peer, 'capable', wrapcapable)
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 extensions.wrapfunction(localrepo.localrepository, 'peer', wrappeer)
def wrapcapable(orig, self, name, *args, **kwargs):
Gregory Szorc
tests: add b'' to notcapable...
r41344 if name in b'$CAP'.split(b' '):
Steven Brown
tests: add script to disable a selected wire protocol capability...
r14011 return False
return orig(self, name, *args, **kwargs)
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 def wrappeer(orig, self):
# Since we're disabling some newer features, we need to make sure local
# repos add in the legacy features again.
return localrepo.locallegacypeer(self)
Steven Brown
tests: add script to disable a selected wire protocol capability...
r14011 EOF
echo '[extensions]' >> $HGRCPATH
echo "notcapable-$CAP = `pwd`/notcapable-$CAP.py" >> $HGRCPATH