X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/blobdiff_plain/0971623cf1c52edd330de6dd62a455be497f4ac6..b7206bf3b2e6b8d380e30e646c366beed91b88b2:/skins/selectioncontext.py diff --git a/skins/selectioncontext.py b/skins/selectioncontext.py index 36727f6..8539a4e 100644 --- a/skins/selectioncontext.py +++ b/skins/selectioncontext.py @@ -60,7 +60,8 @@ if ajax == True : photoPath = list(photo.getPhysicalPath()) photoPath.insert(portalDepth, 'selectioncontext') options['lastBcUrl'] = toUrl(photoPath) - meth = getattr(photo, 'photo_view_ajax_template') + app = context.restrictedTraverse('/') + meth = app.restrictedTraverse(photo.getPhysicalPath() + ('photo_view_ajax_template',)) return meth(req, resp, **options) @@ -134,5 +135,6 @@ options['breadcrumbs'] = breadcrumbs ti = photo.getTypeInfo() method_id = ti.queryMethodID('view', context=photo) -meth = getattr(photo, method_id) +app = context.restrictedTraverse('/') +meth = app.restrictedTraverse(photo.getPhysicalPath() + (method_id,)) return meth(req, resp, **options)