~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • 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:
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
 
        template="../../../canonical/lazr/feed/templates/feed-entry-atom.pt"
 
39
        template="templates/feed-entry-atom.pt"
40
40
        />
41
41
 
42
42