使用Mercurial API获取给定变更集的存储库的更改

时间:2010-02-28 18:36:44

标签: python mercurial dvcs changeset mercurial-extension

如何使用Mercurial API确定每个变更集对存储库所做的更改?我能够获得与特定修订版相关的文件列表,但我无法弄清楚如何判断该文件发生了什么。

如何回答有关变更集中每个文件的这些问题:

  • 是否已添加?
  • 是删除了吗?
  • 是否修改了?

文件上下文中是否有一个属性可以告诉我这个(如果有的话,我找不到它),或者有办法通过其他方式解决这个问题?

这是我的代码:

def index(request):
    u = ui.ui()
    repo = hg.repository(ui.ui(), '/path/to/repo')
    changes = repo.changelog
    changesets = []

    for change in changes:
        ctx = repo.changectx(change)
        fileCtxs = []
        for aFile in ctx.files():
            if aFile in ctx:
                for status in repo.status(None, ctx.node()):
                    # I'm hoping this could return A, M, D, ? etc
                    fileCtxs.append(status)

        changeset = {
            'files':ctx.files(),
            'rev':str(ctx.rev()),
            'desc':ctx.description(),
            'user':ctx.user(),
            'filectxs':fileCtxs,
        }
        changesets.append(changeset)

    c = Context({
        'changesets': changesets,
    })

    tmplt = loader.get_template('web/index.html')
    return HttpResponse(tmplt.render(c))

1 个答案:

答案 0 :(得分:5)

localrepo.status()可以将上下文作为参数(node1node2)。

请参阅http://hg.intevation.org/mercurial/crew/file/6505773080e4/mercurial/localrepo.py#l973