blob: 0223e25ba8b57598349ebd99ea88c56c8ca0b50d (
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>
|