Re: [Zope] a binary of zope for debian

2005-12-20 Thread Andreas Jung
--On 21. Dezember 2005 08:41:51 +0100 adeline nombre <[EMAIL PROTECTED]> wrote: Hi. it's me again. I'm in trouble. Get the sources. -aj pgpORV6uTIrGH.pgp Description: PGP signature ___ Zope maillist - Zope@zope.org http://mail.zope.org/ma

Re: [Zope] More on understanding conflicts

2005-12-20 Thread Dennis Allison
One more thought --- On Wed, 21 Dec 2005, Chris McDonough wrote: > > The structure of the method is simple enough: there is a large > > > > block which populates local variables with data from the session > > variables > > > > > ... > >> > > > > with the body of the contai

[Zope] a binary of zope for debian

2005-12-20 Thread adeline nombre
Hi. it's me again. I'm in trouble. Can somebody tell me where to fin a binary of zope for debian which can be run with python2.3. ? thank you very much Nouveau : téléphonez moins cher avec Yahoo! Messenger ! Découvez les tarifs exceptionnels pour appeler la France et l'international. Téléch

Re: [Zope] More on understanding conflicts

2005-12-20 Thread Dennis Allison
Chris, thanks again. You've clarified several issues. Interlinear comments below, original text edited with a heavy hand for brevity... On Wed, 21 Dec 2005, Chris McDonough wrote: > > If this is the same getSessionVariable as you reported before (a > Python Script), note that each call tha

Re: [Zope] More on understanding conflicts

2005-12-20 Thread Chris McDonough
The structure of the method is simple enough: there is a large block which populates local variables with data from the session variables with the body of the containing 300 lines or so of dtml, control code, sql queries, and occasional dtml-let blocks to hold query result

Re: [Zope] Re: why will FastCGI not be supported in the Future.

2005-12-20 Thread Tino Wildenhain
David Bear schrieb: > > > On 12/10/05, *Tino Wildenhain* <[EMAIL PROTECTED] > > wrote: > > Am Mittwoch, den 07.12.2005, 09:39 + schrieb Chris Withers: > > Dieter Maurer wrote: > > > The original poster explained his wish to retain FCGI: > > > > >

[Zope] More on understanding conflicts

2005-12-20 Thread Dennis Allison
Zope 2.8.4 ZODB 3.4.2 I have a dtml method which is an obvious hotspot. It puts up navigation wigetry and is rendered on nearly every page. The logs show it generates a large number of conflicts. The conflicts are in TemporaryStrorage and so are due to session variables. The session variables

Re: [Zope] Zope, Apache, REMOTE_USER

2005-12-20 Thread David Bear
could this be one reason to keep fastcgi?On 12/19/05, Robert Boyd <[EMAIL PROTECTED]> wrote: I'm using Apache 2.0, and I cannot find a solution to passing thevalue of REMOTE_USER from Apache to Zope when using a rewrite rule. I have Apache rewriting requests for Zope, and hooked into Tomcat withmod

Re: [Zope] Re: why will FastCGI not be supported in the Future.

