Re: [Zope-dev] OS X support

2001-05-10 Thread marc lindahl
There's a howto on that, I recall seeing. Hi, Is there any plans for zope to support OS X? ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -

Re: [Zope-dev] What would *you* like to have in PropertyManagerand friends?

2001-05-28 Thread marc lindahl
From: Chris Withers [EMAIL PROTECTED] ...and how about a list-of-objects type too? If you had a 'objects' type, could that object be a list (of, say, objects)? ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] ANNOUNCE: Zope 2.4.0 alpha 1 released

2001-06-01 Thread marc lindahl
Does anyone have any comments on the reliability of PartitionedFileStorage in this regard as a temporary solution? Is anyone using PartitionedFileStorage in a production environment? AFAIK no. Its functionality has already been superceded. by?

Re: [Zope-dev] Speed up the learning curve

2001-06-28 Thread marc lindahl
I highly recommend the Quick Python Book if you're already a programmer, looking to learn the new language. From: Shane Hathaway [EMAIL PROTECTED] When I came to Zope, within a week I was getting ready to write a Python product. (And I didn't even know Python yet! :-) )

[Zope-dev] experiments bugs with data.fs 2GB

2001-07-02 Thread marc lindahl
I've recently been testing a new setup with XFS (http://oss.sgi.com/projects/xfs/1.0_release.html) and decided to try to bloat data.fs before using this system for production. The computer is set up with zope 2.3.3 installed from source (the old fashioned way, with everything in one directory),

Re: [Zope-dev] experiments bugs with data.fs 2GB

2001-07-03 Thread marc lindahl
From: Chris McDonough [EMAIL PROTECTED] 1. Trying the same thing with 2.4.0b2 and reporting the results Yikes... I need CMF! So far it's not recommended with 2.4! Are there plans to fix this in the 2.3 branch? ___ Zope-Dev maillist - [EMAIL

Re: [Zope-dev] Patching Zope Products .. next Question

2001-07-11 Thread marc lindahl
Would this approach be appropriate? http://dev.zope.org/Members/Caseman/Dynamic_HotFix_News/Dynamic_Hotfix From: Ulrich Eck [EMAIL PROTECTED] Date: Wed, 11 Jul 2001 19:33:15 +0200 To: ZOPE-DEV Mailingliste [EMAIL PROTECTED] Subject: [Zope-dev] Patching Zope Products .. next Question can

[Zope-dev] problems compiling zope-2.3.3 source under YDL 2.0

2001-07-12 Thread marc lindahl
I'm having problems compiling the Zope source under Yellow Dog Linux (PPC) 2.0 (which is basically RedHat 7.0) can anyone offer a suggestion based on the traceback? here 'tis: [zope@ydl Zope-2.3.3]$ python wo_pcgi.py

Re: [Zope-dev] problems compiling zope-2.3.3 source under YDL 2.0

2001-07-12 Thread marc lindahl
That was it... neglected to install glibc-devel If anyone wants it, I guess I can gzip the build up... THanks Andreas!!! Marc From: Andreas Jung [EMAIL PROTECTED] Organization: Andreas Jung Reply-To: Andreas Jung [EMAIL PROTECTED] Date: Thu, 12 Jul 2001 15:30:51 -0500 To: marc lindahl

Re: [Zope-dev] Vulnerability: attacking can get file list and directory

2001-09-24 Thread marc lindahl
From: Chris Withers [EMAIL PROTECTED] The traceback should _not_ be _appended_ to the error message. If an app developer chooses to show it, then fine they can as they do already (mine sends me an error email ;-), but why should it be appended in all circumstances Be careful of that -- I

Re: [Zope-dev] how to accept an arbitrary parameter/anti-NIMDAscript

2001-09-30 Thread marc lindahl
From: Dieter Maurer [EMAIL PROTECTED] thing. But how can I get an object called default.ida to accept anything passed after the ? and what kind of object (python script?) should it be? It can be anything with an explicit or implicit REQUEST parameter. Meaning DTML method or PythonScript,

Re: [Zope-dev] Zope 2.5.0 and VirtualHostMonster

