Commit 0006e835 authored by Shane Hathaway's avatar Shane Hathaway

Collector #1386: boolean properties. Reverted what was supposed to be a

bug fix.
parent acba357e
......@@ -84,7 +84,7 @@
##############################################################################
"""Property management"""
__version__='$Revision: 1.28 $'[11:-2]
__version__='$Revision: 1.29 $'[11:-2]
import ExtensionClass, Globals
import ZDOM
......@@ -315,12 +315,16 @@ class PropertyManager(ExtensionClass.Base, ZDOM.ElementWithAttributes):
return self.manage_propertiesForm(self, REQUEST)
def manage_editProperties(self, REQUEST):
"""Edit object properties via the web."""
"""Edit object properties via the web.
The purpose of this method is to change all property values,
even those not listed in REQUEST; otherwise checkboxes that
get turned off will be ignored. Use manage_changeProperties()
instead for most situations.
"""
for prop in self._properties:
name=prop['id']
if REQUEST.has_key(name):
if 'w' in prop.get('mode', 'wd'):
value=REQUEST.get(name)
value=REQUEST.get(name, '')
self._setPropValue(name, value)
return MessageDialog(
title ='Success!',
......
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