/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/workingtree_4.py

  • Committer: Aaron Bentley
  • Date: 2007-07-17 13:27:14 UTC
  • mfrom: (2624 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: abentley@panoramicfeedback.com-20070717132714-tmzx9khmg9501k51
Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
    ignores,
53
53
    merge,
54
54
    osutils,
 
55
    revision as _mod_revision,
55
56
    revisiontree,
56
57
    textui,
57
58
    transform,
1089
1090
        # missing on access.
1090
1091
        for rev_id, tree in parents_list:
1091
1092
            rev_id = osutils.safe_revision_id(rev_id)
 
1093
            _mod_revision.check_not_reserved_id(rev_id)
1092
1094
            if tree is not None:
1093
1095
                real_trees.append((rev_id, tree))
1094
1096
            else:
1488
1490
            return parent_details[1]
1489
1491
        return None
1490
1492
 
 
1493
    def get_weave(self, file_id):
 
1494
        return self._repository.weave_store.get_weave(file_id,
 
1495
                self._repository.get_transaction())
 
1496
 
1491
1497
    def get_file(self, file_id):
1492
1498
        return StringIO(self.get_file_text(file_id))
1493
1499
 
2265
2271
                        # the file on disk is not present at all in the
2266
2272
                        # dirblock. Either way, report about the dirblock
2267
2273
                        # entry, and let other code handle the filesystem one.
2268
 
                        if current_path_info[1].split('/') < current_entry[0][1].split('/'):
 
2274
 
 
2275
                        # Compare the basename for these files to determine
 
2276
                        # which comes first
 
2277
                        if current_path_info[1] < current_entry[0][1]:
2269
2278
                            # extra file on disk: pass for now, but only
2270
2279
                            # increment the path, not the entry
2271
2280
                            advance_entry = False