Mercurial > hgsubversion
diff hg_delta_editor.py @ 120:f508c1fa19a5
hg_delta_editor: do not assume branches are copied from trunk by default
Here is what happen in jquery repository:
- kelvin-dev branch is created in r1617 with an empty directory for the
datePicker plugin
- commits are done
- datePicker plugin is merged in trunk
Before the fix, the converter assumed the initial empty commit had for parent
some other commit of trunk, therefore adding all its files, which was wrong.
And we ended with 'alignDemo.html' in converted trunk@5946 while it was not in
the source revision.
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Sat, 29 Nov 2008 11:25:01 -0600 |
parents | ea65fe2b0856 |
children | 58de7aea8a77 |
line wrap: on
line diff
--- a/hg_delta_editor.py +++ b/hg_delta_editor.py @@ -230,6 +230,8 @@ class HgChangeReceiver(delta.Editor): if branch in self.branches: parent_branch = self.branches[branch][0] parent_branch_rev = self.branches[branch][1] + if parent_branch_rev <= 0: + return None, None branch_created_rev = self.branches[branch][2] if parent_branch == 'trunk': parent_branch = None @@ -265,11 +267,9 @@ class HgChangeReceiver(delta.Editor): if not ((src_p and self._is_path_valid(src_p)) or (src_tag and src_tag in self.tags)): - # we'll imply you're a branch off of trunk - # if you have no path, but if you do, it must be valid - # or else we assume trunk as well + # The branch starts here and is not a copy src_branch = None - src_rev = revision.revnum + src_rev = 0 elif src_tag: # this is a branch created from a tag. Note that this # really does happen (see Django)