notcapable #1

  • //
  • guest/
  • mojmir_svoboda/
  • mercurial/
  • tests/
  • notcapable
  • View
  • Commits
  • Open Download .zip Download (519 B)
# Disable the $CAP wire protocol capability.

if test -z "$CAP"
then
    echo "CAP environment variable not set."
fi

cat > notcapable-$CAP.py << EOF
from mercurial import extensions, repo
def extsetup():
    extensions.wrapfunction(repo.repository, 'capable', wrapper)
def wrapper(orig, self, name, *args, **kwargs):
    if name in '$CAP'.split(' '):
        return False
    return orig(self, name, *args, **kwargs)
EOF

echo '[extensions]' >> $HGRCPATH
echo "notcapable-$CAP = `pwd`/notcapable-$CAP.py" >> $HGRCPATH
# Change User Description Committed
#1 8267 Mojmir Svoboda mercurial 1.7.3 +p4 -> mercurial 2.0.2 + p4