From b4892f9af387a40573b75c477365342de9a7ebc8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Pin?= Date: Mon, 31 Mar 2014 09:53:28 +0200 Subject: [PATCH] =?utf8?q?Prise=20en=20compte=20du=20param=C3=A8tre=20thum?= =?utf8?q?b=5Fsize=20au=20moment=20de=20la=20fabrication.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- photo.py | 14 ++++++++++++-- skins/photo_layout_macros.pt | 4 ++-- skins/portfolio_style.css.dtml | 8 ++++---- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/photo.py b/photo.py index c0c92c6..7cb8974 100755 --- a/photo.py +++ b/photo.py @@ -29,7 +29,7 @@ from Products.CMFCore.DynamicType import DynamicType from Products.CMFCore.CMFCatalogAware import CMFCatalogAware from Products.Photo.Photo import Photo as BasePhoto from Products.CMFDefault.DublinCore import DefaultDublinCoreImpl -from Products.CMFCore.utils import getToolByName +from Products.CMFCore.utils import getToolByName, getUtilityByInterfaceName from Products.Photo.cache import memoizedmethod from Products.DCWorkflow.utils import modifyRolesForPermission from interfaces import IPhoto @@ -214,4 +214,14 @@ class Photo(DynamicType, CMFCatalogAware, BasePhoto, DefaultDublinCoreImpl) : InitializeClass(Photo) -PhotoFactory = Factory(Photo) \ No newline at end of file +class _PhotoFactory(Factory) : + def __call__(self, *args, **kw): + if not kw.has_key('thumb_height') or not kw.has_key('thumb_width') : + utool = getUtilityByInterfaceName('Products.CMFCore.interfaces.IURLTool') + portal = utool.getPortalObject() + size = portal.getProperty('thumb_size') + kw.update({'thumb_height' : size, 'thumb_width' : size }) + return self._callable(*args, **kw) + + +PhotoFactory = _PhotoFactory(Photo) \ No newline at end of file diff --git a/skins/photo_layout_macros.pt b/skins/photo_layout_macros.pt index 16571dd..48b8040 100644 --- a/skins/photo_layout_macros.pt +++ b/skins/photo_layout_macros.pt @@ -102,7 +102,7 @@