test/data/schema.py
author sylvain.thenault@logilab.fr
Fri, 24 Apr 2009 16:48:38 +0200
branchtls-sprint
changeset 1476 f94b41709ce6
parent 1398 5fe84a5f7035
child 1977 606923dff11b
permissions -rw-r--r--
delete-trailing-whitespaces

class Personne(EntityType):
    nom = String(required=True)
    prenom = String()
    type = String()
    travaille = SubjectRelation('Societe')
    evaluee = SubjectRelation(('Note', 'Personne'))
    connait = SubjectRelation('Personne', symetric=True)

class Societe(EntityType):
    nom = String()
    evaluee = SubjectRelation('Note')

class Note(EntityType):
    type = String()
    ecrit_par = SubjectRelation('Personne')

class SubNote(Note):
    __specializes_schema__ = True
    description = String()

class tags(RelationDefinition):
    subject = 'Tag'
    object = ('Personne', 'Note')

class evaluee(RelationDefinition):
    subject = 'CWUser'
    object = 'Note'