Example #1
0
 def find_key_cert(self, authuri):
     return HTTPPasswordMgr.find_user_password(self, None, authuri)
Example #2
0
 def is_suburi(self, base, test):
     if base is None:
         # default to the proxy's host/port
         hostport, path = test
         base = (hostport, "/")
     return HTTPPasswordMgr.is_suburi(self, base, test)
Example #3
0
 def reduce_uri(self, uri, default_port=True):
     if uri is None:
         return None
     return HTTPPasswordMgr.reduce_uri(self, uri, default_port)
Example #4
0
 def find_key_cert(self, authuri):
     return HTTPPasswordMgr.find_user_password(self, None, authuri)
Example #5
0
 def is_suburi(self, base, test):
     if base is None:
         # default to the proxy's host/port
         hostport, path = test
         base = (hostport, "/")
     return HTTPPasswordMgr.is_suburi(self, base, test)
Example #6
0
 def reduce_uri(self, uri, default_port=True):
     if uri is None:
         return None
     return HTTPPasswordMgr.reduce_uri(self, uri, default_port)