~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-04 15:22:19 UTC
  • mfrom: (14433.2.59 page-titles-1)
  • Revision ID: launchpad@pqm.canonical.com-20111204152219-wa281ydo0lryqzyr
[rs=sizui][bug=426532] Moved page_titles into views. Removed
 c.l.pagetitles and tales formatter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    'DistroArchSeriesBinaryPackageReleaseView',
10
10
    ]
11
11
 
 
12
from lazr.restful.utils import smartquote
 
13
 
12
14
from canonical.launchpad.webapp import (
13
15
    ApplicationMenu,
14
16
    LaunchpadView,
44
46
    def __init__(self, context, request):
45
47
        self.context = context
46
48
        self.request = request
 
49
 
 
50
    @property
 
51
    def page_title(self):
 
52
        return smartquote(self.context.title)