test/data/schema.py
author sylvain.thenault@logilab.fr
Thu, 23 Apr 2009 17:57:46 +0200
branchtls-sprint
changeset 1455 a2c8b07d61b4
parent 1398 5fe84a5f7035
child 1476 f94b41709ce6
permissions -rw-r--r--
refactor to get powerful etype_relation_field function which benefit from ui configuration (eg widgets and fields)

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'