[Zope-Checkins] CVS: Zope/lib/python/OFS - PropertyManager.py:1.53
Folder.py:1.104
Andreas Jung
andreas at andreas-jung.com
Tue Oct 21 11:15:54 EDT 2003
Update of /cvs-repository/Zope/lib/python/OFS
In directory cvs.zope.org:/tmp/cvs-serv14128
Modified Files:
PropertyManager.py Folder.py
Log Message:
Workaround for Collector #1081: 'title' property can now be removed
and replaced with a ustring property
=== Zope/lib/python/OFS/PropertyManager.py 1.52 => 1.53 ===
--- Zope/lib/python/OFS/PropertyManager.py:1.52 Sat Jun 7 11:34:50 2003
+++ Zope/lib/python/OFS/PropertyManager.py Tue Oct 21 11:15:54 2003
@@ -98,7 +98,7 @@
manage_propertyTypeForm=DTMLFile('dtml/propertyType', globals())
title=''
- _properties=({'id':'title', 'type': 'string', 'mode':'w'},)
+ _properties=({'id':'title', 'type': 'string', 'mode':'wd'},)
_reserved_names=()
__ac_permissions__=(
=== Zope/lib/python/OFS/Folder.py 1.103 => 1.104 ===
--- Zope/lib/python/OFS/Folder.py:1.103 Thu Jul 24 11:24:28 2003
+++ Zope/lib/python/OFS/Folder.py Tue Oct 21 11:15:54 2003
@@ -83,7 +83,7 @@
__implements__ = (WriteLockInterface,)
meta_type='Folder'
- _properties=({'id':'title', 'type': 'string','mode':'w'},)
+ _properties=({'id':'title', 'type': 'string','mode':'wd'},)
manage_options=(
ObjectManager.ObjectManager.manage_options+
More information about the Zope-Checkins
mailing list