comparison hgext/convert/common.py @ 4589:451e91ed535e

convert extension: Add support for username mapping Allows mapping usernames to new ones during conversion process. - Use -A option for first import - Then at the end of the conversion process and if the destination repo supports authorfile attribute, author map content is copied to the file pointed by the authorfile call. - On incremental conversions w/o any -A option specified, the destination authorfile, if any, gets read automatically. EG: This allows mapping unix system usernames used in CVS accounts to a more typical "Firstname Lastname <address@server.org>" pair.
author Edouard Gomez <ed.gomez@free.fr>
date Thu, 14 Jun 2007 23:25:55 +0200
parents cc9b79216a76
children 80fb4ec512b5
comparison
equal deleted inserted replaced
4588:9855939d0c82 4589:451e91ed535e
60 """Path to a file that will contain lines 60 """Path to a file that will contain lines
61 source_rev_id sink_rev_id 61 source_rev_id sink_rev_id
62 mapping equivalent revision identifiers for each system.""" 62 mapping equivalent revision identifiers for each system."""
63 raise NotImplementedError() 63 raise NotImplementedError()
64 64
65 def authorfile(self):
66 """Path to a file that will contain lines
67 srcauthor=dstauthor
68 mapping equivalent authors identifiers for each system."""
69 raise NotImplementedError()
70
65 def putfile(self, f, e, data): 71 def putfile(self, f, e, data):
66 """Put file for next putcommit(). 72 """Put file for next putcommit().
67 f: path to file 73 f: path to file
68 e: '', 'x', or 'l' (regular file, executable, or symlink) 74 e: '', 'x', or 'l' (regular file, executable, or symlink)
69 data: file contents""" 75 data: file contents"""