~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/browser/question.py

Wire up question subscription portal

Show diffs side-by-side

added added

removed removed

Lines of Context:
821
821
        return smartquote('FAQ #%s: "%s".' % (faq.id, faq.title))
822
822
 
823
823
 
824
 
class QuestionWorkflowView(LaunchpadFormView, LinkFAQMixin):
 
824
class QuestionContextMenu(ContextMenu):
 
825
    """Context menu of actions that can be performed upon a Question.
 
826
 
 
827
    Currently only addsubscriber, but later editsubscription etc.
 
828
    """
 
829
    usedfor = IQuestion
 
830
    links = [
 
831
        'addsubscriber']
 
832
 
 
833
    def addsubscriber(self):
 
834
        """Return the 'Subscribe someone else' Link."""
 
835
        text = 'Subscribe someone else'
 
836
        return Link(
 
837
            '+addsubscriber', text, icon='add', summary=(
 
838
                'Launchpad will email that person whenever this question '
 
839
                'changes'))
 
840
 
 
841
 
 
842
class QuestionWorkflowView(LaunchpadFormView,
 
843
                           LinkFAQMixin, QuestionContextMenu):
825
844
    """View managing the question workflow action, i.e. action changing
826
845
    its status.
827
846
    """