[Checkins] SVN: RestrictedPython/trunk/ Split changelog from README.txt.

Philipp von Weitershausen philikon at philikon.de
Wed Oct 15 11:12:56 EDT 2008


Log message for revision 92221:
  Split changelog from README.txt.
  
  Reformatted changelog slightly to conform with
  http://svn.zope.org/*checkout*/Sandbox/philikon/foundation/maintaining-software.txt
  
  Added link to collector issue (makes it easier to find).
  
  Added top-level README.txt that points to the real README.txt in the package.
  

Changed:
  A   RestrictedPython/trunk/CHANGES.txt
  A   RestrictedPython/trunk/README.txt
  U   RestrictedPython/trunk/setup.py
  U   RestrictedPython/trunk/src/RestrictedPython/README.txt

-=-
Copied: RestrictedPython/trunk/CHANGES.txt (from rev 92220, RestrictedPython/trunk/src/RestrictedPython/README.txt)
===================================================================
--- RestrictedPython/trunk/CHANGES.txt	                        (rev 0)
+++ RestrictedPython/trunk/CHANGES.txt	2008-10-15 15:12:56 UTC (rev 92221)
@@ -0,0 +1,54 @@
+Changes
+=======
+
+3.4.3 (unreleased)
+------------------
+
+- Fixed deprecation warning: 'with' is now a reserved keyword on
+  Python 2.6. That means RestrictedPython should run on Python 2.6
+  now. Thanks to Ranjith Kannikara, GSoC Student for the patch.
+
+3.4.2 (2007/07/28)
+------------------
+
+- Changed homepage URL to the CheeseShop site
+
+- Greatly improved README.txt
+
+3.4.1 (2007-06-23)
+------------------
+
+- Fixed http://www.zope.org/Collectors/Zope/2295: Bare conditional in
+  a Zope 2 PythonScript followed by a comment causes SyntaxError.
+
+3.4.0 (2007-06-04)
+------------------
+
+- RestrictedPython now has its own release cycle as a separate egg.
+
+- Synchronized with RestrictedPython from Zope 2 tree.
+
+3.2.0 (2006-01-05)
+------------------
+
+- Corresponds to the verison of the RestrictedPython package shipped
+  as part of the Zope 3.2.0 release.
+
+- No changes from 3.1.0.
+
+3.1.0 (2005-10-03)
+------------------
+
+- Corresponds to the verison of the RestrictedPython package shipped
+  as part of the Zope 3.1.0 release.
+
+- Removed unused fossil module, 'SafeMapping'.
+
+- Replaced use of deprecated 'whrandom' module with 'random' (aliased
+  to 'whrandom' for backward compatibility).
+
+3.0.0 (2004-11-07)
+------------------
+
+- Corresponds to the verison of the RestrictedPython package shipped
+  as part of the Zope X3.0.0 release.


Property changes on: RestrictedPython/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:mergeinfo
   + 
Name: svn:eol-style
   + native

Added: RestrictedPython/trunk/README.txt
===================================================================
--- RestrictedPython/trunk/README.txt	                        (rev 0)
+++ RestrictedPython/trunk/README.txt	2008-10-15 15:12:56 UTC (rev 92221)
@@ -0,0 +1 @@
+Please refer to src/RestrictedPython/README.txt.


Property changes on: RestrictedPython/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: RestrictedPython/trunk/setup.py
===================================================================
--- RestrictedPython/trunk/setup.py	2008-10-15 14:30:59 UTC (rev 92220)
+++ RestrictedPython/trunk/setup.py	2008-10-15 15:12:56 UTC (rev 92221)
@@ -29,8 +29,9 @@
       'environment for Python, e.g. for running untrusted code.',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description=open(
-          os.path.join('src', 'RestrictedPython', 'README.txt')).read(),
+      long_description=(read('src', 'RestrictedPython', 'README.txt')
+                        + '\n' +
+                        read('CHANGES.txt')),
 
       packages = find_packages('src'),
       package_dir = {'': 'src'},

Modified: RestrictedPython/trunk/src/RestrictedPython/README.txt
===================================================================
--- RestrictedPython/trunk/src/RestrictedPython/README.txt	2008-10-15 14:30:59 UTC (rev 92220)
+++ RestrictedPython/trunk/src/RestrictedPython/README.txt	2008-10-15 15:12:56 UTC (rev 92221)
@@ -191,57 +191,3 @@
   [1, 1, 2, 3, 5]
   >>> sorted(transl.keys())
   ['one', 'two']
-
-Changes
-=======
-
-3.4.3 - Unreleased
-------------------
-
-- Fixed deprecation warning: 'with' is now a reserved keyword on
-  Python 2.6. That means RestrictedPython should run on Python 2.6
-  now. Thanks to Ranjith Kannikara, GSoC Student for the patch.
-
-3.4.2 (2007/07/28)
-------------------
-
-- Changed homepage URL to the CheeseShop site
-
-- Greatly improved README.txt
-
-3.4.1 (2007/06/23)
-------------------
-
-- Fixed Collector/#2295 (Zope 2, PythonScripts) 
-
-3.4.0 (2007/06/04)
-------------------
-
-- RestrictedPython now has its own release cycle as a separate egg.
-
-- Synchronized with RestrictedPython from Zope 2 tree.
-
-3.2.0 (2006/01/05)
-------------------
-
-- Corresponds to the verison of the RestrictedPython package shipped
-  as part of the Zope 3.2.0 release.
-
-- No changes from 3.1.0.
-
-3.1.0 (2005/10/03)
-------------------
-
-- Corresponds to the verison of the RestrictedPython package shipped
-  as part of the Zope 3.1.0 release.
-
-- Removed unused fossil module, 'SafeMapping'.
-
-- Replaced use of deprecated 'whrandom' module with 'random' (aliased
-  to 'whrandom' for backward compatibility).
-
-3.0.0 (2004/11/07)
-------------------
-
-- Corresponds to the verison of the RestrictedPython package shipped
-  as part of the Zope X3.0.0 release.



More information about the Checkins mailing list