zope.app.folder-3.5.2/ 0000755 0001771 0002004 00000000000 11506433742 014420 5 ustar menesis menesis zope.app.folder-3.5.2/CHANGES.txt 0000644 0001771 0002004 00000001344 11506433710 016226 0 ustar menesis menesis =======
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-INFO 0000644 0001771 0002004 00000003741 11506433742 015522 0 ustar menesis menesis Metadata-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.txt 0000644 0001771 0002004 00000000326 11506433710 016112 0 ustar menesis menesis 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.
zope.app.folder-3.5.2/setup.py 0000644 0001771 0002004 00000004152 11506433710 016127 0 ustar menesis menesis ##############################################################################
#
# 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.txt 0000644 0001771 0002004 00000000040 11506433710 016516 0 ustar menesis menesis Zope Foundation and Contributors zope.app.folder-3.5.2/LICENSE.txt 0000644 0001771 0002004 00000004026 11506433710 016240 0 ustar menesis menesis Zope 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.py 0000644 0001771 0002004 00000003373 11506433710 017010 0 ustar menesis menesis ##############################################################################
#
# 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.cfg 0000644 0001771 0002004 00000000073 11506433742 016241 0 ustar menesis menesis [egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
zope.app.folder-3.5.2/src/ 0000755 0001771 0002004 00000000000 11506433742 015207 5 ustar menesis menesis zope.app.folder-3.5.2/src/zope.app.folder.egg-info/ 0000755 0001771 0002004 00000000000 11506433742 021707 5 ustar menesis menesis zope.app.folder-3.5.2/src/zope.app.folder.egg-info/PKG-INFO 0000644 0001771 0002004 00000003741 11506433741 023010 0 ustar menesis menesis Metadata-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.txt 0000644 0001771 0002004 00000000005 11506433741 024433 0 ustar menesis menesis zope
zope.app.folder-3.5.2/src/zope.app.folder.egg-info/SOURCES.txt 0000644 0001771 0002004 00000001410 11506433741 023566 0 ustar menesis menesis CHANGES.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.pt zope.app.folder-3.5.2/src/zope.app.folder.egg-info/namespace_packages.txt 0000644 0001771 0002004 00000000016 11506433741 026236 0 ustar menesis menesis zope
zope.app
zope.app.folder-3.5.2/src/zope.app.folder.egg-info/not-zip-safe 0000644 0001771 0002004 00000000001 11506433711 024131 0 ustar menesis menesis
zope.app.folder-3.5.2/src/zope.app.folder.egg-info/dependency_links.txt 0000644 0001771 0002004 00000000001 11506433741 025754 0 ustar menesis menesis
zope.app.folder-3.5.2/src/zope.app.folder.egg-info/requires.txt 0000644 0001771 0002004 00000000064 11506433741 024306 0 ustar menesis menesis setuptools
zope.container
zope.site
zope.app.content zope.app.folder-3.5.2/src/zope/ 0000755 0001771 0002004 00000000000 11506433742 016164 5 ustar menesis menesis zope.app.folder-3.5.2/src/zope/__init__.py 0000644 0001771 0002004 00000000311 11506433710 020263 0 ustar menesis menesis # 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/ 0000755 0001771 0002004 00000000000 11506433742 016744 5 ustar menesis menesis zope.app.folder-3.5.2/src/zope/app/__init__.py 0000644 0001771 0002004 00000000311 11506433710 021043 0 ustar menesis menesis # 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/ 0000755 0001771 0002004 00000000000 11506433742 020217 5 ustar menesis menesis zope.app.folder-3.5.2/src/zope/app/folder/__init__.py 0000644 0001771 0002004 00000001436 11506433710 022327 0 ustar menesis menesis ##############################################################################
#
# 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.py 0000644 0001771 0002004 00000001344 11506433710 022711 0 ustar menesis menesis ##############################################################################
#
# 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.zcml 0000644 0001771 0002004 00000000511 11506433710 023057 0 ustar menesis menesis
zope.app.folder-3.5.2/src/zope/app/folder/filerepresentation.py 0000644 0001771 0002004 00000001427 11506433710 024472 0 ustar menesis menesis ##############################################################################
#
# 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/ 0000755 0001771 0002004 00000000000 11506433742 021702 5 ustar menesis menesis zope.app.folder-3.5.2/src/zope/app/folder/browser/__init__.py 0000644 0001771 0002004 00000000075 11506433710 024010 0 ustar menesis menesis #
# This file is necessary to make this directory a package.
zope.app.folder-3.5.2/src/zope/app/folder/browser/folder_icon.gif 0000644 0001771 0002004 00000001656 11506433710 024657 0 ustar menesis menesis GIF89a NNN*EU^dqx{ ! , H(Tp 02
,BG,T(
0(P&Fxpa hZTIb.8 T "