goa/skel/schema.py
changeset 2459 d088d0ff48a1
parent 1977 606923dff11b
child 4212 ab6573088b4a
--- a/goa/skel/schema.py	Thu Jul 23 15:33:03 2009 +0200
+++ b/goa/skel/schema.py	Thu Jul 23 15:57:15 2009 +0200
@@ -5,7 +5,6 @@
 :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)
@@ -14,8 +13,6 @@
 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)
+    text = RichString(fulltextindexed=True)
     category = String(vocabulary=('important','business'))
     entry_of = SubjectRelation('Blog', cardinality='?*')