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

Roger Ineichen roger at projekt01.ch
Wed Dec 10 22:38:22 EST 2008


Log message for revision 93869:
  use zope.browser.interfaces.ITerms instead of zope.app.form.browser.interfaces
  version bump

Changed:
  U   zope.app.security/trunk/CHANGES.txt
  U   zope.app.security/trunk/setup.py
  U   zope.app.security/trunk/src/zope/app/security/browser/configure.zcml
  U   zope.app.security/trunk/src/zope/app/security/browser/principalterms.py

-=-
Modified: zope.app.security/trunk/CHANGES.txt
===================================================================
--- zope.app.security/trunk/CHANGES.txt	2008-12-11 02:42:36 UTC (rev 93868)
+++ zope.app.security/trunk/CHANGES.txt	2008-12-11 03:38:22 UTC (rev 93869)
@@ -2,6 +2,11 @@
 CHANGES
 =======
 
+3.5.3 (2008-12-11)
+---------------------
+
+- use zope.browser.interfaces.ITerms instead of zope.app.form.browser.interfaces
+
 3.5.2 (2008-07-31)
 ------------------
 

Modified: zope.app.security/trunk/setup.py
===================================================================
--- zope.app.security/trunk/setup.py	2008-12-11 02:42:36 UTC (rev 93868)
+++ zope.app.security/trunk/setup.py	2008-12-11 03:38:22 UTC (rev 93869)
@@ -22,7 +22,7 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.app.security',
-      version = '3.5.3dev',
+      version = '3.5.3',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       description='Security Components for Zope 3 Applications',
@@ -64,6 +64,7 @@
       namespace_packages=['zope', 'zope.app'],
       extras_require=dict(test=['zope.app.testing']),
       install_requires=['setuptools',
+                        'zope.browser',
                         'zope.app.authentication',
                         'zope.app.component',
                         'zope.app.container',

Modified: zope.app.security/trunk/src/zope/app/security/browser/configure.zcml
===================================================================
--- zope.app.security/trunk/src/zope/app/security/browser/configure.zcml	2008-12-11 02:42:36 UTC (rev 93868)
+++ zope.app.security/trunk/src/zope/app/security/browser/configure.zcml	2008-12-11 03:38:22 UTC (rev 93869)
@@ -13,7 +13,7 @@
   <adapter
       for="zope.app.security.interfaces.IPrincipalSource
            zope.publisher.interfaces.browser.IBrowserRequest"
-      provides="zope.app.form.browser.interfaces.ITerms"
+      provides="zope.browser.interfaces.ITerms"
       factory="zope.app.security.browser.principalterms.PrincipalTerms"
       />
 

Modified: zope.app.security/trunk/src/zope/app/security/browser/principalterms.py
===================================================================
--- zope.app.security/trunk/src/zope/app/security/browser/principalterms.py	2008-12-11 02:42:36 UTC (rev 93868)
+++ zope.app.security/trunk/src/zope/app/security/browser/principalterms.py	2008-12-11 03:38:22 UTC (rev 93869)
@@ -19,9 +19,9 @@
 
 from zope.component import getUtility
 from zope.interface import implements
+from zope.browser.interfaces import ITerms
 from zope.publisher.interfaces.browser import IBrowserRequest
 
-from zope.app.form.browser.interfaces import ITerms
 from zope.app.security.interfaces import IAuthentication, IPrincipalSource
 
 class Term(object):



More information about the Checkins mailing list