# HG changeset patch # User Alexander Solovyov # Date 1238078987 -7200 # Node ID 5a5396f4942015dfde8dd438740b4b13ef6f4ed0 # Parent f779e1996e23119c83766f80457dee23070d777c diffstat hook example diff -r f779e1996e23 -r 5a5396f49420 contrib/python-hook-examples.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/python-hook-examples.py Thu Mar 26 16:49:47 2009 +0200 @@ -0,0 +1,24 @@ +''' +These are examples of useful hooks in Python for Mercurial. +''' + +from mercurial import patch, util + + +def diffstat(ui, repo, **kwargs): + '''Use it like: + + [hooks] + commit.diffstat = python:/path/to/this/file.py:diffstat + changegroup.diffstat = python:/path/to/this/file.py:diffstat + ''' + if kwargs.get('parent2'): + return + node = kwargs['node'] + first = repo[node].parents()[0].node() + if 'url' in kwargs: + last = repo['tip'].node() + else: + last = node + diff = patch.diff(repo, first, last) + ui.write(patch.diffstat(util.iterlines(diff)))