Re: [Zope] External Method Working Directory?

2005-09-28 Thread David Hassalevris
jwithers, a) Is your os.getcwd() (in /Extensions) called from a Product (in /Products?) Otherwise I have not idea b) Regarding temporary files .. I've used stuff like ... import tempfile tmpFile2 = tempfile.mktemp() theFile=open( tmpFile2,'rb') result = theFile.read()

Re: [Zope] Multiple CookieCrumblers

2006-01-11 Thread David Hassalevris
Brian Sullivan wrote: On 1/11/06, Jens Vagelpohl <[EMAIL PROTECTED]> wrote: On 11 Jan 2006, at 21:46, Brian Sullivan wrote: I am using CookieCrumbler as an authentication method on a Zope site. I am looking at the feasibility of putting multi CookieCrumbler object

Re: [Zope] Re: Handling login failures

2006-01-13 Thread David Hassalevris
HÃ¥kan Johansson wrote: On Jan 13, 2006, at 00:32, Dennis Allison wrote: A more usual solution to this issue is to insert a delay after the third and subsequent failures. You, of course, need a policy for removing the delay (successful login or N minutes following the last attempt). Ye