~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/feed/branch.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:
24
24
from zope.interface import implements
25
25
from zope.security.interfaces import Unauthorized
26
26
 
27
 
from lp.services.config import config
28
 
from lp.services.webapp import (
29
 
    canonical_url,
30
 
    LaunchpadView,
31
 
    urlparse,
32
 
    )
33
 
from lp.services.webapp.interfaces import ILaunchpadRoot
34
 
from canonical.lazr.feed import (
35
 
    FeedBase,
36
 
    FeedEntry,
37
 
    FeedPerson,
38
 
    FeedTypedData,
39
 
    MINUTES,
40
 
    )
41
 
from canonical.lazr.interfaces import IFeedPerson
42
27
from lp.code.browser.branch import BranchView
43
28
from lp.code.interfaces.branch import (
44
29
    DEFAULT_BRANCH_STATUS_IN_LISTING,
49
34
from lp.registry.interfaces.person import IPerson
50
35
from lp.registry.interfaces.product import IProduct
51
36
from lp.registry.interfaces.projectgroup import IProjectGroup
 
37
from lp.services.config import config
 
38
from lp.services.feeds.feed import (
 
39
    FeedBase,
 
40
    FeedEntry,
 
41
    FeedPerson,
 
42
    FeedTypedData,
 
43
    MINUTES,
 
44
    )
 
45
from lp.services.feeds.interfaces.feed import IFeedPerson
52
46
from lp.services.propertycache import cachedproperty
 
47
from lp.services.webapp import (
 
48
    canonical_url,
 
49
    LaunchpadView,
 
50
    urlparse,
 
51
    )
 
52
from lp.services.webapp.interfaces import ILaunchpadRoot
53
53
 
54
54
 
55
55
def revision_feed_id(revision):