##// END OF EJS Templates
mercurial: expose HGUSER into environ becuase some extensions explicitly rely on this....
marcink -
r353:2a24bd1c default
parent child Browse files
Show More
@@ -331,6 +331,8 b' class HTTPApplication(object):'
331 username = dict_conf.get('username')
331 username = dict_conf.get('username')
332 if username:
332 if username:
333 environ['REMOTE_USER'] = username
333 environ['REMOTE_USER'] = username
334 # mercurial specific, some extension api rely on this
335 environ['HGUSER'] = username
334
336
335 ip = dict_conf.get('ip')
337 ip = dict_conf.get('ip')
336 if ip:
338 if ip:
General Comments 0
You need to be logged in to leave comments. Login now