goa/skel/schema.py
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Thu, 14 May 2009 10:24:56 +0200
branchtls-sprint
changeset 1801 672acc730ce5
parent 0 b97547f5f1fa
child 1977 606923dff11b
permissions -rw-r--r--
ajax_replace_url becomes obsolete, req.build_ajax_replace_url should be used instead The idea is to generate the full URL on the server side and not on the client side (i.e in JS). This way, this gives a chance to the ajax link to work outside the application itself (typically mash-ups).

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='?*')