[Zope3-checkins] SVN: Zope3/trunk/ - Removed script no longer in
use. It was used to test the release
Stephan Richter
srichter at cosmos.phy.tufts.edu
Mon May 8 09:53:57 EDT 2006
Log message for revision 68020:
- Removed script no longer in use. It was used to test the release
after make but before make install.
- Updated the changes to get ready for new things coming into the trunk.
Changed:
U Zope3/trunk/doc/CHANGES.txt
U Zope3/trunk/releases/Zope/PACKAGE.cfg
D Zope3/trunk/releases/Zope/test.py
-=-
Modified: Zope3/trunk/doc/CHANGES.txt
===================================================================
--- Zope3/trunk/doc/CHANGES.txt 2006-05-08 13:38:42 UTC (rev 68019)
+++ Zope3/trunk/doc/CHANGES.txt 2006-05-08 13:53:56 UTC (rev 68020)
@@ -6,10 +6,24 @@
For information on future releases, see ROADMAP.txt.
- After Zope 3.2.0 (trunk only)
+ After Zope 3.3.0 (trunk only)
New features
+ Restructuring
+
+ Bug fixes
+
+ Much thanks to everyone who contributed to this release:
+
+ Jim Fulton
+
+ ------------------------------------------------------------------
+
+ Zope 3.3.0 (date)
+
+ New features
+
- Provided a new component registry API that allows multiple
component registries to be combined more flexibly than before.
See zope.component.interfaces.IComponentRegistry for more
@@ -37,7 +51,7 @@
addUtility in zope.app.appsetup.bootstrap now optionally can
return an object instead of a name.
- - Allow ``zmi_views`` actions like: ``javascript:popup()``,
+ - Allow ``zmi_views`` actions like: ``javascript:popup()``,
``../parentview.html`` or ``++namespace++foobar`` as first menu items.
- Added ``-x dirs`` option to i18nextract that allows to exclude
@@ -65,7 +79,7 @@
IZopeDublinCore. This reduces server traffic a lot when large
files are served.
- - Added a more complete set of widgets for fields that use
+ - Added a more complete set of widgets for fields that use
iterable sources. These widgets now mirror the set provided
by vocabulary-based fields.
@@ -185,7 +199,7 @@
Much thanks to everyone who contributed to this release:
- Jim Fulton, Marius Gedminas, Brian Sutherland, Stephan Richter, Dmitry
+ Jim Fulton, Marius Gedminas, Brian Sutherland, Stephan Richter, Dimitry
Vasiliev, Tim Peters, Zachery Bir, Gary Poster, Egon Frerich, Zhiyun
(Simon) Hang, Tadashi Matsumoto, Simon Michael, Encople Degoute,
Shane Hathaway, Bjorn Tillenius, Sam Stainsby, Bernd Dorn
Modified: Zope3/trunk/releases/Zope/PACKAGE.cfg
===================================================================
--- Zope3/trunk/releases/Zope/PACKAGE.cfg 2006-05-08 13:38:42 UTC (rev 68019)
+++ Zope3/trunk/releases/Zope/PACKAGE.cfg 2006-05-08 13:53:56 UTC (rev 68020)
@@ -11,5 +11,4 @@
LICENSES.txt
README.txt
ZopePublicLicense.txt
- test.py
</distribution>
Deleted: Zope3/trunk/releases/Zope/test.py
===================================================================
--- Zope3/trunk/releases/Zope/test.py 2006-05-08 13:38:42 UTC (rev 68019)
+++ Zope3/trunk/releases/Zope/test.py 2006-05-08 13:53:56 UTC (rev 68020)
@@ -1,36 +0,0 @@
-#!/usr/bin/env python2.4
-##############################################################################
-#
-# Copyright (c) 2004 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.
-#
-##############################################################################
-"""Test script for running unit tests in a distribution root.
-
-The functional tests can't be run since we don't have enough of the
-package configuration in a usable state. The functional tests can be
-run from an installation.
-
-$Id$
-"""
-import sys, os
-from distutils.util import get_platform
-
-PLAT_SPEC = "%s-%s" % (get_platform(), sys.version[0:3])
-
-here = os.path.dirname(os.path.realpath(__file__))
-lib = os.path.join(here, "build", "lib." + PLAT_SPEC)
-sys.path.append(lib)
-
-import zope.app.testing.test
-
-if __name__ == '__main__':
- args = sys.argv[:1] + ["-ul", lib] + sys.argv[1:]
- zope.app.testing.test.process_args(args)
More information about the Zope3-Checkins
mailing list