--- a/schemas/Bookmark.py Tue Jul 07 11:36:26 2009 +0200
+++ b/schemas/Bookmark.py Tue Jul 07 11:36:51 2009 +0200
@@ -8,7 +8,8 @@
__docformat__ = "restructuredtext en"
_ = unicode
-from yams.buildobjs import EntityType, RelationType, String
+from yams.buildobjs import EntityType, RelationType, SubjectRelation, String
+from cubicweb.schema import RRQLExpression
class Bookmark(EntityType):
"""bookmarks are used to have user's specific internal links"""
--- a/schemas/base.py Tue Jul 07 11:36:26 2009 +0200
+++ b/schemas/base.py Tue Jul 07 11:36:51 2009 +0200
@@ -9,8 +9,9 @@
_ = unicode
from yams.buildobjs import (EntityType, RelationType, SubjectRelation,
- String, Boolean, Datetime)
-from cubicweb.schema import RQLConstraint
+ String, Boolean, Datetime, Password)
+from cubicweb.schema import (RQLConstraint, WorkflowableEntityType,
+ ERQLExpression, RRQLExpression)
from cubicweb.schemas import META_ETYPE_PERMS, META_RTYPE_PERMS
class CWUser(WorkflowableEntityType):