[Checkins] SVN: z3c.optionstorage/tags/1.0.5/ Release 1.0.5.

Marius Gedminas marius at pov.lt
Mon Jan 4 10:28:20 EST 2010


Log message for revision 107633:
  Release 1.0.5.
  
  

Changed:
  A   z3c.optionstorage/tags/1.0.5/
  D   z3c.optionstorage/tags/1.0.5/CHANGES.txt
  A   z3c.optionstorage/tags/1.0.5/CHANGES.txt
  D   z3c.optionstorage/tags/1.0.5/setup.py
  A   z3c.optionstorage/tags/1.0.5/setup.py
  D   z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/DEPENDENCIES.cfg
  A   z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/DEPENDENCIES.cfg
  D   z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/metaconfigure.py
  A   z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/metaconfigure.py

-=-
Deleted: z3c.optionstorage/tags/1.0.5/CHANGES.txt
===================================================================
--- z3c.optionstorage/trunk/CHANGES.txt	2010-01-04 10:02:28 UTC (rev 107625)
+++ z3c.optionstorage/tags/1.0.5/CHANGES.txt	2010-01-04 15:28:20 UTC (rev 107633)
@@ -1,28 +0,0 @@
-=======
-CHANGES
-=======
-
-0.1.4 (2007-11-03)
-------------------
-
-- Fix up package meta data.
-
-0.1.3 (2007-07-04)
-------------------
-
-- Ensure that all package files are included in the egg.
-
-0.1.2 (2007-07-04)
-------------------
-
-- Bug fix.
-
-0.1.1 (2007-07-04)
-------------------
-
-- Fix packaging data.
-
-0.1.0 (2007-06-22)
-------------------
-
-- Initial release.

Copied: z3c.optionstorage/tags/1.0.5/CHANGES.txt (from rev 107632, z3c.optionstorage/trunk/CHANGES.txt)
===================================================================
--- z3c.optionstorage/tags/1.0.5/CHANGES.txt	                        (rev 0)
+++ z3c.optionstorage/tags/1.0.5/CHANGES.txt	2010-01-04 15:28:20 UTC (rev 107633)
@@ -0,0 +1,33 @@
+=======
+CHANGES
+=======
+
+1.0.5 (2010-01-04)
+------------------
+
+- Remove dependency on zope.app.schema.
+
+1.0.4 (2007-11-03)
+------------------
+
+- Fix up package meta data.
+
+0.1.3 (2007-07-04)
+------------------
+
+- Ensure that all package files are included in the egg.
+
+0.1.2 (2007-07-04)
+------------------
+
+- Bug fix.
+
+0.1.1 (2007-07-04)
+------------------
+
+- Fix packaging data.
+
+0.1.0 (2007-06-22)
+------------------
+
+- Initial release.

