Re: [Zope-dev] Re: Uploading the Installer for Windows

2007-03-01 Thread Andrew Sawyers
Toc, toc. Is there anybody home? I'll test it for you alsolet you know how it goes. Andrew Sawyers On 2/23/07, Sidnei da Silva [EMAIL PROTECTED] wrote: Someone volunteered to test and upload the Zope Installer for Windows when one was ready. I believe Chris Withers was the vict..^H^H

Re: [Zope-dev] Re: Uploading the Installer for Windows

2007-03-01 Thread Chris Withers
Sidnei da Silva wrote: Toc, toc. Is there anybody home? My bad... Done some testing and uploaded to zope.org... cheers, Chris -- Simplistix - Content Management, Zope Python Consulting - http://www.simplistix.co.uk ___ Zope-Dev

[Zope-dev] Zope Tests: 7 OK

2007-03-01 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Wed Feb 28 12:00:00 2007 UTC to Thu Mar 1 12:00:00 2007 UTC. There were 7 messages: 7 from Zope Unit Tests. Tests passed OK --- Subject: OK : Zope-2.6 Python-2.1.3 : Linux From: Zope Unit Tests Date: Wed Feb 28 21:03:34 EST 2007

Re: [Zope-dev] Re: Uploading the Installer for Windows

2007-03-01 Thread Sidnei da Silva
On 3/1/07, Chris Withers [EMAIL PROTECTED] wrote: My bad... Done some testing and uploaded to zope.org... Thank you Chris! -- Sidnei da Silva Enfold Systemshttp://enfoldsystems.com Fax +1 832 201 8856 Office +1 713 942 2377 Ext 214

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Martin Aspeli
Chris Withers wrote: Hi All, Wondering if someone could tell me the difference between an OOSet and an OOTreeSet? They seem to have different interfaces and yet seem to be used in similar circumstances in PluginIndexes/common/UnIndex.py... I'm looking for a set-like data

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Gary Poster
On Mar 1, 2007, at 9:04 AM, Chris Withers wrote: Hi All, Wondering if someone could tell me the difference between an OOSet and an OOTreeSet? They seem to have different interfaces and yet seem to be used in similar circumstances in PluginIndexes/common/UnIndex.py... I'm looking for a

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Chris Withers
Martin Aspeli wrote: I'll bet one is backed by a hashtable and the other is backed by an r/b tree, meaning the Set is O(1) lookups, possibly a bit less space efficient and non-ordered, Well, Set's are definitely ordered, same as normal python sets... Chris -- Simplistix - Content

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Chris Withers
Hi Gary, Gary Poster wrote: What should I be using? TreeSet. Interesting, okay, so how should I work around this bogosity? Is this a bug? from BTrees.OOBTree import OOTreeSet,OOSet for i in OOSet((1,2,3)): print i, 1 2 3 for i in OOTreeSet((1,2,3)): print i, 1 2 3 for i in

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Andreas Jung
--On 1. März 2007 09:52:53 + Chris Withers [EMAIL PROTECTED] wrote: Martin Aspeli wrote: I'll bet one is backed by a hashtable and the other is backed by an r/b tree, meaning the Set is O(1) lookups, possibly a bit less space efficient and non-ordered, Well, Set's are definitely

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Martin Aspeli
Chris Withers wrote: Martin Aspeli wrote: I'll bet one is backed by a hashtable and the other is backed by an r/b tree, meaning the Set is O(1) lookups, possibly a bit less space efficient and non-ordered, Well, Set's are definitely ordered, same as normal python sets... From

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Gary Poster
On Mar 1, 2007, at 12:01 PM, Chris Withers wrote: Hi Gary, Gary Poster wrote: What should I be using? TreeSet. Interesting, okay, so how should I work around this bogosity? Is this a bug? from BTrees.OOBTree import OOTreeSet,OOSet for i in OOSet((1,2,3)): print i, 1 2 3 for i in

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Fred Drake
On 3/1/07, Martin Aspeli [EMAIL PROTECTED] wrote: Sets may turn out to be *sorted* if they're implemented with trees, but I don't think the implementation promises that either. The BTrees implementation definitely does promise the sorting relationship for the results of iteration, which is

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Chris Withers
Gary Poster wrote: Traceback (most recent call last): File stdin, line 1, in ? TypeError: argument to reversed() must be a sequence The fact that this works for the OOSet is an implementation accident. As discussed elsewhere in this thread, sets are not sequences. The fact that the

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Gary Poster
On Mar 1, 2007, at 3:18 PM, Chris Withers wrote: Gary Poster wrote: Traceback (most recent call last): File stdin, line 1, in ? TypeError: argument to reversed() must be a sequence The fact that this works for the OOSet is an implementation accident. As discussed elsewhere in this thread,

Re: [Zope-dev] difference between OOSet and OOTreeSet?

2007-03-01 Thread Tim Peters
[Chris Withers] Wondering if someone could tell me the difference between an OOSet and an OOTreeSet? OOSet is to OOTreeSet as OOBucket is to OOBTree. An OOTreeSet is built out of leaf-level OOSets in exactly the same way an OOBTree is built out of leaf-level OOBuckets. More at:

Re: [Zope-PAS] Re: Failure authorizing with PlonePAS and pubcookie

2007-03-01 Thread Michael Gilbert
If anyone would like to look at the Role Manager code referenced below, you can find it at http://staff.washington.edu/mdgilb, along with the PubcookiePAS plugin mentioned before. -michael Michael Gilbert wrote: Here's our first stab at creating a custom role manager, working almost entirely

Re: [Zope] can someone help me with PIL

2007-03-01 Thread Jonathan
snip - Original Message - From: Allen Huang To: Zope Sent: Wednesday, February 28, 2007 10:13 PM Subject: [Zope] can someone help me with PIL Can some one show me two example with using PIL module in ZOPE 1. creating an image from inputed data an safe into zope for example: