Commit 2dac67b5 authored by Tres Seaver's avatar Tres Seaver

Prep for historical releases.

parent b5194f85
zope.proxy Package Changelog zope.proxy Package Changelog
============================ ============================
zope.proxy version 3.2.1 (2006/03/26)
-------------------------------------
- Corresponds to the verison of the zope.proxy package shipped as part of
the Zope 3.2.1 release.
zope.proxy version 3.2.0 (2006/01/05) zope.proxy version 3.2.0 (2006/01/05)
------------------------------------- -------------------------------------
- Corresponds to the verison of the zope.proxy package shipped as part of - Corresponds to the verison of the zope.proxy package shipped as part of
the Zope 3.2.0 release. the Zope 3.2.0 release.
zope.proxy version 3.1.0 (2005/10/03)
-------------------------------------
- Corresponds to the verison of the zope.proxy package shipped as part of
the Zope 3.1.0 release.
zope.proxy version 3.0.1 (2005/07/27)
-------------------------------------
- Corresponds to the verison of the zope.proxy package shipped as part of
the Zope X3.0.1 release.
zope.proxy version 3.0.0 (2004/11/07) zope.proxy version 3.0.0 (2004/11/07)
------------------------------------- -------------------------------------
......
...@@ -4,7 +4,13 @@ zope.proxy Package Readme ...@@ -4,7 +4,13 @@ zope.proxy Package Readme
Overview Overview
-------- --------
Lorem ipsum delorem. In Zope3, proxies are special objects which serve as mostly-transparent
wrappers around another object, intervening in the apparent behavior of
the wrapped object only when necessary to apply the policy (e.g., access
checking, location brokering, etc.) for which the proxy is responsible.
Zope 2 uses acquisition wrappers liberally, to impose a policy that
attribute lookups which failed on the "self" instance could be delegated
to the "parent" instance.
Changes Changes
------- -------
......
...@@ -30,7 +30,12 @@ setup(name='zope.proxy', ...@@ -30,7 +30,12 @@ setup(name='zope.proxy',
description='Zope Proxies', description='Zope Proxies',
author='Zope Corporation and Contributors', author='Zope Corporation and Contributors',
author_email='zope3-dev@zope.org', author_email='zope3-dev@zope.org',
long_description='', long_description="In Zope3, proxies are special objects which serve as "
"mostly-transparent wrappers around another object, "
"intervening in the apparent behavior of the wrapped "
"object only when necessary to apply the policy "
"(e.g., access checking, location brokering, etc.) "
"for which the proxy is responsible.",
packages=['zope', 'zope.proxy'], packages=['zope', 'zope.proxy'],
package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')}, package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment