source: WAeUP_SRP/trunk/skins/waeup_utilities/viewimage.py @ 6982

Last change on this file since 6982 was 4032, checked in by Henrik Bettermann, 15 years ago

enhance security

  • Property svn:keywords set to Id
File size: 572 bytes
Line 
1## Script (Python) "viewimage"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=path=None
8##title=
9##
10# $Id: viewimage.py 4032 2009-03-27 07:05:02Z henrik $
11"""
12"""
13try:
14    from Products.zdb import set_trace
15except:
16    def set_trace():
17        pass
18       
19mtool = context.portal_membership
20
21if mtool.isAnonymousUser():
22    return None       
23       
24if path is None and traverse_subpath:
25    traverse_subpath.insert(0,traverse_subpath[0][0])
26    path = "/".join(traverse_subpath)
27
28
29return context.waeup_tool.showFsPicture(path)
30
Note: See TracBrowser for help on using the repository browser.