/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 repository.py

Move conversion functions to mapping, use fetch_objects() from repository if present.

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
        ancestry.reverse()
151
151
        return ancestry
152
152
 
153
 
    def import_revision_gist(self, source, revid):
 
153
    def import_revision_gist(self, source, revid, parent_lookup):
 
154
        """Impor the gist of another revision into this Git repository.
 
155
 
 
156
        """
 
157
        rev = source.get_revision(revid)
 
158
        inventory_to_tree_and_blobs(source, None, revid)
 
159
        commit = revision_to_commit(rev, FIXME, parent_lookup)
154
160
        pass
155
161
 
156
162
    def dfetch(self, source, stop_revision):