[Checkins] SVN: zope.pluggableauth/trunk/ Cleaned the dependencies.

Souheil CHELFOUH souheil at chelfouh.com
Sun Jan 24 18:18:34 EST 2010


Log message for revision 108452:
  Cleaned the dependencies.
  

Changed:
  U   zope.pluggableauth/trunk/README.txt
  U   zope.pluggableauth/trunk/setup.py
  U   zope.pluggableauth/trunk/src/zope/pluggableauth/authentication.py

-=-
Modified: zope.pluggableauth/trunk/README.txt
===================================================================
--- zope.pluggableauth/trunk/README.txt	2010-01-24 23:09:46 UTC (rev 108451)
+++ zope.pluggableauth/trunk/README.txt	2010-01-24 23:18:34 UTC (rev 108452)
@@ -2,5 +2,5 @@
  Pluggable Authentication
 ==========================
 
-This package provides a flexible and pluggable authentication utility for Zope
-3. Several common plugins are provided.
+Based on zope.authentication, this package provides a flexible and
+pluggable authentication utility. Several common plugins are provided.

Modified: zope.pluggableauth/trunk/setup.py
===================================================================
--- zope.pluggableauth/trunk/setup.py	2010-01-24 23:09:46 UTC (rev 108451)
+++ zope.pluggableauth/trunk/setup.py	2010-01-24 23:18:34 UTC (rev 108452)
@@ -36,10 +36,8 @@
           'zope.component',
           'zope.container',
           'zope.event',
-          'zope.i18n',
           'zope.i18nmessageid',
           'zope.interface',
-          'zope.location',
           'zope.publisher>=3.12',
           'zope.schema',
           'zope.security',

Modified: zope.pluggableauth/trunk/src/zope/pluggableauth/authentication.py
===================================================================
--- zope.pluggableauth/trunk/src/zope/pluggableauth/authentication.py	2010-01-24 23:09:46 UTC (rev 108451)
+++ zope.pluggableauth/trunk/src/zope/pluggableauth/authentication.py	2010-01-24 23:18:34 UTC (rev 108452)
@@ -15,16 +15,13 @@
 
 $Id$
 """
-from zope.interface import implements
 from zope import component
-from zope.schema.interfaces import ISourceQueriables
-from zope.location.interfaces import ILocation
-from zope.site.next import queryNextUtility
-
 from zope.authentication.interfaces import IAuthentication, PrincipalLookupError
 from zope.container.btree import BTreeContainer
-
+from zope.interface import implements
 from zope.pluggableauth import interfaces
+from zope.schema.interfaces import ISourceQueriables
+from zope.site.next import queryNextUtility
 
 
 class PluggableAuthentication(BTreeContainer):



More information about the checkins mailing list