zope.app.broken-3.6.0/ 000755 000766 000024 00000000000 11447374774 014461 5 ustar 00mac staff 000000 000000 zope.app.broken-3.6.0/CHANGES.txt 000644 000766 000024 00000001053 11447374764 016270 0 ustar 00mac staff 000000 000000 ======= CHANGES ======= 3.6.0 (2010-09-25) ------------------ - Depend on new ``zope.processlifetime`` interfaces and implementations instead of using BBB imports from ``zope.app.appsetup``. - Added test extra to declare test dependency on ``zope.testing``. - Using Python's ``doctest`` module instead of depreacted ``zope.testing.doctest``. 3.5.0 (2009-02-05) ------------------ - Depend on new ``zope.broken`` package for the ``IBroken`` interface. 3.4.0 (2007-10-11) ------------------ - Initial release independent of the main Zope tree. zope.app.broken-3.6.0/PKG-INFO 000644 000766 000024 00000003300 11447374774 015552 0 ustar 00mac staff 000000 000000 Metadata-Version: 1.0 Name: zope.app.broken Version: 3.6.0 Summary: Zope Broken (ZODB) Object Support Home-page: http://cheeseshop.python.org/pypi/zope.app.broken Author: Zope Corporation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 Description: When an object cannot be correctly loaded from the ZODB, this package allows this object still to be instantiated, but as a "Broken" object. This allows for gracefully updating the database without interuption. ======= CHANGES ======= 3.6.0 (2010-09-25) ------------------ - Depend on new ``zope.processlifetime`` interfaces and implementations instead of using BBB imports from ``zope.app.appsetup``. - Added test extra to declare test dependency on ``zope.testing``. - Using Python's ``doctest`` module instead of depreacted ``zope.testing.doctest``. 3.5.0 (2009-02-05) ------------------ - Depend on new ``zope.broken`` package for the ``IBroken`` interface. 3.4.0 (2007-10-11) ------------------ - Initial release independent of the main Zope tree. Keywords: zope3 content provider Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: Zope Public License Classifier: Programming Language :: Python Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Topic :: Internet :: WWW/HTTP Classifier: Framework :: Zope3 zope.app.broken-3.6.0/README.txt 000644 000766 000024 00000000323 11447374764 016154 0 ustar 00mac staff 000000 000000 When an object cannot be correctly loaded from the ZODB, this package allows this object still to be instantiated, but as a "Broken" object. This allows for gracefully updating the database without interuption. zope.app.broken-3.6.0/bootstrap.py 000644 000766 000024 00000003370 11447374764 017052 0 ustar 00mac staff 000000 000000 ############################################################################## # # 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. # ############################################################################## """Bootstrap a buildout-based project Simply run this script in a directory containing a buildout.cfg. The script accepts buildout command-line options, so you can use the -c option to specify an alternate configuration file. $Id: bootstrap.py 73528 2007-03-25 07:03:34Z dobe $ """ import os, shutil, sys, tempfile, urllib2 tmpeggs = tempfile.mkdtemp() ez = {} exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py' ).read() in ez ez['use_setuptools'](to_dir=tmpeggs, download_delay=0) import pkg_resources cmd = 'from setuptools.command.easy_install import main; main()' if sys.platform == 'win32': cmd = '"%s"' % cmd # work around spawn lamosity on windows ws = pkg_resources.working_set assert os.spawnle( os.P_WAIT, sys.executable, sys.executable, '-c', cmd, '-mqNxd', tmpeggs, 'zc.buildout', dict(os.environ, PYTHONPATH= ws.find(pkg_resources.Requirement.parse('setuptools')).location ), ) == 0 ws.add_entry(tmpeggs) ws.require('zc.buildout') import zc.buildout.buildout zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap']) shutil.rmtree(tmpeggs) zope.app.broken-3.6.0/buildout.cfg 000644 000766 000024 00000000151 11447374764 016765 0 ustar 00mac staff 000000 000000 [buildout] develop = . parts = test [test] recipe = zc.recipe.testrunner eggs = zope.app.broken [test] zope.app.broken-3.6.0/setup.cfg 000644 000766 000024 00000000073 11447374774 016302 0 ustar 00mac staff 000000 000000 [egg_info] tag_build = tag_date = 0 tag_svn_revision = 0 zope.app.broken-3.6.0/setup.py 000644 000766 000024 00000005177 11447374764 016204 0 ustar 00mac staff 000000 000000 ############################################################################## # # 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.broken package $Id: setup.py 116914 2010-09-25 13:32:03Z icemac $ """ 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.broken', version='3.6.0', author='Zope Corporation and Contributors', author_email='zope-dev@zope.org', description='Zope Broken (ZODB) Object Support', long_description=( read('README.txt') + '\n\n' + read('CHANGES.txt') ), keywords = "zope3 content provider", 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/zope.app.broken', license='ZPL 2.1', packages=find_packages('src'), package_dir = {'': 'src'}, namespace_packages=['zope', 'zope.app'], install_requires=['setuptools', 'zope.interface', 'zope.location', 'zope.security', 'zope.annotation', 'zope.broken', 'zope.processlifetime', 'ZODB3'], extras_require=dict( test=[ 'zope.testing', ]), include_package_data = True, zip_safe = False, ) zope.app.broken-3.6.0/src/ 000755 000766 000024 00000000000 11447374774 015250 5 ustar 00mac staff 000000 000000 zope.app.broken-3.6.0/src/zope/ 000755 000766 000024 00000000000 11447374774 016225 5 ustar 00mac staff 000000 000000 zope.app.broken-3.6.0/src/zope.app.broken.egg-info/ 000755 000766 000024 00000000000 11447374774 021755 5 ustar 00mac staff 000000 000000 zope.app.broken-3.6.0/src/zope.app.broken.egg-info/PKG-INFO 000644 000766 000024 00000003300 11447374774 023046 0 ustar 00mac staff 000000 000000 Metadata-Version: 1.0 Name: zope.app.broken Version: 3.6.0 Summary: Zope Broken (ZODB) Object Support Home-page: http://cheeseshop.python.org/pypi/zope.app.broken Author: Zope Corporation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 Description: When an object cannot be correctly loaded from the ZODB, this package allows this object still to be instantiated, but as a "Broken" object. This allows for gracefully updating the database without interuption. ======= CHANGES ======= 3.6.0 (2010-09-25) ------------------ - Depend on new ``zope.processlifetime`` interfaces and implementations instead of using BBB imports from ``zope.app.appsetup``. - Added test extra to declare test dependency on ``zope.testing``. - Using Python's ``doctest`` module instead of depreacted ``zope.testing.doctest``. 3.5.0 (2009-02-05) ------------------ - Depend on new ``zope.broken`` package for the ``IBroken`` interface. 3.4.0 (2007-10-11) ------------------ - Initial release independent of the main Zope tree. Keywords: zope3 content provider Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: Zope Public License Classifier: Programming Language :: Python Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Topic :: Internet :: WWW/HTTP Classifier: Framework :: Zope3 zope.app.broken-3.6.0/src/zope.app.broken.egg-info/SOURCES.txt 000644 000766 000024 00000001231 11447374774 023636 0 ustar 00mac staff 000000 000000 CHANGES.txt README.txt bootstrap.py buildout.cfg setup.py src/zope/__init__.py src/zope.app.broken.egg-info/PKG-INFO src/zope.app.broken.egg-info/SOURCES.txt src/zope.app.broken.egg-info/dependency_links.txt src/zope.app.broken.egg-info/namespace_packages.txt src/zope.app.broken.egg-info/not-zip-safe src/zope.app.broken.egg-info/requires.txt src/zope.app.broken.egg-info/top_level.txt src/zope/app/__init__.py src/zope/app/broken/__init__.py src/zope/app/broken/broken.gif src/zope/app/broken/broken.pt src/zope/app/broken/broken.py src/zope/app/broken/browser.zcml src/zope/app/broken/configure.zcml src/zope/app/broken/interfaces.py src/zope/app/broken/tests.py zope.app.broken-3.6.0/src/zope.app.broken.egg-info/dependency_links.txt 000644 000766 000024 00000000001 11447374774 026023 0 ustar 00mac staff 000000 000000 zope.app.broken-3.6.0/src/zope.app.broken.egg-info/namespace_packages.txt 000644 000766 000024 00000000016 11447374774 026305 0 ustar 00mac staff 000000 000000 zope zope.app zope.app.broken-3.6.0/src/zope.app.broken.egg-info/not-zip-safe 000644 000766 000024 00000000001 11447374765 024203 0 ustar 00mac staff 000000 000000 zope.app.broken-3.6.0/src/zope.app.broken.egg-info/requires.txt 000644 000766 000024 00000000201 11447374774 024346 0 ustar 00mac staff 000000 000000 setuptools zope.interface zope.location zope.security zope.annotation zope.broken zope.processlifetime ZODB3 [test] zope.testing zope.app.broken-3.6.0/src/zope.app.broken.egg-info/top_level.txt 000644 000766 000024 00000000005 11447374774 024502 0 ustar 00mac staff 000000 000000 zope zope.app.broken-3.6.0/src/zope/__init__.py 000644 000766 000024 00000000311 11447374764 020330 0 ustar 00mac staff 000000 000000 # this is a namespace package try: import pkg_resources pkg_resources.declare_namespace(__name__) except ImportError: import pkgutil __path__ = pkgutil.extend_path(__path__, __name__) zope.app.broken-3.6.0/src/zope/app/ 000755 000766 000024 00000000000 11447374774 017005 5 ustar 00mac staff 000000 000000 zope.app.broken-3.6.0/src/zope/app/__init__.py 000644 000766 000024 00000000311 11447374764 021110 0 ustar 00mac staff 000000 000000 # this is a namespace package try: import pkg_resources pkg_resources.declare_namespace(__name__) except ImportError: import pkgutil __path__ = pkgutil.extend_path(__path__, __name__) zope.app.broken-3.6.0/src/zope/app/broken/ 000755 000766 000024 00000000000 11447374774 020265 5 ustar 00mac staff 000000 000000 zope.app.broken-3.6.0/src/zope/app/broken/__init__.py 000644 000766 000024 00000000041 11447374764 022370 0 ustar 00mac staff 000000 000000 # Make this directory a package. zope.app.broken-3.6.0/src/zope/app/broken/broken.gif 000644 000766 000024 00000001576 11447374764 022244 0 ustar 00mac staff 000000 000000 GIF89a ÷ ÿ ÿ PPP€€€ÀÀÀÿ € @ @€€ €@ @ÿÿ ÿÿ€ €€@€€ÿÿÿ !ù , [ Hp €ƒ*\ˆPaB…".|€bÄ‹3ˆXà ÄŽA É‘!Ń6"`ÈÒãJ“UŠDy²cÉ‘)+f\˜s§N YR|fÖ>O¶Z°i€€ ; zope.app.broken-3.6.0/src/zope/app/broken/broken.pt 000644 000766 000024 00000001036 11447374764 022111 0 ustar 00mac staff 000000 000000
This object is broken because its class can not be found.
This is probably because the module of the class, somemodule, can't be found or because the name, someclass, is no longer defined by the module.