On Friday 21 December 2001 08:35 am, Ng Pheng Siong wrote: > I know of the following problems: > > 1. Application.py's line 731, "assert isinstance(factory, > ServletFactory)", fails for PSPExamples (but not those that came > before):
That usually indicates the infamous "duplicate module problem" whereby Python has managed to load the same module twice through different paths. It's a subtle bug that WebKit once suffered from. I'm still under the impression that Python should fix this by tracking the absolute paths of modules, but I don't know the internals well enough for a patch and my suggestion was not well received on c.l.p. > $ python HttpAppServer.py > [...] > Loading plug-in: MiscUtils at What directory is your HttpAppServer.py located in when you launch it? If in WebKit/ you might consult Launch.py for the solution. > 2. PushServlet's output is buffered. > > 3. Shutdown works with IE (on Windows) but not with Netscape (Windows > or FreeBSD). I don't have another browser to test. If you have FreeBSD you can probably get lynx, Galeon, opera, etc. Strange that it doesn't work. -Chuck _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
