Commit 17564ae9 authored by David Glick's avatar David Glick

in Zope 2.13, the CMF permission declarations have been moved to CMFCore. this...

in Zope 2.13, the CMF permission declarations have been moved to CMFCore. this means that on Zope 2.13 CMFCore 2.2.2 is a minimum dependency, but I'm not sure how to declare that
parent 940db2b8
...@@ -4,6 +4,8 @@ Products.DCWorkflow Changelog ...@@ -4,6 +4,8 @@ Products.DCWorkflow Changelog
2.2.3 (unreleased) 2.2.3 (unreleased)
------------------ ------------------
- Explicitly include permissions from CMFCore, which are needed now that
they aren't declared in Five in Zope 2.13.
2.2.2 (2010-11-11) 2.2.2 (2010-11-11)
------------------ ------------------
......
...@@ -2,8 +2,14 @@ ...@@ -2,8 +2,14 @@
xmlns="http://namespaces.zope.org/zope" xmlns="http://namespaces.zope.org/zope"
xmlns:five="http://namespaces.zope.org/five" xmlns:five="http://namespaces.zope.org/five"
xmlns:genericsetup="http://namespaces.zope.org/genericsetup" xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
xmlns:zcml="http://namespaces.zope.org/zcml"
i18n_domain="cmf_default"> i18n_domain="cmf_default">
<configure zcml:condition="installed AccessControl.security">
<!-- for Zope 2.13 -->
<include package="Products.CMFCore" file="permissions.zcml" />
</configure>
<include package=".browser"/> <include package=".browser"/>
<include file="exportimport.zcml"/> <include file="exportimport.zcml"/>
......
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