~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/annotate.py

  • Committer: Jelmer Vernooij
  • Date: 2012-06-26 12:14:56 UTC
  • mto: This revision was merged to the branch mainline in revision 6527.
  • Revision ID: jelmer@samba.org-20120626121456-maeix7f8kllyqa7a
Remove deprecated annotate_file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    CURRENT_REVISION,
48
48
    Revision,
49
49
    )
50
 
from bzrlib.symbol_versioning import (
51
 
    deprecated_function,
52
 
    deprecated_in,
53
 
    )
54
 
 
55
 
 
56
 
@deprecated_function(deprecated_in((2, 4, 0)))
57
 
def annotate_file(branch, rev_id, file_id, verbose=False, full=False,
58
 
                  to_file=None, show_ids=False):
59
 
    """Annotate file_id at revision rev_id in branch.
60
 
 
61
 
    The branch should already be read_locked() when annotate_file is called.
62
 
 
63
 
    :param branch: The branch to look for revision numbers and history from.
64
 
    :param rev_id: The revision id to annotate.
65
 
    :param file_id: The file_id to annotate.
66
 
    :param verbose: Show all details rather than truncating to ensure
67
 
        reasonable text width.
68
 
    :param full: XXXX Not sure what this does.
69
 
    :param to_file: The file to output the annotation to; if None stdout is
70
 
        used.
71
 
    :param show_ids: Show revision ids in the annotation output.
72
 
    """
73
 
    tree = branch.repository.revision_tree(rev_id)
74
 
    annotate_file_tree(tree, file_id, to_file, verbose=verbose,
75
 
        full=full, show_ids=show_ids, branch=branch)
76
50
 
77
51
 
78
52
def annotate_file_tree(tree, file_id, to_file, verbose=False, full=False,