~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/feeds/configure.zcml

  • 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:
10
10
 
11
11
    <securedutility
12
12
        class="lp.systemhomes.FeedsApplication"
13
 
        provides="lp.services.feeds.interfaces.IFeedsApplication">
 
13
        provides="lp.services.feeds.interfaces.application.IFeedsApplication">
14
14
        <allow
15
 
            interface="lp.services.feeds.interfaces.IFeedsApplication" />
 
15
            interface="lp.services.feeds.interfaces.application.IFeedsApplication" />
16
16
    </securedutility>
17
17
 
18
18
    <adapter
19
19
        provides="lp.services.webapp.interfaces.ICanonicalUrlData"
20
 
        for="lp.services.feeds.interfaces.IFeedsApplication"
 
20
        for="lp.services.feeds.interfaces.application.IFeedsApplication"
21
21
        factory="lp.services.feeds.browser.FeedsRootUrlData"
22
22
        />
23
23
 
24
24
    <browser:defaultView
25
 
        for="lp.services.feeds.interfaces.IFeedsApplication"
 
25
        for="lp.services.feeds.interfaces.application.IFeedsApplication"
26
26
        name="+index"
27
27
        />
28
28
 
33
33
 
34
34
    <!-- Macros -->
35
35
    <browser:page
36
 
        for="canonical.lazr.interfaces.feed.IFeedEntry"
 
36
        for="lp.services.feeds.interfaces.feed.IFeedEntry"
37
37
        name="feed-entry-atom"
38
38
        permission="zope.Public"
39
39
        template="templates/feed-entry-atom.pt"