~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: 2009-06-22 17:11:20 UTC
  • mfrom: (4398.8.10 1.16-commit-fulltext)
  • Revision ID: pqm@pqm.ubuntu.com-20090622171120-fuxez9ylfqpxynqn
(jam) Add VF._add_text and reduce memory overhead during commit (see
        bug #109114)

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:"
52
54
 
53
55
    def __init__(self, revision_id, properties=None, **args):
54
56
        self.revision_id = revision_id
55
 
        if properties is None:
56
 
            self.properties = {}
57
 
        else:
58
 
            self.properties = properties
59
 
            self._check_properties()
 
57
        self.properties = properties or {}
 
58
        self._check_properties()
60
59
        self.committer = None
61
60
        self.parent_ids = []
62
61
        self.parent_sha1s = []
89
88
                raise ValueError("invalid property name %r" % name)
90
89
            if not isinstance(value, basestring):
91
90
                raise ValueError("invalid property value %r for %r" %
92
 
                                 (value, name))
 
91
                                 (name, value))
93
92
 
94
93
    def get_history(self, repository):
95
94
        """Return the canonical line-of-history for this revision.
112
111
 
113
112
    def get_summary(self):
114
113
        """Get the first line of the log message for this revision.
115
 
 
116
 
        Return an empty string if message is None.
117
 
        """
118
 
        if self.message:
119
 
            return self.message.lstrip().split('\n', 1)[0]
 
114
        """
 
115
        return self.message.lstrip().split('\n', 1)[0]
 
116
 
 
117
    @symbol_versioning.deprecated_method(symbol_versioning.deprecated_in((1, 13, 0)))
 
118
    def get_apparent_author(self):
 
119
        """Return the apparent author of this revision.
 
120
 
 
121
        This method is deprecated in favour of get_apparent_authors.
 
122
 
 
123
        If the revision properties contain any author names,
 
124
        return the first. Otherwise return the committer name.
 
125
        """
 
126
        authors = self.get_apparent_authors()
 
127
        if authors:
 
128
            return authors[0]
120
129
        else:
121
 
            return ''
 
130
            return None
122
131
 
123
132
    def get_apparent_authors(self):
124
133
        """Return the apparent authors of this revision.