~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

  • Committer: Andrew Bennetts
  • Date: 2007-08-08 00:39:03 UTC
  • mto: (2535.3.37 repo-refactor)
  • mto: This revision was merged to the branch mainline in revision 2713.
  • Revision ID: andrew.bennetts@canonical.com-20070808003903-mizhhxhm5q0ofvt6
Rename get_data_about_revision_ids to get_data_to_fetch_for_revision_ids.

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
        if revs is None:
141
141
            return
142
142
        # The first phase is "file".  We pass the progress bar for it directly
143
 
        # into get_data_about_revision_ids, which has more information about how
144
 
        # that phase is progressing than we do.  Progress updates for the other
145
 
        # phases are taken care of in this function.
 
143
        # into get_data_to_fetch_for_revision_ids, which has more information
 
144
        # about how that phase is progressing than we do.  Progress updates for
 
145
        # the other phases are taken care of in this function.
146
146
        # XXX: there should be a clear owner of the progress reporting.  Perhaps
147
 
        # get_data_about_revision_ids should have a richer API than it does at
148
 
        # the moment, so that it can feed the progress information back to this
149
 
        # function?
 
147
        # get_data_to_fetch_for_revision_ids should have a richer API than it
 
148
        # does at the moment, so that it can feed the progress information back
 
149
        # to this function?
150
150
        phase = 'file'
151
151
        pb = bzrlib.ui.ui_factory.nested_progress_bar()
152
152
        try:
153
 
            what_to_do = self.from_repository.get_data_about_revision_ids(revs, pb)
154
 
            for knit_kind, file_id, revisions in what_to_do:
 
153
            data_to_fetch = self.from_repository.get_data_to_fetch_for_revision_ids(revs, pb)
 
154
            for knit_kind, file_id, revisions in data_to_fetch:
155
155
                if knit_kind != phase:
156
156
                    phase = knit_kind
157
157
                    # Make a new progress bar for this phase