Source code for pyams_content.reference.pictograms

#
# Copyright (c) 2008-2015 Thierry Florac <tflorac AT ulthar.net>
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#

__docformat__ = 'restructuredtext'


# import standard library

# import interfaces
from pyams_content.reference.pictograms.interfaces import IPictogramTable, IPictogram, PICTOGRAM_VOCABULARY
from pyams_i18n.interfaces import II18n
from zope.component.interfaces import ISite
from zope.lifecycleevent import IObjectAddedEvent

# import packages
from pyams_content.reference import ReferenceTable, ReferenceInfo
from pyams_i18n.property import I18nFileProperty
from pyams_utils.registry import query_utility
from pyams_utils.request import check_request
from pyams_utils.traversing import get_parent
from pyams_utils.vocabulary import vocabulary_config
from pyramid.events import subscriber
from zope.interface import implementer
from zope.schema.fieldproperty import FieldProperty
from zope.schema.vocabulary import SimpleVocabulary, SimpleTerm


[docs]@implementer(IPictogramTable) class PictogramTable(ReferenceTable): """Pictogram table"""
[docs]@subscriber(IObjectAddedEvent, context_selector=IPictogramTable) def handle_added_pictogram_table(event): """Handle new pictogram table""" site = get_parent(event.object, ISite) registry = site.getSiteManager() if registry is not None: registry.registerUtility(event.object, IPictogramTable)
[docs]@implementer(IPictogram) class Pictogram(ReferenceInfo): """Pictogram persistent class""" image = I18nFileProperty(IPictogram['image']) alt_title = FieldProperty(IPictogram['alt_title']) header = FieldProperty(IPictogram['header'])
[docs]@vocabulary_config(name=PICTOGRAM_VOCABULARY) class PictogramsVocabulary(SimpleVocabulary): """Pictograms vocabulary""" def __init__(self, context=None): table = query_utility(IPictogramTable) if table is not None: request = check_request() terms = [SimpleTerm(v.__name__, title=II18n(v).query_attribute('title', request=request)) for v in table.values()] else: terms = [] super(PictogramsVocabulary, self).__init__(terms)