On Fri, Sep 03, 2004 at 04:32:40PM -0700, rtjohan@syspres.com wrote: > Just getting started with Quixote + mod_python. Starting by modifying > the demo app, but changes are not coming up? So, wondering what's a > good test workflow when using Quixote & mod_python for web application? > Does apache need to be restarted after changes? Yep. The wonderful thing about mod_python is that it speeds things up by reusing the already-loaded app; the awful thing about mod_python is that in order to speed things up it continues to use the already-loaded version of the app. :-) IMO plain old CGI is da bomb for development. It services requests more slowly, sure, but that's a small price to pay for not having to restart the whole bloody server in order to fix a stupid typo. First make it right, then make it fast. :-) -- Show me your flowcharts and conceal your tables, and I shall continue to be mystified. Show me your tables, and I won't usually need your flowcharts; they'll be obvious. -- Brooks