At 07:41 PM 10/8/2001 -0400, John Holland wrote: >I'm playing with Webware 0.5 on Debian Linux. I modified the Example.py file >in WebKit/Examples. It seemed difficult to get any of the derived classes to >recompile (that's what I think was going on). I tried things like Reload and >Clear Cache but the derived classes persisted in using the old version of >Example.py's methods. Once I stopped and started the server again all was >correct. > >What if anything should I be doing differently?
WebKit only reloads the modules of "leaf" classes. It will not follow the class hierarchy, or reload non-servlet classes found elsewhere in your application. However, a solution comes with it: For development, we use OneShot.cgi which launches the application from scratch each time. For testing and deployment, we use a faster adapter such as mod_webkit, mod_python, WebKit.cgi, etc. -Chuck _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
