# HG changeset patch # User Sylvain Thénault # Date 1246959411 -7200 # Node ID 4cf57dd806505a103e505fc6ededfb3462582571 # Parent f1b74a34da40bfa07c80cc1b253158363da082c0 missing imports diff -r f1b74a34da40 -r 4cf57dd80650 schemas/Bookmark.py --- 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""" diff -r f1b74a34da40 -r 4cf57dd80650 schemas/base.py --- 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):