Commit bc4b7e1d authored by Jim Fulton's avatar Jim Fulton

Updated release info.

parent 57ea97c9
zope.proxy Package Changelog
============================
zope.proxy version 3.4.0a1 (2006/12/20)
---------------------------------------
- Alpha release to take snapshot of trunk.
zope.proxy version 3.3.0 (2006/12/20)
-------------------------------------
- Corresponds to the verison of the zope.proxy package shipped as part of
the Zope 3.3.0 release.
zope.proxy version 3.2.0 (2006/01/05)
-------------------------------------
- Corresponds to the verison of the zope.proxy package shipped as part of
the Zope 3.2.0 release.
zope.proxy version 3.0.0 (2004/11/07)
-------------------------------------
- Corresponds to the verison of the zope.proxy package shipped as part of
the Zope X3.0.0 release.
zope.proxy Package Readme
=========================
***************************
Generic Transparent Proxies
***************************
Overview
--------
In Zope3, proxies are special objects which serve as mostly-transparent
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.
Editorial note:
Unfortunately, we don't have separate documentation for zope.proxy
at this time. This is a shame because the are generically useful.
We are publishing this release without documentation mainly because
it is a dependency of other releases.
Changes
-------
*******
See CHANGES.txt.
3.4.0 (2007/07/12)
==================
Installation
New Features
------------
See INSTALL.txt.
Added a decorator module that supports declaring interfaces on proxies
that get blended with the interfaces of the things they proxy.
Developer Resources
-------------------
3.3.0 (2006/12/20)
==================
- Subversion browser:
Corresponds to the verison of the zope.proxy package shipped as part of
the Zope 3.3.0 release.
http://svn.zope.org/zope.proxy/
- Read-only Subversion checkout:
3.2.0 (2006/01/05)
==================
$ svn co svn://svn.zope.org/repos/main/zope.proxy/trunk
Corresponds to the verison of the zope.proxy package shipped as part of
the Zope 3.2.0 release.
- Writable Subversion checkout:
$ svn co svn://svn.zope.org/repos/main/zope.proxy/trunk
3.0.0 (2004/11/07)
==================
- Note that the 'src/zope/proxy' package is acutally a 'svn:externals' link
to the corresponding package in the Zope3 trunk (or to a specific tag,
for released versions of the package).
Corresponds to the verison of the zope.proxy package shipped as part of
the Zope X3.0.0 release.
......@@ -20,19 +20,31 @@ import os
from setuptools import setup, Extension
setup(name='zope.proxy',
version = '3.4.0b1',
url='http://svn.zope.org/zope.proxy',
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description=(
read('README.txt')
+ '\n' +
# Waaa 'Detailed Documentation\n'
# '**********************\n'
# + '\n' +
# + '\n' +
'Download\n'
'**********************\n'
)
open('doc.txt', 'w').write(long_description)
name = 'zope.proxy'
setup(name=name,
version = '3.4.0',
url='http://www.python.org/pypi/'+name,
license='ZPL 2.1',
description='Zope Proxies',
description='Generic Transpatent Proxies',
author='Zope Corporation and Contributors',
author_email='zope3-dev@zope.org',
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.",
long_description=long_description,
packages=['zope', 'zope.proxy'],
package_dir = {'': '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