Deleted: z3c.optionstorage/tags/1.0.5/setup.py
===================================================================
--- z3c.optionstorage/trunk/setup.py	2010-01-04 10:02:28 UTC (rev 107625)
+++ z3c.optionstorage/tags/1.0.5/setup.py	2010-01-04 15:28:20 UTC (rev 107633)
@@ -1,68 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 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 z3c.viewlet 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='z3c.optionstorage',
-      version = '1.1.0',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      description='Optional Storages -- Persistent, Managable Vocabularies',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 vocabulary zodb managable",
-      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'],
-      url='http://cheeseshop.python.org/pypi/z3c.optionstorage',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['z3c'],
-      extras_require=dict(test=['zope.testing']),
-      install_requires = ['setuptools',
-                          'ZODB3',
-                          'zope.annotation',
-                          'zope.configuration',
-                          'zope.deprecation',
-                          'zope.i18n',
-                          'zope.interface',
-                          'zope.proxy',
-                          'zope.app.schema',
-                          'zope.schema',
-                          'zope.security',
-                          'zope.app.pagetemplate',
-                          'zope.app.publisher',
-                          'zope.app.form',
-                          'zope.app.zapi'],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: z3c.optionstorage/tags/1.0.5/setup.py (from rev 107632, z3c.optionstorage/trunk/setup.py)
===================================================================
--- z3c.optionstorage/tags/1.0.5/setup.py	                        (rev 0)
+++ z3c.optionstorage/tags/1.0.5/setup.py	2010-01-04 15:28:20 UTC (rev 107633)
@@ -0,0 +1,68 @@
+##############################################################################
+#
+# Copyright (c) 2007 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 z3c.optionstorage 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='z3c.optionstorage',
+      version = '1.0.5',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Optional Storages -- Persistent, Managable Vocabularies',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 vocabulary zodb managable",
+      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'],
+      url='http://cheeseshop.python.org/pypi/z3c.optionstorage',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['z3c'],
+      extras_require=dict(test=['zope.testing']),
+      install_requires = ['setuptools',
+                          'ZODB3',
+                          'zope.annotation',
+                          'zope.component',
+                          'zope.configuration',
+                          'zope.deprecation',
+                          'zope.i18n',
+                          'zope.interface',
+                          'zope.proxy',
+                          'zope.schema',
+                          'zope.security',
+                          'zope.app.pagetemplate',
+                          'zope.app.publisher',
+                          'zope.app.form',
+                          'zope.app.zapi'],
+      include_package_data = True,
+      zip_safe = False,
+      )

Deleted: z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/DEPENDENCIES.cfg
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/DEPENDENCIES.cfg	2010-01-04 10:02:28 UTC (rev 107625)
+++ z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/DEPENDENCIES.cfg	2010-01-04 15:28:20 UTC (rev 107633)
@@ -1,11 +0,0 @@
-persistent
-zope.annotation
-zope.i18n
-zope.interface
-zope.proxy
-zope.schema
-zope.security
-zope.app.zapi
-
-# BBB 2006/02/24, to be removed after 12 months
-zope.app.schema

Copied: z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/DEPENDENCIES.cfg (from rev 107632, z3c.optionstorage/trunk/src/z3c/optionstorage/DEPENDENCIES.cfg)
===================================================================
--- z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/DEPENDENCIES.cfg	                        (rev 0)
+++ z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/DEPENDENCIES.cfg	2010-01-04 15:28:20 UTC (rev 107633)
@@ -0,0 +1,9 @@
+persistent
+zope.annotation
+zope.component
+zope.i18n
+zope.interface
+zope.proxy
+zope.schema
+zope.security
+zope.app.zapi

Deleted: z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/metaconfigure.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/metaconfigure.py	2010-01-04 10:02:28 UTC (rev 107625)
+++ z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/metaconfigure.py	2010-01-04 15:28:20 UTC (rev 107633)
@@ -1,20 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 Zope Foundation 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.
-#
-##############################################################################
-from z3c.optionstorage.vocabulary import OptionStorageVocabulary
-from zope.app.schema.metaconfigure import vocabulary
-
-def optionStorageVocabulary(_context, name):
-    def factory(object, name=name):
-        return OptionStorageVocabulary(object, name=name)
-    vocabulary(_context, name, factory)

Copied: z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/metaconfigure.py (from rev 107632, z3c.optionstorage/trunk/src/z3c/optionstorage/metaconfigure.py)
===================================================================
--- z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/metaconfigure.py	                        (rev 0)
+++ z3c.optionstorage/tags/1.0.5/src/z3c/optionstorage/metaconfigure.py	2010-01-04 15:28:20 UTC (rev 107633)
@@ -0,0 +1,23 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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.
+#
+##############################################################################
+from z3c.optionstorage.vocabulary import OptionStorageVocabulary
+from zope.component.zcml import utility
+from zope.schema.interfaces import IVocabularyFactory
+
+
+def optionStorageVocabulary(_context, name):
+    def factory(object, name=name):
+        return OptionStorageVocabulary(object, name=name)
+    directlyProvides(factory, IVocabularyFactory)
+    utility(_context, IVocabularyFactory, factory, name=name)



More information about the checkins mailing list