From 7cbddfa4d58d18561357e53412b00c0cb09ec8ba Mon Sep 17 00:00:00 2001 From: Tomasz Melcer Date: Fri, 1 Jun 2007 20:14:06 +0000 Subject: Dataforms: 'fixed' fields can have multiple lines of text spanning over several elements. --- src/common/dataforms.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/common/dataforms.py') diff --git a/src/common/dataforms.py b/src/common/dataforms.py index a5db7e6fc..6c6817d6a 100644 --- a/src/common/dataforms.py +++ b/src/common/dataforms.py @@ -34,7 +34,7 @@ def Field(typ, **attrs): ''' Helper function to create a field of given type. ''' f = { 'boolean': BooleanField, - 'fixed': StringField, + 'fixed': TextMultiField, # not editable, still can have multiple lines of text 'hidden': StringField, 'text-private': StringField, 'text-single': StringField, @@ -54,7 +54,7 @@ def ExtendField(node): typ=node.getAttr('type') f = { 'boolean': BooleanField, - 'fixed': StringField, + 'fixed': TextMultiField, 'hidden': StringField, 'text-private': StringField, 'text-single': StringField, @@ -197,7 +197,6 @@ class StringField(DataField): pass return locals() - class ListField(DataField): ''' Covers fields of types: jid-multi, jid-single, list-multi, list-single. ''' @nested_property -- cgit v1.2.3