blob: ba0fc50ccc87fa9371bc76eb6fae63c812ab8034 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:meta="http://namespaces.zope.org/meta">
<meta:directives namespace="http://namespaces.repoze.org/bfg">
<meta:directive
name="view"
schema="repoze.bfg.zcml.IViewDirective"
handler="repoze.bfg.zcml.view"
/>
<meta:directive
name="scan"
schema="repoze.bfg.zcml.IScanDirective"
handler="repoze.bfg.zcml.scan"
/>
<meta:directive
name="notfound"
schema="repoze.bfg.zcml.INotFoundViewDirective"
handler="repoze.bfg.zcml.notfound"
/>
<meta:directive
name="forbidden"
schema="repoze.bfg.zcml.IForbiddenViewDirective"
handler="repoze.bfg.zcml.forbidden"
/>
<meta:directive
name="route"
schema="repoze.bfg.zcml.IRouteDirective"
handler="repoze.bfg.zcml.route"
/>
<meta:directive
name="resource"
schema="repoze.bfg.zcml.IResourceDirective"
handler="repoze.bfg.zcml.resource"
/>
</meta:directives>
</configure>
|