##// END OF EJS Templates
Added uri encoding to the username so that usernames with '@' in them (such as email address/users from LDAP) will...
philip.j@hostdime.com -
r3048:3f0fe158 beta
parent child Browse files
Show More
@@ -97,7 +97,7 b' class SummaryController(BaseRepoControll'
97 97 uri_tmpl = uri_tmpl.replace('{', '%(').replace('}', ')s')
98 98 decoded_path = safe_unicode(urllib.unquote(parsed_url.path))
99 99 uri_dict = {
100 'user': username,
100 'user': urllib.quote(username),
101 101 'pass': password,
102 102 'scheme': parsed_url.scheme,
103 103 'netloc': parsed_url.netloc,
General Comments 0
You need to be logged in to leave comments. Login now