~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/feeds/browser.py

  • Committer: William Grant
  • Date: 2011-12-30 07:32:58 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230073258-g76qf50dpdqcxzfb
Move the interfaces across too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from zope.publisher.interfaces import NotFound
29
29
from zope.security.interfaces import Unauthorized
30
30
 
31
 
from lp.services.config import config
32
 
from lp.layers import FeedsLayer
33
 
from lp.services.webapp import (
34
 
    canonical_name,
35
 
    canonical_url,
36
 
    Navigation,
37
 
    stepto,
38
 
    )
39
 
from lp.services.webapp.interfaces import (
40
 
    ICanonicalUrlData,
41
 
    ILaunchpadRoot,
42
 
    )
43
 
from lp.services.webapp.publisher import RedirectionView
44
 
from lp.services.webapp.url import urlappend
45
 
from lp.services.webapp.vhosts import allvhosts
46
31
from lp.app.errors import NotFoundError
47
32
from lp.bugs.interfaces.bug import IBugSet
48
33
from lp.bugs.interfaces.bugtarget import IHasBugs
51
36
    IBugTaskSet,
52
37
    )
53
38
from lp.code.interfaces.branch import IBranch
 
39
from lp.layers import FeedsLayer
54
40
from lp.registry.interfaces.announcement import (
55
41
    IAnnouncementSet,
56
42
    IHasAnnouncements,
62
48
from lp.registry.interfaces.pillar import IPillarNameSet
63
49
from lp.registry.interfaces.product import IProduct
64
50
from lp.registry.interfaces.projectgroup import IProjectGroup
65
 
from lp.services.feeds.interfaces import IFeedsApplication
 
51
from lp.services.config import config
 
52
from lp.services.feeds.interfaces.application import IFeedsApplication
 
53
from lp.services.webapp import (
 
54
    canonical_name,
 
55
    canonical_url,
 
56
    Navigation,
 
57
    stepto,
 
58
    )
 
59
from lp.services.webapp.interfaces import (
 
60
    ICanonicalUrlData,
 
61
    ILaunchpadRoot,
 
62
    )
 
63
from lp.services.webapp.publisher import RedirectionView
 
64
from lp.services.webapp.url import urlappend
 
65
from lp.services.webapp.vhosts import allvhosts
66
66
 
67
67
 
68
68
class FeedsRootUrlData: