Display user/password in url-list when authentication is used

tests
Sebastian Lohff 11 years ago
parent 80c9d9fe0a
commit 320839d856

@ -1,6 +1,12 @@
servefile changelog servefile changelog
=================== ===================
v0.4.3
------
* display user/password in url-list when authentication is used
2012-06-27 v0.4.2 2012-06-27 v0.4.2
----------------- -----------------

@ -869,10 +869,13 @@ class ServeFile():
if not ips or len(ips) == 0 or ips[0] == '': if not ips or len(ips) == 0 or ips[0] == '':
print("Could not find any addresses.") print("Could not find any addresses.")
else: else:
pwPart = ""
if self.auth:
pwPart = base64.b64decode(self.auth) + "@"
for ip in ips: for ip in ips:
if ":" in ip: if ":" in ip:
ip = "[%s]" % ip ip = "[%s]" % ip
print("\thttp%s://%s:%d/" % (self.useSSL and "s" or "", ip, self.port)) print("\thttp%s://%s%s:%d/" % (self.useSSL and "s" or "", pwPart, ip, self.port))
print() print()
try: try:

Loading…
Cancel
Save