[Checkins] SVN: zope.pluggableauth/trunk/ First row of re-arrangement.

Souheil CHELFOUH souheil at chelfouh.com
Sat Jan 23 12:38:03 EST 2010


Log message for revision 108407:
  First row of re-arrangement.
  

Changed:
  U   zope.pluggableauth/trunk/CHANGES.txt
  U   zope.pluggableauth/trunk/setup.py
  D   zope.pluggableauth/trunk/src/zope/app/authentication/
  A   zope.pluggableauth/trunk/src/zope/pluggableauth/

-=-
Modified: zope.pluggableauth/trunk/CHANGES.txt
===================================================================
--- zope.pluggableauth/trunk/CHANGES.txt	2010-01-23 16:15:03 UTC (rev 108406)
+++ zope.pluggableauth/trunk/CHANGES.txt	2010-01-23 17:38:03 UTC (rev 108407)
@@ -2,104 +2,7 @@
 Changes
 =======
 
-3.6.3 (unreleased)
-------------------
+1.0 (unreleased)
+----------------
 
-- Nothing changed yet.
-
-
-3.6.2 (2010-01-05)
-------------------
-
-- Fix tests by using zope.login, and require new zope.publisher 3.12.
-
-
-3.6.1 (2009-10-07)
-------------------
-
-* Fix ftesting.zcml due to ``zope.securitypolicy`` update.
-
-* Don't use ``zope.app.testing.ztapi`` in tests, use zope.component's
-  testing functions instead.
-
-* Fix functional tests and stop using port 8081. Redirecting to
-  different port without trusted flag is not allowed.
-
-3.6.0 (2009-03-14)
-------------------
-
-* Separate the presentation template and camefrom/redirection logic for the
-  ``loginForm.html`` view. Now the logic is contained in the
-  ``zope.app.authentication.browser.loginform.LoginForm`` class.
-
-* Fix login form redirection failure in some cases with Python 2.6.
-
-* Use the new ``zope.authentication`` package instead of ``zope.app.security``. 
-
-* The "Password Manager Names" vocabulary and simple password manager registry
-  were moved to the ``zope.password`` package.
-
-* Remove deprecated code.
-
-
-3.5.0 (2009-03-06)
-------------------
-
-* 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``.
-
-3.5.0a2 (2009-02-01)
---------------------
-
-* Make old encoded passwords really work.
-
-3.5.0a1 (2009-01-31)
---------------------
-
-* Use ``zope.container`` instead of ``zope.app.container``.
-
-* Encoded passwords are now stored with a prefix ({MD5}, {SHA1},
-  {SSHA}) indicating the used encoding schema. Old (encoded) passwords
-  can still be used.
-
-* Add an SSHA password manager that is compatible with standard LDAP
-  passwords. As this encoding gives better security agains dictionary
-  attacks, users are encouraged to switch to this new password schema.
-
-* InternalPrincipal now uses SSHA password manager by default.
-
-3.4.4 (2008-12-12)
-------------------
-
-* Depend on zope.session instead of zope.app.session. The first one
-  currently has all functionality we need.
-* Fix deprecation warnings for ``md5`` and ``sha`` on Python 2.6.
-
-3.4.3 (2008-08-07)
-------------------
-
-* No changes. Retag for correct release on PyPI.
-
-3.4.2 (2008-07-09)
--------------------
-
-* Make it compatible with zope.app.container 3.6.1 and 3.5.4 changes,
-  Changed ``super(BTreeContainer, self).__init__()`` to 
-  ``super(GroupFolder, self).__init__()`` in ``GroupFolder`` class.
-
-3.4.1 (2007-10-24)
-------------------
-
-* Avoid deprecation warning.
-
-3.4.0 (2007-10-11)
-------------------
-
-* Updated package meta-data.
-
-3.4.0b1 (2007-09-27)
---------------------
-
-* First release independent of Zope.
+- Splitting off from zope.app.authentication

Modified: zope.pluggableauth/trunk/setup.py
===================================================================
--- zope.pluggableauth/trunk/setup.py	2010-01-23 16:15:03 UTC (rev 108406)
+++ zope.pluggableauth/trunk/setup.py	2010-01-23 17:38:03 UTC (rev 108407)
@@ -1,33 +1,18 @@
 ##############################################################################
-#
-# Copyright (c) 2006 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
 # This package is developed by the Zope Toolkit project, documented here:
 # http://docs.zope.org/zopetoolkit
 # When developing and releasing this package, please follow the documented
 # Zope Toolkit policies as described by this documentation.
 ##############################################################################
-"""Setup for zope.app.authentication package
 
-$Id$
-"""
 import os
 from setuptools import setup, find_packages
 
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-setup(name='zope.app.authentication',
-      version = '3.6.3dev',
+setup(name='zope.pluggableauth',
+      version = '1.0dev',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
       description='Pluggable Authentication Utility',
@@ -37,15 +22,15 @@
         'Detailed Documentation\n' +
         '----------------------\n'
         + '\n' +
-        read('src', 'zope', 'app', 'authentication', 'README.txt')
+        read('src', 'zope', 'authentication', 'README.txt')
         + '\n\n' +
-        read('src', 'zope', 'app', 'authentication', 'principalfolder.txt')
+        read('src', 'zope', 'authentication', 'principalfolder.txt')
         + '\n\n' +
-        read('src', 'zope', 'app', 'authentication', 'vocabulary.txt')
+        read('src', 'zope', 'authentication', 'vocabulary.txt')
         + '\n\n' +
         read('CHANGES.txt')
         ),
-      url='http://pypi.python.org/pypi/zope.app.authentication',
+      url='http://pypi.python.org/pypi/zope.pluggableauth',
       license='ZPL 2.1',
       classifiers = [
           'Development Status :: 5 - Production/Stable',
@@ -57,7 +42,7 @@
           'Operating System :: OS Independent',
           'Topic :: Internet :: WWW/HTTP',
           'Framework :: Zope3'],
-      keywords='zope3 authentication pluggable principal group',
+      keywords='zope3 ztk authentication pluggable',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       extras_require=dict(test=['zope.app.testing',
@@ -66,11 +51,11 @@
                                 'zope.securitypolicy',
                                 'zope.testbrowser',
                                 'zope.login',]),
-      namespace_packages=['zope', 'zope.app'],
+      namespace_packages=['zope'],
       install_requires=['setuptools',
-                        'zope.app.component',
-                        'zope.app.container',
-                        'zope.app.form',
+                        'zope.component',
+                        'zope.container',
+                        'zope.formlib',
                         'zope.authentication',
                         'zope.dublincore',
                         'zope.event',



More information about the checkins mailing list