~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/conflicts.py

  • Committer: Vincent Ladeuil
  • Date: 2011-03-14 10:11:58 UTC
  • mfrom: (5609.24.1 2.3)
  • mto: (5609.24.2 2.3)
  • mto: This revision was merged to the branch mainline in revision 5723.
  • Revision ID: v.ladeuil+lp@free.fr-20110314101158-9ojis0ftsljg3c3t
Merge bzr/2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2009, 2010, 2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
514
514
        # Adjust the path for the retained file id
515
515
        tid = tt.trans_id_file_id(file_id)
516
516
        parent_tid = tt.get_tree_parent(tid)
517
 
        tt.adjust_path(path, parent_tid, tid)
 
517
        tt.adjust_path(osutils.basename(path), parent_tid, tid)
518
518
        tt.apply()
519
519
 
520
520
    def _revision_tree(self, tree, revid):
600
600
        # 'item.suffix_to_remove' has been deleted, this is a no-op)
601
601
        this_tid = tt.trans_id_file_id(self.file_id)
602
602
        parent_tid = tt.get_tree_parent(this_tid)
603
 
        tt.adjust_path(self.path, parent_tid, this_tid)
 
603
        tt.adjust_path(osutils.basename(self.path), parent_tid, this_tid)
604
604
        tt.apply()
605
605
 
606
606
    def action_take_this(self, tree):
644
644
        winner_tid = tt.trans_id_tree_path(winner_path)
645
645
        winner_parent_tid = tt.get_tree_parent(winner_tid)
646
646
        # Switch the paths to preserve the content
647
 
        tt.adjust_path(self.path, winner_parent_tid, winner_tid)
648
 
        tt.adjust_path(winner_path, item_parent_tid, item_tid)
 
647
        tt.adjust_path(osutils.basename(self.path),
 
648
                       winner_parent_tid, winner_tid)
 
649
        tt.adjust_path(osutils.basename(winner_path), item_parent_tid, item_tid)
649
650
        # Associate the file_id to the right content
650
651
        tt.unversion_file(item_tid)
651
652
        tt.version_file(self.file_id, winner_tid)
755
756
        pass
756
757
 
757
758
    def action_take_other(self, tree):
758
 
        # FIXME: We shouldn't have to manipulate so many paths here (and there
759
 
        # is probably a bug or two...)
760
 
        base_path = osutils.basename(self.path)
761
 
        conflict_base_path = osutils.basename(self.conflict_path)
762
759
        tt = transform.TreeTransform(tree)
763
760
        try:
764
761
            p_tid = tt.trans_id_file_id(self.file_id)
765
762
            parent_tid = tt.get_tree_parent(p_tid)
766
763
            cp_tid = tt.trans_id_file_id(self.conflict_file_id)
767
764
            cparent_tid = tt.get_tree_parent(cp_tid)
768
 
            tt.adjust_path(base_path, cparent_tid, cp_tid)
769
 
            tt.adjust_path(conflict_base_path, parent_tid, p_tid)
 
765
            tt.adjust_path(osutils.basename(self.path), cparent_tid, cp_tid)
 
766
            tt.adjust_path(osutils.basename(self.conflict_path),
 
767
                           parent_tid, p_tid)
770
768
            tt.apply()
771
769
        finally:
772
770
            tt.finalize()