Diff for /OSA_system2/OSAS_server.py between versions 1.12 and 1.16

version 1.12, 2005/03/04 14:53:40 version 1.16, 2005/10/10 18:11:11
Line 8  import base64 Line 8  import base64
 from Products.PageTemplates.PageTemplateFile import PageTemplateFile  from Products.PageTemplates.PageTemplateFile import PageTemplateFile
 from Globals import InitializeClass,package_home  from Globals import InitializeClass,package_home
 from OFS.SimpleItem import SimpleItem  from OFS.SimpleItem import SimpleItem
   import zLOG
   
 def encodeRPC(string):  def encodeRPC(string):
     return base64.encodestring(bz2.compress(string))      return base64.encodestring(bz2.compress(string))
Line 19  class OSAS_storeOnlineServer(SimpleItem) Line 20  class OSAS_storeOnlineServer(SimpleItem)
           
     meta_type="OSAS_server"      meta_type="OSAS_server"
   
     def getImages(path):      def __init__(self,id):
           """initalize osas_server"""
           self.id = id
           
       def getImages(self,path):
         """hack"""          """hack"""
         imageEnding=['.gif','.jpg','.jpeg','.png','.tiff','.tif']          imageEnding=['.gif','.jpg','.jpeg','.png','.tiff','.tif']
   
         dirs=os.listdir(path)          dirs=os.listdir(path)
         ret=[]          ret=[]
   
         for dir in dirs:          for dir in dirs:
             if os.path.isdir(dir):  
               if os.path.isdir(os.path.join(path,dir)):
                   
                 for subdir in os.listdir(os.path.join(path,dir)):                  for subdir in os.listdir(os.path.join(path,dir)):
                     if os.path.splitext(subdir)[1].lower() in imageEnding:                      if os.path.splitext(subdir)[1].lower() in imageEnding:
                         ret.append(os.path.join(dir,subdir))                          ret.append(os.path.join(dir,subdir))
Line 35  class OSAS_storeOnlineServer(SimpleItem) Line 44  class OSAS_storeOnlineServer(SimpleItem)
         return ret          return ret
           
   
     def getMovies(path):      def getMovies(self,path):
         """hack"""          """hack"""
         movieEnding=['.dv','.mov','.mp4']          movieEnding=['.dv','.mov','.mp4']
         dirs=os.listdir(path)          dirs=os.listdir(path)
         ret=[]          ret=[]
         for dir in dirs:          for dir in dirs:
             if os.path.isdir(dir):              if os.path.isdir(os.path.join(path,dir)):
                 for subdir in os.listdir(os.path.join(path,dir)):                  for subdir in os.listdir(os.path.join(path,dir)):
                     if os.path.splitext(subdir)[1].lower() in movieEnding:                      if os.path.splitext(subdir)[1].lower() in movieEnding:
                         ret.append(os.path.join(dir,subdir))                          ret.append(os.path.join(dir,subdir))
             else:              else:
                 if os.path.splitext(dir)[1] in imageEnding:                  if os.path.splitext(dir)[1] in movieEnding:
                         ret.append(os.path.join(dir))                          ret.append(os.path.join(dir))
         return ret          return ret
           
Line 114  class OSAS_storeOnlineServer(SimpleItem) Line 123  class OSAS_storeOnlineServer(SimpleItem)
         """getFile"""          """getFile"""
   
         if not os.path.exists(path):          if not os.path.exists(path):
             print "sorry"  
             return None              return None
   
         f=file(path,'r')          f=file(path,'r')
Line 150  class OSAS_storeOnlineServer(SimpleItem) Line 158  class OSAS_storeOnlineServer(SimpleItem)
         except:          except:
             return False              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)                        
           return "ok"
                   
 def manage_addOSAS_storeOnlineServerForm(self):  def manage_addOSAS_storeOnlineServerForm(self):
     """interface for adding the OSAS_storeOnline"""      """interface for adding the OSAS_storeOnline"""

Removed from v.1.12  
changed lines
  Added in v.1.16


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>