[Checkins] SVN: zope.proxy/trunk/ Prep for historical releases.

Tres Seaver tseaver at palladion.com
Tue Apr 4 22:47:23 EDT 2006


Log message for revision 66461:
  Prep for historical releases.

Changed:
  U   zope.proxy/trunk/CHANGES.txt
  U   zope.proxy/trunk/README.txt
  U   zope.proxy/trunk/setup.py

-=-
Modified: zope.proxy/trunk/CHANGES.txt
===================================================================
--- zope.proxy/trunk/CHANGES.txt	2006-04-05 02:37:45 UTC (rev 66460)
+++ zope.proxy/trunk/CHANGES.txt	2006-04-05 02:47:22 UTC (rev 66461)
@@ -1,30 +1,13 @@
 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)
 -------------------------------------
 
 - Corresponds to the verison of the zope.proxy package shipped as part of
   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)
 -------------------------------------
 

Modified: zope.proxy/trunk/README.txt
===================================================================
--- zope.proxy/trunk/README.txt	2006-04-05 02:37:45 UTC (rev 66460)
+++ zope.proxy/trunk/README.txt	2006-04-05 02:47:22 UTC (rev 66461)
@@ -4,7 +4,13 @@
 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
 -------

Modified: zope.proxy/trunk/setup.py
===================================================================
--- zope.proxy/trunk/setup.py	2006-04-05 02:37:45 UTC (rev 66460)
+++ zope.proxy/trunk/setup.py	2006-04-05 02:47:22 UTC (rev 66461)
@@ -30,7 +30,12 @@
       description='Zope Proxies',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at 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'],
       package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},



More information about the Checkins mailing list