~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugsubscription.py

  • Committer: Brad Crittenden
  • Date: 2011-04-14 16:37:22 UTC
  • mto: This revision was merged to the branch mainline in revision 12856.
  • Revision ID: bac@canonical.com-20110414163722-aju8ropmdb3w2fd0
Handle the lack of a mute_link without falling over.  Fix lint, spelling, and poor html markup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
    # A mapping of BugNotificationLevel values to descriptions to be
167
167
    # shown on the +subscribe page.
168
168
    _bug_notification_level_descriptions = {
 
169
        BugNotificationLevel.COMMENTS: (
 
170
            "a change is made to this bug or a new comment is added, "),
 
171
        BugNotificationLevel.METADATA: (
 
172
            "any change is made to this bug, other than a new comment "
 
173
            "being added, or"),
169
174
        BugNotificationLevel.LIFECYCLE: (
170
 
            "The bug is fixed or re-opened."),
171
 
        BugNotificationLevel.METADATA: (
172
 
            "Any change is made to this bug, other than a new comment "
173
 
            "being added."),
174
 
        BugNotificationLevel.COMMENTS: (
175
 
            "A change is made to this bug or a new comment is added."),
 
175
            "the bug is fixed or re-opened."),
176
176
        }
177
177
 
178
178
    @property
595
595
        cache = IJSONRequestCache(self.request).objects
596
596
        cache.update(references)
597
597
        cache['bug_subscription_info'] = subdata
598
 
        
599
598
 
600
599
    @property
601
600
    def label(self):