blob: e3470d47a2bd0ee02319ff183a19a07f71104033 (
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
|
<configure xmlns="http://namespaces.repoze.org/bfg">
<include package="repoze.bfg.includes" />
<view
view=".views.fixture_view"
/>
<view
view=".views.exception_view"
for="RuntimeError"
/>
<view
view=".views.protected_view"
name="protected.html"
/>
<view
view=".views.erroneous_view"
name="error.html"
/>
<view
view=".views.fixture_view"
name="dummyskin.html"
request_type=".views.IDummy"
/>
<utility
component=".models.fixture"
provides=".models.IFixture"
/>
<include file="another.zcml"/>
</configure>
|