blob: 15a49b2c0a21ed4ddb9fcb8aa47edf266254c9fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<configure xmlns="http://namespaces.zope.org/zope"
i18n_domain="repoze.bfg">
<include package="z3c.pt" />
<include package="zope.security" file="meta.zcml"/>
<permission
id="repoze.view"
title="View"
/>
<adapter
factory=".traversal.NaivePublishTraverser"
provides=".interfaces.IPublishTraverserFactory"
for="* *"
/>
<adapter
factory=".wsgiadapter.NaiveWSGIViewAdapter"
provides=".interfaces.IWSGIApplicationFactory"
for="* *"
/>
<include file="meta.zcml" />
</configure>
|