From 1b83483e3f5b53820206ac064f8fe87d7f90bff7 Mon Sep 17 00:00:00 2001 From: helmutm Date: Sat, 17 Mar 2007 21:01:46 +0000 Subject: [PATCH] make attributes editable via XML-RPC git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1650 fd906abe-77d9-0310-91a1-e0d9ade77398 --- xmlrpc/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmlrpc/common.py b/xmlrpc/common.py index f04bf86..aa6ba22 100644 --- a/xmlrpc/common.py +++ b/xmlrpc/common.py @@ -149,7 +149,7 @@ def objectAsDict(obj): adapter = ti(obj) for attr in (list(adapter._adapterAttributes) + list(ti)): if attr not in ('__parent__', 'context', 'id', 'name', - 'title', 'description', 'type'): + 'title', 'description', 'type', 'data'): value = getattr(adapter, attr) # TODO: better selection and conversion if value is None or type(value) in (str, unicode):