test/data/schema.py
author sylvain.thenault@logilab.fr
Wed, 15 Apr 2009 14:06:53 +0200
branchtls-sprint
changeset 1357 e5a97779c7fc
parent 750 89e997bc2bf1
child 1398 5fe84a5f7035
permissions -rw-r--r--
use entities found in schema, not in the etypes registry, else we miss entity types which have no specific classes

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 = 'EUser'
    object = 'Note'