[Checkins] SVN: zope.app.authentication/trunk/ added some notes why zope.app packages are needed

Michael Howitz mh at gocept.com
Fri Aug 20 06:55:26 EDT 2010


Log message for revision 115828:
  added some notes why zope.app packages are needed
  

Changed:
  U   zope.app.authentication/trunk/CHANGES.txt
  U   zope.app.authentication/trunk/setup.py

-=-
Modified: zope.app.authentication/trunk/CHANGES.txt
===================================================================
--- zope.app.authentication/trunk/CHANGES.txt	2010-08-20 10:36:51 UTC (rev 115827)
+++ zope.app.authentication/trunk/CHANGES.txt	2010-08-20 10:55:26 UTC (rev 115828)
@@ -65,7 +65,9 @@
 * Split password manager functionality off to the new ``zope.password``
   package. Backward-compatibility imports are left in place.
 
-* Use ``zope.site`` instead of ``zope.app.component``.
+* Use ``zope.site`` instead of ``zope.app.component``. (Browser code still
+  needs ``zope.app.component`` as it depends on view classes of this
+  package.)
 
 3.5.0a2 (2009-02-01)
 --------------------
@@ -75,7 +77,9 @@
 3.5.0a1 (2009-01-31)
 --------------------
 
-* Use ``zope.container`` instead of ``zope.app.container``.
+* Use ``zope.container`` instead of ``zope.app.container``. (Browser code
+  still needs ``zope.app.container`` as it depends on view classes of this
+  package.)
 
 * Encoded passwords are now stored with a prefix ({MD5}, {SHA1},
   {SSHA}) indicating the used encoding schema. Old (encoded) passwords

Modified: zope.app.authentication/trunk/setup.py
===================================================================
--- zope.app.authentication/trunk/setup.py	2010-08-20 10:36:51 UTC (rev 115827)
+++ zope.app.authentication/trunk/setup.py	2010-08-20 10:55:26 UTC (rev 115828)
@@ -63,7 +63,7 @@
       package_dir = {'': 'src'},
       extras_require=dict(test=[
           'zope.app.testing',
-          'zope.app.securitypolicy',
+          'zope.app.securitypolicy', # needed in browser tests
           'zope.app.zcmlfiles',
           'zope.securitypolicy',
           'zope.testbrowser',
@@ -78,9 +78,9 @@
       install_requires=[
           'ZODB3',
           'setuptools',
-          'zope.app.form',
-          'zope.app.container',
-          'zope.app.component',
+          'zope.app.form',# needed by browser code
+          'zope.app.container', # needed for browser code
+          'zope.app.component', # needed for browser code
           'zope.authentication',
           'zope.component',
           'zope.container',



More information about the checkins mailing list