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',
|
||||
required=False)
|
||||
|
||||
conceptManager = schema.BytesLine(
|
||||
conceptManager = schema.TextLine(
|
||||
title=_(u'Concept Manager Name'),
|
||||
description=_(u'Name of the concept manager in which objects of this '
|
||||
u'type should be created.'),
|
||||
default=b'', #determined at runtime: 'concepts' or 'resources'
|
||||
default='', #determined at runtime: 'concepts' or 'resources'
|
||||
required=False)
|
||||
|
||||
namePrefix = schema.BytesLine(
|
||||
namePrefix = schema.TextLine(
|
||||
title=_(u'Name Prefix'),
|
||||
description=_(u'String that will be prepended to the (generated) name '
|
||||
u'of a newly created object of this type.'),
|
||||
default=b'',
|
||||
default='',
|
||||
required=False)
|
||||
|
||||
viewName = schema.TextLine(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue