On Fri, Oct 05, 2001 at 09:29:11AM -0400, Andrew Kuchling wrote: > ### IIS hack to fix broken PATH_INFO > ### taken from Mike Fletcher's win_cgi_module_publisher A simpler fix might be: if (and path.startswith(script)): path = path[len(script)+1:] Whose responsibility should it be to fix this? publish.parse_request() or HTTPRequest's constructor? (My vote is for the latter.) --amk