I just installed webware for the first time. I got everything up and running with the default test pages. When I would click on the docs context I would get an error page. The error was in the file UnknownFileTypeServlet.py on line 89.
isHead = trans.request().method().upper()[0]=='H' I am using python 1.5.2 and it complained that upper() was not a method of string. So I changed it to the line below and it worked. isHead = string.upper(trans.request().method())[0]=='H' _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
