Changes between Initial Version and Version 11 of Ticket #411
- Timestamp:
- Sep 21, 2007, 8:36:29 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #411
- Property Type defect → enhancement
- Property Milestone → BASE 2.5
- Property Status new → assigned
-
Ticket #411 – Description
initial v11 1 1 It would be nice if BASE core support would include storage of compressed files. Affy files CDFs and CELs shrinks with a factor 5 to 10 when compressed. BASE can store compressed files already but does not know how to handle them. Currently clients and plug-ins must know how to handle files. It is usually assumed that the files are uncompressed. 2 2 3 The core should have support for uncompressing files when clients request them and support client queries like isCompressedFile(). Otherwise all plug-in programmers has to uncompress files themselves. Maybe some core functionality like FileObject uncompressedFile=CompressUtil.uncompress(compressedFile); should be created. 4 5 The ZIPFileUnpacker already supports zip and jar files. Can this be expanded further to other fomrats. Ant has support for bzip files (http://www.kohsuke.org/bzip2/). 3 The core should have support for uncompressing files when clients request them and support client queries like isCompressedFile().