~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/annotate.py

First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
 
113
113
def _annotations(repo, file_id, rev_id):
114
114
    """Return the list of (origin,text) for a revision of a file in a repository."""
115
 
    w = repo.weave_store.get_weave(file_id, repo.get_transaction())
116
 
    return w.annotate(rev_id)
 
115
    annotations = repo.texts.annotate((file_id, rev_id))
 
116
    return [(key[-1], line) for key, line in annotations]
117
117
 
118
118
 
119
119
def _annotate_file(branch, rev_id, file_id):