RE: [Zope-dev] ZSQL and Normalized databases (or why ZSQL sucks)

2001-04-20 Thread Adrian Hungate
Title: RE: [Zope-dev] ZSQL and Normalized databases (or why ZSQL sucks) May be I am misunderstanding your problem here, but are you suggesting that SELECT tab1.col1 col1, tab2.col1 col2 FROM ... etc ... Does not expose 'col1' and 'col2' in the namespace for you? This is not my

Re: [Zope-dev] CVS trunk vs 2.3 branch (Was: WebDAV locking module?)

2001-04-20 Thread Martijn Pieters
On Fri, Apr 20, 2001 at 07:43:54AM +0200, Martijn Pieters wrote: So, the Zope 2.3 series has its own branch, called zope-2_3-branch. To check out from that branch, add '-d zope-2_3-branch' to your checkout command (I use the short 'co' for it): % cvs -z7 -d :pserver:[EMAIL

[Zope-dev] Call me stupid (login form Howto other Q)

2001-04-20 Thread Romain Slootmaekers
Yo, you can call me stupid but I can't get this working: I have a logon form with user passwd, but what do have to do after the user has submitted this? Do I have to create a new BasicUser and assign that to AUTHENTICATED_USER or what ? Normally I'd just create a Folder that requires some

Re: [Zope-dev] ZSQL and Normalized databases (or why ZSQL sucks)

2001-04-20 Thread The Doctor What
* Adrian Hungate ([EMAIL PROTECTED]) [010420 05:06]: May be I am misunderstanding your problem here, but are you suggesting that SELECT tab1.col1 col1, tab2.col1 col2 FROM ... etc ... Does not expose 'col1' and 'col2' in the namespace for you? This is not my experience. Ok, I

RE: [Zope-dev] ZSQL and Normalized databases (or why ZSQL sucks)

2001-04-20 Thread Bryan Baszczewski
...I mean that: SELECT tab1.col1, tab2.col1 FROM ... etc ... Does not expose 'tab1.col1' and 'tab2.col1'. In otherwords, it doesn't gracefully handle name clashes. I realize that calling out the variable 'tab1.col1' out of the namespace is a pain, but (hopefully) in the future it would

RE: [Zope-dev] ZSQL and Normalized databases (or why ZSQL sucks)

2001-04-20 Thread Peter Sabaini
On Fri, 20 Apr 2001, Bryan Baszczewski wrote: ...I mean that: SELECT tab1.col1, tab2.col1 FROM ... etc ... Does not expose 'tab1.col1' and 'tab2.col1'. In otherwords, it doesn't gracefully handle name clashes. I realize that calling out the variable 'tab1.col1' out of the

[Zope-dev] Allowing secure 'import' access in zope folder hosting

2001-04-20 Thread Ivo van der Wijk
Hi all, I tried to ask this on the standard zope list, but noone seemed to know anything about it. Perhaps you do? We provide zope hosting, both folder based (where people have access to their own folder, mapped to a domain, and no access to the zope server / source / var / import / lib

[Zope-dev] which development environment?

2001-04-20 Thread Bernd Dorn
to all zope gurus ... wich development environment do you use on windoze I tried a few, but debugging zope is kinda hard what are your preferences when you write python products or extend zope ?? thx ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] ZSQL and Normalized databases (or why ZSQL sucks)

2001-04-20 Thread Hannu Krosing
The Doctor What wrote: * Adrian Hungate ([EMAIL PROTECTED]) [010420 05:06]: May be I am misunderstanding your problem here, but are you suggesting that SELECT tab1.col1 col1, tab2.col1 col2 FROM ... etc ... Does not expose 'col1' and 'col2' in the namespace for you? This is

[Zope-dev] ZPatterns AttributeProvider question

2001-04-20 Thread Christian Scholz
Good evening everybody! I have some question regarding attribute and agent programming for ZPatterns. I have some provider which is registered for the "handlers" and "attributes" methods and some attributes. My problem is when trying to create a new object and directly editing it, e.g.

[OT] Re: [Zope-dev] Introducing a New Concept on Advanced Garbage Treatment Process

2001-04-20 Thread Dieter Maurer
zwj writes: Introducing a new concept on advanced garbage treatment process, and licensing patents For details, please reference the web site: http://zwj5382.3322.net http://zwj5382.163.net The inventor would like to assign exclusive patent license to anyone who is interested in

Re: [Zope-dev] Call me stupid (login form Howto other Q)

2001-04-20 Thread Dieter Maurer
Romain Slootmaekers writes: I have a logon form with user passwd, but what do have to do after the user has submitted this? In order to use your own login form, you cannot use HTTP basic authentication (Zope's default and what the standard user folder supports). You need to use a cookie

Re: [OT] Re: [Zope-dev] Introducing a New Concept on Advanced Garbage Treatment Process

2001-04-20 Thread Andy McKay
Introducing a new concept on advanced garbage treatment process, and licensing patents For details, please reference the web site: The patent is flawed obviously since it doesn't garbage collect itself... -- Andy McKay. ___ Zope-Dev maillist

Re: [Zope-dev] Allowing secure 'import' access in zope folder hosting

2001-04-20 Thread Shane Hathaway
Ivo van der Wijk wrote: I tried to ask this on the standard zope list, but noone seemed to know anything about it. Perhaps you do? We provide zope hosting, both folder based (where people have access to their own folder, mapped to a domain, and no access to the zope server / source / var /

Re: [Zope-dev] Allowing secure 'import' access in zope folder hosting

2001-04-20 Thread Ivo van der Wijk
On Fri, Apr 20, 2001 at 05:29:51PM -0400, Shane Hathaway wrote: Ivo van der Wijk wrote: I tried to ask this on the standard zope list, but noone seemed to know anything about it. Perhaps you do? We provide zope hosting, both folder based (where people have access to their own folder,

[Zope-dev] ANNOUNCE: Zope 2.3.2 beta 2 released

2001-04-20 Thread Brian Lloyd
Hello all, Zope 2.3.2 beta 2 has been released - you can download it from Zope.org: http://www.zope.org/Products/Zope/2.3.2b2/ Zope 2.3.2b2 contains only one fix for a catalog issue that was found to affect CMF (and probably some other uses). If no other surprises are found, we

RE: [Zope-dev] ZSQL and Normalized databases (or why ZSQL sucks)

2001-04-20 Thread Adrian Hungate
Title: RE: [Zope-dev] ZSQL and Normalized databases (or why ZSQL sucks) I am using ZODBC talking to an MS-SQL7 database (Yack spit), so the syntax is a little different. As for the unchangeable defaults, I use defaults a lot, and I don't think I've ever seen your problem. What you appear