~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/launchpad/browser/cve.py

  • Committer: David Allouche
  • Date: 2005-11-03 02:06:06 UTC
  • mfrom: (63.1.161)
  • mto: (1102.1.157)
  • mto: This revision was merged to the branch mainline in revision 2836.
  • Revision ID: david.allouche@canonical.com-20051103020606-db5d5e3f2d8ad88e
merge robertc

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from canonical.launchpad.validators.cve import valid_cve
21
21
from canonical.launchpad.webapp import (
22
22
    canonical_url, ContextMenu, Link, GetitemNavigation)
23
 
from canonical.launchpad.browser.form import FormView
 
23
from canonical.launchpad.webapp.generalform import GeneralFormView
24
24
 
25
25
 
26
26
class CveSetNavigation(GetitemNavigation):
62
62
        self.request = request
63
63
 
64
64
 
65
 
class CveLinkView(FormView):
 
65
class CveLinkView(GeneralFormView):
66
66
    """This view will be used for objects that can be linked to a CVE,
67
67
    currently that is only IBug.
68
68
    """
69
69
 
70
 
    schema = ICve
71
 
    fieldNames = ['sequence']
72
 
    _arguments = ['sequence',]
73
 
 
74
70
    def __init__(self, context, request):
75
71
        self._nextURL = canonical_url(context)
76
72
        context = IBug(context)
77
 
        FormView.__init__(self, context, request)
 
73
        GeneralFormView.__init__(self, context, request)
78
74
 
79
75
    def process(self, sequence):
80
76
        cve = getUtility(ICveSet)[sequence]
85
81
        return 'CVE-%s added to bug #%d' % (sequence, self.context.id)
86
82
 
87
83
 
88
 
class CveUnlinkView(FormView):
 
84
class CveUnlinkView(GeneralFormView):
89
85
    """This view is used to unlink a CVE from a bug."""
90
86
 
91
 
    schema = ICve
92
 
    fieldNames = ['sequence']
93
 
    _arguments = ['sequence',]
94
 
 
95
87
    def __init__(self, context, request):
96
88
        self._nextURL = canonical_url(context)
97
89
        context = IBug(context)
98
 
        FormView.__init__(self, context, request)
 
90
        GeneralFormView.__init__(self, context, request)
99
91
 
100
92
    def process(self, sequence):
101
93
        cve = getUtility(ICveSet)[sequence]