[Zope3-checkins] SVN: Zope3/branches/ZopeX3-3.0/ Merge my recent
changes on the trunk (rev 25269 through 25273)
Philipp von Weitershausen
philikon at philikon.de
Sun Jun 6 04:47:36 EDT 2004
Log message for revision 25274:
Merge my recent changes on the trunk (rev 25269 through 25273)
-=-
Modified: Zope3/branches/ZopeX3-3.0/README.txt
===================================================================
--- Zope3/branches/ZopeX3-3.0/README.txt 2004-06-06 08:43:57 UTC (rev 25273)
+++ Zope3/branches/ZopeX3-3.0/README.txt 2004-06-06 08:47:36 UTC (rev 25274)
@@ -12,7 +12,7 @@
Building and running tests
- Zope3 requires Python 2.3.3 or later.
+ Zope3 requires Python 2.3.4 or later.
In the top-level Zope3 directory, you should find a script called
setup.py. Run it to build the extension modules needed by
Modified: Zope3/branches/ZopeX3-3.0/doc/CHANGES.txt
===================================================================
--- Zope3/branches/ZopeX3-3.0/doc/CHANGES.txt 2004-06-06 08:43:57 UTC (rev 25273)
+++ Zope3/branches/ZopeX3-3.0/doc/CHANGES.txt 2004-06-06 08:47:36 UTC (rev 25274)
@@ -12,9 +12,12 @@
Bug fixes
- - utilities/runurl.py hadn't been updated to relect recent changes
- in the debugging support.
+ - A monkey patch to cope with weakref problems in Python 2.3.3
+ was removed, so Python 2.3.4 is required now.
+ - utilities/runurl.py hadn't been updated to relect recent
+ changes in the debugging support.
+
Restructuring
Zope X3.0.0 Beta 1
Modified: Zope3/branches/ZopeX3-3.0/doc/INSTALL.txt
===================================================================
--- Zope3/branches/ZopeX3-3.0/doc/INSTALL.txt 2004-06-06 08:43:57 UTC (rev 25273)
+++ Zope3/branches/ZopeX3-3.0/doc/INSTALL.txt 2004-06-06 08:47:36 UTC (rev 25274)
@@ -7,7 +7,7 @@
Important notes
- ZOPE 3 REQUIRES PYTHON 2.3.3!
+ ZOPE 3 REQUIRES PYTHON 2.3.4!
Quick Start
@@ -84,7 +84,7 @@
and 'test.py' will run all of the unit tests (see UNITTEST.txt
in the doc directory for more information on unit tests).
- * You should be using Python 2.3.3 or later to run anything
+ * You should be using Python 2.3.4 or later to run anything
related to Zope3.
* The Python you run Zope with *must* have threads compiled in.
Modified: Zope3/branches/ZopeX3-3.0/releases/ZopeX3/README.txt
===================================================================
--- Zope3/branches/ZopeX3-3.0/releases/ZopeX3/README.txt 2004-06-06 08:43:57 UTC (rev 25273)
+++ Zope3/branches/ZopeX3-3.0/releases/ZopeX3/README.txt 2004-06-06 08:47:36 UTC (rev 25274)
@@ -14,7 +14,7 @@
Requirements
------------
-Zope X3 requires that Python 2.3.3 or newer be installed.
+Zope X3 requires that Python 2.3.4 or newer be installed.
Building the Zope X3 software requires a C compiler supported by the
distutils.
Property changes on: Zope3/branches/ZopeX3-3.0/src/BTrees
___________________________________________________________________
Name: svn:ignore
+ *.so
Property changes on: Zope3/branches/ZopeX3-3.0/src/ZODB
___________________________________________________________________
Name: svn:ignore
+ *.so
Modified: Zope3/branches/ZopeX3-3.0/src/buddydemo/configure.zcml
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/buddydemo/configure.zcml 2004-06-06 08:43:57 UTC (rev 25273)
+++ Zope3/branches/ZopeX3-3.0/src/buddydemo/configure.zcml 2004-06-06 08:47:36 UTC (rev 25274)
@@ -26,10 +26,10 @@
<browser:editform
schema=".interfaces.IBuddy"
- label="Change Buddy Information"
- name="edit.html"
+ label="Change Buddy Information"
+ name="edit.html"
menu="zmi_views" title="Edit"
- permission="zope.ManageContent"
+ permission="zope.ManageContent"
/>
<browser:addform
@@ -38,13 +38,13 @@
content_factory=".buddy.Buddy"
arguments="first last email address postal_code"
name="AddBuddy.html"
- permission="zope.ManageContent"
+ permission="zope.ManageContent"
/>
<browser:addMenuItem
class=".buddy.Buddy"
title="Buddy"
- permission="zope.ManageContent"
+ permission="zope.ManageContent"
view="AddBuddy.html"
/>
@@ -53,16 +53,16 @@
</content>
<utility
- factory=".stubpostal.Lookup"
+ factory=".stubpostal.Lookup"
provides=".interfaces.IPostalLookup"
- permission="zope.Public"
+ permission="zope.Public"
/>
<adapter
factory=".buddy.BuddyCityState"
- provides=".interfaces.IPostalInfo"
+ provides=".interfaces.IPostalInfo"
for=".interfaces.IBuddy"
- permission="zope.Public"
+ permission="zope.Public"
/>
<browser:pages
@@ -82,16 +82,16 @@
</browser:pages>
<content class=".buddy.BuddyFolder">
- <require permission="zope.View"
+ <require permission="zope.View"
interface="zope.app.container.interfaces.IReadContainer"
/>
- <require permission="zope.ManageContent"
- interface="zope.app.container.interfaces.IWriteContainer"
+ <require permission="zope.ManageContent"
+ interface="zope.app.container.interfaces.IWriteContainer"
/>
</content>
<browser:addMenuItem
- title="Buddy Folder"
+ title="Buddy Folder"
class=".buddy.BuddyFolder"
permission="zope.ManageContent"
/>
Property changes on: Zope3/branches/ZopeX3-3.0/src/persistent
___________________________________________________________________
Name: svn:ignore
+ *.so
More information about the Zope3-Checkins
mailing list