def addKeywordIndexForm(self):
  '''add KeywordIndex form.'''
  return addForm.__of__(self)(
    type= KeywordIndex.meta_type,
    description= '''A KeywordIndex indexes an object under a set of terms.''',
    action= 'addIndex',
    )
def addRangeIndexForm(self):
  '''add RangeIndex form.'''
  return addForm.__of__(self)(
    type= RangeIndex.meta_type,
    description= '''A RangeIndex indexes an object under a range of terms.''',
    action= 'addIndex',
    )
def addKeywordIndex_scalableForm(self):
  '''add KeywordIndex form.'''
  return addForm.__of__(self)(
    type= KeywordIndex_scalable.meta_type,
    description= '''A KeywordIndex (scalable) indexes an object under a (potentially huge) set of terms.''',
    action= 'addIndex',
    )
Ejemplo n.º 4
0
def addWordIndexForm(self):
  '''add WordIndex form.'''
  return addForm.__of__(self)(
    type= WordIndex.meta_type,
    description= '''A WordIndex indexes an object under a set of word ids determined via a 'ZCTextIndex' like lexicon.''',
    action= 'addIndex',
    )
def addFieldIndexForm(self):
  '''add FieldIndex form.'''
  return addForm.__of__(self)(
    type= FieldIndex.meta_type,
    description= '''A FieldIndex indexes an object under a single (atomic) value.''',
    action= 'addIndex',
    )
Ejemplo n.º 6
0
def addRangeIndexForm(self):
    '''add RangeIndex form.'''
    return addForm.__of__(self)(
        type=RangeIndex.meta_type,
        description=
        '''A RangeIndex indexes an object under a range of terms.''',
        action='addIndex',
    )
Ejemplo n.º 7
0
def addSimpleTextIndexForm(self):
    '''add SimpleTextIndex form.'''
    return addForm.__of__(self)(
        type=SimpleTextIndex.meta_type,
        description=
        '''A SimpleTextIndex indexes an object under a set of word ids determined via a 'ZCTextIndex' like lexicon. It efficiently supports word and phrase queries''',
        action='addIndex',
    )
Ejemplo n.º 8
0
def addFieldIndexForm(self):
    '''add FieldIndex form.'''
    return addForm.__of__(self)(
        type=FieldIndex.meta_type,
        description=
        '''A FieldIndex indexes an object under a single (atomic) value.''',
        action='addIndex',
    )
Ejemplo n.º 9
0
def addKeywordIndex_scalableForm(self):
    '''add KeywordIndex form.'''
    return addForm.__of__(self)(
        type=KeywordIndex_scalable.meta_type,
        description=
        '''A KeywordIndex (scalable) indexes an object under a (potentially huge) set of terms.''',
        action='addIndex',
    )
Ejemplo n.º 10
0
def addKeywordIndexForm(self):
    '''add KeywordIndex form.'''
    return addForm.__of__(self)(
        type=KeywordIndex.meta_type,
        description=
        '''A KeywordIndex indexes an object under a set of terms.''',
        action='addIndex',
    )
Ejemplo n.º 11
0
def addWordIndexForm(self):
    '''add WordIndex form.'''
    return addForm.__of__(self)(
        type=WordIndex.meta_type,
        description=
        '''A WordIndex indexes an object under a set of word ids determined via a 'ZCTextIndex' like lexicon.''',
        action='addIndex',
    )
Ejemplo n.º 12
0
def addPathIndexForm(self):
  '''add PathIndex form.'''
  return addForm.__of__(self)(
    type= PathIndex.meta_type,
    description= '''A PathIndex indexes an object under a path (a tuple or '/' separated string).
    It can be queried for objects the path of which contains a given path with
    various possibilities to contrain where the given path must
    lie within the objects path.''',
    action= 'addIndex',
    )
Ejemplo n.º 13
0
def addPathIndexForm(self):
    '''add PathIndex form.'''
    return addForm.__of__(self)(
        type=PathIndex.meta_type,
        description=
        '''A PathIndex indexes an object under a path (a tuple or '/' separated string).
    It can be queried for objects the path of which contains a given path with
    various possibilities to contrain where the given path must
    lie within the objects path.''',
        action='addIndex',
    )