Re: Fwd: [Zope-dev] How to return downloadable content from Python Method

2001-06-08 Thread Gregor Heine
I am compressing files which need to be uncompressed inline before download. The DTML href=... calles a python method in the product which returns the uncompressed file data. Say this file is an MSWord document, how do I return this as a file to download? Presently, the browser just

Re: [Zope-dev] manage_debug

2001-04-30 Thread Gregor Heine
Hi Andy, Whoops, seems like some relict from the Client/Server Product, right?!? Actually I was planning to release a new version of that product, but unfortunately I have quit cdc in Frankfurt a while ago and I'm working for Iona Technologies in Dublin now, and now my work hasn't much to do

Re: [Zope-dev] (no subject)

2001-03-16 Thread Gregor Heine
Hi Menno, what you get from the form is a FileUpload object, so try this: print file.__dict__ and you will find out that it has a method called file.read() which returns the data of the uploaded file. Cheers, Gregor! -Original Message- From: "Menno Brandsen" [EMAIL PROTECTED] To:

[Zope-dev] Product release: ExtFile/ExtImage 1.1.0.beta1

2001-02-20 Thread Gregor Heine
ExtFile/ExtImage Product 1.1.0.beta1 has just been released. Get it at http://www.zope.org/Members/MacGregor/ExtFile The new Version comes with many, many internal changes and some new features which will (hopefully) make ExtFile/ExtImage even more reliable: - You can set a 'level of undo'

Re: [Zope-dev] 2 Zopes

2000-10-26 Thread Gregor Heine
Hi, Can anyone tell me a way to get Zope Objects from the first Zope-Installation to the second. I need this because i have to program a Product to putting data into different Zope Installations from one point of the Web. My boss want this way because he want a central point for

RE: [Zope-dev] (no subject)

2000-10-15 Thread Gregor Heine
I recently asked how to read in and render the contents of an external file, which doesn't work anymore using Zope 2.2.2 an LocalFS' xxx.read(), and You responded that The quickest solution for you would be an external method that gets the file, performs the "read" and returns the