Mercurial > hgsubversion
view tag_repo.py @ 148:0c5f6420a8b5
tests: Add an environment variable (HGSUBVERSION_TEST_TEMP) which allows
specification of where temporary repositories (both hg and svn) should be
created. Set it to a RAM disk to make the tests run faster.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Sat, 20 Dec 2008 19:13:46 -0600 |
parents | 291925677a9f |
children | 91c818377703 |
line wrap: on
line source
import pickle from mercurial import node import hg_delta_editor def tags_from_tag_info(repo): hg_editor = hg_delta_editor.HgChangeReceiver(repo=repo) for tag, source in hg_editor.tags.iteritems(): source_ha = hg_editor.get_parent_revision(source[1]+1, source[0]) yield 'tag/%s'%tag, node.hex(source_ha) def generate_repo_class(ui, repo): class svntagrepo(repo.__class__): def tags(self): tags = dict((k, node.bin(v)) for k,v in tags_from_tag_info(self)) hg_tags = super(svntagrepo, self).tags() tags.update(hg_tags) return tags return svntagrepo