Test | Another |
---|---|
content | thingy |
more | data |
zope.app.rotterdam-3.5.3/ 0000775 0001771 0002004 00000000000 11707310033 016377 5 ustar menesis menesis 0000000 0000000 zope.app.rotterdam-3.5.3/setup.py 0000664 0001771 0002004 00000006037 11707307726 020136 0 ustar menesis menesis 0000000 0000000 ############################################################################## # # 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. # ############################################################################## # 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.rotterdam package $Id: setup.py 124142 2012-01-23 16:49:45Z menesis $ """ 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.rotterdam', version='3.5.3', author='Zope Corporation and Contributors', author_email='zope-dev@zope.org', description='Rotterdam -- A Zope 3 ZMI Skin', long_description=( read('README.txt') + '\n\n' + read('CHANGES.txt') ), keywords = "zope3 zmi skin rotterdam", 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.rotterdam', license='ZPL 2.1', packages=find_packages('src'), package_dir = {'': 'src'}, namespace_packages=['zope', 'zope.app'], extras_require = dict(test=[ 'zope.app.component', 'zope.app.testing', 'zope.app.zcmlfiles', 'zope.login', 'zope.password', 'zope.securitypolicy', 'zope.site', ]), install_requires=['setuptools', 'zope.app.basicskin', 'zope.app.form', 'zope.app.pagetemplate', 'zope.component', 'zope.container', 'zope.i18n', 'zope.i18nmessageid', 'zope.interface', 'zope.proxy', 'zope.publisher >= 3.12', 'zope.security', 'zope.traversing', ], include_package_data = True, zip_safe = False, ) zope.app.rotterdam-3.5.3/CHANGES.txt 0000664 0001771 0002004 00000001613 11707307726 020230 0 ustar menesis menesis 0000000 0000000 ======= CHANGES ======= 3.5.3 (2012-01-23) ------------------ - Replaced an undeclared test dependency on ``zope.app.authentication`` with ``zope.password``. - Replaced an undeclared test dependency on ``zope.app.folder`` with ``zope.site``. 3.5.2 (2010-09-14) ------------------ - Removed not needed test dependency on ``zope.app.zptpage``. - Replaced test dependency on ``zope.app.securitypolicy`` by ``zope.securitypolicy``. - Using Python's ``doctest`` instead of deprecated ``zope.testing.doctest``. 3.5.1 (2010-01-08) ------------------ - Fix tests using a newer zope.publisher that requires zope.login. 3.5.0 (2009-02-01) ------------------ - Use zope.container instead of zope.app.container. 3.4.1 (2007-10-31) ------------------ - Resolve ``ZopeSecurityPolicy`` deprecation warning. 3.4.0 (2007-10-27) ------------------ - Initial release independent of the main Zope tree. zope.app.rotterdam-3.5.3/PKG-INFO 0000664 0001771 0002004 00000004033 11707310033 017474 0 ustar menesis menesis 0000000 0000000 Metadata-Version: 1.1 Name: zope.app.rotterdam Version: 3.5.3 Summary: Rotterdam -- A Zope 3 ZMI Skin Home-page: http://pypi.python.org/pypi/zope.app.rotterdam Author: Zope Corporation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 Description: This package provides an advanced skin for the Zope 3 ZMI. ======= CHANGES ======= 3.5.3 (2012-01-23) ------------------ - Replaced an undeclared test dependency on ``zope.app.authentication`` with ``zope.password``. - Replaced an undeclared test dependency on ``zope.app.folder`` with ``zope.site``. 3.5.2 (2010-09-14) ------------------ - Removed not needed test dependency on ``zope.app.zptpage``. - Replaced test dependency on ``zope.app.securitypolicy`` by ``zope.securitypolicy``. - Using Python's ``doctest`` instead of deprecated ``zope.testing.doctest``. 3.5.1 (2010-01-08) ------------------ - Fix tests using a newer zope.publisher that requires zope.login. 3.5.0 (2009-02-01) ------------------ - Use zope.container instead of zope.app.container. 3.4.1 (2007-10-31) ------------------ - Resolve ``ZopeSecurityPolicy`` deprecation warning. 3.4.0 (2007-10-27) ------------------ - Initial release independent of the main Zope tree. Keywords: zope3 zmi skin rotterdam 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.rotterdam-3.5.3/bootstrap.py 0000664 0001771 0002004 00000003373 11707307726 021013 0 ustar menesis menesis 0000000 0000000 ############################################################################## # # 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 124139 2012-01-23 16:28:53Z 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.rotterdam-3.5.3/COPYRIGHT.txt 0000664 0001771 0002004 00000000040 11707307726 020521 0 ustar menesis menesis 0000000 0000000 Zope Foundation and Contributors zope.app.rotterdam-3.5.3/src/ 0000775 0001771 0002004 00000000000 11707310033 017166 5 ustar menesis menesis 0000000 0000000 zope.app.rotterdam-3.5.3/src/zope.app.rotterdam.egg-info/ 0000775 0001771 0002004 00000000000 11707310033 024414 5 ustar menesis menesis 0000000 0000000 zope.app.rotterdam-3.5.3/src/zope.app.rotterdam.egg-info/PKG-INFO 0000664 0001771 0002004 00000004033 11707310025 025512 0 ustar menesis menesis 0000000 0000000 Metadata-Version: 1.1 Name: zope.app.rotterdam Version: 3.5.3 Summary: Rotterdam -- A Zope 3 ZMI Skin Home-page: http://pypi.python.org/pypi/zope.app.rotterdam Author: Zope Corporation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 Description: This package provides an advanced skin for the Zope 3 ZMI. ======= CHANGES ======= 3.5.3 (2012-01-23) ------------------ - Replaced an undeclared test dependency on ``zope.app.authentication`` with ``zope.password``. - Replaced an undeclared test dependency on ``zope.app.folder`` with ``zope.site``. 3.5.2 (2010-09-14) ------------------ - Removed not needed test dependency on ``zope.app.zptpage``. - Replaced test dependency on ``zope.app.securitypolicy`` by ``zope.securitypolicy``. - Using Python's ``doctest`` instead of deprecated ``zope.testing.doctest``. 3.5.1 (2010-01-08) ------------------ - Fix tests using a newer zope.publisher that requires zope.login. 3.5.0 (2009-02-01) ------------------ - Use zope.container instead of zope.app.container. 3.4.1 (2007-10-31) ------------------ - Resolve ``ZopeSecurityPolicy`` deprecation warning. 3.4.0 (2007-10-27) ------------------ - Initial release independent of the main Zope tree. Keywords: zope3 zmi skin rotterdam 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.rotterdam-3.5.3/src/zope.app.rotterdam.egg-info/dependency_links.txt 0000664 0001771 0002004 00000000001 11707310025 030463 0 ustar menesis menesis 0000000 0000000 zope.app.rotterdam-3.5.3/src/zope.app.rotterdam.egg-info/namespace_packages.txt 0000664 0001771 0002004 00000000016 11707310025 030745 0 ustar menesis menesis 0000000 0000000 zope zope.app zope.app.rotterdam-3.5.3/src/zope.app.rotterdam.egg-info/not-zip-safe 0000664 0001771 0002004 00000000001 11707307727 026662 0 ustar menesis menesis 0000000 0000000 zope.app.rotterdam-3.5.3/src/zope.app.rotterdam.egg-info/top_level.txt 0000664 0001771 0002004 00000000005 11707310025 027142 0 ustar menesis menesis 0000000 0000000 zope zope.app.rotterdam-3.5.3/src/zope.app.rotterdam.egg-info/requires.txt 0000664 0001771 0002004 00000000501 11707310025 027011 0 ustar menesis menesis 0000000 0000000 setuptools zope.app.basicskin zope.app.form zope.app.pagetemplate zope.component zope.container zope.i18n zope.i18nmessageid zope.interface zope.proxy zope.publisher >= 3.12 zope.security zope.traversing [test] zope.app.component zope.app.testing zope.app.zcmlfiles zope.login zope.password zope.securitypolicy zope.site zope.app.rotterdam-3.5.3/src/zope.app.rotterdam.egg-info/SOURCES.txt 0000664 0001771 0002004 00000004122 11707310025 026300 0 ustar menesis menesis 0000000 0000000 CHANGES.txt COPYRIGHT.txt LICENSE.txt README.txt bootstrap.py buildout.cfg setup.py src/zope/__init__.py src/zope.app.rotterdam.egg-info/PKG-INFO src/zope.app.rotterdam.egg-info/SOURCES.txt src/zope.app.rotterdam.egg-info/dependency_links.txt src/zope.app.rotterdam.egg-info/namespace_packages.txt src/zope.app.rotterdam.egg-info/not-zip-safe src/zope.app.rotterdam.egg-info/requires.txt src/zope.app.rotterdam.egg-info/top_level.txt src/zope/app/__init__.py src/zope/app/rotterdam/__init__.py src/zope/app/rotterdam/configure.zcml src/zope/app/rotterdam/dialog_macros.pt src/zope/app/rotterdam/editingwidgets.py src/zope/app/rotterdam/favicon.png src/zope/app/rotterdam/ftesting.zcml src/zope/app/rotterdam/i18n.py src/zope/app/rotterdam/logo.gif src/zope/app/rotterdam/mi.gif src/zope/app/rotterdam/navigation_macros.pt src/zope/app/rotterdam/onlinehelp.js src/zope/app/rotterdam/pl.gif src/zope/app/rotterdam/popup_macros.pt src/zope/app/rotterdam/simpleeditingrow.pt src/zope/app/rotterdam/simpleeditingrowfragment.pt src/zope/app/rotterdam/site_management.css src/zope/app/rotterdam/site_management_tablelayout.css src/zope/app/rotterdam/standardmacros.py src/zope/app/rotterdam/template.pt src/zope/app/rotterdam/template_tablelayout.pt src/zope/app/rotterdam/testing.py src/zope/app/rotterdam/view_macros.pt src/zope/app/rotterdam/xmlobject.py src/zope/app/rotterdam/xmltree.js src/zope/app/rotterdam/zope3.css src/zope/app/rotterdam/zope3.js src/zope/app/rotterdam/zope3_tablelayout.css src/zope/app/rotterdam/zope3logo.gif src/zope/app/rotterdam/tests/__init__.py src/zope/app/rotterdam/tests/test_editingwidgets.py src/zope/app/rotterdam/tests/test_navtree.py src/zope/app/rotterdam/tests/test_xmlnavigationviews.py src/zope/app/rotterdam/tests/util.py src/zope/app/rotterdam/tests/output/test1.xml src/zope/app/rotterdam/tests/output/test2.xml src/zope/app/rotterdam/tests/output/test3.xml src/zope/app/rotterdam/tests/output/test4.xml src/zope/app/rotterdam/tests/output/test5.xml src/zope/app/rotterdam/tests/output/test6.xml src/zope/app/rotterdam/tests/output/test7.xml src/zope/app/rotterdam/tests/output/test8.xml zope.app.rotterdam-3.5.3/src/zope/ 0000775 0001771 0002004 00000000000 11707310033 020143 5 ustar menesis menesis 0000000 0000000 zope.app.rotterdam-3.5.3/src/zope/__init__.py 0000664 0001771 0002004 00000000310 11707307726 022265 0 ustar menesis menesis 0000000 0000000 # 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.rotterdam-3.5.3/src/zope/app/ 0000775 0001771 0002004 00000000000 11707310033 020723 5 ustar menesis menesis 0000000 0000000 zope.app.rotterdam-3.5.3/src/zope/app/rotterdam/ 0000775 0001771 0002004 00000000000 11707310033 022724 5 ustar menesis menesis 0000000 0000000 zope.app.rotterdam-3.5.3/src/zope/app/rotterdam/simpleeditingrow.pt 0000664 0001771 0002004 00000001463 11707307726 026701 0 ustar menesis menesis 0000000 0000000
Test | Another |
---|---|
content | thingy |
more | data |
VԨG%B@5 %]FFXHAfIPN=9`E:UP
=4<0xAPRSqu+awV)E$gWB) z\"
px0y =<髮Ƒ: