contrib/python-hook-examples.py
author timeless <timeless@mozdev.org>
Wed, 21 Sep 2016 16:33:37 +0000
changeset 29987 d532ef155b0e
parent 28562 2b585677220e
child 39895 1a184b727aff
permissions -rw-r--r--
help: clarify quotes are needed for filesets.size expressions

'''
Examples of useful python hooks for Mercurial.
'''
from __future__ import absolute_import
from mercurial import (
    patch,
    util,
)

def diffstat(ui, repo, **kwargs):
    '''Example usage:

    [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].p1().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)))