sapling/hgext/convert
Mads Kiilerich f92d923209 convert: backout 41e062383fc9 and 80f42131aca3 -closemap
Closemap solves a very specific use case. It would be better to have a more
generic solution than to have to maintain this forever.

Closemap has not been released yet and removing it now will not break any
backward compatibility contract.

There is no test coverage for closemap but it seems like the same can be
achieved with a simple and much more powerful custom extension:

import hgext.convert.hg
class source(hgext.convert.hg.mercurial_source):
    def getcommit(self, rev):
        c = super(source, self).getcommit(rev)
        if rev in ['''
d643f67092ff123f6a192d52f12e7d123dae229f
3a6a38229d418ba09cb7784c01453a93b4d363f8
facceca31c18f7ef800977055dbcbd7fcb5c5cb2
''']:
            c.extra = c.extra.copy()
            c.extra['close'] = '1'
        return c
hgext.convert.hg.mercurial_source = source
2014-04-16 01:10:08 +02:00
..
__init__.py convert: backout 41e062383fc9 and 80f42131aca3 -closemap 2014-04-16 01:10:08 +02:00
bzr.py spelling: further 2012-08-17 13:58:18 -07:00
common.py convert: backout 8a62813ea220 and ca6679798c95 - tagmap 2014-04-16 01:09:49 +02:00
convcmd.py convert: backout 41e062383fc9 and 80f42131aca3 -closemap 2014-04-16 01:10:08 +02:00
cvs.py convert: add config option to use the local time zone 2012-11-18 12:26:50 -10:00
cvsps.py convert: handle changeset sorting errors without traceback (issue3961) 2013-07-26 14:44:13 +01:00
darcs.py convert: use subprocess for all commandline calls 2012-08-03 21:37:33 +02:00
filemap.py convert: readability and test of rpairs function 2013-11-17 11:18:39 -05:00
git.py convert: add mapname parameter to checkrevformat 2014-01-21 11:34:55 -06:00
gnuarch.py fix trivial spelling errors 2012-08-15 22:38:42 +02:00
hg.py convert: backout 8a62813ea220 and ca6679798c95 - tagmap 2014-04-16 01:09:49 +02:00
monotone.py delete some dead comments and docstrings 2012-08-21 02:41:20 +02:00
p4.py i18n: use locale insensitive format for datetimes as intermediate representation (issue3398) 2012-04-26 02:41:20 +09:00
subversion.py convert: backout 8a62813ea220 and ca6679798c95 - tagmap 2014-04-16 01:09:49 +02:00
transport.py spelling: dependent 2012-08-17 13:58:18 -07:00