[Zope-dev] just 2 bits on stupid_clean

2003-02-09 Thread Luca - De Whiskey's - De Vitis
Hi, to let the 'find' in stupid_clean remove even file names with spaces you may replace it with: find . -name '*.o' -o -name '*.so' -o -name '*.py[co]' -o -name 'core*' | while read file do rm -f $file done It's not clear to me why you put that command in a

[Zope-dev] Some gcc warnings building zope 2.6.1

2003-02-09 Thread Luca - De Whiskey's - De Vitis
Hi, I got these warnings building zope (you might be interested in fixing some/all of them): BTrees/BucketTemplate.c:214: warning: `bucket_append' defined but not used BTrees/BucketTemplate.c:214: warning: `bucket_append' defined but not used BTrees/BucketTemplate.c:214: warning: `bucket_append'

Re: [Zope-dev] Zope Server Control

2003-02-09 Thread Oliver Bleutgen
Andy McKay wrote: 3. I've found at least two companies that run many, many zope servers on remote boxes all over the place and would like one ui to see the status of them all, I'm trying to see if i can get some $ out of them for the development :) If it's about monitoring, let me just

[Zope-dev] Persisting PIL.Image instances in Zope?

2003-02-09 Thread Michael R. Bernstein
This is a repost from the [EMAIL PROTECTED] mailing list, as I got no responses there. For a number of reasons, I find myself wanting to persist instances of PIL.Image in the ZODB. Ideally, such a subclass of PIL.Image and Persistent would also be API-compatible with OFS.Image, but I'd be

[Zope-dev] if-then-else expression in Python

2003-02-09 Thread Dieter Maurer
Currently, there is a heated debate in c.l.p about PEP 308, an if-then-else expression for Python. Some vote should decide its fate. I think, we want an if-then-else expression for Zope, as it would make decisions in TALES expressions much clearer and more robust than with the ... and ... or hack

Re: [Zope-dev] ZSQL/ZODB corruption after upgrade

2003-02-09 Thread Dan L. Pierson
Thanks for giving me a push in the right direction. I already knew from the message that it was the CComMember zclass. The problem was that I had deleted all instances of that zclass when I deleted the LoginManager based acl_users. I then deleted the zclass from the Products folder of the

Re: [Zope-dev] if-then-else expression in Python

2003-02-09 Thread Anthony Baxter
Dieter Maurer wrote Currently, there is a heated debate in c.l.p about PEP 308, an if-then-else expression for Python. Some vote should decide its fate. I think, we want an if-then-else expression for Zope, as it would make decisions in TALES expressions much clearer and more robust than