Commit 00341300 authored by Andreas Jung's avatar Andreas Jung

Workaround for Collector #1081: 'title' property can now be removed

and replaced with a ustring property
parent d04cfb1c
......@@ -15,9 +15,9 @@
Folders are the basic container objects and are analogous to directories.
$Id: Folder.py,v 1.103 2003/07/24 15:24:28 sf Exp $"""
$Id: Folder.py,v 1.104 2003/10/21 15:15:54 andreasjung Exp $"""
__version__='$Revision: 1.103 $'[11:-2]
__version__='$Revision: 1.104 $'[11:-2]
import Globals, SimpleItem, ObjectManager, PropertyManager
import AccessControl.Role, webdav.Collection, FindSupport
......@@ -83,7 +83,7 @@ class Folder(
__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+
......
......@@ -12,7 +12,7 @@
##############################################################################
"""Property management"""
__version__='$Revision: 1.52 $'[11:-2]
__version__='$Revision: 1.53 $'[11:-2]
import ExtensionClass, Globals
import ZDOM
......@@ -98,7 +98,7 @@ class PropertyManager(ExtensionClass.Base, ZDOM.ElementWithAttributes):
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__=(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment