[Checkins] SVN: zope.password/tags/3.5.1/ Tag 3.5.1

Dan Korostelev nadako at gmail.com
Sat Mar 14 13:05:32 EDT 2009


Log message for revision 98100:
  Tag 3.5.1

Changed:
  A   zope.password/tags/3.5.1/
  D   zope.password/tags/3.5.1/CHANGES.txt
  A   zope.password/tags/3.5.1/CHANGES.txt
  D   zope.password/tags/3.5.1/setup.py
  A   zope.password/tags/3.5.1/setup.py
  D   zope.password/tags/3.5.1/src/zope/password/configure.zcml
  A   zope.password/tags/3.5.1/src/zope/password/configure.zcml

-=-
Deleted: zope.password/tags/3.5.1/CHANGES.txt
===================================================================
--- zope.password/trunk/CHANGES.txt	2009-03-14 16:07:38 UTC (rev 98096)
+++ zope.password/tags/3.5.1/CHANGES.txt	2009-03-14 17:05:31 UTC (rev 98100)
@@ -1,24 +0,0 @@
-=======
-CHANGES
-=======
-
-3.5.1 (unreleased)
-------------------
-
-- Make security protection directives in `configure.zcml` execute only
-  if ``zope.security`` is installed. This will allow reuse of the
-  `configure.zcml` file in environments without ``zope.security``,
-  for example with ``repoze.zcml``.
-
-- Add "Password Manager Names" vocabulary for use with ``zope.schema``
-  and ``zope.component``, like it was in ``zope.app.authentication``. It's
-  an optional feature so it doesn't add hard dependency. We use "vocabulary"
-  extra to list dependencies needed for vocabulary functionality. Also, the
-  zcml vocabulary registration is executed only if ``zope.schema`` is installed.
-
-3.5.0 (2009-03-06)
-------------------
-
-First release. This package was splitted off from ``zope.app.authentication``
-to separate password manager functionality that is greatly re-usable without
-any bit of ``zope.app.authentication`` and to reduce its dependencies.

Copied: zope.password/tags/3.5.1/CHANGES.txt (from rev 98099, zope.password/trunk/CHANGES.txt)
===================================================================
--- zope.password/tags/3.5.1/CHANGES.txt	                        (rev 0)
+++ zope.password/tags/3.5.1/CHANGES.txt	2009-03-14 17:05:31 UTC (rev 98100)
@@ -0,0 +1,23 @@
+=======
+CHANGES
+=======
+
+3.5.1 (2009-03-14)
+------------------
+
+- Make security protection directives in `configure.zcml` execute only
+  if ``zope.security`` is installed. This will allow reuse of the
+  `configure.zcml` file in environments without ``zope.security``,
+  for example with ``repoze.zcml``.
+
+- Add "Password Manager Names" vocabulary for use with ``zope.schema``
+  and ``zope.component``, like it was in ``zope.app.authentication``.
+  It's an optional feature so it doesn't add hard dependency. We use
+  "vocabulary" extra to list dependencies needed for vocabulary functionality.
+
+3.5.0 (2009-03-06)
+------------------
+
+First release. This package was splitted off from ``zope.app.authentication``
+to separate password manager functionality that is greatly re-usable without
+any bit of ``zope.app.authentication`` and to reduce its dependencies.

