zope.app.folder-3.5.2/0000755000177100020040000000000011506433742014420 5ustar menesismenesiszope.app.folder-3.5.2/CHANGES.txt0000644000177100020040000000134411506433710016226 0ustar menesismenesis======= CHANGES ======= 3.5.2 (2010-12-28) ------------------ - Removed testing.py. There are no functional tests and ftesting.zcml now. - Removed unneeded dependencies. 3.5.1 (2009-02-14) ------------------ - Added missing dependency to zope.app.content. - Fixed e-mail address and homepage. - Fixed buildout.cfg, as there is no test extra. 3.5.0 (2009-01-31) ------------------ - Everything except zope.app.folder.browser moved to zope.site and zope.container. - Import IPossibleSite from zope.location.interfaces instead of deprecated place in zope.app.component.interfaces. - Use zope.container instead of zope.app.container. 3.4.0 (2007-10-24) ------------------ - Initial release independent of the main Zope tree. zope.app.folder-3.5.2/PKG-INFO0000644000177100020040000000374111506433742015522 0ustar menesismenesisMetadata-Version: 1.0 Name: zope.app.folder Version: 3.5.2 Summary: Folder Content Type for Zope 3 Home-page: http://pypi.python.org/pypi/zope.app.folder Author: Zope Foundation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 Description: This packages provides the standard Folder content type for Zope 3. It also implements the root folder of a Zope application. Folders can also be converted to sites, which allow one to register components locally. ======= CHANGES ======= 3.5.2 (2010-12-28) ------------------ - Removed testing.py. There are no functional tests and ftesting.zcml now. - Removed unneeded dependencies. 3.5.1 (2009-02-14) ------------------ - Added missing dependency to zope.app.content. - Fixed e-mail address and homepage. - Fixed buildout.cfg, as there is no test extra. 3.5.0 (2009-01-31) ------------------ - Everything except zope.app.folder.browser moved to zope.site and zope.container. - Import IPossibleSite from zope.location.interfaces instead of deprecated place in zope.app.component.interfaces. - Use zope.container instead of zope.app.container. 3.4.0 (2007-10-24) ------------------ - Initial release independent of the main Zope tree. Keywords: zope3 folder site local component 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.folder-3.5.2/README.txt0000644000177100020040000000032611506433710016112 0ustar menesismenesisThis packages provides the standard Folder content type for Zope 3. It also implements the root folder of a Zope application. Folders can also be converted to sites, which allow one to register components locally. zope.app.folder-3.5.2/setup.py0000644000177100020040000000415211506433710016127 0ustar menesismenesis############################################################################## # # Copyright (c) 2006 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. # ############################################################################## """Setup for zope.app.folder package $Id: setup.py 119204 2010-12-28 19:16:09Z menesis $ """ import os from setuptools import setup, find_packages def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() version = '3.5.2' setup(name='zope.app.folder', version=version, author='Zope Foundation and Contributors', author_email='zope-dev@zope.org', description='Folder Content Type for Zope 3', long_description=( read('README.txt') + '\n\n' + read('CHANGES.txt') ), keywords = "zope3 folder site local component", 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://pypi.python.org/pypi/zope.app.folder', license='ZPL 2.1', packages=find_packages('src'), package_dir = {'': 'src'}, namespace_packages=['zope', 'zope.app'], install_requires=['setuptools', 'zope.container', 'zope.site', 'zope.app.content', ], include_package_data = True, zip_safe = False, ) zope.app.folder-3.5.2/COPYRIGHT.txt0000644000177100020040000000004011506433710016516 0ustar menesismenesisZope Foundation and Contributorszope.app.folder-3.5.2/LICENSE.txt0000644000177100020040000000402611506433710016240 0ustar menesismenesisZope Public License (ZPL) Version 2.1 A copyright notice accompanies this license document that identifies the copyright holders. This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions in source code must retain the accompanying copyright notice, this list of conditions, and the following disclaimer. 2. Redistributions in binary form must reproduce the accompanying copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Names of the copyright holders must not be used to endorse or promote products derived from this software without prior written permission from the copyright holders. 4. The right to distribute this software or to use it for any purpose does not give you the right to use Servicemarks (sm) or Trademarks (tm) of the copyright holders. Use of them is covered by separate agreement with the copyright holders. 5. If any files are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. Disclaimer THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. zope.app.folder-3.5.2/bootstrap.py0000644000177100020040000000337311506433710017010 0ustar menesismenesis############################################################################## # # Copyright (c) 2006 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. # ############################################################################## """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 119203 2010-12-28 19:12:47Z menesis $ """ 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.folder-3.5.2/setup.cfg0000644000177100020040000000007311506433742016241 0ustar menesismenesis[egg_info] tag_build = tag_date = 0 tag_svn_revision = 0 zope.app.folder-3.5.2/src/0000755000177100020040000000000011506433742015207 5ustar menesismenesiszope.app.folder-3.5.2/src/zope.app.folder.egg-info/0000755000177100020040000000000011506433742021707 5ustar menesismenesiszope.app.folder-3.5.2/src/zope.app.folder.egg-info/PKG-INFO0000644000177100020040000000374111506433741023010 0ustar menesismenesisMetadata-Version: 1.0 Name: zope.app.folder Version: 3.5.2 Summary: Folder Content Type for Zope 3 Home-page: http://pypi.python.org/pypi/zope.app.folder Author: Zope Foundation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 Description: This packages provides the standard Folder content type for Zope 3. It also implements the root folder of a Zope application. Folders can also be converted to sites, which allow one to register components locally. ======= CHANGES ======= 3.5.2 (2010-12-28) ------------------ - Removed testing.py. There are no functional tests and ftesting.zcml now. - Removed unneeded dependencies. 3.5.1 (2009-02-14) ------------------ - Added missing dependency to zope.app.content. - Fixed e-mail address and homepage. - Fixed buildout.cfg, as there is no test extra. 3.5.0 (2009-01-31) ------------------ - Everything except zope.app.folder.browser moved to zope.site and zope.container. - Import IPossibleSite from zope.location.interfaces instead of deprecated place in zope.app.component.interfaces. - Use zope.container instead of zope.app.container. 3.4.0 (2007-10-24) ------------------ - Initial release independent of the main Zope tree. Keywords: zope3 folder site local component 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.folder-3.5.2/src/zope.app.folder.egg-info/top_level.txt0000644000177100020040000000000511506433741024433 0ustar menesismenesiszope zope.app.folder-3.5.2/src/zope.app.folder.egg-info/SOURCES.txt0000644000177100020040000000141011506433741023566 0ustar menesismenesisCHANGES.txt COPYRIGHT.txt LICENSE.txt README.txt bootstrap.py buildout.cfg setup.py src/zope/__init__.py src/zope.app.folder.egg-info/PKG-INFO src/zope.app.folder.egg-info/SOURCES.txt src/zope.app.folder.egg-info/dependency_links.txt src/zope.app.folder.egg-info/namespace_packages.txt src/zope.app.folder.egg-info/not-zip-safe src/zope.app.folder.egg-info/requires.txt src/zope.app.folder.egg-info/top_level.txt src/zope/app/__init__.py src/zope/app/folder/__init__.py src/zope/app/folder/configure.zcml src/zope/app/folder/filerepresentation.py src/zope/app/folder/folder.py src/zope/app/folder/interfaces.py src/zope/app/folder/browser/__init__.py src/zope/app/folder/browser/configure.zcml src/zope/app/folder/browser/folder_icon.gif src/zope/app/folder/browser/preview.ptzope.app.folder-3.5.2/src/zope.app.folder.egg-info/namespace_packages.txt0000644000177100020040000000001611506433741026236 0ustar menesismenesiszope zope.app zope.app.folder-3.5.2/src/zope.app.folder.egg-info/not-zip-safe0000644000177100020040000000000111506433711024131 0ustar menesismenesis zope.app.folder-3.5.2/src/zope.app.folder.egg-info/dependency_links.txt0000644000177100020040000000000111506433741025754 0ustar menesismenesis zope.app.folder-3.5.2/src/zope.app.folder.egg-info/requires.txt0000644000177100020040000000006411506433741024306 0ustar menesismenesissetuptools zope.container zope.site zope.app.contentzope.app.folder-3.5.2/src/zope/0000755000177100020040000000000011506433742016164 5ustar menesismenesiszope.app.folder-3.5.2/src/zope/__init__.py0000644000177100020040000000031111506433710020263 0ustar menesismenesis# 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.folder-3.5.2/src/zope/app/0000755000177100020040000000000011506433742016744 5ustar menesismenesiszope.app.folder-3.5.2/src/zope/app/__init__.py0000644000177100020040000000031111506433710021043 0ustar menesismenesis# 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.folder-3.5.2/src/zope/app/folder/0000755000177100020040000000000011506433742020217 5ustar menesismenesiszope.app.folder-3.5.2/src/zope/app/folder/__init__.py0000644000177100020040000000143611506433710022327 0ustar menesismenesis############################################################################## # # Copyright (c) 2004 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. # ############################################################################## """Folder content component $Id: __init__.py 119203 2010-12-28 19:12:47Z menesis $ """ __docformat__ = 'restructuredtext' from folder import Folder, rootFolder zope.app.folder-3.5.2/src/zope/app/folder/interfaces.py0000644000177100020040000000134411506433710022711 0ustar menesismenesis############################################################################## # # Copyright (c) 2002 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. # ############################################################################## """ BBB This module moved to zope.site """ # BBB from zope.site.interfaces import IFolder, IRootFolder zope.app.folder-3.5.2/src/zope/app/folder/configure.zcml0000644000177100020040000000051111506433710023057 0ustar menesismenesis zope.app.folder-3.5.2/src/zope/app/folder/filerepresentation.py0000644000177100020040000000142711506433710024472 0ustar menesismenesis############################################################################## # # Copyright (c) 2002 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. # ############################################################################## """ BBB This module moved to zope.container.directory """ # BBB from zope.container.directory import ( MARKER, RootDirectoryFactory, ReadDirectory) zope.app.folder-3.5.2/src/zope/app/folder/browser/0000755000177100020040000000000011506433742021702 5ustar menesismenesiszope.app.folder-3.5.2/src/zope/app/folder/browser/__init__.py0000644000177100020040000000007511506433710024010 0ustar menesismenesis# # This file is necessary to make this directory a package. zope.app.folder-3.5.2/src/zope/app/folder/browser/folder_icon.gif0000644000177100020040000000165611506433710024657 0ustar menesismenesisGIF89aNNN*EU^dqx{!,H(Tp 02 ,BG,T( 0(P&Fxpa hZTI b.8 T "
zope.app.folder-3.5.2/src/zope/app/folder/browser/configure.zcml0000644000177100020040000000154711506433710024554 0ustar menesismenesis zope.app.folder-3.5.2/src/zope/app/folder/folder.py0000644000177100020040000000137311506433710022043 0ustar menesismenesis############################################################################## # # Copyright (c) 2002 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. # ############################################################################## """ BBB This module moved to zope.site.folder """ # BBB from zope.site.folder import Folder, rootFolder, FolderSublocations zope.app.folder-3.5.2/buildout.cfg0000644000177100020040000000014111506433710016717 0ustar menesismenesis[buildout] develop = . parts = test [test] recipe = zc.recipe.testrunner eggs = zope.app.folder