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

2002-12-17 Thread Heiichiro NAKAMURA
On Tue, 17 Dec 2002 12:32:11 +0900 Kazuya FUKAMACHI <[EMAIL PROTECTED]> wrote: > I'm not sure which is better; > > 1) adopting new environment value, Z_SOMETHING >ie. Z_DEFUALT_CHARSET ? > > 2) using locale.getlocale()[1] >needs some abstruction layer umm, let's try some locale confi

[Zope-dev] Re: CRITICAL!!!! CVS: Zope/lib/python/OFS - Image.py:1.141.4.3

2002-12-17 Thread Paul Winkler
On Tue, Dec 17, 2002 at 07:51:08PM +0100, Maik Jablonski wrote: > Andy McKay wrote: > >Well there you go, I deleted my sandbox and did clean cvs checkout and it > >seems to have updated correctly. I've put back Paul's patches as he > >originally intended them to be. > > > >Sorry about that. Partly

Re: [Zope-dev] dupe column names not supported (Shared.DC.ZRDB) ?

2002-12-17 Thread Adam Manock
> Just for curiousity, what is the use case for returning multiple columns with > the same name? Sounds dubious to me. A self join will return multiple columns with the same name unless AS keyword is used. The use of AS keyword is supposed to be optional. Assuming that a user does use AS, labelin

Re: [Zope-dev] dupe column names not supported (Shared.DC.ZRDB) ?

2002-12-17 Thread Ross J. Reedstrom
On Tue, Dec 17, 2002 at 02:25:27PM -0500, Casey Duncan wrote: > The semantics of Zope's database functionality is such that duplicate column > names are not (and probably never will be) possible in the same result set. > This is because Zope expects to access columns by name rather than position.

Re: [Zope-dev] dupe column names not supported (Shared.DC.ZRDB) ?

2002-12-17 Thread Casey Duncan
The semantics of Zope's database functionality is such that duplicate column names are not (and probably never will be) possible in the same result set. This is because Zope expects to access columns by name rather than position. Therefore each one must have a distinct name. The only workaroun

Re: [Zope-dev] dupe column names not supported (Shared.DC.ZRDB) ?

2002-12-17 Thread Ross J. Reedstrom
Same problem has been reported with Oracle 8.1, since it too will return duplicate names. The SQL92 spec is a bit ambiguous about whether all returned column names must be unique. Ross On Tue, Dec 17, 2002 at 01:09:13PM -0500, Adam Manock wrote: > > specifically with: > > SELECT W1.city, W1.tem

[Zope-dev] Re: CRITICAL!!!! CVS: Zope/lib/python/OFS - Image.py:1.141.4.3

2002-12-17 Thread Maik Jablonski
Andy McKay wrote: Well there you go, I deleted my sandbox and did clean cvs checkout and it seems to have updated correctly. I've put back Paul's patches as he originally intended them to be. Sorry about that. Thank you, Andy! It works. I can see all my pretty images again... even if Zope runs

Re: [Zope-dev] CRITICAL!!!! CVS: Zope/lib/python/OFS - Image.py:1.141.4.3

2002-12-17 Thread Andy McKay
Well there you go, I deleted my sandbox and did clean cvs checkout and it seems to have updated correctly. I've put back Paul's patches as he originally intended them to be. Sorry about that. -- Andy McKay ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] CRITICAL!!!! CVS: Zope/lib/python/OFS - Image.py:1.141.4.3

2002-12-17 Thread Andy McKay
I think I know whats happened here, my earlier check in for that patch, changes SetBase in ZPublisher so it works. However that patch went in without a branch. http://lists.zope.org/pipermail/zope-checkins/2002-December/020453.html I did a cvs up -r Zope-2_6-branch -d before the check in, but pro

[Zope-dev] dupe column names not supported (Shared.DC.ZRDB) ?

2002-12-17 Thread Adam Manock
Hi there, I'm currently testing (documenting, building RPM packages for) the following configuration: RedHat 8.0 python 2.1.3 postgresql 7.3 mx 2.0.3 psycopg 1.1 Zope-2.6.1b1 Having just got all the packages built and installed, I thought I'd run the database adapter, Zope and postgres through

[Zope-dev] Bug Day Followup

2002-12-17 Thread Casey Duncan
Just wanted to thank everyone for their participation on bug day and wanted to followup with a couple of reminders: 1. Make sure CHANGES.txt got updated on the 2.6 branch if you checked in a change. Its not too late to update it now. 2. Make sure bug fixes you made on the 2.6 branch get merged

[Zope-dev] PyCon DC 2003: Extension of Submission Deadline

2002-12-17 Thread Guido van Rossum on behalf of Steve Holden
The deadline for submissions to PyCon DC 2003 appears to have been too tight for many authors. While some promised submissions have arrived, several have not even though the original deadline of 15 December has passed. Rather than exclude promising papers the organizing committee has decided to ex

Re: [Zope-dev] CRITICAL!!!! CVS: Zope/lib/python/OFS - Image.py:1.141.4.3

2002-12-17 Thread Casey Duncan
I will go ahead and roll-back this change. Doing it now. -Casey On Tuesday 17 December 2002 08:03 am, Guido van Rossum wrote: > > BIG PROBLEM WITH THIS CHECK-IN FROM YESTERDAY: I've updated my ZOPE and > > now all Images are broken!!! ZOPE lives behind a SQUID. > > > > I think that > > > > RES

Re: [Zope-dev] CRITICAL!!!! CVS: Zope/lib/python/OFS - Image.py:1.141.4.3

2002-12-17 Thread Guido van Rossum
> BIG PROBLEM WITH THIS CHECK-IN FROM YESTERDAY: I've updated my ZOPE and > now all Images are broken!!! ZOPE lives behind a SQUID. > > I think that > > RESPONSE.setBase(None) > > is NOT a good idea at all!!! Commenting this out and all works as > expected... Indeed -- the nightly unit tests

[Zope-dev] CRITICAL!!!! CVS: Zope/lib/python/OFS - Image.py:1.141.4.3

2002-12-17 Thread Maik Jablonski
Hi, BIG PROBLEM WITH THIS CHECK-IN FROM YESTERDAY: I've updated my ZOPE and now all Images are broken!!! ZOPE lives behind a SQUID. I think that RESPONSE.setBase(None) is NOT a good idea at all!!! Commenting this out and all works as expected... Maybe someone else can check this issue... -m