Dataforms: 'fixed' fields can have multiple lines of text spanning over

several <value/> elements.
This commit is contained in:
Tomasz Melcer 2007-06-01 20:14:06 +00:00
parent c2825a83f7
commit 7cbddfa4d5
1 changed files with 2 additions and 3 deletions

View File

@ -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