I noticed that the list of settings in the users guide http://webware.sourceforge.net/Webware-0.7/WebKit/Docs/UsersGuide.html#Configuration cannot possibly be up to date.
find -name \*.py |xargs grep setting\(
will give you a list of the settings in the code.
find -name \*.py |xargs perl -ne 'if (/setting\((.*?)\)/) {print "$1\n";}' |sort -u|grep ^\'
gives just the names. (Love that line noise!)
find -name \*.py |xargs grep -c setting\(
may give you a little context of how it is used.
Can we come up with a convention for documenting settings in-line?
see ConfigSchema
-- TerrelShumway - 24 Apr 2002