2005-12-20 Thread David Bear
On 12/10/05, Tino Wildenhain <[EMAIL PROTECTED]> wrote: Am Mittwoch, den 07.12.2005, 09:39 + schrieb Chris Withers:> Dieter Maurer wrote:> > The original poster explained his wish to retain FCGI:> >> >   It reuses an existing connection between Apache and Zope > >   while (he thinks and I might

[Zope] ZDaemon for wsgi server

2005-12-20 Thread David Pratt
Hi I am looking at light wsgi servers to serve an app but want it to be started from command line and have the thread spun off so it stays running (instead of tying up a terminal until a interrupt is given). I was thinking that perhaps ZDaemon could do this since perhaps I could also get loggi

Re: [Zope] ZSQL with different user

2005-12-20 Thread J Cameron Cooper
Pier Luigi Fiorini wrote: Alle 18:42, lunedì 19 dicembre 2005, hai scritto: Pier Luigi Fiorini wrote: Hello, I'm developing a Zope application that uses a PostgreSQL connection and several ZSQL objects. People should log in using a Postgres user and ZSQL object should be executed by the user

[Zope] APE and Zope 2.9?

2005-12-20 Thread Peter Sabaini
It seems APE 1.0 doesnt run out of the box with Zope 2.9 -- has anyone tried hacking APE up so it can run inside Zope 2.9? Any thoughts as to what would be necessary / how hard this would be? Thanks, peter. ___ Zope maillist - Zope@zope.org http://

[Zope] error installing zope from source

2005-12-20 Thread adeline nombre
Hi. the problem now is that when I do "make" there is this error message:" does not find file /usr/lib/python2.3/config/Makefile . And when I look in /usr/lib/python2.3/ , there is no directory "config". I have python2.3. my OS is debian sarge. Do u have an idea about what I should do?thank

[Zope] Final reminder: Zope Foundation IRC, Tue, Dec 20, 1p (US/EST)

2005-12-20 Thread Rob Page
Hello everyone: Here is a final reminder of the upcoming IRC to discuss the Zope Foundation documents. Please join us! Details follow: Who: Zope Community What: IRC to discuss Zope Foundation formation documents. Where: #zope on irc.freenode.net When

Re: [Zope] How to make good architecture in Zope2?

2005-12-20 Thread Lennart Regebro
On 12/20/05, Roman Suzi <[EMAIL PROTECTED]> wrote: > Lets suppose that I've done OO Analysis and have a dozen of nice classes > which model my problem domain. Lets also suppose that I did it on the > basis of known use cases. Now I want to build Web application fulfilling > those use cases but sep

[Zope] How to make good architecture in Zope2?

2005-12-20 Thread Roman Suzi
Hi! This question is not about how to make a Zope2 product, but how to get most from separating concerns while making Web application in Zope2. Lets suppose that I've done OO Analysis and have a dozen of nice classes which model my problem domain. Lets also suppose that I did it on the basis

Re: [Zope] Re: [Zope-dev] Re: sessions in the presence of conflicts

2005-12-20 Thread Chris McDonough
Trimmed Zope-dev from this (cross-posts are bad)... Dennis, Lets just put the question out there: Does: SESSION['someKey'] = someValue Force a commited transaction? As opposed to ... someDict = Session['SomeKey'] someDict['aKey'] = 'aNewValue' Neither "forces a committed transaction", but

Re: [Zope] Re: [Zope-dev] Re: sessions in the presence of conflicts

2005-12-20 Thread Chris McDonough
On Dec 20, 2005, at 12:36 AM, Dennis Allison wrote: The interaction between sessions, conflicts, and persistence is a bit confusing. I am still trying to understand the code in depth. One thing is for sure, request.SESSION and/or request['SESSION'] must be persistent for things to work. M

Re: [Zope] Re: ZSQL with different user

2005-12-20 Thread Pier Luigi Fiorini
> I would also be interested in multiuser ZSQLs, though it's not my main > goal and I don't expect participating on such coding. > > Provided there wont be thousands of users (mine number is just about > 20), how about to create a pool of connections in some ZODB folder, > simply identified as sqlc

Re: [Zope] ERROR BeforeTraverse Error while invoking hook

2005-12-20 Thread Maciej Wisniowski
> You might have a access rule in there that expects to be able to call something that's missing? Thanks for the answer I've checked this, but the problem was different - I think we've solved it already :) We're using VirtualHostMonster and exUserFolder and I think those have hooks for objects

Re: [Zope] ZSQL with different user

2005-12-20 Thread Pier Luigi Fiorini
Alle 18:42, lunedì 19 dicembre 2005, hai scritto: > Pier Luigi Fiorini wrote: > > Hello, > > I'm developing a Zope application that uses a PostgreSQL connection and > > several ZSQL objects. > > People should log in using a Postgres user and ZSQL object should be > > executed by the user that's log