web/component.py
changeset 3408 c92170fca813
parent 3023 7864fee8b4ec
child 3451 6b46d73823f5
equal deleted inserted replaced
3407:da9cc8cc7c5f 3408:c92170fca813
    56         raise NotImplementedError()
    56         raise NotImplementedError()
    57 
    57 
    58 
    58 
    59 class NavigationComponent(Component):
    59 class NavigationComponent(Component):
    60     """abstract base class for navigation components"""
    60     """abstract base class for navigation components"""
    61     id = 'navigation'
    61     __regid__ = 'navigation'
    62     __select__ = paginated_rset()
    62     __select__ = paginated_rset()
    63 
    63 
    64     cw_property_defs = {
    64     cw_property_defs = {
    65         _('visible'):  dict(type='Boolean', default=True,
    65         _('visible'):  dict(type='Boolean', default=True,
    66                             help=_('display the component or not')),
    66                             help=_('display the component or not')),