comparison svncommands.py @ 307:1d48d9a34c19

Put authormap into a separate file, and make it much better too. See the doc-strings in maps.py for details.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Sun, 03 May 2009 15:28:43 +0200
parents ba8e91a7c077
children 75f082b5897e
comparison
equal deleted inserted replaced
306:e6853c7fa3af 307:1d48d9a34c19
20 svn_url = util.normalize_url(svn_url) 20 svn_url = util.normalize_url(svn_url)
21 21
22 initializing_repo = False 22 initializing_repo = False
23 user, passwd = util.getuserpass(opts) 23 user, passwd = util.getuserpass(opts)
24 svn = svnwrap.SubversionRepo(svn_url, user, passwd) 24 svn = svnwrap.SubversionRepo(svn_url, user, passwd)
25 author_host = "@%s" % svn.uuid 25 author_host = ui.config('hgsubversion', 'defaulthost', svn.uuid)
26 tag_locations = tag_locations.split(',') 26 tag_locations = tag_locations.split(',')
27 hg_editor = hg_delta_editor.HgChangeReceiver(hg_repo_path, 27 hg_editor = hg_delta_editor.HgChangeReceiver(hg_repo_path,
28 ui_=ui, 28 ui_=ui,
29 subdir=svn.subdir, 29 subdir=svn.subdir,
30 author_host=author_host, 30 author_host=author_host,