Commit 437d1738 authored by Hanno Schlichting's avatar Hanno Schlichting

Made sure to exclude a number of meta ZCML handlers from ``zope.*`` packages...

Made sure to exclude a number of meta ZCML handlers from ``zope.*`` packages where Zope2 provides its own implementations.
parent 4aadd74e
......@@ -11,6 +11,9 @@ http://docs.zope.org/zope2/releases/.
Bugs Fixed
++++++++++
- Made sure to exclude a number of meta ZCML handlers from ``zope.*`` packages
where Zope2 provides its own implementations.
- Fix support for non-public permission attributes in the
browser:view directive so that attributes which are not included in
allowed_interface or allowed_attributes but which have declarations from a
......
<configure xmlns="http://namespaces.zope.org/zope"
xmlns:five="http://namespaces.zope.org/five">
<include file="exclude.zcml" />
<include file="meta.zcml" />
<include package="AccessControl" file="permissions.zcml" />
......
<configure xmlns="http://namespaces.zope.org/zope">
<exclude package="zope.browserpage" file="meta.zcml" />
<exclude package="zope.browsermenu" file="meta.zcml" />
<exclude package="zope.browserresource" file="meta.zcml" />
<exclude package="zope.publisher" file="meta.zcml" />
<exclude package="zope.viewlet" file="meta.zcml" />
</configure>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment