[Zope-Checkins] CVS: Zope/lib/python/OFS - Folder.py:1.102.2.2 PropertyManager.py:1.52.2.1

Andreas Jung andreas at andreas-jung.com
Tue Oct 21 11:22:17 EDT 2003


Update of /cvs-repository/Zope/lib/python/OFS
In directory cvs.zope.org:/tmp/cvs-serv15507/lib/python/OFS

Modified Files:
      Tag: Zope-2_7-branch
	Folder.py PropertyManager.py 
Log Message:

     - Workaround for Collector #1081: The 'title' property for objects
       derived from OFS.Folder or PropertyManager can now be 
       removed and replaced with a ustring property. This allows the usage
       of non-ISO-8859-1 or ASCII charsets


=== Zope/lib/python/OFS/Folder.py 1.102.2.1 => 1.102.2.2 ===
--- Zope/lib/python/OFS/Folder.py:1.102.2.1	Thu Jul 24 16:20:20 2003
+++ Zope/lib/python/OFS/Folder.py	Tue Oct 21 11:22:16 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+


=== Zope/lib/python/OFS/PropertyManager.py 1.52 => 1.52.2.1 ===
--- 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:22:16 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__=(




More information about the Zope-Checkins mailing list