
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1200 fd906abe-77d9-0310-91a1-e0d9ade77398
118 lines
3.6 KiB
Python
118 lines
3.6 KiB
Python
#
|
|
# Copyright (c) 2006 Helmut Merz helmutm@cy55.de
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
|
|
"""
|
|
A view configurator provides configuration data for a view controller.
|
|
|
|
$Id$
|
|
"""
|
|
|
|
from zope.app import zapi
|
|
from zope.app.annotation.interfaces import IAttributeAnnotatable
|
|
from zope.app.annotation.attribute import AttributeAnnotations
|
|
from zope.cachedescriptors.property import Lazy
|
|
from zope.interface import Interface, Attribute, implements
|
|
from zope.component import adapts
|
|
|
|
|
|
# interfaces
|
|
|
|
class IViewConfigurator(Interface):
|
|
""" Usually implemented by an adapter (e.g. to IAnnotatable);
|
|
provides a set of properties that govern the appearance of a
|
|
page, e.g. the name of the logo, CSS file(s), or portlets.
|
|
"""
|
|
|
|
viewProperties = Attribute('A sequence of IViewProperty objects')
|
|
|
|
|
|
class IViewProperty(Interface):
|
|
|
|
slot = Attribute('The property slot to fill')
|
|
name = Attribute('The name of the object to fill the slot')
|
|
|
|
|
|
class IMacroViewProperty(IViewProperty):
|
|
|
|
slot = Attribute('The property slot to fill')
|
|
name = Attribute('The name of the macro to use; may be None, '
|
|
'meaning that the slot name will be used')
|
|
template = Attribute('The template providing the macro')
|
|
params = Attribute('A mapping with parameters (key/value pairs) '
|
|
'to be handed over to the macro')
|
|
|
|
|
|
#default implementations
|
|
|
|
ANNOTATION_KEY = 'cybertools.browser.configurator.ViewConfigurator'
|
|
|
|
class ViewConfigurator(AttributeAnnotations):
|
|
""" Simple/basic default adapter using attribute annotations as storage
|
|
for view properties.
|
|
"""
|
|
|
|
implements(IViewConfigurator)
|
|
|
|
def __init__(self, context, request):
|
|
AttributeAnnotations.__init__(self, context)
|
|
self.context = context
|
|
self.request = request
|
|
|
|
@property
|
|
def viewProperties(self):
|
|
propDefs = self.get(ANNOTATION_KEY, [])
|
|
result = []
|
|
for prop in propDefs:
|
|
vp = zapi.queryMultiAdapter((self.context, self.request),
|
|
IViewProperty, name=prop)
|
|
if vp is None:
|
|
vp = ViewProperty(self.context, self.request)
|
|
vp.slot = prop
|
|
vp.setParams(propDefs[prop])
|
|
result.append(vp)
|
|
return result
|
|
|
|
|
|
class ViewProperty(object):
|
|
|
|
implements(IViewProperty)
|
|
|
|
def __init__(self, context, request):
|
|
self.context = context
|
|
self.request = request
|
|
self.slot = None
|
|
self.name = None
|
|
self.value = None
|
|
self.params = {}
|
|
|
|
def setParams(self, params):
|
|
self.name = params.pop('name', '')
|
|
self.value = params.pop('value', None)
|
|
self.params = params
|
|
|
|
|
|
class MacroViewProperty(object):
|
|
|
|
implements(IMacroViewProperty)
|
|
|
|
template = None
|
|
|
|
def setParams(self, params):
|
|
self.name = params.pop('name', '')
|
|
self.template = params.pop('template', None)
|
|
self.params = params
|