On Wed, Nov 05, 2003 at 12:41:06PM -0600, Ian Bicking wrote:
>
> (Anon CVS on SF can be a little delayed -- anyone interested in this or
> any other project in the sandbox can get their own account, just email
> [EMAIL PROTECTED] and include your SourceForge username; if
> there's interest, I can also set up snapshots of CVS HEAD)
I don't know if you have solved this at CVS (I'm getting the code via
Anon CVS), but it seems that you have forgotten to include WebKit/Task/.
I copied it from my usual WebWare/WebKit copy, and it works.
Also, attached is a patch over WebKit/Server. Without it, modules under
WebKit/foo/ can't find modules sitting at sibling directories.
I've found other bugs, all regarding to use of contexts.
Nice work :-)
--- Server.old 2003-11-06 12:05:12.000000000 +0000
+++ Server 2003-11-06 12:04:17.000000000 +0000
@@ -2,8 +2,9 @@
# as long as the appserver returns a 3, it wants to be restarted
+serverdir=`dirname $0`
retcode=3
while test $retcode -eq 3; do
- /usr/bin/env python `dirname $0`/Server.py $*
+ PYTHONPATH=$serverdir:$PYTHONPATH /usr/bin/env python $serverdir/Server.py $*
retcode=$?
done