# HG changeset patch # User Idan Kamara # Date 1340470627 -10800 # Node ID 15d4d475de9ece2ff34455db805ef5a31630ff45 # Parent d63fb1fce9773daaad66269b9333977e018c4678 ui: add a variable to control whether hooks should be called So hooks can be temporarily disabled. diff -r d63fb1fce977 -r 15d4d475de9e mercurial/hook.py --- a/mercurial/hook.py Thu Jun 28 18:39:16 2012 +0200 +++ b/mercurial/hook.py Sat Jun 23 19:57:07 2012 +0300 @@ -138,6 +138,9 @@ _redirect = state def hook(ui, repo, name, throw=False, **args): + if not ui.callhooks: + return False + r = False oldstdout = -1 diff -r d63fb1fce977 -r 15d4d475de9e mercurial/ui.py --- a/mercurial/ui.py Thu Jun 28 18:39:16 2012 +0200 +++ b/mercurial/ui.py Sat Jun 23 19:57:07 2012 +0300 @@ -19,6 +19,7 @@ self._ucfg = config.config() # untrusted self._trustusers = set() self._trustgroups = set() + self.callhooks = True if src: self.fout = src.fout @@ -31,6 +32,7 @@ self._trustusers = src._trustusers.copy() self._trustgroups = src._trustgroups.copy() self.environ = src.environ + self.callhooks = src.callhooks self.fixconfig() else: self.fout = sys.stdout