contrib/python-hook-examples.py
author Alexander Solovyov <piranha@piranha.org.ua>
Thu, 26 Mar 2009 16:49:47 +0200
changeset 7917 5a5396f49420
child 7918 62f11ef0df5b
permissions -rw-r--r--
diffstat hook example

'''
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)))