zope.app.basicskin-3.5.1/ 000755 000766 000024 00000000000 11447374205 015134 5 ustar 00mac staff 000000 000000 zope.app.basicskin-3.5.1/CHANGES.txt 000644 000766 000024 00000001004 11447374203 016736 0 ustar 00mac staff 000000 000000 =======
CHANGES
=======
3.5.1 (2010-09-25)
------------------
- Added test extra to declare test dependency on ``zope.component [test]``.
3.5.0 (2009-12-16)
------------------
- Avoid extraneous testing dependencies and remove test extra.
- Avoid zope.app.component testing dependency.
- Removed BBB import for IBasicSkin.
3.4.1 (2009-08-15)
------------------
- Added missing test dependency: zope.app.component.
3.4.0 (2007-10-11)
------------------
- Initial release independent of the main Zope tree.
zope.app.basicskin-3.5.1/PKG-INFO 000644 000766 000024 00000002754 11447374205 016241 0 ustar 00mac staff 000000 000000 Metadata-Version: 1.0
Name: zope.app.basicskin
Version: 3.5.1
Summary: Zope ZMI Basic Skin
Home-page: http://pypi.python.org/pypi/zope.app.basicskin
Author: Zope Corporation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: A very simple skin for the original Zope 3 ZMI.
=======
CHANGES
=======
3.5.1 (2010-09-25)
------------------
- Added test extra to declare test dependency on ``zope.component [test]``.
3.5.0 (2009-12-16)
------------------
- Avoid extraneous testing dependencies and remove test extra.
- Avoid zope.app.component testing dependency.
- Removed BBB import for IBasicSkin.
3.4.1 (2009-08-15)
------------------
- Added missing test dependency: zope.app.component.
3.4.0 (2007-10-11)
------------------
- Initial release independent of the main Zope tree.
Keywords: zope3 skin zmi
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.basicskin-3.5.1/README.txt 000644 000766 000024 00000000060 11447374203 016624 0 ustar 00mac staff 000000 000000 A very simple skin for the original Zope 3 ZMI.
zope.app.basicskin-3.5.1/bootstrap.py 000644 000766 000024 00000003370 11447374203 017524 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 73693 2007-03-27 09:02:28Z 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.basicskin-3.5.1/buildout.cfg 000644 000766 000024 00000000153 11447374203 017441 0 ustar 00mac staff 000000 000000 [buildout]
develop = .
parts = test
[test]
recipe = zc.recipe.testrunner
eggs = zope.app.basicskin [test]
zope.app.basicskin-3.5.1/setup.cfg 000644 000766 000024 00000000073 11447374205 016755 0 ustar 00mac staff 000000 000000 [egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
zope.app.basicskin-3.5.1/setup.py 000644 000766 000024 00000004717 11447374203 016655 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.basicskin package
"""
version = '3.5.1'
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.basicskin',
version = version,
author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org',
description='Zope ZMI Basic Skin',
long_description=(
read('README.txt')
+ '\n\n' +
read('CHANGES.txt')
),
keywords = "zope3 skin zmi",
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.basicskin',
license='ZPL 2.1',
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages=['zope', 'zope.app'],
install_requires=['setuptools',
'zope.component',
'zope.interface',
'zope.publisher',
],
extras_require=dict(
test=[
'zope.component [test]',
]),
include_package_data = True,
zip_safe = False,
)
zope.app.basicskin-3.5.1/src/ 000755 000766 000024 00000000000 11447374205 015723 5 ustar 00mac staff 000000 000000 zope.app.basicskin-3.5.1/src/zope/ 000755 000766 000024 00000000000 11447374205 016700 5 ustar 00mac staff 000000 000000 zope.app.basicskin-3.5.1/src/zope.app.basicskin.egg-info/ 000755 000766 000024 00000000000 11447374205 023116 5 ustar 00mac staff 000000 000000 zope.app.basicskin-3.5.1/src/zope.app.basicskin.egg-info/PKG-INFO 000644 000766 000024 00000002754 11447374204 024222 0 ustar 00mac staff 000000 000000 Metadata-Version: 1.0
Name: zope.app.basicskin
Version: 3.5.1
Summary: Zope ZMI Basic Skin
Home-page: http://pypi.python.org/pypi/zope.app.basicskin
Author: Zope Corporation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: A very simple skin for the original Zope 3 ZMI.
=======
CHANGES
=======
3.5.1 (2010-09-25)
------------------
- Added test extra to declare test dependency on ``zope.component [test]``.
3.5.0 (2009-12-16)
------------------
- Avoid extraneous testing dependencies and remove test extra.
- Avoid zope.app.component testing dependency.
- Removed BBB import for IBasicSkin.
3.4.1 (2009-08-15)
------------------
- Added missing test dependency: zope.app.component.
3.4.0 (2007-10-11)
------------------
- Initial release independent of the main Zope tree.
Keywords: zope3 skin zmi
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.basicskin-3.5.1/src/zope.app.basicskin.egg-info/SOURCES.txt 000644 000766 000024 00000002016 11447374204 025000 0 ustar 00mac staff 000000 000000 CHANGES.txt
README.txt
bootstrap.py
buildout.cfg
setup.py
src/zope/__init__.py
src/zope.app.basicskin.egg-info/PKG-INFO
src/zope.app.basicskin.egg-info/SOURCES.txt
src/zope.app.basicskin.egg-info/dependency_links.txt
src/zope.app.basicskin.egg-info/namespace_packages.txt
src/zope.app.basicskin.egg-info/not-zip-safe
src/zope.app.basicskin.egg-info/requires.txt
src/zope.app.basicskin.egg-info/top_level.txt
src/zope/app/__init__.py
src/zope/app/basicskin/__init__.py
src/zope/app/basicskin/arrowup.gif
src/zope/app/basicskin/configure.zcml
src/zope/app/basicskin/dialog_macros.pt
src/zope/app/basicskin/document_icon.gif
src/zope/app/basicskin/folder_icon.gif
src/zope/app/basicskin/standardmacros.py
src/zope/app/basicskin/view_macros.pt
src/zope/app/basicskin/zmi_stylesheet.css
src/zope/app/basicskin/zopetopbasic.css
src/zope/app/basicskin/zopetopstructure.css
src/zope/app/basicskin/zopetopwidgets.css
src/zope/app/basicskin/tests/__init__.py
src/zope/app/basicskin/tests/test.gif
src/zope/app/basicskin/tests/test_standardmacros.py zope.app.basicskin-3.5.1/src/zope.app.basicskin.egg-info/dependency_links.txt 000644 000766 000024 00000000001 11447374204 027163 0 ustar 00mac staff 000000 000000
zope.app.basicskin-3.5.1/src/zope.app.basicskin.egg-info/namespace_packages.txt 000644 000766 000024 00000000016 11447374204 027445 0 ustar 00mac staff 000000 000000 zope
zope.app
zope.app.basicskin-3.5.1/src/zope.app.basicskin.egg-info/not-zip-safe 000644 000766 000024 00000000001 11447374204 025343 0 ustar 00mac staff 000000 000000
zope.app.basicskin-3.5.1/src/zope.app.basicskin.egg-info/requires.txt 000644 000766 000024 00000000125 11447374204 025513 0 ustar 00mac staff 000000 000000 setuptools
zope.component
zope.interface
zope.publisher
[test]
zope.component [test] zope.app.basicskin-3.5.1/src/zope.app.basicskin.egg-info/top_level.txt 000644 000766 000024 00000000005 11447374204 025642 0 ustar 00mac staff 000000 000000 zope
zope.app.basicskin-3.5.1/src/zope/__init__.py 000644 000766 000024 00000000310 11447374203 021001 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.basicskin-3.5.1/src/zope/app/ 000755 000766 000024 00000000000 11447374205 017460 5 ustar 00mac staff 000000 000000 zope.app.basicskin-3.5.1/src/zope/app/__init__.py 000644 000766 000024 00000000310 11447374203 021561 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.basicskin-3.5.1/src/zope/app/basicskin/ 000755 000766 000024 00000000000 11447374205 021426 5 ustar 00mac staff 000000 000000 zope.app.basicskin-3.5.1/src/zope/app/basicskin/__init__.py 000644 000766 000024 00000001655 11447374203 023544 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.
#
##############################################################################
"""Basic skin
$Id: __init__.py 106669 2009-12-16 22:42:40Z hannosch $
"""
__docformat__ = 'restructuredtext'
from zope.publisher.interfaces.browser import IDefaultBrowserLayer
class IBasicSkin(IDefaultBrowserLayer):
"""Basic skin that simply only contains the default layer and
nothing else"""
zope.app.basicskin-3.5.1/src/zope/app/basicskin/arrowup.gif 000644 000766 000024 00000000140 11447374203 023605 0 ustar 00mac staff 000000 000000 GIF89a ! ,
PI'誻6E ; zope.app.basicskin-3.5.1/src/zope/app/basicskin/configure.zcml 000644 000766 000024 00000001740 11447374203 024276 0 ustar 00mac staff 000000 000000
Body here
label
|
Body here
User: User
Powered by Zope