IType interface: make prefix and container TextLine instead of BytesLine
This commit is contained in:
parent
aee5b4a3b3
commit
cd63d7785a
1 changed files with 4 additions and 4 deletions
|
|
@ -699,18 +699,18 @@ class ITypeConcept(IConceptSchema, ILoopsAdapter, IOptions):
|
||||||
source='loops.TypeInterfaceSource',
|
source='loops.TypeInterfaceSource',
|
||||||
required=False)
|
required=False)
|
||||||
|
|
||||||
conceptManager = schema.BytesLine(
|
conceptManager = schema.TextLine(
|
||||||
title=_(u'Concept Manager Name'),
|
title=_(u'Concept Manager Name'),
|
||||||
description=_(u'Name of the concept manager in which objects of this '
|
description=_(u'Name of the concept manager in which objects of this '
|
||||||
u'type should be created.'),
|
u'type should be created.'),
|
||||||
default=b'', #determined at runtime: 'concepts' or 'resources'
|
default='', #determined at runtime: 'concepts' or 'resources'
|
||||||
required=False)
|
required=False)
|
||||||
|
|
||||||
namePrefix = schema.BytesLine(
|
namePrefix = schema.TextLine(
|
||||||
title=_(u'Name Prefix'),
|
title=_(u'Name Prefix'),
|
||||||
description=_(u'String that will be prepended to the (generated) name '
|
description=_(u'String that will be prepended to the (generated) name '
|
||||||
u'of a newly created object of this type.'),
|
u'of a newly created object of this type.'),
|
||||||
default=b'',
|
default='',
|
||||||
required=False)
|
required=False)
|
||||||
|
|
||||||
viewName = schema.TextLine(
|
viewName = schema.TextLine(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue