~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
        requested revisions, finally clearing the progress bar.
122
122
        """
123
123
        self.to_weaves = self.to_repository.weave_store
124
 
        self.to_control = self.to_repository.control_weaves
125
124
        self.from_weaves = self.from_repository.weave_store
126
 
        self.from_control = self.from_repository.control_weaves
127
125
        self.count_total = 0
128
126
        self.file_ids_names = {}
129
127
        pp = ProgressPhase('Fetch phase', 4, self.pb)
221
219
 
222
220
    def _fetch_inventory_weave(self, revs, pb):
223
221
        pb.update("fetch inventory", 0, 2)
224
 
        to_weave = self.to_control.get_weave('inventory',
225
 
                self.to_repository.get_transaction())
226
 
 
 
222
        to_weave = self.to_repository.get_inventory_weave()
227
223
        child_pb = bzrlib.ui.ui_factory.nested_progress_bar()
228
224
        try:
229
225
            # just merge, this is optimisable and its means we don't
249
245
        after fetching weave texts.
250
246
        """
251
247
        pass
252
 
        
 
248
 
253
249
 
254
250
class GenericRepoFetcher(RepoFetcher):
255
251
    """This is a generic repo to repo fetcher.