* Against Zope2.0.1b2 26.11.1999 * * Fix: Somebody forgot to implement an option. * Fix: The default filename for -p can be quite long, rasing the chances * that it displays in one line. * --- inst/binary_install.py.org Sat Nov 27 18:22:20 1999 +++ inst/binary_install.py Sat Nov 27 18:27:03 1999 @@ -110,8 +110,8 @@ where options are: -p -- Supply the path to the PCGI resource file. - This defaults to %s. Note that this path - must include the file name. + This defaults to %s. + Note that this path must include the file name. -g -- Supply the name of the unix group to which the user that runs your web server belongs. @@ -137,6 +137,7 @@ if k=='-p': pcgi=v elif k=='-g': group=v elif k=='-u': user=v + elif k=='-h': print usage; sys.exit() import compilezpy print '-'*78