30 Sep
2004
30 Sep
'04
8:51 p.m.
Hi, I have a python script: def userInfo(userName): server = xmlrpclib.Server("http://tweety:8080/RPC2") email = server.da.emailInfo(userName) office = server.da.officeInfo(userName) pwd = server.da.pwdInfo(userName) acct = server.da.acctInfo(userName) dir = server.da.dirInfo(userName) return ..... I need to return all of the values and access them through a zope page template. I can't find any documentation on this situation. I am suspecting I probably need to create a list in my python script but not sure yet how to display the values in my zpt. Any ideas would be greatly appreciated. Thanks, Laura