|
|
|
@ -368,6 +368,11 @@ class testHTTPServer_RequestHandler(BaseHTTPRequestHandler):
|
|
|
|
|
if inURLItem["URL"].upper() == urllib.parse.unquote(self.path).upper():
|
|
|
|
|
URLItemDo(inURLItem, self, gSettingsDict)
|
|
|
|
|
return True
|
|
|
|
|
# check Match type variant: EqualNoParam
|
|
|
|
|
elif inURLItem["MatchType"].upper() == "EQUALNOPARAM":
|
|
|
|
|
if inURLItem["URL"].upper() == urllib.parse.unquote(self.path).upper().split("?")[0]:
|
|
|
|
|
URLItemDo(inURLItem, self, gSettingsDict)
|
|
|
|
|
return True
|
|
|
|
|
# check Match type variant: EqualCase
|
|
|
|
|
elif inURLItem["MatchType"].upper() == "EQUALCASE":
|
|
|
|
|
if inURLItem["URL"] == urllib.parse.unquote(self.path):
|
|
|
|
|