* print vreg content once fully initialized (require move of print code from vregistry to cwvreg)
* new vreg_initialization_completed callback on appobjects, called once the vregistry is fully initialized
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'