Update of /cvsroot/webware/Webware/WebKit
In directory usw-pr-cvs1:/tmp/cvs-serv24139
Modified Files:
Application.py
Log Message:
Changed new path algorithm so that it gives extraURLPath to Main.py/index.py
(now matches old extraURLPath behavior)
Index: Application.py
===================================================================
RCS file: /cvsroot/webware/Webware/WebKit/Application.py,v
retrieving revision 1.146
retrieving revision 1.147
diff -C2 -d -r1.146 -r1.147
*** Application.py 24 Oct 2002 02:00:44 -0000 1.146
--- Application.py 30 Oct 2002 00:21:03 -0000 1.147
***************
*** 1433,1436 ****
--- 1433,1440 ----
return None, None
else:
+ filename = self.findDirectoryIndex(currentPath)
+ if filename:
+ return (filename, '/' + string.join(parts[1:], '/'))
+
return None, None
|