--- OSA_system2/OSAS_server.py 2005/03/07 21:25:41 1.14 +++ OSA_system2/OSAS_server.py 2005/11/29 10:39:50 1.18 @@ -9,6 +9,7 @@ from Products.PageTemplates.PageTemplate from Globals import InitializeClass,package_home from OFS.SimpleItem import SimpleItem import zLOG +import sys def encodeRPC(string): return base64.encodestring(bz2.compress(string)) @@ -20,6 +21,10 @@ class OSAS_storeOnlineServer(SimpleItem) meta_type="OSAS_server" + def __init__(self,id): + """initalize osas_server""" + self.id = id + def getImages(self,path): """hack""" imageEnding=['.gif','.jpg','.jpeg','.png','.tiff','.tif'] @@ -136,6 +141,7 @@ class OSAS_storeOnlineServer(SimpleItem) compressed=encodeRPC(file(path+"/index.meta","r").read()) ret["."]=('OSAS_dir',compressed) for dir in os.listdir(path): + zLOG.LOG("SERVER",zLOG.INFO,"get all index meta in %s"%dir) fileType=OSAS_helpers.checkOSASFileType(os.path.join(path,dir)) if os.path.exists(os.path.join(path,dir,"index.meta")): compressed=encodeRPC(file(os.path.join(path,dir,"index.meta"),"r").read()) @@ -152,13 +158,14 @@ class OSAS_storeOnlineServer(SimpleItem) fh.close return True except: + zLOG.LOG("SERVER (writeMetadataFile)",zLOG.ERROR,"%s (%s)"%sys.exc_info()[0:1]) return False def generateMovieThumb(self,input,output): - """generate Movie""" - zLOG.LOG("SERVER",zLOG.INFO,"/usr/local/bin/thumbbite.pl %s %s"%(input,output)) - ret=os.popen("/usr/local/bin/thumbbite.pl %s %s"%(input,output)) - zLOG.LOG("SERVER",zLOG.INFO,ret) + """generate Movie""" + zLOG.LOG("SERVER",zLOG.INFO,"/usr/local/bin/thumbbite.pl %s %s"%(input,output)) + ret=os.popen("/usr/local/bin/thumbbite.pl %s %s"%(input,output)) + zLOG.LOG("SERVER",zLOG.INFO,ret) return "ok" def manage_addOSAS_storeOnlineServerForm(self):