[Zope-Checkins] SVN: Zope/trunk/lib/python/OFS/ObjectManager.py sort import files

2008-08-17 Thread Andreas Jung
Log message for revision 89921: sort import files Changed: U Zope/trunk/lib/python/OFS/ObjectManager.py -=- Modified: Zope/trunk/lib/python/OFS/ObjectManager.py === --- Zope/trunk/lib/python/OFS/ObjectManager.py 2008-08-17

[Zope-Checkins] SVN: Zope/branches/2.11/lib/python/OFS/ObjectManager.py sort import files

2008-08-17 Thread Andreas Jung
Log message for revision 89922: sort import files Changed: U Zope/branches/2.11/lib/python/OFS/ObjectManager.py -=- Modified: Zope/branches/2.11/lib/python/OFS/ObjectManager.py === ---

[Zope-dev] Zope Tests: 4 OK, 1 Unknown

2008-08-17 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Sat Aug 16 11:00:00 2008 UTC to Sun Aug 17 11:00:00 2008 UTC. There were 5 messages: 5 from Zope Tests. Unknown --- Subject: UNKNOWN : Zope-2.8 Python-2.3.6 : Linux From: Zope Tests Date: Sat Aug 16 20:40:30 EDT 2008 URL:

[Zope-dev] bugfix releases for the KGS

2008-08-17 Thread Christophe Combelles
If there are no objections, I would like to tag and release bugfix versions for: zope.server zope.publisher zope.app.server zc.zope3recipes They will help to reduce the number of errors in the global test suite for the Known Good Set. http://zope3.pov.lt/buildbot/ They at least help in my own

Re: [Zope-dev] bugfix releases for the KGS

2008-08-17 Thread Stephan Richter
On Sunday 17 August 2008, Christophe Combelles wrote: PS: z3c.formjs and z3c.formdemo need to be fixed to work with the test buildout of the KGS. Can someone help for this? Yes, Paul and I are going to attack this one. Regards, Stephan -- Stephan Richter Web Software Design, Development and

Re: [Zope-dev] bugfix releases for the KGS

2008-08-17 Thread Stephan Richter
On Sunday 17 August 2008, Christophe Combelles wrote: If there are no objections, I would like to tag and release bugfix versions for: zope.server zope.publisher zope.app.server zc.zope3recipes They will help to reduce the number of errors in the global test suite for the Known Good Set.

Re: [Zope-dev] zope.testrunner test failures, remaining ones not windows specific ; -)

2008-08-17 Thread Dieter Maurer
Chris Withers wrote at 2008-8-16 18:22 +0100: ... 2. It appears the traceback is explicitly filtered out of exc_info in the second place StartUpFailures are instantiated purely to make the output a bit nicer. What would people feel about providing the traceback here to enable postmortem

Re: [Zope-dev] bugfix releases for the KGS

2008-08-17 Thread Christophe Combelles
Stephan Richter a écrit : On Sunday 17 August 2008, Christophe Combelles wrote: If there are no objections, I would like to tag and release bugfix versions for: zope.server zope.publisher zope.app.server zc.zope3recipes They will help to reduce the number of errors in the global test

Re: [Zope] uncataloging

2008-08-17 Thread Dieter Maurer
Jens Vagelpohl wrote at 2008-8-16 11:45 +0200: On Aug 16, 2008, at 11:06 , Dieter Maurer wrote: The easiest way to determine the uid is probably to locate the object via a catalog search. You will get a catalog proxy for the object, often also called brain. This proxy has the method

[Zope] python split

2008-08-17 Thread Garry Saddington
Is it possible to split a string at the first occurence of a non-digit character using a python script in zope, or does this need an external method for security purposes? regards garry ___ Zope maillist - Zope@zope.org

Re: [Zope] python split

2008-08-17 Thread Andreas Jung
--On 17. August 2008 16:29:38 +0100 Garry Saddington [EMAIL PROTECTED] wrote: Is it possible to split a string at the first occurence of a non-digit character using a python script in zope, or does this need an external method for security purposes? You can implement a brute-force

Re: [Zope] python split

2008-08-17 Thread Andrew Milton
+---[ Garry Saddington ]-- | Is it possible to split a string at the first occurence of a non-digit | character using a python script in zope, or does this need an external method | for security purposes? You can explicitly allow the re module if you want to split using

Re: [Zope] Trying ZODB with a background in RDBMS

2008-08-17 Thread Dieter Maurer
Chris Withers wrote at 2008-8-16 23:09 +0100: ... How important is it that they're strictly incremental? If it is, you may want to look at the BTrees.Length module. BTrees.Length is unfit for the generation of unique ids, as it may hand out the same id to concurrent transactions. Other solution