Mercurial > hgsubversion
comparison svncommands.py @ 316:c3c647aff97c
Merge with danchr's changes.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Sun, 03 May 2009 21:44:53 -0500 |
parents | 1d48d9a34c19 |
children | 75f082b5897e |
comparison
equal
deleted
inserted
replaced
315:963d27a0b1c2 | 316:c3c647aff97c |
---|---|
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, |