Re: [Zope-dev] Bugfix release?

2002-12-02 Thread Toby Dickenson
On Sunday 01 December 2002 3:36 pm, Brian Lloyd wrote: FYI I'd like to have a 2.6.1 beta out next week. Jeremy is still looking at a few ZODB bug reports - as soon as he's done we'll make the beta. Im not sure this is a good plan. Jeremy's sortKey changes look like they deserve a

[Zope-dev] Collector 697 should be critical!!!

2002-12-02 Thread Maik Jablonski
Hi, http://collector.zope.org/Zope/697 should be set to critical, because it results in loosing essential data. Case: We store much of our Keywords etc. in multiple-selects. Everytime a user edits and saves such a multiple-select, all items with NON-Ascii-characters [german umlaute for

[Zope-dev] ZSyncher and xml-rpc via firewalls

2002-12-02 Thread Dylan Jay
I was needing to use ZSyncher via a proxy server in our firewall. I wrote a new transport to do this that you might want to incorporate into ZSyncher. Nice product btw. Very helpful for my setup. Any chance of getting it to synch bidirectionally? import urllib class

[Zope-dev] What do I get from 'cvs co Zope'?

2002-12-02 Thread Stefan H. Holek
It appears that when I currently do 'cvs co Zope' I get a version that already requires Python 2.2.2. GvR's zdctl.py stuff uses lambdas in a way that Python 2.1 does not grok. How can I get at a Python 2.1.3 post 2.6.0 checkout? Thanks, Stefan -- Those who write software only for pay should

[Zope-dev] Re: What do I get from 'cvs co Zope'?

2002-12-02 Thread Maik Jablonski
Stefan H. Holek wrote: It appears that when I currently do 'cvs co Zope' I get a version that already requires Python 2.2.2. GvR's zdctl.py stuff uses lambdas in a way that Python 2.1 does not grok. How can I get at a Python 2.1.3 post 2.6.0 checkout? You have to specify the correct branch:

Re: [Zope-dev] What do I get from 'cvs co Zope'?

2002-12-02 Thread Casey Duncan
Yes, cvs co Zope checks out the HEAD, which is 2.7 and requires python 2.2.x. Try: co -r Zope-2_6-branch Zope Which will give you the 2.6 maintenance branch. hth, -Casey On Monday 02 December 2002 10:42 am, Stefan H. Holek wrote: It appears that when I currently do 'cvs co Zope' I get a

[Zope-dev] wrapping unexistent objects

2002-12-02 Thread Maurizio Boriani
Hi all, I've a little bit tricky problem: How could I wrap a request of an inexistent object and handle request in a transparent way using a defined method? I've searched about __before_publishing_traverse__ and __bobo_traverse__ but them are too few documented (or I didn't understand

Re: [Zope-dev] Collector 697 should be critical!!!

2002-12-02 Thread Casey Duncan
If this is critical for you, then you will probably need to develop a patch for it in order for it to make it into 2.6.1; unless anyone else wants to volunteer. I don't feel comfortable enough with the unicode converters to do this. -Casey On Monday 02 December 2002 05:46 am, Maik Jablonski

[Zope-dev] Re: Collector 697 should be critical!!!

2002-12-02 Thread Maik Jablonski
Casey Duncan wrote: If this is critical for you, then you will probably need to develop a patch for it in order for it to make it into 2.6.1; unless anyone else wants to volunteer. I don't feel comfortable enough with the unicode converters to do this. For me it's critical, but maybe for

Re: [Zope-dev] wrapping unexistent objects

2002-12-02 Thread Casey Duncan
If you want an object to be able to handle calls to undefined methods, you'll probably need to use a __getattr__ hook. They can be a little tricky to get right (you want to filter out names that start with _ or aq or else you'll be in trouble), and they don't have access to acquisition, but

Re: [Zope-dev] Re: Collector 697 should be critical!!!

2002-12-02 Thread Toby Dickenson
On Monday 02 December 2002 4:11 pm, Maik Jablonski wrote: I don't have much experience with the unicode-converters too... that's my problem for this issue...:-( I had seen this bug on the list, but hant spotted that it was a unicode-related. I will try to take a look sometime this week.

[Zope-dev] Re: wrapping unexistent objects

2002-12-02 Thread Maurizio Boriani
Casey == Casey [EMAIL PROTECTED] writes: Casey If you want an object to be able to handle calls to undefined methods, Casey you'll=20 probably need to use a __getattr__ hook. They can be a Casey little tricky to get20 right (you want to filter out names that start Casey with _ or aq or

Re: [Zope-dev] Re: Collector 697 should be critical!!!

2002-12-02 Thread abel deuring
Toby Dickenson wrote: On Monday 02 December 2002 4:11 pm, Maik Jablonski wrote: I don't have much experience with the unicode-converters too... that's my problem for this issue...:-( I had seen this bug on the list, but hant spotted that it was a unicode-related. I will try to take a

Re: [Zope-dev] Bugfix release?

2002-12-02 Thread R. David Murray
On Fri, 29 Nov 2002, Toby Dickenson wrote: On Wednesday 27 November 2002 5:50 pm, Brian Lloyd wrote: FYI I'd like to have a 2.6.1 beta out next week. Jeremy is still looking at a few ZODB bug reports - as soon as he's done we'll make the beta. Im not sure this is a good plan. Jeremy's

Re: [Zope-dev] Zope 2.6.0 ZMI Problem for CJK(Collector 623) patch.

2002-12-02 Thread Heiichiro NAKAMURA
On Thu, 28 Nov 2002 18:25:26 + Toby Dickenson [EMAIL PROTECTED] wrote: Feel free to do that if it works for you, but a patch for this approach will not be accepted into the standard Zope. See this bug report for an explanation of why this contradict's Zope's current unicode approach:

Re: [Zope-dev] Bugfix release?

2002-12-02 Thread Jeremy Hylton
TD == Toby Dickenson [EMAIL PROTECTED] writes: TD A bug in the transaction manager would be really bad news. I TD would have thought it appropriate to resolve these problems and TD leave at least a few weeks of beta test before release. I'm looking into the problem, as I reported on