~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/feed/branch.py

  • Committer: William Grant
  • Date: 2011-12-30 07:23:45 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230072345-c219vnmjiz8r8pah
merge canonical.lazr.feed into lp.services.feeds.

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
27
from canonical.lazr.interfaces import IFeedPerson
42
28
from lp.code.browser.branch import BranchView
43
29
from lp.code.interfaces.branch import (
49
35
from lp.registry.interfaces.person import IPerson
50
36
from lp.registry.interfaces.product import IProduct
51
37
from lp.registry.interfaces.projectgroup import IProjectGroup
 
38
from lp.services.config import config
 
39
from lp.services.feeds.feed import (
 
40
    FeedBase,
 
41
    FeedEntry,
 
42
    FeedPerson,
 
43
    FeedTypedData,
 
44
    MINUTES,
 
45
    )
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):