# HG changeset patch # User paulb # Date 1075661109 0 # Node ID 67b5c2debf54892e72a019a6baf73774d897a74c # Parent e4dd9d68822b707e97f7c881704ef4b757a81448 [project @ 2004-02-01 18:45:09 by paulb] Fixed the path and "path info" access methods. diff -r e4dd9d68822b -r 67b5c2debf54 WebStack/Webware.py --- a/WebStack/Webware.py Sun Feb 01 16:39:12 2004 +0000 +++ b/WebStack/Webware.py Sun Feb 01 18:45:09 2004 +0000 @@ -86,7 +86,7 @@ A framework-specific method which gets the entire path from the request. """ - raise NotImplementedError, "get_path" + return self.trans.request().uri() def get_path_info(self): @@ -96,7 +96,7 @@ request. """ - raise NotImplementedError, "get_path_info" + return self.trans.request().pathInfo() # Higher level request-related methods.