Hi Dylan, I think you need to read the orginal post ;) The refresh method is used for opdating the manage_main attribute that had the wrong path when i moved the Data.fs file from a Linux to a Windows system. The refresh method is called from a python script that traverses the ZOPE tree. Best Regards Jørgen Larsen
On Sat, 2003-12-06 at 07:19, Jørgen Larsen wrote:
Weird it works... ;)
It only appears to work.
When you call a method that has no return value (as yours doesn't) your browser will continue to display the same page you were viewing when you made the request. Since you're *expecting* to see the same page, you don't realize that what you're *actually* looking at is no change.
I think I posted this once already, but what you want is this:
def refresh(self, request): return self.manage_main(self, request)
HTH,
Dylan