Newer
Older
from yams.buildobjs import EntityType, String, SubjectRelation
from cubicweb.schema import WorkflowableEntityType, ERQLExpression
try:
from yams.buildobjs import RichString
except ImportError:
from cubicweb.schema import RichString
class Blog(EntityType):
title = String(maxsize=50, required=True)
rss_url = String(maxsize=128, description=_('blog\'s rss url (useful for when using external site such as feedburner)'))
Sandrine Ribeau
committed
class BlogEntry(WorkflowableEntityType):
permissions = {
'read': ('managers', 'users', ERQLExpression('X in_state S, S name "published"'),),
'add': ('managers', 'users'),
'update': ('managers', 'owners'),
'delete': ('managers', 'owners')
}
title = String(required=True, fulltextindexed=True, maxsize=256)
content = RichString(required=True, fulltextindexed=True)
entry_of = SubjectRelation('Blog', cardinality='**')