3973.1.76
by Steve Alexander
remove or comment out a load of zcml imports from zope that we are not actually using. turn off debug namespace in general, but turn it on just for developer machines. |
1 |
<configure /> |
2 |
<!--<include package="zope.app.rdb" />-->
|
|
3 |
<!--
|
|
4 |
<configure
|
|
5 |
xmlns="http://namespaces.zope.org/zope"
|
|
6 |
i18n_domain="zope"
|
|
7 |
>
|
|
8 |
<permission
|
|
9 |
id="zope.app.rdb.Use"
|
|
10 |
title="[zope.app.rdb.Use] Use Database Connections"
|
|
11 |
/>
|
|
12 |
||
13 |
<content class="zope.app.rdb.ZopeConnection">
|
|
14 |
<require
|
|
15 |
permission="zope.ManageContent"
|
|
16 |
interface="zope.app.rdb.interfaces.IZopeConnection"
|
|
17 |
/>
|
|
18 |
</content>
|
|
19 |
||
20 |
<content class="zope.app.rdb.ZopeCursor">
|
|
21 |
<require
|
|
22 |
permission="zope.ManageContent"
|
|
23 |
interface="zope.app.rdb.interfaces.IZopeCursor"
|
|
24 |
/>
|
|
25 |
</content>
|
|
26 |
||
27 |
<content class="zope.app.rdb.Row">
|
|
28 |
<require
|
|
29 |
permission="zope.ManageContent"
|
|
30 |
attributes="__getattr__"
|
|
31 |
/>
|
|
32 |
</content>
|
|
33 |
||
34 |
<content class="zope.app.rdb.ResultSet">
|
|
35 |
<require
|
|
36 |
permission="zope.View"
|
|
37 |
attributes="__getitem__ __getslice__ __len__ __iter__ __contains__
|
|
38 |
index count __str__ __add__ __radd__" />
|
|
39 |
||
40 |
<require
|
|
41 |
permission="zope.View"
|
|
42 |
attributes="columns"
|
|
43 |
/>
|
|
44 |
</content>
|
|
45 |
</configure>-->
|