Update of /cvsroot/webware/Webware/WebKit
In directory usw-pr-cvs1:/tmp/cvs-serv15667
Modified Files:
Application.py
Log Message:
Turned new path algorithm on if ExtraPathInfo is set --
UseNewPathAlgorithm setting is gone. Since ExtraPathInfo is
definitely broken for the old algorithm, I might as well enable
the new code, even if it's more likely to have bugs than the
old code.
Index: Application.py
===================================================================
RCS file: /cvsroot/webware/Webware/WebKit/Application.py,v
retrieving revision 1.145
retrieving revision 1.146
diff -C2 -d -r1.145 -r1.146
*** Application.py 9 Oct 2002 01:08:51 -0000 1.145
--- Application.py 24 Oct 2002 02:00:44 -0000 1.146
***************
*** 200,205 ****
# @@ ISB 09/02: make this default or get rid of it eventually
! if self.setting('UseNewPathAlgorithm', 0):
! print 'Using new path algorithm'
self.serverSideInfoForRequestOld = self.serverSideInfoForRequest
self.serverSideInfoForRequest = self.serverSideInfoForRequestNewAlgorithm
--- 200,205 ----
# @@ ISB 09/02: make this default or get rid of it eventually
! if self.setting('ExtraPathInfo', 0):
! print 'ExtraPathInfo set: using new path algorithm'
self.serverSideInfoForRequestOld = self.serverSideInfoForRequest
self.serverSideInfoForRequest = self.serverSideInfoForRequestNewAlgorithm
|