~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/feed/announcement.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-31 00:26:32 UTC
  • mfrom: (14606.4.19 apocaremains-2)
  • Revision ID: launchpad@pqm.canonical.com-20111231002632-67fafhhz150cct3b
[r=wgrant][no-qa] Explode canonical.lazr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
from zope.component import getUtility
21
21
 
22
 
from lp.services.webapp import (
23
 
    canonical_url,
24
 
    urlappend,
25
 
    )
26
 
from canonical.lazr.feed import (
27
 
    FeedBase,
28
 
    FeedEntry,
29
 
    FeedPerson,
30
 
    FeedTypedData,
31
 
    )
32
22
from lp.app.browser.stringformatter import FormattersAPI
33
23
from lp.registry.interfaces.announcement import (
34
24
    IAnnouncementSet,
37
27
from lp.registry.interfaces.distribution import IDistribution
38
28
from lp.registry.interfaces.product import IProduct
39
29
from lp.registry.interfaces.projectgroup import IProjectGroup
40
 
from lp.services.feeds.interfaces import IFeedsApplication
 
30
from lp.services.feeds.feed import (
 
31
    FeedBase,
 
32
    FeedEntry,
 
33
    FeedPerson,
 
34
    FeedTypedData,
 
35
    )
 
36
from lp.services.feeds.interfaces.application import IFeedsApplication
 
37
from lp.services.webapp import (
 
38
    canonical_url,
 
39
    urlappend,
 
40
    )
41
41
 
42
42
 
43
43
class AnnouncementsFeedBase(FeedBase):