cubicweb/test/data-rewrite/cubicweb_card/schema.py
author Simon Chabot <simon.chabot@logilab.fr>
Fri, 14 Feb 2020 18:15:55 +0100
changeset 12891 eb0cd6060062
parent 12711 9d72e299309e
permissions -rw-r--r--
[rdf] add functions and tools to generate rdf graph

from yams.buildobjs import EntityType, String, RichString


class Card(EntityType):
    __permissions__ = {
        'read':   ('managers', 'users', 'guests'),
        'add':    ('managers', 'users'),
        'delete': ('managers', 'owners'),
        'update': ('managers', 'owners',),
        }

    title = String(required=True, fulltextindexed=True, maxsize=256)
    synopsis = String(fulltextindexed=True, maxsize=512,
                      description=("an abstract for this card"))
    content = RichString(fulltextindexed=True, internationalizable=True,
                         default_format='text/rest')
    wikiid = String(maxsize=64, unique=True)