Re: [fpc-pascal] FPC Zip library

2008-02-07 Thread Graeme Geldenhuys
On 07/02/2008, Felipe Monteiro de Carvalho <[EMAIL PROTECTED]> wrote: > > 2 - It doesn't allow to give a stream of data to be compressed into a > zip file. My data is on memory, saving it and re-reading is a waste. > This one is easy to fix without knowledge of zip format, and I started > building

Re: [fpc-pascal] FPC Zip library

2008-02-07 Thread Felipe Monteiro de Carvalho
> If you could add these as feature requests on the bugtracker, then > I won't forget about them... Done, thanks a lot. I've made good progress creating OOXML files from code by the way. If you zip the files manually it works good. -- Felipe Monteiro de Carvalho

Re: [fpc-pascal] FPC Zip library

2008-02-07 Thread Michael Van Canneyt
On Thu, 7 Feb 2008, Felipe Monteiro de Carvalho wrote: > On Jan 28, 2008 10:07 PM, Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > > Doesn't the zipper unit that comes standard with FPC suit your needs ? > > As far as I know, there is no special treatment needed for directories, > > just add th

Re: [fpc-pascal] FPC Zip library

2008-02-07 Thread Felipe Monteiro de Carvalho
On Jan 28, 2008 10:07 PM, Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > Doesn't the zipper unit that comes standard with FPC suit your needs ? > As far as I know, there is no special treatment needed for directories, > just add the file with a name like subdir/filename.ext ? Well, I tryed it, b

Re: [fpc-pascal] FPC Zip library

2008-01-28 Thread Felipe Monteiro de Carvalho
On Jan 28, 2008 10:07 PM, Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > Doesn't the zipper unit that comes standard with FPC suit your needs ? > As far as I know, there is no special treatment needed for directories, > just add the file with a name like subdir/filename.ext ? oh, I had done a se

Re: [fpc-pascal] FPC Zip library

2008-01-28 Thread Graeme Geldenhuys
On 28/01/2008, Felipe Monteiro de Carvalho <[EMAIL PROTECTED]> wrote: > Hello, > > Does anyone know a zip library for fpc that can create a directory > structure inside the zip? Yup. Darius Blaszijk and I worked on a TZipFile project (Darius did most of it) where you can access the inside of a zip

Re: [fpc-pascal] FPC Zip library

2008-01-28 Thread Michael Van Canneyt
On Mon, 28 Jan 2008, Felipe Monteiro de Carvalho wrote: > Hello, > > Does anyone know a zip library for fpc that can create a directory > structure inside the zip? > > I am implementing a generic spreadsheet library, and I was considering > adding either OpenDocument or OOXML to it, so it real

[fpc-pascal] FPC Zip library

2008-01-28 Thread Felipe Monteiro de Carvalho
Hello, Does anyone know a zip library for fpc that can create a directory structure inside the zip? I am implementing a generic spreadsheet library, and I was considering adding either OpenDocument or OOXML to it, so it really needs to be a zip file with a directory structure inside. thanks, --