schemas/Bookmark.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 10 Jun 2009 18:44:45 +0200
branchstable
changeset 2094 59a4e9f4f57a
parent 1977 606923dff11b
child 2144 51c84d585456
permissions -rw-r--r--
fix docstring, make Bookmark.title internationalizable for appl level bookmarks

"""the Bookmark entity type for internal links

:organization: Logilab
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""

class Bookmark(MetaUserEntityType):
    """bookmarks are used to have user's specific internal links"""
    title = String(required=True, maxsize=128, internationalizable=True)
    path  = String(maxsize=512, required=True,
                   description=_("relative url of the bookmarked page"))

    bookmarked_by = SubjectRelation('CWUser',
                                    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"')),
                   }