src/mercurialserver/changes.py
author David Douard <david.douard@logilab.fr>
Wed, 05 Mar 2014 12:16:46 +0100
changeset 373 a286d6c6b19c
parent 242 03d8f07230b3
child 376 d503d5a786f3
permissions -rw-r--r--
Log phase transitions (draft->public) Ensure phase transitions are logged in the mercurial-server.log file

"""
Find all the changes in a node in a way portable across Mercurial versions
"""

def changes(repo, node):
    start = repo.changectx(node).rev()
    try:
        end = len(repo.changelog)
    except:
        end = repo.changelog.count()
    for rev in xrange(start, end):
        yield repo.changectx(rev)