Re: [Zope] Zope 2.8.4 external methods do not autorefresh

2005-11-18 Thread Dennis Allison
Yup. or so it seems. Thanks. Stupid errors confume the day... On Fri, 18 Nov 2005, Paul Winkler wrote: > On Fri, Nov 18, 2005 at 11:25:06AM -0800, Dennis Allison wrote: > > To adopt the code for the modified method the external method needs > > to be resaved. > > *Or* you need to have >

Re: [Zope] Zope 2.8.4 external methods do not autorefresh

2005-11-18 Thread Paul Winkler
On Fri, Nov 18, 2005 at 11:25:06AM -0800, Dennis Allison wrote: > To adopt the code for the modified method the external method needs > to be resaved. *Or* you need to have debug-mode on ... in your zope.conf. It's always been that way. I'm guessing you didn't turn on debug-mode for your

Re: [Zope] Zope 2.8.4 external methods do not autorefresh

2005-11-18 Thread Jonathan
- Original Message - From: "Dennis Allison" <[EMAIL PROTECTED]> To: Sent: Friday, November 18, 2005 2:25 PM Subject: [Zope] Zope 2.8.4 external methods do not autorefresh test framework: Setup an external method def eproc( self ): return 'hell

[Zope] Zope 2.8.4 external methods do not autorefresh

2005-11-18 Thread Dennis Allison
test framework: Setup an external method def eproc( self ): return 'hello world' and run the test method. It prints hello world Now, change the test method def eproc( self ): return 'hello world too' and run the test method. It prints hello world which is a deviati