You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 29, 2018. It is now read-only.
Hi thanks for this great software. I am using this behind a proxy and have recently had to encode my user name and pass word in the http_proxy environment variable. Unfortunately scudcloud doesn't work when I do this. However, if I use the actual characters and not the url encoded values, it works as expected. I was wondering if you could implement the change at the bottom to support encoded urls in http_proxy?
ScudCloud Version
Paste the output for scudcloud --version below: ScudCloud 1.58 Python 3.5.2 Qt 5.5.1 PyQt 5.5.1 SIP 4.17
Distro and Desktop info
Distribution: Ubuntu
Version/Release: 16.04
Desktop environment: Matte
Expected behavior
Support encoded characters in the http_proxy environment variable.
Actual behavior
%XX encoded characters are not decoded and not sent to the proxy correctly.
Steps to reproduce
Use a proxy that requires a username and password with url encoded characters
Setup encoded characters in your http_proxy environment variable
Run scudcloud
I was able to hack in the following changes in wrapper.py on line 44 below
def configure_proxy(self):
try: from urllib.parse import unquote except ImportError: from urllib import unquote url = os.environ.get('http_proxy') or os.environ.get('HTTP_PROXY') url_decode = unquote(url) proxy = urlparse(url_decode)
The text was updated successfully, but these errors were encountered:
Hi thanks for this great software. I am using this behind a proxy and have recently had to encode my user name and pass word in the http_proxy environment variable. Unfortunately scudcloud doesn't work when I do this. However, if I use the actual characters and not the url encoded values, it works as expected. I was wondering if you could implement the change at the bottom to support encoded urls in http_proxy?
ScudCloud Version
Paste the output for
scudcloud --version
below:ScudCloud 1.58 Python 3.5.2 Qt 5.5.1 PyQt 5.5.1 SIP 4.17
Distro and Desktop info
Expected behavior
Support encoded characters in the http_proxy environment variable.
Actual behavior
%XX encoded characters are not decoded and not sent to the proxy correctly.
Steps to reproduce
I was able to hack in the following changes in wrapper.py on line 44 below
def configure_proxy(self):
try: from urllib.parse import unquote except ImportError: from urllib import unquote url = os.environ.get('http_proxy') or os.environ.get('HTTP_PROXY') url_decode = unquote(url) proxy = urlparse(url_decode)
The text was updated successfully, but these errors were encountered: