[Checkins] SVN: zope.app.securitypolicy/trunk/ use zope.browser.interfaces.ITerms instead of zope.app.form.browser.interfaces

Roger Ineichen roger at projekt01.ch
Wed Dec 10 23:49:51 EST 2008


Log message for revision 93876:
  use zope.browser.interfaces.ITerms instead of zope.app.form.browser.interfaces
  
  Note:
  This version requires zope.app.form 3.7.0 and will not work with lower versions.
  Since th KGS is responsible for pinning version I didn't define it here.
  I also didn't define it here because only the browser grant view part needs
  this higher version. This means it will work with lower zope.app.form versions
  if you don't use the browser views in your project.
  
  If you update all released packages from pypi, this works since you will get
  the newest zope.app.form package. If you declared own package versions you need
  to pin it by your own depending on your configure setup situation.
  

Changed:
  U   zope.app.securitypolicy/trunk/CHANGES.txt
  U   zope.app.securitypolicy/trunk/setup.py
  U   zope.app.securitypolicy/trunk/src/zope/app/securitypolicy/browser/granting.txt

-=-
Modified: zope.app.securitypolicy/trunk/CHANGES.txt
===================================================================
--- zope.app.securitypolicy/trunk/CHANGES.txt	2008-12-11 04:25:36 UTC (rev 93875)
+++ zope.app.securitypolicy/trunk/CHANGES.txt	2008-12-11 04:49:51 UTC (rev 93876)
@@ -2,12 +2,16 @@
 CHANGES
 =======
 
-3.5.0 (unreleased)
+3.5.0 (2008-12-11)
 ------------------
 
-- ...
+- use zope.browser.interfaces.ITerms instead of zope.app.form.browser.interfaces
+  This version requires zope.app.form 3.7.0 or higher if you use the browser
+  part of this package. (grant form)
 
+- Substitute zope.app.zapi by direct calls to its wrapped apis. See bug 219302
 
+
 3.4.6 (2007-11-09)
 ------------------
 

Modified: zope.app.securitypolicy/trunk/setup.py
===================================================================
--- zope.app.securitypolicy/trunk/setup.py	2008-12-11 04:25:36 UTC (rev 93875)
+++ zope.app.securitypolicy/trunk/setup.py	2008-12-11 04:49:51 UTC (rev 93876)
@@ -24,7 +24,7 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.app.securitypolicy',
-    version = '3.5.0dev',
+    version = '3.5.0',
     author='Zope Corporation and Contributors',
     author_email='zope3-dev at zope.org',
     description="Zope's Default Security Policy ZMI Support",
@@ -52,6 +52,7 @@
     extras_require = dict(test=['zope.app.testing']),
     install_requires=['setuptools',
                       'zope.annotation',
+                      'zope.browser',
                       'zope.app.form',
                       'zope.app.security',
                       'zope.component [hook]',

Modified: zope.app.securitypolicy/trunk/src/zope/app/securitypolicy/browser/granting.txt
===================================================================
--- zope.app.securitypolicy/trunk/src/zope/app/securitypolicy/browser/granting.txt	2008-12-11 04:25:36 UTC (rev 93875)
+++ zope.app.securitypolicy/trunk/src/zope/app/securitypolicy/browser/granting.txt	2008-12-11 04:49:51 UTC (rev 93876)
@@ -86,7 +86,7 @@
 
     >>> from zope.app.security.interfaces import IPrincipalSource
     >>> from zope.app.security.browser.principalterms import PrincipalTerms
-    >>> from zope.app.form.browser.interfaces import ITerms
+    >>> from zope.browser.interfaces import ITerms
     >>> ztapi.browserViewProviding(IPrincipalSource, PrincipalTerms, ITerms)
 
     >>> from zope.app.security.browser.auth import AuthUtilitySearchView



More information about the Checkins mailing list