~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/browser/distroarchseriesbinarypackage.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-06-25 08:55:37 UTC
  • mfrom: (13287.1.8 bug-800652)
  • Revision ID: launchpad@pqm.canonical.com-20110625085537-moikyoo2pe98zs7r
[r=jcsackett, julian-edwards][bug=800634,
        800652] Enable and display overrides on sync package uploads.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    'DistroArchSeriesBinaryPackageView',
9
9
    ]
10
10
 
11
 
from lazr.restful.utils import smartquote
12
 
 
13
 
from lp.services.webapp import (
 
11
from canonical.launchpad.webapp import (
14
12
    ApplicationMenu,
15
13
    GetitemNavigation,
16
 
    LaunchpadView,
17
14
    )
 
15
from canonical.launchpad.webapp.breadcrumb import Breadcrumb
 
16
from canonical.lazr.utils import smartquote
18
17
from lp.soyuz.interfaces.distroarchseriesbinarypackage import (
19
18
    IDistroArchSeriesBinaryPackage,
20
19
    )
32
31
    usedfor = IDistroArchSeriesBinaryPackage
33
32
 
34
33
 
35
 
class DistroArchSeriesBinaryPackageView(LaunchpadView):
 
34
class DistroArchSeriesBinaryPackageView:
 
35
 
 
36
    def __init__(self, context, request):
 
37
        self.context = context
 
38
        self.request = request
36
39
 
37
40
    @property
38
41
    def page_title(self):