2002-01-28 Thread marc lindahl
From: Trevor Toenjes [EMAIL PROTECTED] Date: Mon, 28 Jan 2002 17:16:12 -0500 To: Jesus Cea Avion [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: RE: [Zope-dev] Zope 2.5.0 and VirtualHostMonster We are considering upgrading from 2.4.0 to 2.5.0. Does the same issue apply to EnhancedVHM?

Re: [Zope-dev] Zope 2.6 planning - call for contributors!

2002-03-01 Thread marc lindahl
I would say, make SSL part of the standard z2.py, so you can turn on/off, specify address, etc. of https ports just as you do with http ports (and of course integrated with siteaccess2, etc.) ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] Re: MonkeyPatching in the Core (was: Zope 2.6planning)

2002-03-04 Thread marc lindahl
What about something like apple's Extension Manager, where you could disable/enable 'sets' of products? Though frankly, it's not too tough to just move the subdirectory somewhere and restart... but it would be a way to have a TTW way of configuring your Zope, and having the option of 'loading

Re: [Zope-dev] ZMI: IE6 TextArea width bug: fix on tap for 2.6?

2002-03-18 Thread marc lindahl
There's a couple good starting points for looking at this stuff... http://www.alistapart.com/stories/fear4/ http://www.alistapart.com/stories/dao/ From: Jeff Kowalczyk [EMAIL PROTECTED] Date: Sun, 17 Mar 2002 16:12:44 -0500 To: [EMAIL PROTECTED] Subject: [Zope-dev] ZMI: IE6 TextArea width

Re: [Zope-dev] ZPT and 'else'

2002-05-09 Thread Marc Lindahl
Yecch! Why not: if ... True stuff /if else False stuff /else If leaves around boolean result, else picks up the most recent one... It's like they push on a stack so you can nest them Something like that? on 5/9/02 11:10 PM, Jeffrey P Shell at [EMAIL PROTECTED] scrivened: 'else' is

Re: [Zope-dev] ZPT and 'else'

2002-05-10 Thread Marc Lindahl
on 5/10/02 12:47 AM, Jeffrey P Shell at [EMAIL PROTECTED] scrivened: You would need something to close off the 'if' statement, otherwise, a document full of 'if' statements and no 'else' ones could fill up a stack needlessly. What's so bad about that? The stack wouldn't carry over after

Re: [Zope-dev] ZPT and 'else'

2002-05-10 Thread Marc Lindahl
on 5/9/02 11:58 PM, Tim Hoffman at [EMAIL PROTECTED] scrivened: The big problem with the whole 'else' issue as I see it, is that non coders, using dreamweaver etc.. would no doubt end up with both bit's of html in their template. Don't you have that now with the kludgey 'not' construct?

Re: [Zope-dev] ZPT and 'else'

2002-05-13 Thread Marc Lindahl
on 5/10/02 1:18 PM, Jeffrey P Shell at [EMAIL PROTECTED] scrivened: Still, yuck. It's - for better or worse - not a valid XML way. Even XSLT does things like this: snip Well that makes this look palatable: You would at the very least need something like: condition if.../if

Re: [Zope-dev] 'not:' kludgey?!

2002-05-13 Thread Marc Lindahl
on 5/10/02 11:32 AM, Chris Withers at [EMAIL PROTECTED] scrivened: Marc Lindahl wrote: Don't you have that now with the kludgey 'not' construct? What is kludgey about the 'not:' construct?! For the reasons 'else' was invented in the first place, I guess: prone to errors, inefficient

Re: [Zope-dev] 'not:' kludgey?!

2002-05-13 Thread Marc Lindahl
on 5/13/02 3:11 PM, Chris Withers at [EMAIL PROTECTED] scrivened: For the reasons 'else' was invented in the first place, 'else' in what context?! Meaning, in procedural languages. I guess: prone to errors, inefficient, bulky. Can you give any material that actually backs up

[Zope-dev] Re: stacks != easy to explain

