~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/browser/codereviewcomment.py

  • Committer: Julian Edwards
  • Date: 2011-07-28 20:46:18 UTC
  • mfrom: (13553 devel)
  • mto: This revision was merged to the branch mainline in revision 13555.
  • Revision ID: julian.edwards@canonical.com-20110728204618-tivj2wx2oa9s32bx
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
4
__metaclass__ = type
26
26
 
27
27
from canonical.config import config
28
28
from canonical.launchpad import _
 
29
from canonical.launchpad.interfaces.librarian import ILibraryFileAlias
29
30
from canonical.launchpad.webapp import (
30
31
    canonical_url,
31
32
    ContextMenu,
41
42
from lp.code.interfaces.codereviewcomment import ICodeReviewComment
42
43
from lp.code.interfaces.codereviewvote import ICodeReviewVoteReference
43
44
from lp.services.comments.interfaces.conversation import IComment
44
 
from lp.services.librarian.interfaces import ILibraryFileAlias
45
 
from lp.services.propertycache import (
46
 
    cachedproperty,
47
 
    get_property_cache,
48
 
    )
 
45
from lp.services.propertycache import cachedproperty
49
46
 
50
47
 
51
48
class ICodeReviewDisplayComment(IComment, ICodeReviewComment):
66
63
 
67
64
    def __init__(self, comment, from_superseded=False):
68
65
        self.comment = comment
69
 
        get_property_cache(self).has_body = bool(self.comment.message_body)
 
66
        self.has_body = bool(self.comment.message_body)
70
67
        self.has_footer = self.comment.vote is not None
71
68
        # The date attribute is used to sort the comments in the conversation.
72
69
        self.date = self.comment.message.datecreated
175
172
        """The decorated code review comment."""
176
173
        return CodeReviewDisplayComment(self.context)
177
174
 
178
 
    @property
179
 
    def page_description(self):
180
 
        return self.context.message_body
181
 
 
182
175
    # Should the comment be shown in full?
183
176
    full_comment = True
184
177
    # Show comment expanders?