web/facet.py
changeset 2799 b703639614e7
parent 2770 356e9d7c356d
child 2890 fdcb8a2bb6eb
equal deleted inserted replaced
2798:9c650701cb17 2799:b703639614e7
   242 
   242 
   243 ## base facet classes #########################################################
   243 ## base facet classes #########################################################
   244 class AbstractFacet(AppObject):
   244 class AbstractFacet(AppObject):
   245     __abstract__ = True
   245     __abstract__ = True
   246     __registry__ = 'facets'
   246     __registry__ = 'facets'
   247     property_defs = {
   247     cw_property_defs = {
   248         _('visible'): dict(type='Boolean', default=True,
   248         _('visible'): dict(type='Boolean', default=True,
   249                            help=_('display the box or not')),
   249                            help=_('display the box or not')),
   250         _('order'):   dict(type='Int', default=99,
   250         _('order'):   dict(type='Int', default=99,
   251                            help=_('display order of the box')),
   251                            help=_('display order of the box')),
   252         _('context'): dict(type='String', default='',
   252         _('context'): dict(type='String', default='',