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

version 1.12, 2005/03/04 14:53:40 version 1.13, 2005/03/07 19:33:42
Line 19  class OSAS_storeOnlineServer(SimpleItem) Line 19  class OSAS_storeOnlineServer(SimpleItem)
           
     meta_type="OSAS_server"      meta_type="OSAS_server"
   
     def getImages(path):      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 39  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 118  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')

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


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