test/data/entities.py
author sylvain.thenault@logilab.fr
Wed, 08 Apr 2009 11:30:32 +0200
branchtls-sprint
changeset 1283 d812bd08c11c
parent 744 4da6e0f4df2a
child 1473 717dea3362c0
permissions -rw-r--r--
add str() to avoid kilometers of information while printing content (due to __repr__ of yams objects)

from cubicweb.entities import AnyEntity, fetch_config

class Personne(AnyEntity):
    """customized class forne Person entities"""
    id = 'Personne'
    fetch_attrs, fetch_order = fetch_config(['nom', 'prenom'])
    rest_attr = 'nom'


class Societe(AnyEntity):
    id = 'Societe'
    fetch_attrs = ('nom',)
    
class Note(AnyEntity):
    id = 'Note'