schemas/Bookmark.py
author Sylvain <syt@logilab.fr>
Wed, 25 Feb 2009 19:00:29 +0100
changeset 965 dd3efdf58d28
parent 0 b97547f5f1fa
child 1398 5fe84a5f7035
permissions -rw-r--r--
Added tag cubicweb-version-3_1_0 for changeset a711c7c185d1


class Bookmark(MetaUserEntityType):
    """define an entity type, used to build the application schema"""
    title = String(required=True, maxsize=128)
    path  = String(maxsize=512, required=True,
                   description=_("relative url of the bookmarked page"))
    
    bookmarked_by = SubjectRelation('EUser',
                                    description=_("users using this bookmark"))
    

class bookmarked_by(MetaUserRelationType):
    permissions = {'read':   ('managers', 'users', 'guests',),
                   # test user in users group to avoid granting permission to anonymous user
                   'add':    ('managers', RRQLExpression('O identity U, U in_group G, G name "users"')),
                   'delete': ('managers', RRQLExpression('O identity U, U in_group G, G name "users"')),
                   }