2002-05-13 Thread Marc Lindahl
on 5/13/02 3:15 PM, Chris Withers at [EMAIL PROTECTED] scrivened: Marc Lindahl wrote: Still I think the concept of TAL having some kind of 'stack' for condition results makes sense and is worth exploring... Could yield better logical constructs, and things like case statements. Sorry

Re: [Zope-dev] Re: stacks != easy to explain

2002-05-14 Thread Marc Lindahl
on 5/14/02 4:43 AM, Chris Withers at [EMAIL PROTECTED] scrivened: Marc Lindahl wrote: Sorry, but I don't see a 'stack' of any sort being easy to explain to a newbie or not programmer. I'd disagree - HTML has this concept - for example the way table tags inherit properties. Key

Re: [Zope-dev] 'not:' kludgey?!

2002-05-14 Thread Marc Lindahl
on 5/14/02 4:41 AM, Chris Withers at [EMAIL PROTECTED] scrivened: Okay, repeat the mantra over to yourself: Templating languages are not procedural languages Sounds nice, but what does it mean? AFAIK a procedural language is something that has a definite order of execution... How does a

Re: [Zope-dev] Re: stacks != easy to explain

2002-05-18 Thread Marc Lindahl
Well, no, not really. Being able to edit stuff remotely is where Zope's real strength lies. WebDAV and FTP are much better than using sucky HTTP forms to do this ;-) The fact that Zope has a TTW interface indicates that the software itself has the opinion that TTW is valuable - otherwise it

Re: [Zope-dev] Zope 2.7 b3 problem with reindexing catalog

2003-11-23 Thread Marc Lindahl
Probably you're trying to index non-CMF non-plone objects - you can get a similar error with plain CMF if you have non-CMF objects that you try to index. I think what you have to do is clear the catalog and then use the 'find objects' page to reindex, only select the object types which are

Re: [Zope-dev] Serving big files thru zope?

2004-03-02 Thread Marc Lindahl
On Monday, March 1, 2004, at 02:43 PM, Dieter Maurer wrote: In order to reduce memory consumption and decouple Zope from ZServer (and the response delivery), a large file is spooled via a temporary. This means, that the file content is read from ZODB, stored in a temporary file and then delivered

Re: [Zope-dev] Image.tag() no longer publishable?

2004-03-04 Thread Marc Lindahl
If you're using Plone, it monkeypatches Image.tag(). Caused me to add an Image.pil_tag() monkeypatch to my monkeypatch ImageTag_CorePatch :) On Thursday, March 4, 2004, at 04:38 PM, Paul Winkler wrote: I used to be able to browse to an image's tag method and see its output in my browser.

Re: [Zope-dev] Image.tag() no longer publishable?

2004-03-04 Thread Marc Lindahl
I changed ImageTag_CorePatch to also do the border=0 default patch. On Thursday, March 4, 2004, at 08:26 PM, Andy McKay wrote: Marc Lindahl wrote: If you're using Plone, it monkeypatches Image.tag(). Caused me to add an Image.pil_tag() monkeypatch to my monkeypatch ImageTag_CorePatch

Re: [Zope-dev] Image.tag() no longer publishable?

2004-03-04 Thread Marc Lindahl
On Thursday, March 4, 2004, at 10:14 PM, Paul Winkler wrote: From OFS.Image.tag in zope 2.7.0: if not 'border' in [ x.lower() for x in args.keys()]: result = '%s border=0' % result ... that's been in there for about 3 years! If you want to force no border attribute, you can

Re: [Zope-dev] Streaming large files

2004-07-09 Thread Marc Lindahl
On Thursday, July 8, 2004, at 01:07 PM, Thilo Staebler wrote: hi! I have to stream large mpeg-files over http with range support. this works quite nice until the client seeks in the (media)player and the files aren't to large, because zope caches the whole file... ...so each seek means

Re: [Zope-dev] Collector Status Meanings

2004-07-30 Thread Marc Lindahl
I would put my $0.02 for a 'tested' state, entered from Resolved. So from resolved you could 'resubmit' back to pending or accepted, or go to tested. This because it does happen, that someone *thinks* they have fixed something, but didn't test it thoroughly (there are usually way to many