~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-08-18 20:56:37 UTC
  • mto: This revision was merged to the branch mainline in revision 13736.
  • Revision ID: curtis.hovey@canonical.com-20110818205637-ae0pf9aexdea2mlb
Cleaned up doctrings and hushed lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
__all__ = [
9
9
    'CveContextMenu',
10
 
    'CveIndexView',
11
10
    'CveLinkView',
12
11
    'CveSetContextMenu',
13
12
    'CveSetNavigation',
30
29
    LaunchpadFormView,
31
30
    )
32
31
from lp.app.validators.cve import valid_cve
33
 
from lp.bugs.browser.buglinktarget import BugLinksListingView
34
32
from lp.bugs.interfaces.cve import (
35
33
    ICve,
36
34
    ICveSet,
72
70
        return Link('', text, summary)
73
71
 
74
72
 
75
 
class CveIndexView(BugLinksListingView):
76
 
    """CVE index page."""
77
 
 
78
 
    @property
79
 
    def page_title(self):
80
 
        return self.context.displayname
81
 
 
82
 
 
83
73
class CveLinkView(LaunchpadFormView):
84
74
    """This view will be used for objects that can be linked to a CVE,
85
75
    currently that is only IBug.