cubicweb/test/data/cubicweb_tag/schema.py
author Philippe Pepiot <philippe.pepiot@logilab.fr>
Fri, 15 Mar 2019 18:07:18 +0100
changeset 12518 12e8b65146d9
permissions -rw-r--r--
[test] drop dependency on third party cubes Drop dependency on cubicweb-file, cubicweb-localperms, cubicweb-tag and cubicweb-comment for cubicweb.test and cubicweb.sobjects.test Move cubicweb/test/data/libpython/cubicweb_* to cubicweb/test/data, so it's included in PYTHONPATH. Add missing parts of schema, entities, views, hooks that make tests pass.

from yams.buildobjs import EntityType, String, SubjectRelation, RelationType


class Tag(EntityType):
    """tags are used by users to mark entities.
    When you include the Tag entity, all application specific entities
    may then be tagged using the "tags" relation.
    """
    name = String(required=True, fulltextindexed=True, unique=True,
                  maxsize=128)
    # when using this component, add the Tag tag X relation for each type that
    # should be taggeable
    tags = SubjectRelation('Tag', description="tagged objects")


class tags(RelationType):
    """indicates that an entity is classified by a given tag"""