Deleted: zope.password/tags/3.5.1/setup.py
===================================================================
--- zope.password/trunk/setup.py	2009-03-14 16:07:38 UTC (rev 98096)
+++ zope.password/tags/3.5.1/setup.py	2009-03-14 17:05:31 UTC (rev 98100)
@@ -1,55 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2009 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.
-#
-##############################################################################
-"""Setup for zope.password package
-
-$Id$
-"""
-from setuptools import setup, find_packages
-
-
-setup(name='zope.password',
-      version='3.5.1dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      description='Password encoding and checking utilities',
-      long_description=(
-        open('README.txt').read()
-        + '\n\n' +
-        open('CHANGES.txt').read()
-        ),
-      url='http://pypi.python.org/pypi/zope.password',
-      license='ZPL 2.1',
-      classifiers = [
-          'Development Status :: 5 - Production/Stable',
-          'Environment :: Web Environment',
-          'Intended Audience :: Developers',
-          'License :: OSI Approved :: Zope Public License',
-          'Programming Language :: Python',
-          'Natural Language :: English',
-          'Operating System :: OS Independent',
-          'Topic :: Internet :: WWW/HTTP',
-          'Framework :: Zope3'],
-      keywords='zope3 zope authentication password',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      extras_require=dict(vocabulary=['zope.component', 'zope.schema'],
-                          test=['zope.testing', 'zope.component', 'zope.schema'],
-                          ),
-      namespace_packages=['zope'],
-      install_requires=['setuptools',
-                        'zope.interface',
-                        ],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: zope.password/tags/3.5.1/setup.py (from rev 98099, zope.password/trunk/setup.py)
===================================================================
--- zope.password/tags/3.5.1/setup.py	                        (rev 0)
+++ zope.password/tags/3.5.1/setup.py	2009-03-14 17:05:31 UTC (rev 98100)
@@ -0,0 +1,55 @@
+##############################################################################
+#
+# Copyright (c) 2009 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.
+#
+##############################################################################
+"""Setup for zope.password package
+
+$Id$
+"""
+from setuptools import setup, find_packages
+
+
+setup(name='zope.password',
+      version='3.5.1',
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      description='Password encoding and checking utilities',
+      long_description=(
+        open('README.txt').read()
+        + '\n\n' +
+        open('CHANGES.txt').read()
+        ),
+      url='http://pypi.python.org/pypi/zope.password',
+      license='ZPL 2.1',
+      classifiers = [
+          'Development Status :: 5 - Production/Stable',
+          'Environment :: Web Environment',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: Zope Public License',
+          'Programming Language :: Python',
+          'Natural Language :: English',
+          'Operating System :: OS Independent',
+          'Topic :: Internet :: WWW/HTTP',
+          'Framework :: Zope3'],
+      keywords='zope authentication password',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      extras_require=dict(vocabulary=['zope.component', 'zope.schema'],
+                          test=['zope.testing', 'zope.component', 'zope.schema'],
+                          ),
+      namespace_packages=['zope'],
+      install_requires=['setuptools',
+                        'zope.interface',
+                        ],
+      include_package_data = True,
+      zip_safe = False,
+      )

Deleted: zope.password/tags/3.5.1/src/zope/password/configure.zcml
===================================================================
--- zope.password/trunk/src/zope/password/configure.zcml	2009-03-14 16:07:38 UTC (rev 98096)
+++ zope.password/tags/3.5.1/src/zope/password/configure.zcml	2009-03-14 17:05:31 UTC (rev 98100)
@@ -1,57 +0,0 @@
-<configure
-    xmlns="http://namespaces.zope.org/zope"
-    xmlns:zcml="http://namespaces.zope.org/zcml"
-    >
-
-  <utility
-      name="Plain Text"
-      provides=".interfaces.IPasswordManager"
-      factory=".password.PlainTextPasswordManager"
-      />
-
-  <utility
-      name="MD5"
-      provides=".interfaces.IPasswordManager"
-      factory=".password.MD5PasswordManager"
-      />
-
-  <utility
-      name="SHA1"
-      provides=".interfaces.IPasswordManager"
-      factory=".password.SHA1PasswordManager"
-      />
-
-  <utility
-      name="SSHA"
-      provides=".interfaces.IPasswordManager"
-      factory=".password.SSHAPasswordManager"
-      />
-
-  <utility
-      zcml:condition="installed zope.schema"
-      component=".vocabulary.PasswordManagerNamesVocabulary"
-      provides="zope.schema.interfaces.IVocabularyFactory"
-      name="Password Manager Names"
-      />
-
-  <configure zcml:condition="installed zope.security">
-
-    <class class=".password.PlainTextPasswordManager">
-      <allow interface=".interfaces.IPasswordManager" />
-    </class>
-  
-    <class class=".password.MD5PasswordManager">
-      <allow interface=".interfaces.IPasswordManager" />
-    </class>
-  
-    <class class=".password.SHA1PasswordManager">
-      <allow interface=".interfaces.IPasswordManager" />
-    </class>
-  
-    <class class=".password.SSHAPasswordManager">
-      <allow interface=".interfaces.IPasswordManager" />
-    </class>
-
-  </configure>
-
-</configure>

Copied: zope.password/tags/3.5.1/src/zope/password/configure.zcml (from rev 98099, zope.password/trunk/src/zope/password/configure.zcml)
===================================================================
--- zope.password/tags/3.5.1/src/zope/password/configure.zcml	                        (rev 0)
+++ zope.password/tags/3.5.1/src/zope/password/configure.zcml	2009-03-14 17:05:31 UTC (rev 98100)
@@ -0,0 +1,56 @@
+<configure
+    xmlns="http://namespaces.zope.org/zope"
+    xmlns:zcml="http://namespaces.zope.org/zcml"
+    >
+
+  <utility
+      name="Plain Text"
+      provides=".interfaces.IPasswordManager"
+      factory=".password.PlainTextPasswordManager"
+      />
+
+  <utility
+      name="MD5"
+      provides=".interfaces.IPasswordManager"
+      factory=".password.MD5PasswordManager"
+      />
+
+  <utility
+      name="SHA1"
+      provides=".interfaces.IPasswordManager"
+      factory=".password.SHA1PasswordManager"
+      />
+
+  <utility
+      name="SSHA"
+      provides=".interfaces.IPasswordManager"
+      factory=".password.SSHAPasswordManager"
+      />
+
+  <utility
+      component=".vocabulary.PasswordManagerNamesVocabulary"
+      provides="zope.schema.interfaces.IVocabularyFactory"
+      name="Password Manager Names"
+      />
+
+  <configure zcml:condition="installed zope.security">
+
+    <class class=".password.PlainTextPasswordManager">
+      <allow interface=".interfaces.IPasswordManager" />
+    </class>
+  
+    <class class=".password.MD5PasswordManager">
+      <allow interface=".interfaces.IPasswordManager" />
+    </class>
+  
+    <class class=".password.SHA1PasswordManager">
+      <allow interface=".interfaces.IPasswordManager" />
+    </class>
+  
+    <class class=".password.SSHAPasswordManager">
+      <allow interface=".interfaces.IPasswordManager" />
+    </class>
+
+  </configure>
+
+</configure>



More information about the Checkins mailing list