~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/interfaces/bug.py

  • Committer: Curtis Hovey
  • Date: 2011-05-27 21:03:22 UTC
  • mto: This revision was merged to the branch mainline in revision 13136.
  • Revision ID: curtis.hovey@canonical.com-20110527210322-yv1o7vkwr9u25t34
Moved templates to the packages that use them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
    'IBugAddForm',
15
15
    'IBugBecameQuestionEvent',
16
16
    'IBugDelta',
17
 
    'IBugMute',
18
17
    'IBugSet',
19
18
    'IFileBugData',
20
19
    'IFrontPageBugAddForm',
86
85
    ContentNameField,
87
86
    Description,
88
87
    DuplicateBug,
89
 
    PersonChoice,
90
88
    PublicPersonChoice,
91
89
    Tag,
92
90
    Title,
492
490
    def isMuted(person):
493
491
        """Does person have a muted subscription on this bug?
494
492
 
495
 
        :returns: True if the user has muted all email from this bug.
 
493
        :returns: True if the user has a direct subscription to this bug
 
494
            with a BugNotificationLevel of NOTHING.
496
495
        """
497
496
 
498
497
    @operation_parameters(
509
508
    @export_write_operation()
510
509
    @operation_for_version('devel')
511
510
    def unmute(person, unmuted_by):
512
 
        """Remove a muted subscription for `person`.
513
 
 
514
 
        Returns previously muted direct subscription, if any."""
 
511
        """Remove a muted subscription for `person`."""
515
512
 
516
513
    def getDirectSubscriptions():
517
514
        """A sequence of IBugSubscriptions directly linked to this bug."""
781
778
            schema=Interface, title=_('Target'), required=False),
782
779
        nominations=List(
783
780
            title=_("Nominations to search through."),
784
 
            value_type=Reference(schema=Interface),  # IBugNomination
 
781
            value_type=Reference(schema=Interface), # IBugNomination
785
782
            required=False))
786
 
    @operation_returns_collection_of(Interface)  # IBugNomination
 
783
    @operation_returns_collection_of(Interface) # IBugNomination
787
784
    @export_read_operation()
788
785
    def getNominations(target=None, nominations=None):
789
786
        """Return a list of all IBugNominations for this bug.
1213
1210
    comments = Attribute("Comments to add to the bug.")
1214
1211
    attachments = Attribute("Attachments to add to the bug.")
1215
1212
    hwdb_submission_keys = Attribute("HWDB submission keys for the bug.")
1216
 
 
1217
 
 
1218
 
class IBugMute(Interface):
1219
 
    """A mute on an IBug."""
1220
 
 
1221
 
    person = PersonChoice(
1222
 
        title=_('Person'), required=True, vocabulary='ValidPersonOrTeam',
1223
 
        readonly=True, description=_("The person subscribed."))
1224
 
    bug = Reference(
1225
 
        IBug, title=_("Bug"),
1226
 
        required=True, readonly=True,
1227
 
        description=_("The bug to be muted."))
1228
 
    date_created = Datetime(
1229
 
        title=_("The date on which the mute was created."), required=False,
1230
 
        readonly=True)