Changeset 8666 for branches/gajim_0.11.1/src/common
- Timestamp:
- 08/31/07 10:45:09 (15 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11.1/src/common/dataforms.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.1/src/common/dataforms.py
r8643 r8666 35 35 f = { 36 36 'boolean': BooleanField, 37 'fixed': StringField,37 'fixed': TextMultiField, # not editable, still can have multiple lines of text 38 38 'hidden': StringField, 39 39 'text-private': StringField, … … 55 55 f = { 56 56 'boolean': BooleanField, 57 'fixed': StringField,57 'fixed': TextMultiField, 58 58 'hidden': StringField, 59 59 'text-private': StringField, … … 197 197 pass 198 198 return locals() 199 200 199 201 200 class ListField(DataField):
