# HG changeset patch # User paulb # Date 1076197037 0 # Node ID dd3406d710fb72f0cb75fb145c007d833acd4ecb # Parent 72125f0abc72c60fed0d5abfc67fec34220d3257 [project @ 2004-02-07 23:37:17 by paulb] Fixed the "path info" result. diff -r 72125f0abc72 -r dd3406d710fb WebStack/Webware.py --- a/WebStack/Webware.py Thu Feb 05 00:12:17 2004 +0000 +++ b/WebStack/Webware.py Sat Feb 07 23:37:17 2004 +0000 @@ -96,7 +96,10 @@ request. """ - return self.trans.request().pathInfo() + # NOTE: Webware does not seem to prefix the "path info" in a way + # NOTE: consistent with the other frameworks. + + return "/" + self.trans.request().pathInfo() # Higher level request-related methods.