goa/skel/schema.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 29 Jun 2009 21:15:07 +0200
branchstable
changeset 2200 25bb65dc4559
parent 1977 606923dff11b
child 2459 d088d0ff48a1
permissions -rw-r--r--
test fixes, all server tests ok, except unittest_migractions (due to inter-tests-side-effects...)

"""

:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
from cubicweb.schema import format_constraint

class Blog(EntityType):
    title = String(maxsize=50, required=True)
    description = String()

class BlogEntry(EntityType):
    title = String(maxsize=100, required=True)
    publish_date = Date(default='TODAY')
    text_format = String(meta=True, internationalizable=True, maxsize=50,
                         default='text/rest', constraints=[format_constraint])
    text = String(fulltextindexed=True)
    category = String(vocabulary=('important','business'))
    entry_of = SubjectRelation('Blog', cardinality='?*')