|
|
| version 1.11, 2005/03/03 20:41:00 | version 1.12, 2005/03/04 14:53:40 |
|---|---|
| Line 19 class OSAS_storeOnlineServer(SimpleItem) | Line 19 class OSAS_storeOnlineServer(SimpleItem) |
| meta_type="OSAS_server" | meta_type="OSAS_server" |
| def getImages(path): | |
| """hack""" | |
| imageEnding=['.gif','.jpg','.jpeg','.png','.tiff','.tif'] | |
| dirs=os.listdir(path) | |
| ret=[] | |
| for dir in dirs: | |
| if os.path.isdir(dir): | |
| for subdir in os.listdir(os.path.join(path,dir)): | |
| if os.path.splitext(subdir)[1].lower() in imageEnding: | |
| ret.append(os.path.join(dir,subdir)) | |
| else: | |
| if os.path.splitext(dir)[1] in imageEnding: | |
| ret.append(os.path.join(dir)) | |
| return ret | |
| def getMovies(path): | |
| """hack""" | |
| movieEnding=['.dv','.mov','.mp4'] | |
| dirs=os.listdir(path) | |
| ret=[] | |
| for dir in dirs: | |
| if os.path.isdir(dir): | |
| for subdir in os.listdir(os.path.join(path,dir)): | |
| if os.path.splitext(subdir)[1].lower() in movieEnding: | |
| ret.append(os.path.join(dir,subdir)) | |
| else: | |
| if os.path.splitext(dir)[1] in imageEnding: | |
| ret.append(os.path.join(dir)) | |
| return ret | |
| def findIndexMeta(self,realPath=""): | def findIndexMeta(self,realPath=""): |
| """finde Rueckwaerts im Baum von Pfad ausgehend, dass erste index.meta file | """finde Rueckwaerts im Baum von Pfad ausgehend, dass erste index.meta file |