~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-20 17:19:44 UTC
  • mfrom: (4973.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100120171944-8gkub20gotjcye67
(spiv) Implement a per-file merge hook

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011 Canonical Ltd
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
20
20
 
21
21
from bzrlib.lazy_import import lazy_import
22
22
lazy_import(globals(), """
 
23
from bzrlib import deprecated_graph
23
24
from bzrlib import bugtracker
24
25
""")
25
26
from bzrlib import (
27
28
    symbol_versioning,
28
29
    )
29
30
from bzrlib.osutils import contains_whitespace
 
31
from bzrlib.progress import DummyProgress
30
32
 
31
33
NULL_REVISION="null:"
32
34
CURRENT_REVISION="current:"
120
122
        else:
121
123
            return ''
122
124
 
 
125
    @symbol_versioning.deprecated_method(symbol_versioning.deprecated_in((1, 13, 0)))
 
126
    def get_apparent_author(self):
 
127
        """Return the apparent author of this revision.
 
128
 
 
129
        This method is deprecated in favour of get_apparent_authors.
 
130
 
 
131
        If the revision properties contain any author names,
 
132
        return the first. Otherwise return the committer name.
 
133
        """
 
134
        authors = self.get_apparent_authors()
 
135
        if authors:
 
136
            return authors[0]
 
137
        else:
 
138
            return None
 
139
 
123
140
    def get_apparent_authors(self):
124
141
        """Return the apparent authors of this revision.
125
142